cordova-plugin-googlemaps: [iOS] App crashed with WkWebView
I’m submitting a … (check one with “x”)
- question
- any problem or bug report
OS: (check one with “x”)
- Android
- iOS
- Browser
cordova information: (run $> cordova plugin list)
com.googlemaps.ios 3.8.0 "Google Maps SDK for iOS"
cordova-plugin-googlemaps 2.7.1 "cordova-plugin-googlemaps"
cordova-plugin-whitelist 1.3.4 "Whitelist"
cordova-plugin-wkwebview-engine 1.2.1 "Cordova WKWebView Engine"
Steps to reproduce:
- Run on iOS
- Start fast continuously zooming in/out with two fingers
- After 3-10 seconds the app is crashed
- Reproduced only if using
cordova-plugin-wkwebview-engineorionic-web-view-plugin
Since we have to use WKWebView instead UIWebView the issue is critical.
Screen capture or video record:

Related code, data or error log (please format your code or data):
config.xml:
<?xml version='1.0' encoding='utf-8'?>
<widget id="org.myapp.map" version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>HelloMap</name>
<description>
A sample Apache Cordova application that responds to the deviceready event.
</description>
<author email="dev@cordova.apache.org" href="http://cordova.io">
Apache Cordova Team
</author>
<content src="index.html" />
<plugin name="cordova-plugin-whitelist" spec="1" />
<access origin="*" />
<allow-intent href="http://*/*" />
<allow-intent href="https://*/*" />
<allow-intent href="tel:*" />
<allow-intent href="sms:*" />
<allow-intent href="mailto:*" />
<allow-intent href="geo:*" />
<preference name="SplashScreen" value="screen" />
<preference name="GOOGLE_MAPS_ANDROID_API_KEY" value="" />
<preference name="GOOGLE_MAPS_IOS_API_KEY" value="" />
<platform name="android">
<allow-intent href="market:*" />
</platform>
<platform name="ios">
<allow-intent href="itms:*" />
<allow-intent href="itms-apps:*" />
<preference name="WKWebViewOnly" value="true" />
<feature name="CDVWKWebViewEngine">
<param name="ios-package" value="CDVWKWebViewEngine" />
</feature>
<preference name="CordovaWebViewEngine" value="CDVWKWebViewEngine" />
</platform>
<plugin name="cordova-plugin-googlemaps" spec="^2.7.1" />
<plugin name="cordova-plugin-wkwebview-engine" spec="^1.2.1" />
<engine name="ios" spec="^5.1.1" />
</widget>
index.html:
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width">
<script type="text/javascript" src="cordova.js"></script>
<script type="text/javascript">
document.addEventListener("deviceready", function() {
var div = document.getElementById("map_canvas");
// Create a Google Maps native view under the map_canvas div.
var map = plugin.google.maps.Map.getMap(div);
// If you click the button, do something...
var button = document.getElementById("button");
button.addEventListener("click", function() {
map.setTrafficEnabled(true)
// Move to the position with animation
map.animateCamera({
target: {lat: 37.422359, lng: -122.084344},
zoom: 14,
duration: 500
});
// Add a maker
var marker = map.addMarker({
position: {lat: 37.422359, lng: -122.084344},
title: "Welecome to \n" +
"Cordova GoogleMaps plugin for iOS and Android",
snippet: "This plugin is awesome!",
animation: plugin.google.maps.Animation.BOUNCE
});
// Show the info window
marker.showInfoWindow();
});
}, false);
</script>
<style type="text/css">
* {
padding: 0;
margin: 0;
}
#map_canvas { /* Must bigger size than 100x100 pixels */
width: 100%;
height: 500px;
}
button {
padding: .5em;
margin: .5em;
}
</style>
</head>
<body>
<h1>Hello, World!</h1>
<div id="map_canvas">
<button id="button">Click me!</button>
</div>
</body>
</html>
Bab memory access issue:

Crash Report:
Incident Identifier: A8714873-7119-4B83-A069-457E731814BC
CrashReporter Key: f4753e678e42fe3f201526aea825b6091da90596
Hardware Model: iPhone7,2
Process: HelloMap [1716]
Path: /private/var/containers/Bundle/Application/63C6FBDE-0096-48C6-AD05-9255B5DB0BDB/HelloMap.app/HelloMap
Identifier: org.myapp.map
Version: 1.0.0 (1.0.0)
Code Type: ARM-64 (Native)
Role: Non UI
Parent Process: launchd [1]
Coalition: org.myapp.map [1073]
Date/Time: 2020-05-28 13:29:56.2581 +0300
Launch Time: 2020-05-28 13:29:27.6079 +0300
OS Version: iPhone OS 12.4.6 (16G183)
Baseband Version: 7.80.04
Report Version: 104
Exception Type: EXC_BAD_ACCESS (SIGSEGV)
Exception Subtype: KERN_PROTECTION_FAILURE at 0x000000016ef23f70
VM Region Info: 0x16ef23f70 is in 0x16ef20000-0x16ef24000; bytes after start: 16240 bytes before end: 143
REGION TYPE START - END [ VSIZE] PRT/MAX SHRMOD REGION DETAIL
MALLOC_SMALL 0000000133000000-0000000133800000 [ 8192K] rw-/rwx SM=PRV
GAP OF 0x3b720000 BYTES
---> STACK GUARD 000000016ef20000-000000016ef24000 [ 16K] ---/rwx SM=NUL ... for thread 0
Stack 000000016ef24000-000000016f020000 [ 1008K] rw-/rwx SM=PRV thread 0
Termination Signal: Segmentation fault: 11
Termination Reason: Namespace SIGNAL, Code 0xb
Terminating Process: exc handler [1716]
Triggered by Thread: 0
Thread 0 name: Dispatch queue: com.apple.main-thread
Thread 0 Crashed:
0 CoreFoundation 0x00000001f1a87da4 __CFStringAppendFormatCore + 64
1 CoreFoundation 0x00000001f1a8b5bc _CFStringCreateWithFormatAndArgumentsAux2 + 136
2 CoreFoundation 0x00000001f1a8b5bc _CFStringCreateWithFormatAndArgumentsAux2 + 136
3 Foundation 0x00000001f2435140 +[NSString stringWithFormat:] + 68
4 HelloMap 0x0000000100dfe318 -[PluginMapViewController triggerMapEvent:] + 123672 (PluginMapViewController.m:509)
5 HelloMap 0x0000000100dfcd40 -[PluginMapViewController mapView:didChangeCameraPosition:] + 118080 (PluginMapViewController.m:0)
6 CoreFoundation 0x00000001f1ae2800 __invoking___ + 144
7 CoreFoundation 0x00000001f19c43c0 -[NSInvocation invoke] + 292
8 CoreFoundation 0x00000001f19c4ff4 -[NSInvocation invokeWithTarget:] + 60
9 HelloMap 0x0000000100f44018 -[GMSDelegateForward forwardInvocation:] + 100
10 CoreFoundation 0x00000001f1ae06c4 ___forwarding___ + 636
11 CoreFoundation 0x00000001f1ae265c _CF_forwarding_prep_0 + 92
12 HelloMap 0x0000000100f4fca0 -[GMSMapView updateWithCamera:] + 176
13 Foundation 0x00000001f2562690 __NSThreadPerformPerform + 336
14 CoreFoundation 0x00000001f1a6cf1c __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 24
15 CoreFoundation 0x00000001f1a6ce9c __CFRunLoopDoSource0 + 88
16 CoreFoundation 0x00000001f1a6c7d4 __CFRunLoopDoSources0 + 256
17 CoreFoundation 0x00000001f1a676c0 __CFRunLoopRun + 1004
18 CoreFoundation 0x00000001f1a66fb4 CFRunLoopRunSpecific + 436
19 Foundation 0x00000001f243595c -[NSRunLoop+ 31068 (NSRunLoop) runMode:beforeDate:] + 300
20 HelloMap 0x0000000100e70a30 -[WKWebView+ 592432 (SynchronousEvaluateJavaScript) stringByEvaluatingJavaScriptFromString:] + 424
21 HelloMap 0x0000000100e63178 -[PluginViewController execJS:] + 536952 (PluginViewController.m:56)
22 HelloMap 0x0000000100dfe358 -[PluginMapViewController triggerMapEvent:] + 123736 (PluginMapViewController.m:513)
23 HelloMap 0x0000000100dfcd40 -[PluginMapViewController mapView:didChangeCameraPosition:] + 118080 (PluginMapViewController.m:0)
24 CoreFoundation 0x00000001f1ae2800 __invoking___ + 144
25 CoreFoundation 0x00000001f19c43c0 -[NSInvocation invoke] + 292
26 CoreFoundation 0x00000001f19c4ff4 -[NSInvocation invokeWithTarget:] + 60
27 HelloMap 0x0000000100f44018 -[GMSDelegateForward forwardInvocation:] + 100
28 CoreFoundation 0x00000001f1ae06c4 ___forwarding___ + 636
29 CoreFoundation 0x00000001f1ae265c _CF_forwarding_prep_0 + 92
30 HelloMap 0x0000000100f4fca0 -[GMSMapView updateWithCamera:] + 176
31 Foundation 0x00000001f2562690 __NSThreadPerformPerform + 336
32 CoreFoundation 0x00000001f1a6cf1c __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 24
33 CoreFoundation 0x00000001f1a6ce9c __CFRunLoopDoSource0 + 88
34 CoreFoundation 0x00000001f1a6c7d4 __CFRunLoopDoSources0 + 256
35 CoreFoundation 0x00000001f1a676c0 __CFRunLoopRun + 1004
36 CoreFoundation 0x00000001f1a66fb4 CFRunLoopRunSpecific + 436
37 Foundation 0x00000001f243595c -[NSRunLoop+ 31068 (NSRunLoop) runMode:beforeDate:] + 300
38 HelloMap 0x0000000100e70a30 -[WKWebView+ 592432 (SynchronousEvaluateJavaScript) stringByEvaluatingJavaScriptFromString:] + 424
39 HelloMap 0x0000000100e63178 -[PluginViewController execJS:] + 536952 (PluginViewController.m:56)
40 HelloMap 0x0000000100dfe358 -[PluginMapViewController triggerMapEvent:] + 123736 (PluginMapViewController.m:513)
41 HelloMap 0x0000000100dfcd40 -[PluginMapViewController mapView:didChangeCameraPosition:] + 118080 (PluginMapViewController.m:0)
42 CoreFoundation 0x00000001f1ae2800 __invoking___ + 144
43 CoreFoundation 0x00000001f19c43c0 -[NSInvocation invoke] + 292
44 CoreFoundation 0x00000001f19c4ff4 -[NSInvocation invokeWithTarget:] + 60
45 HelloMap 0x0000000100f44018 -[GMSDelegateForward forwardInvocation:] + 100
46 CoreFoundation 0x00000001f1ae06c4 ___forwarding___ + 636
47 CoreFoundation 0x00000001f1ae265c _CF_forwarding_prep_0 + 92
48 HelloMap 0x0000000100f4fca0 -[GMSMapView updateWithCamera:] + 176
49 Foundation 0x00000001f2562690 __NSThreadPerformPerform + 336
50 CoreFoundation 0x00000001f1a6cf1c __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 24
51 CoreFoundation 0x00000001f1a6ce9c __CFRunLoopDoSource0 + 88
52 CoreFoundation 0x00000001f1a6c7d4 __CFRunLoopDoSources0 + 256
53 CoreFoundation 0x00000001f1a676c0 __CFRunLoopRun + 1004
54 CoreFoundation 0x00000001f1a66fb4 CFRunLoopRunSpecific + 436
55 Foundation 0x00000001f243595c -[NSRunLoop+ 31068 (NSRunLoop) runMode:beforeDate:] + 300
56 HelloMap 0x0000000100e70a30 -[WKWebView+ 592432 (SynchronousEvaluateJavaScript) stringByEvaluatingJavaScriptFromString:] + 424
57 HelloMap 0x0000000100e63178 -[PluginViewController execJS:] + 536952 (PluginViewController.m:56)
58 HelloMap 0x0000000100dfe358 -[PluginMapViewController triggerMapEvent:] + 123736 (PluginMapViewController.m:513)
59 HelloMap 0x0000000100dfcd40 -[PluginMapViewController mapView:didChangeCameraPosition:] + 118080 (PluginMapViewController.m:0)
60 CoreFoundation 0x00000001f1ae2800 __invoking___ + 144
61 CoreFoundation 0x00000001f19c43c0 -[NSInvocation invoke] + 292
62 CoreFoundation 0x00000001f19c4ff4 -[NSInvocation invokeWithTarget:] + 60
63 HelloMap 0x0000000100f44018 -[GMSDelegateForward forwardInvocation:] + 100
64 CoreFoundation 0x00000001f1ae06c4 ___forwarding___ + 636
65 CoreFoundation 0x00000001f1ae265c _CF_forwarding_prep_0 + 92
66 HelloMap 0x0000000100f4fca0 -[GMSMapView updateWithCamera:] + 176
67 Foundation 0x00000001f2562690 __NSThreadPerformPerform + 336
68 CoreFoundation 0x00000001f1a6cf1c __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 24
69 CoreFoundation 0x00000001f1a6ce9c __CFRunLoopDoSource0 + 88
70 CoreFoundation 0x00000001f1a6c7d4 __CFRunLoopDoSources0 + 256
71 CoreFoundation 0x00000001f1a676c0 __CFRunLoopRun + 1004
72 CoreFoundation 0x00000001f1a66fb4 CFRunLoopRunSpecific + 436
73 Foundation 0x00000001f243595c -[NSRunLoop+ 31068 (NSRunLoop) runMode:beforeDate:] + 300
74 HelloMap 0x0000000100e70a30 -[WKWebView+ 592432 (SynchronousEvaluateJavaScript) stringByEvaluatingJavaScriptFromString:] + 424
75 HelloMap 0x0000000100e63178 -[PluginViewController execJS:] + 536952 (PluginViewController.m:56)
76 HelloMap 0x0000000100dfe358 -[PluginMapViewController triggerMapEvent:] + 123736 (PluginMapViewController.m:513)
77 HelloMap 0x0000000100dfcd40 -[PluginMapViewController mapView:didChangeCameraPosition:] + 118080 (PluginMapViewController.m:0)
78 CoreFoundation 0x00000001f1ae2800 __invoking___ + 144
79 CoreFoundation 0x00000001f19c43c0 -[NSInvocation invoke] + 292
80 CoreFoundation 0x00000001f19c4ff4 -[NSInvocation invokeWithTarget:] + 60
81 HelloMap 0x0000000100f44018 -[GMSDelegateForward forwardInvocation:] + 100
82 CoreFoundation 0x00000001f1ae06c4 ___forwarding___ + 636
83 CoreFoundation 0x00000001f1ae265c _CF_forwarding_prep_0 + 92
84 HelloMap 0x0000000100f4fca0 -[GMSMapView updateWithCamera:] + 176
85 Foundation 0x00000001f2562690 __NSThreadPerformPerform + 336
86 CoreFoundation 0x00000001f1a6cf1c __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 24
87 CoreFoundation 0x00000001f1a6ce9c __CFRunLoopDoSource0 + 88
88 CoreFoundation 0x00000001f1a6c7d4 __CFRunLoopDoSources0 + 256
89 CoreFoundation 0x00000001f1a676c0 __CFRunLoopRun + 1004
90 CoreFoundation 0x00000001f1a66fb4 CFRunLoopRunSpecific + 436
91 Foundation 0x00000001f243595c -[NSRunLoop+ 31068 (NSRunLoop) runMode:beforeDate:] + 300
92 HelloMap 0x0000000100e70a30 -[WKWebView+ 592432 (SynchronousEvaluateJavaScript) stringByEvaluatingJavaScriptFromString:] + 424
93 HelloMap 0x0000000100e63178 -[PluginViewController execJS:] + 536952 (PluginViewController.m:56)
94 HelloMap 0x0000000100dfe358 -[PluginMapViewController triggerMapEvent:] + 123736 (PluginMapViewController.m:513)
95 HelloMap 0x0000000100dfcd40 -[PluginMapViewController mapView:didChangeCameraPosition:] + 118080 (PluginMapViewController.m:0)
96 CoreFoundation 0x00000001f1ae2800 __invoking___ + 144
97 CoreFoundation 0x00000001f19c43c0 -[NSInvocation invoke] + 292
98 CoreFoundation 0x00000001f19c4ff4 -[NSInvocation invokeWithTarget:] + 60
99 HelloMap 0x0000000100f44018 -[GMSDelegateForward forwardInvocation:] + 100
100 CoreFoundation 0x00000001f1ae06c4 ___forwarding___ + 636
101 CoreFoundation 0x00000001f1ae265c _CF_forwarding_prep_0 + 92
102 HelloMap 0x0000000100f4fca0 -[GMSMapView updateWithCamera:] + 176
103 Foundation 0x00000001f2562690 __NSThreadPerformPerform + 336
104 CoreFoundation 0x00000001f1a6cf1c __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 24
105 CoreFoundation 0x00000001f1a6ce9c __CFRunLoopDoSource0 + 88
106 CoreFoundation 0x00000001f1a6c7d4 __CFRunLoopDoSources0 + 256
107 CoreFoundation 0x00000001f1a676c0 __CFRunLoopRun + 1004
108 CoreFoundation 0x00000001f1a66fb4 CFRunLoopRunSpecific + 436
109 Foundation 0x00000001f243595c -[NSRunLoop+ 31068 (NSRunLoop) runMode:beforeDate:] + 300
110 HelloMap 0x0000000100e70a30 -[WKWebView+ 592432 (SynchronousEvaluateJavaScript) stringByEvaluatingJavaScriptFromString:] + 424
111 HelloMap 0x0000000100e63178 -[PluginViewController execJS:] + 536952 (PluginViewController.m:56)
112 HelloMap 0x0000000100dfe358 -[PluginMapViewController triggerMapEvent:] + 123736 (PluginMapViewController.m:513)
113 HelloMap 0x0000000100dfcd40 -[PluginMapViewController mapView:didChangeCameraPosition:] + 118080 (PluginMapViewController.m:0)
114 CoreFoundation 0x00000001f1ae2800 __invoking___ + 144
115 CoreFoundation 0x00000001f19c43c0 -[NSInvocation invoke] + 292
116 CoreFoundation 0x00000001f19c4ff4 -[NSInvocation invokeWithTarget:] + 60
117 HelloMap 0x0000000100f44018 -[GMSDelegateForward forwardInvocation:] + 100
118 CoreFoundation 0x00000001f1ae06c4 ___forwarding___ + 636
119 CoreFoundation 0x00000001f1ae265c _CF_forwarding_prep_0 + 92
120 HelloMap 0x0000000100f4fca0 -[GMSMapView updateWithCamera:] + 176
121 Foundation 0x00000001f2562690 __NSThreadPerformPerform + 336
122 CoreFoundation 0x00000001f1a6cf1c __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 24
123 CoreFoundation 0x00000001f1a6ce9c __CFRunLoopDoSource0 + 88
124 CoreFoundation 0x00000001f1a6c7d4 __CFRunLoopDoSources0 + 256
125 CoreFoundation 0x00000001f1a676c0 __CFRunLoopRun + 1004
126 CoreFoundation 0x00000001f1a66fb4 CFRunLoopRunSpecific + 436
127 Foundation 0x00000001f243595c -[NSRunLoop+ 31068 (NSRunLoop) runMode:beforeDate:] + 300
128 HelloMap 0x0000000100e70a30 -[WKWebView+ 592432 (SynchronousEvaluateJavaScript) stringByEvaluatingJavaScriptFromString:] + 424
129 HelloMap 0x0000000100e63178 -[PluginViewController execJS:] + 536952 (PluginViewController.m:56)
130 HelloMap 0x0000000100dfe358 -[PluginMapViewController triggerMapEvent:] + 123736 (PluginMapViewController.m:513)
131 HelloMap 0x0000000100dfcd40 -[PluginMapViewController mapView:didChangeCameraPosition:] + 118080 (PluginMapViewController.m:0)
132 CoreFoundation 0x00000001f1ae2800 __invoking___ + 144
133 CoreFoundation 0x00000001f19c43c0 -[NSInvocation invoke] + 292
134 CoreFoundation 0x00000001f19c4ff4 -[NSInvocation invokeWithTarget:] + 60
135 HelloMap 0x0000000100f44018 -[GMSDelegateForward forwardInvocation:] + 100
136 CoreFoundation 0x00000001f1ae06c4 ___forwarding___ + 636
137 CoreFoundation 0x00000001f1ae265c _CF_forwarding_prep_0 + 92
138 HelloMap 0x0000000100f4fca0 -[GMSMapView updateWithCamera:] + 176
139 Foundation 0x00000001f2562690 __NSThreadPerformPerform + 336
140 CoreFoundation 0x00000001f1a6cf1c __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 24
141 CoreFoundation 0x00000001f1a6ce9c __CFRunLoopDoSource0 + 88
142 CoreFoundation 0x00000001f1a6c7d4 __CFRunLoopDoSources0 + 256
143 CoreFoundation 0x00000001f1a676c0 __CFRunLoopRun + 1004
144 CoreFoundation 0x00000001f1a66fb4 CFRunLoopRunSpecific + 436
145 Foundation 0x00000001f243595c -[NSRunLoop+ 31068 (NSRunLoop) runMode:beforeDate:] + 300
146 HelloMap 0x0000000100e70a30 -[WKWebView+ 592432 (SynchronousEvaluateJavaScript) stringByEvaluatingJavaScriptFromString:] + 424
147 HelloMap 0x0000000100e63178 -[PluginViewController execJS:] + 536952 (PluginViewController.m:56)
148 HelloMap 0x0000000100dfe358 -[PluginMapViewController triggerMapEvent:] + 123736 (PluginMapViewController.m:513)
149 HelloMap 0x0000000100dfcd40 -[PluginMapViewController mapView:didChangeCameraPosition:] + 118080 (PluginMapViewController.m:0)
150 CoreFoundation 0x00000001f1ae2800 __invoking___ + 144
151 CoreFoundation 0x00000001f19c43c0 -[NSInvocation invoke] + 292
152 CoreFoundation 0x00000001f19c4ff4 -[NSInvocation invokeWithTarget:] + 60
153 HelloMap 0x0000000100f44018 -[GMSDelegateForward forwardInvocation:] + 100
154 CoreFoundation 0x00000001f1ae06c4 ___forwarding___ + 636
155 CoreFoundation 0x00000001f1ae265c _CF_forwarding_prep_0 + 92
156 HelloMap 0x0000000100f4fca0 -[GMSMapView updateWithCamera:] + 176
157 Foundation 0x00000001f2562690 __NSThreadPerformPerform + 336
158 CoreFoundation 0x00000001f1a6cf1c __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 24
159 CoreFoundation 0x00000001f1a6ce9c __CFRunLoopDoSource0 + 88
160 CoreFoundation 0x00000001f1a6c7d4 __CFRunLoopDoSources0 + 256
161 CoreFoundation 0x00000001f1a676c0 __CFRunLoopRun + 1004
162 CoreFoundation 0x00000001f1a66fb4 CFRunLoopRunSpecific + 436
163 Foundation 0x00000001f243595c -[NSRunLoop+ 31068 (NSRunLoop) runMode:beforeDate:] + 300
164 HelloMap 0x0000000100e70a30 -[WKWebView+ 592432 (SynchronousEvaluateJavaScript) stringByEvaluatingJavaScriptFromString:] + 424
165 HelloMap 0x0000000100e63178 -[PluginViewController execJS:] + 536952 (PluginViewController.m:56)
166 HelloMap 0x0000000100dfe358 -[PluginMapViewController triggerMapEvent:] + 123736 (PluginMapViewController.m:513)
167 HelloMap 0x0000000100dfcd40 -[PluginMapViewController mapView:didChangeCameraPosition:] + 118080 (PluginMapViewController.m:0)
168 CoreFoundation 0x00000001f1ae2800 __invoking___ + 144
169 CoreFoundation 0x00000001f19c43c0 -[NSInvocation invoke] + 292
170 CoreFoundation 0x00000001f19c4ff4 -[NSInvocation invokeWithTarget:] + 60
171 HelloMap 0x0000000100f44018 -[GMSDelegateForward forwardInvocation:] + 100
172 CoreFoundation 0x00000001f1ae06c4 ___forwarding___ + 636
173 CoreFoundation 0x00000001f1ae265c _CF_forwarding_prep_0 + 92
174 HelloMap 0x0000000100f4fca0 -[GMSMapView updateWithCamera:] + 176
175 Foundation 0x00000001f2562690 __NSThreadPerformPerform + 336
176 CoreFoundation 0x00000001f1a6cf1c __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 24
177 CoreFoundation 0x00000001f1a6ce9c __CFRunLoopDoSource0 + 88
178 CoreFoundation 0x00000001f1a6c7d4 __CFRunLoopDoSources0 + 256
179 CoreFoundation 0x00000001f1a676c0 __CFRunLoopRun + 1004
180 CoreFoundation 0x00000001f1a66fb4 CFRunLoopRunSpecific + 436
181 Foundation 0x00000001f243595c -[NSRunLoop+ 31068 (NSRunLoop) runMode:beforeDate:] + 300
182 HelloMap 0x0000000100e70a30 -[WKWebView+ 592432 (SynchronousEvaluateJavaScript) stringByEvaluatingJavaScriptFromString:] + 424
183 HelloMap 0x0000000100e63178 -[PluginViewController execJS:] + 536952 (PluginViewController.m:56)
184 HelloMap 0x0000000100dfe358 -[PluginMapViewController triggerMapEvent:] + 123736 (PluginMapViewController.m:513)
185 HelloMap 0x0000000100dfcd40 -[PluginMapViewController mapView:didChangeCameraPosition:] + 118080 (PluginMapViewController.m:0)
186 CoreFoundation 0x00000001f1ae2800 __invoking___ + 144
187 CoreFoundation 0x00000001f19c43c0 -[NSInvocation invoke] + 292
188 CoreFoundation 0x00000001f19c4ff4 -[NSInvocation invokeWithTarget:] + 60
189 HelloMap 0x0000000100f44018 -[GMSDelegateForward forwardInvocation:] + 100
190 CoreFoundation 0x00000001f1ae06c4 ___forwarding___ + 636
191 CoreFoundation 0x00000001f1ae265c _CF_forwarding_prep_0 + 92
192 HelloMap 0x0000000100f4fca0 -[GMSMapView updateWithCamera:] + 176
193 Foundation 0x00000001f2562690 __NSThreadPerformPerform + 336
194 CoreFoundation 0x00000001f1a6cf1c __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 24
195 CoreFoundation 0x00000001f1a6ce9c __CFRunLoopDoSource0 + 88
196 CoreFoundation 0x00000001f1a6c7d4 __CFRunLoopDoSources0 + 256
197 CoreFoundation 0x00000001f1a676c0 __CFRunLoopRun + 1004
198 CoreFoundation 0x00000001f1a66fb4 CFRunLoopRunSpecific + 436
199 Foundation 0x00000001f243595c -[NSRunLoop+ 31068 (NSRunLoop) runMode:beforeDate:] + 300
200 HelloMap 0x0000000100e70a30 -[WKWebView+ 592432 (SynchronousEvaluateJavaScript) stringByEvaluatingJavaScriptFromString:] + 424
201 HelloMap 0x0000000100e63178 -[PluginViewController execJS:] + 536952 (PluginViewController.m:56)
202 HelloMap 0x0000000100dfe358 -[PluginMapViewController triggerMapEvent:] + 123736 (PluginMapViewController.m:513)
203 HelloMap 0x0000000100dfcd40 -[PluginMapViewController mapView:didChangeCameraPosition:] + 118080 (PluginMapViewController.m:0)
204 CoreFoundation 0x00000001f1ae2800 __invoking___ + 144
205 CoreFoundation 0x00000001f19c43c0 -[NSInvocation invoke] + 292
206 CoreFoundation 0x00000001f19c4ff4 -[NSInvocation invokeWithTarget:] + 60
207 HelloMap 0x0000000100f44018 -[GMSDelegateForward forwardInvocation:] + 100
208 CoreFoundation 0x00000001f1ae06c4 ___forwarding___ + 636
209 CoreFoundation 0x00000001f1ae265c _CF_forwarding_prep_0 + 92
210 HelloMap 0x0000000100f4fca0 -[GMSMapView updateWithCamera:] + 176
211 Foundation 0x00000001f2562690 __NSThreadPerformPerform + 336
212 CoreFoundation 0x00000001f1a6cf1c __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 24
213 CoreFoundation 0x00000001f1a6ce9c __CFRunLoopDoSource0 + 88
214 CoreFoundation 0x00000001f1a6c7d4 __CFRunLoopDoSources0 + 256
215 CoreFoundation 0x00000001f1a676c0 __CFRunLoopRun + 1004
216 CoreFoundation 0x00000001f1a66fb4 CFRunLoopRunSpecific + 436
217 Foundation 0x00000001f243595c -[NSRunLoop+ 31068 (NSRunLoop) runMode:beforeDate:] + 300
218 HelloMap 0x0000000100e70a30 -[WKWebView+ 592432 (SynchronousEvaluateJavaScript) stringByEvaluatingJavaScriptFromString:] + 424
219 HelloMap 0x0000000100e63178 -[PluginViewController execJS:] + 536952 (PluginViewController.m:56)
220 HelloMap 0x0000000100dfe358 -[PluginMapViewController triggerMapEvent:] + 123736 (PluginMapViewController.m:513)
221 HelloMap 0x0000000100dfcd40 -[PluginMapViewController mapView:didChangeCameraPosition:] + 118080 (PluginMapViewController.m:0)
222 CoreFoundation 0x00000001f1ae2800 __invoking___ + 144
223 CoreFoundation 0x00000001f19c43c0 -[NSInvocation invoke] + 292
224 CoreFoundation 0x00000001f19c4ff4 -[NSInvocation invokeWithTarget:] + 60
225 HelloMap 0x0000000100f44018 -[GMSDelegateForward forwardInvocation:] + 100
226 CoreFoundation 0x00000001f1ae06c4 ___forwarding___ + 636
227 CoreFoundation 0x00000001f1ae265c _CF_forwarding_prep_0 + 92
228 HelloMap 0x0000000100f4fca0 -[GMSMapView updateWithCamera:] + 176
229 Foundation 0x00000001f2562690 __NSThreadPerformPerform + 336
230 CoreFoundation 0x00000001f1a6cf1c __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 24
231 CoreFoundation 0x00000001f1a6ce9c __CFRunLoopDoSource0 + 88
232 CoreFoundation 0x00000001f1a6c7d4 __CFRunLoopDoSources0 + 256
233 CoreFoundation 0x00000001f1a676c0 __CFRunLoopRun + 1004
234 CoreFoundation 0x00000001f1a66fb4 CFRunLoopRunSpecific + 436
235 Foundation 0x00000001f243595c -[NSRunLoop+ 31068 (NSRunLoop) runMode:beforeDate:] + 300
236 HelloMap 0x0000000100e70a30 -[WKWebView+ 592432 (SynchronousEvaluateJavaScript) stringByEvaluatingJavaScriptFromString:] + 424
237 HelloMap 0x0000000100e63178 -[PluginViewController execJS:] + 536952 (PluginViewController.m:56)
238 HelloMap 0x0000000100dfe358 -[PluginMapViewController triggerMapEvent:] + 123736 (PluginMapViewController.m:513)
239 HelloMap 0x0000000100dfcd40 -[PluginMapViewController mapView:didChangeCameraPosition:] + 118080 (PluginMapViewController.m:0)
240 CoreFoundation 0x00000001f1ae2800 __invoking___ + 144
241 CoreFoundation 0x00000001f19c43c0 -[NSInvocation invoke] + 292
242 CoreFoundation 0x00000001f19c4ff4 -[NSInvocation invokeWithTarget:] + 60
243 HelloMap 0x0000000100f44018 -[GMSDelegateForward forwardInvocation:] + 100
244 CoreFoundation 0x00000001f1ae06c4 ___forwarding___ + 636
245 CoreFoundation 0x00000001f1ae265c _CF_forwarding_prep_0 + 92
246 HelloMap 0x0000000100f4fca0 -[GMSMapView updateWithCamera:] + 176
247 Foundation 0x00000001f2562690 __NSThreadPerformPerform + 336
248 CoreFoundation 0x00000001f1a6cf1c __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 24
249 CoreFoundation 0x00000001f1a6ce9c __CFRunLoopDoSource0 + 88
250 CoreFoundation 0x00000001f1a6c7d4 __CFRunLoopDoSources0 + 256
251 CoreFoundation 0x00000001f1a676c0 __CFRunLoopRun + 1004
252 CoreFoundation 0x00000001f1a66fb4 CFRunLoopRunSpecific + 436
253 Foundation 0x00000001f243595c -[NSRunLoop+ 31068 (NSRunLoop) runMode:beforeDate:] + 300
254 HelloMap 0x0000000100e70a30 -[WKWebView+ 592432 (SynchronousEvaluateJavaScript) stringByEvaluatingJavaScriptFromString:] + 424
255 HelloMap 0x0000000100e63178 -[PluginViewController execJS:] + 536952 (PluginViewController.m:56)
256 HelloMap 0x0000000100dfe358 -[PluginMapViewController triggerMapEvent:] + 123736 (PluginMapViewController.m:513)
257 HelloMap 0x0000000100dfcd40 -[PluginMapViewController mapView:didChangeCameraPosition:] + 118080 (PluginMapViewController.m:0)
258 CoreFoundation 0x00000001f1ae2800 __invoking___ + 144
259 CoreFoundation 0x00000001f19c43c0 -[NSInvocation invoke] + 292
260 CoreFoundation 0x00000001f19c4ff4 -[NSInvocation invokeWithTarget:] + 60
261 HelloMap 0x0000000100f44018 -[GMSDelegateForward forwardInvocation:] + 100
262 CoreFoundation 0x00000001f1ae06c4 ___forwarding___ + 636
263 CoreFoundation 0x00000001f1ae265c _CF_forwarding_prep_0 + 92
264 HelloMap 0x0000000100f4fca0 -[GMSMapView updateWithCamera:] + 176
265 Foundation 0x00000001f2562690 __NSThreadPerformPerform + 336
266 CoreFoundation 0x00000001f1a6cf1c __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 24
267 CoreFoundation 0x00000001f1a6ce9c __CFRunLoopDoSource0 + 88
268 CoreFoundation 0x00000001f1a6c7d4 __CFRunLoopDoSources0 + 256
269 CoreFoundation 0x00000001f1a676c0 __CFRunLoopRun + 1004
270 CoreFoundation 0x00000001f1a66fb4 CFRunLoopRunSpecific + 436
271 Foundation 0x00000001f243595c -[NSRunLoop+ 31068 (NSRunLoop) runMode:beforeDate:] + 300
272 HelloMap 0x0000000100e70a30 -[WKWebView+ 592432 (SynchronousEvaluateJavaScript) stringByEvaluatingJavaScriptFromString:] + 424
273 HelloMap 0x0000000100e63178 -[PluginViewController execJS:] + 536952 (PluginViewController.m:56)
274 HelloMap 0x0000000100dfe358 -[PluginMapViewController triggerMapEvent:] + 123736 (PluginMapViewController.m:513)
275 HelloMap 0x0000000100dfcd40 -[PluginMapViewController mapView:didChangeCameraPosition:] + 118080 (PluginMapViewController.m:0)
276 CoreFoundation 0x00000001f1ae2800 __invoking___ + 144
277 CoreFoundation 0x00000001f19c43c0 -[NSInvocation invoke] + 292
278 CoreFoundation 0x00000001f19c4ff4 -[NSInvocation invokeWithTarget:] + 60
279 HelloMap 0x0000000100f44018 -[GMSDelegateForward forwardInvocation:] + 100
280 CoreFoundation 0x00000001f1ae06c4 ___forwarding___ + 636
281 CoreFoundation 0x00000001f1ae265c _CF_forwarding_prep_0 + 92
282 HelloMap 0x0000000100f4fca0 -[GMSMapView updateWithCamera:] + 176
283 Foundation 0x00000001f2562690 __NSThreadPerformPerform + 336
284 CoreFoundation 0x00000001f1a6cf1c __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 24
285 CoreFoundation 0x00000001f1a6ce9c __CFRunLoopDoSource0 + 88
286 CoreFoundation 0x00000001f1a6c7d4 __CFRunLoopDoSources0 + 256
287 CoreFoundation 0x00000001f1a676c0 __CFRunLoopRun + 1004
288 CoreFoundation 0x00000001f1a66fb4 CFRunLoopRunSpecific + 436
289 Foundation 0x00000001f243595c -[NSRunLoop+ 31068 (NSRunLoop) runMode:beforeDate:] + 300
290 HelloMap 0x0000000100e70a30 -[WKWebView+ 592432 (SynchronousEvaluateJavaScript) stringByEvaluatingJavaScriptFromString:] + 424
291 HelloMap 0x0000000100e63178 -[PluginViewController execJS:] + 536952 (PluginViewController.m:56)
292 HelloMap 0x0000000100dfe358 -[PluginMapViewController triggerMapEvent:] + 123736 (PluginMapViewController.m:513)
293 HelloMap 0x0000000100dfcd40 -[PluginMapViewController mapView:didChangeCameraPosition:] + 118080 (PluginMapViewController.m:0)
294 CoreFoundation 0x00000001f1ae2800 __invoking___ + 144
295 CoreFoundation 0x00000001f19c43c0 -[NSInvocation invoke] + 292
296 CoreFoundation 0x00000001f19c4ff4 -[NSInvocation invokeWithTarget:] + 60
297 HelloMap 0x0000000100f44018 -[GMSDelegateForward forwardInvocation:] + 100
298 CoreFoundation 0x00000001f1ae06c4 ___forwarding___ + 636
299 CoreFoundation 0x00000001f1ae265c _CF_forwarding_prep_0 + 92
300 HelloMap 0x0000000100f4fca0 -[GMSMapView updateWithCamera:] + 176
301 Foundation 0x00000001f2562690 __NSThreadPerformPerform + 336
302 CoreFoundation 0x00000001f1a6cf1c __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 24
303 CoreFoundation 0x00000001f1a6ce9c __CFRunLoopDoSource0 + 88
304 CoreFoundation 0x00000001f1a6c7d4 __CFRunLoopDoSources0 + 256
305 CoreFoundation 0x00000001f1a676c0 __CFRunLoopRun + 1004
306 CoreFoundation 0x00000001f1a66fb4 CFRunLoopRunSpecific + 436
307 Foundation 0x00000001f243595c -[NSRunLoop+ 31068 (NSRunLoop) runMode:beforeDate:] + 300
308 HelloMap 0x0000000100e70a30 -[WKWebView+ 592432 (SynchronousEvaluateJavaScript) stringByEvaluatingJavaScriptFromString:] + 424
309 HelloMap 0x0000000100e63178 -[PluginViewController execJS:] + 536952 (PluginViewController.m:56)
310 HelloMap 0x0000000100dfe358 -[PluginMapViewController triggerMapEvent:] + 123736 (PluginMapViewController.m:513)
311 HelloMap 0x0000000100dfcd40 -[PluginMapViewController mapView:didChangeCameraPosition:] + 118080 (PluginMapViewController.m:0)
312 CoreFoundation 0x00000001f1ae2800 __invoking___ + 144
313 CoreFoundation 0x00000001f19c43c0 -[NSInvocation invoke] + 292
314 CoreFoundation 0x00000001f19c4ff4 -[NSInvocation invokeWithTarget:] + 60
315 HelloMap 0x0000000100f44018 -[GMSDelegateForward forwardInvocation:] + 100
316 CoreFoundation 0x00000001f1ae06c4 ___forwarding___ + 636
317 CoreFoundation 0x00000001f1ae265c _CF_forwarding_prep_0 + 92
318 HelloMap 0x0000000100f4fca0 -[GMSMapView updateWithCamera:] + 176
319 Foundation 0x00000001f2562690 __NSThreadPerformPerform + 336
320 CoreFoundation 0x00000001f1a6cf1c __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 24
321 CoreFoundation 0x00000001f1a6ce9c __CFRunLoopDoSource0 + 88
322 CoreFoundation 0x00000001f1a6c7d4 __CFRunLoopDoSources0 + 256
323 CoreFoundation 0x00000001f1a676c0 __CFRunLoopRun + 1004
324 CoreFoundation 0x00000001f1a66fb4 CFRunLoopRunSpecific + 436
325 Foundation 0x00000001f243595c -[NSRunLoop+ 31068 (NSRunLoop) runMode:beforeDate:] + 300
326 HelloMap 0x0000000100e70a30 -[WKWebView+ 592432 (SynchronousEvaluateJavaScript) stringByEvaluatingJavaScriptFromString:] + 424
327 HelloMap 0x0000000100e63178 -[PluginViewController execJS:] + 536952 (PluginViewController.m:56)
328 HelloMap 0x0000000100dfe358 -[PluginMapViewController triggerMapEvent:] + 123736 (PluginMapViewController.m:513)
329 HelloMap 0x0000000100dfcd40 -[PluginMapViewController mapView:didChangeCameraPosition:] + 118080 (PluginMapViewController.m:0)
330 CoreFoundation 0x00000001f1ae2800 __invoking___ + 144
331 CoreFoundation 0x00000001f19c43c0 -[NSInvocation invoke] + 292
332 CoreFoundation 0x00000001f19c4ff4 -[NSInvocation invokeWithTarget:] + 60
333 HelloMap 0x0000000100f44018 -[GMSDelegateForward forwardInvocation:] + 100
334 CoreFoundation 0x00000001f1ae06c4 ___forwarding___ + 636
335 CoreFoundation 0x00000001f1ae265c _CF_forwarding_prep_0 + 92
336 HelloMap 0x0000000100f4fca0 -[GMSMapView updateWithCamera:] + 176
337 Foundation 0x00000001f2562690 __NSThreadPerformPerform + 336
338 CoreFoundation 0x00000001f1a6cf1c __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 24
339 CoreFoundation 0x00000001f1a6ce9c __CFRunLoopDoSource0 + 88
340 CoreFoundation 0x00000001f1a6c7d4 __CFRunLoopDoSources0 + 256
341 CoreFoundation 0x00000001f1a676c0 __CFRunLoopRun + 1004
342 CoreFoundation 0x00000001f1a66fb4 CFRunLoopRunSpecific + 436
343 Foundation 0x00000001f243595c -[NSRunLoop+ 31068 (NSRunLoop) runMode:beforeDate:] + 300
344 HelloMap 0x0000000100e70a30 -[WKWebView+ 592432 (SynchronousEvaluateJavaScript) stringByEvaluatingJavaScriptFromString:] + 424
345 HelloMap 0x0000000100e63178 -[PluginViewController execJS:] + 536952 (PluginViewController.m:56)
346 HelloMap 0x0000000100dfe358 -[PluginMapViewController triggerMapEvent:] + 123736 (PluginMapViewController.m:513)
347 HelloMap 0x0000000100dfcd40 -[PluginMapViewController mapView:didChangeCameraPosition:] + 118080 (PluginMapViewController.m:0)
348 CoreFoundation 0x00000001f1ae2800 __invoking___ + 144
349 CoreFoundation 0x00000001f19c43c0 -[NSInvocation invoke] + 292
350 CoreFoundation 0x00000001f19c4ff4 -[NSInvocation invokeWithTarget:] + 60
351 HelloMap 0x0000000100f44018 -[GMSDelegateForward forwardInvocation:] + 100
352 CoreFoundation 0x00000001f1ae06c4 ___forwarding___ + 636
353 CoreFoundation 0x00000001f1ae265c _CF_forwarding_prep_0 + 92
354 HelloMap 0x0000000100f4fca0 -[GMSMapView updateWithCamera:] + 176
355 Foundation 0x00000001f2562690 __NSThreadPerformPerform + 336
356 CoreFoundation 0x00000001f1a6cf1c __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 24
357 CoreFoundation 0x00000001f1a6ce9c __CFRunLoopDoSource0 + 88
358 CoreFoundation 0x00000001f1a6c7d4 __CFRunLoopDoSources0 + 256
359 CoreFoundation 0x00000001f1a676c0 __CFRunLoopRun + 1004
360 CoreFoundation 0x00000001f1a66fb4 CFRunLoopRunSpecific + 436
361 Foundation 0x00000001f243595c -[NSRunLoop+ 31068 (NSRunLoop) runMode:beforeDate:] + 300
362 HelloMap 0x0000000100e70a30 -[WKWebView+ 592432 (SynchronousEvaluateJavaScript) stringByEvaluatingJavaScriptFromString:] + 424
363 HelloMap 0x0000000100e63178 -[PluginViewController execJS:] + 536952 (PluginViewController.m:56)
364 HelloMap 0x0000000100dfe358 -[PluginMapViewController triggerMapEvent:] + 123736 (PluginMapViewController.m:513)
365 HelloMap 0x0000000100dfcd40 -[PluginMapViewController mapView:didChangeCameraPosition:] + 118080 (PluginMapViewController.m:0)
366 CoreFoundation 0x00000001f1ae2800 __invoking___ + 144
367 CoreFoundation 0x00000001f19c43c0 -[NSInvocation invoke] + 292
368 CoreFoundation 0x00000001f19c4ff4 -[NSInvocation invokeWithTarget:] + 60
369 HelloMap 0x0000000100f44018 -[GMSDelegateForward forwardInvocation:] + 100
370 CoreFoundation 0x00000001f1ae06c4 ___forwarding___ + 636
371 CoreFoundation 0x00000001f1ae265c _CF_forwarding_prep_0 + 92
372 HelloMap 0x0000000100f4fca0 -[GMSMapView updateWithCamera:] + 176
373 Foundation 0x00000001f2562690 __NSThreadPerformPerform + 336
374 CoreFoundation 0x00000001f1a6cf1c __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 24
375 CoreFoundation 0x00000001f1a6ce9c __CFRunLoopDoSource0 + 88
376 CoreFoundation 0x00000001f1a6c7d4 __CFRunLoopDoSources0 + 256
377 CoreFoundation 0x00000001f1a676c0 __CFRunLoopRun + 1004
378 CoreFoundation 0x00000001f1a66fb4 CFRunLoopRunSpecific + 436
379 Foundation 0x00000001f243595c -[NSRunLoop+ 31068 (NSRunLoop) runMode:beforeDate:] + 300
380 HelloMap 0x0000000100e70a30 -[WKWebView+ 592432 (SynchronousEvaluateJavaScript) stringByEvaluatingJavaScriptFromString:] + 424
381 HelloMap 0x0000000100e63178 -[PluginViewController execJS:] + 536952 (PluginViewController.m:56)
382 HelloMap 0x0000000100dfe358 -[PluginMapViewController triggerMapEvent:] + 123736 (PluginMapViewController.m:513)
383 HelloMap 0x0000000100dfcd40 -[PluginMapViewController mapView:didChangeCameraPosition:] + 118080 (PluginMapViewController.m:0)
384 CoreFoundation 0x00000001f1ae2800 __invoking___ + 144
385 CoreFoundation 0x00000001f19c43c0 -[NSInvocation invoke] + 292
386 CoreFoundation 0x00000001f19c4ff4 -[NSInvocation invokeWithTarget:] + 60
387 HelloMap 0x0000000100f44018 -[GMSDelegateForward forwardInvocation:] + 100
388 CoreFoundation 0x00000001f1ae06c4 ___forwarding___ + 636
389 CoreFoundation 0x00000001f1ae265c _CF_forwarding_prep_0 + 92
390 HelloMap 0x0000000100f4fca0 -[GMSMapView updateWithCamera:] + 176
391 Foundation 0x00000001f2562690 __NSThreadPerformPerform + 336
392 CoreFoundation 0x00000001f1a6cf1c __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 24
393 CoreFoundation 0x00000001f1a6ce9c __CFRunLoopDoSource0 + 88
394 CoreFoundation 0x00000001f1a6c7d4 __CFRunLoopDoSources0 + 256
395 CoreFoundation 0x00000001f1a676c0 __CFRunLoopRun + 1004
396 CoreFoundation 0x00000001f1a66fb4 CFRunLoopRunSpecific + 436
397 Foundation 0x00000001f243595c -[NSRunLoop+ 31068 (NSRunLoop) runMode:beforeDate:] + 300
398 HelloMap 0x0000000100e70a30 -[WKWebView+ 592432 (SynchronousEvaluateJavaScript) stringByEvaluatingJavaScriptFromString:] + 424
399 HelloMap 0x0000000100e63178 -[PluginViewController execJS:] + 536952 (PluginViewController.m:56)
400 HelloMap 0x0000000100dfe358 -[PluginMapViewController triggerMapEvent:] + 123736 (PluginMapViewController.m:513)
401 HelloMap 0x0000000100dfcd40 -[PluginMapViewController mapView:didChangeCameraPosition:] + 118080 (PluginMapViewController.m:0)
402 CoreFoundation 0x00000001f1ae2800 __invoking___ + 144
403 CoreFoundation 0x00000001f19c43c0 -[NSInvocation invoke] + 292
404 CoreFoundation 0x00000001f19c4ff4 -[NSInvocation invokeWithTarget:] + 60
405 HelloMap 0x0000000100f44018 -[GMSDelegateForward forwardInvocation:] + 100
406 CoreFoundation 0x00000001f1ae06c4 ___forwarding___ + 636
407 CoreFoundation 0x00000001f1ae265c _CF_forwarding_prep_0 + 92
408 HelloMap 0x0000000100f4fca0 -[GMSMapView updateWithCamera:] + 176
409 Foundation 0x00000001f2562690 __NSThreadPerformPerform + 336
410 CoreFoundation 0x00000001f1a6cf1c __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 24
411 CoreFoundation 0x00000001f1a6ce9c __CFRunLoopDoSource0 + 88
412 CoreFoundation 0x00000001f1a6c7d4 __CFRunLoopDoSources0 + 256
413 CoreFoundation 0x00000001f1a676c0 __CFRunLoopRun + 1004
414 CoreFoundation 0x00000001f1a66fb4 CFRunLoopRunSpecific + 436
415 Foundation 0x00000001f243595c -[NSRunLoop+ 31068 (NSRunLoop) runMode:beforeDate:] + 300
416 HelloMap 0x0000000100e70a30 -[WKWebView+ 592432 (SynchronousEvaluateJavaScript) stringByEvaluatingJavaScriptFromString:] + 424
417 HelloMap 0x0000000100e63178 -[PluginViewController execJS:] + 536952 (PluginViewController.m:56)
418 HelloMap 0x0000000100dfe358 -[PluginMapViewController triggerMapEvent:] + 123736 (PluginMapViewController.m:513)
419 HelloMap 0x0000000100dfcd40 -[PluginMapViewController mapView:didChangeCameraPosition:] + 118080 (PluginMapViewController.m:0)
420 CoreFoundation 0x00000001f1ae2800 __invoking___ + 144
421 CoreFoundation 0x00000001f19c43c0 -[NSInvocation invoke] + 292
422 CoreFoundation 0x00000001f19c4ff4 -[NSInvocation invokeWithTarget:] + 60
423 HelloMap 0x0000000100f44018 -[GMSDelegateForward forwardInvocation:] + 100
424 CoreFoundation 0x00000001f1ae06c4 ___forwarding___ + 636
425 CoreFoundation 0x00000001f1ae265c _CF_forwarding_prep_0 + 92
426 HelloMap 0x0000000100f4fca0 -[GMSMapView updateWithCamera:] + 176
427 Foundation 0x00000001f2562690 __NSThreadPerformPerform + 336
428 CoreFoundation 0x00000001f1a6cf1c __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 24
429 CoreFoundation 0x00000001f1a6ce9c __CFRunLoopDoSource0 + 88
430 CoreFoundation 0x00000001f1a6c7d4 __CFRunLoopDoSources0 + 256
431 CoreFoundation 0x00000001f1a676c0 __CFRunLoopRun + 1004
432 CoreFoundation 0x00000001f1a66fb4 CFRunLoopRunSpecific + 436
433 Foundation 0x00000001f243595c -[NSRunLoop+ 31068 (NSRunLoop) runMode:beforeDate:] + 300
434 HelloMap 0x0000000100e70a30 -[WKWebView+ 592432 (SynchronousEvaluateJavaScript) stringByEvaluatingJavaScriptFromString:] + 424
435 HelloMap 0x0000000100e63178 -[PluginViewController execJS:] + 536952 (PluginViewController.m:56)
436 HelloMap 0x0000000100dfe358 -[PluginMapViewController triggerMapEvent:] + 123736 (PluginMapViewController.m:513)
437 HelloMap 0x0000000100dfcd40 -[PluginMapViewController mapView:didChangeCameraPosition:] + 118080 (PluginMapViewController.m:0)
438 CoreFoundation 0x00000001f1ae2800 __invoking___ + 144
439 CoreFoundation 0x00000001f19c43c0 -[NSInvocation invoke] + 292
440 CoreFoundation 0x00000001f19c4ff4 -[NSInvocation invokeWithTarget:] + 60
441 HelloMap 0x0000000100f44018 -[GMSDelegateForward forwardInvocation:] + 100
442 CoreFoundation 0x00000001f1ae06c4 ___forwarding___ + 636
443 CoreFoundation 0x00000001f1ae265c _CF_forwarding_prep_0 + 92
444 HelloMap 0x0000000100f4fca0 -[GMSMapView updateWithCamera:] + 176
445 Foundation 0x00000001f2562690 __NSThreadPerformPerform + 336
446 CoreFoundation 0x00000001f1a6cf1c __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 24
447 CoreFoundation 0x00000001f1a6ce9c __CFRunLoopDoSource0 + 88
448 CoreFoundation 0x00000001f1a6c7d4 __CFRunLoopDoSources0 + 256
449 CoreFoundation 0x00000001f1a676c0 __CFRunLoopRun + 1004
450 CoreFoundation 0x00000001f1a66fb4 CFRunLoopRunSpecific + 436
451 Foundation 0x00000001f243595c -[NSRunLoop+ 31068 (NSRunLoop) runMode:beforeDate:] + 300
452 HelloMap 0x0000000100e70a30 -[WKWebView+ 592432 (SynchronousEvaluateJavaScript) stringByEvaluatingJavaScriptFromString:] + 424
453 HelloMap 0x0000000100e63178 -[PluginViewController execJS:] + 536952 (PluginViewController.m:56)
454 HelloMap 0x0000000100dfe358 -[PluginMapViewController triggerMapEvent:] + 123736 (PluginMapViewController.m:513)
455 HelloMap 0x0000000100dfcd40 -[PluginMapViewController mapView:didChangeCameraPosition:] + 118080 (PluginMapViewController.m:0)
456 CoreFoundation 0x00000001f1ae2800 __invoking___ + 144
457 CoreFoundation 0x00000001f19c43c0 -[NSInvocation invoke] + 292
458 CoreFoundation 0x00000001f19c4ff4 -[NSInvocation invokeWithTarget:] + 60
459 HelloMap 0x0000000100f44018 -[GMSDelegateForward forwardInvocation:] + 100
460 CoreFoundation 0x00000001f1ae06c4 ___forwarding___ + 636
461 CoreFoundation 0x00000001f1ae265c _CF_forwarding_prep_0 + 92
462 HelloMap 0x0000000100f4fca0 -[GMSMapView updateWithCamera:] + 176
463 Foundation 0x00000001f2562690 __NSThreadPerformPerform + 336
464 CoreFoundation 0x00000001f1a6cf1c __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 24
465 CoreFoundation 0x00000001f1a6ce9c __CFRunLoopDoSource0 + 88
466 CoreFoundation 0x00000001f1a6c7d4 __CFRunLoopDoSources0 + 256
467 CoreFoundation 0x00000001f1a676c0 __CFRunLoopRun + 1004
468 CoreFoundation 0x00000001f1a66fb4 CFRunLoopRunSpecific + 436
469 Foundation 0x00000001f243595c -[NSRunLoop+ 31068 (NSRunLoop) runMode:beforeDate:] + 300
470 HelloMap 0x0000000100e70a30 -[WKWebView+ 592432 (SynchronousEvaluateJavaScript) stringByEvaluatingJavaScriptFromString:] + 424
471 HelloMap 0x0000000100e63178 -[PluginViewController execJS:] + 536952 (PluginViewController.m:56)
472 HelloMap 0x0000000100dfe358 -[PluginMapViewController triggerMapEvent:] + 123736 (PluginMapViewController.m:513)
473 HelloMap 0x0000000100dfcd40 -[PluginMapViewController mapView:didChangeCameraPosition:] + 118080 (PluginMapViewController.m:0)
474 CoreFoundation 0x00000001f1ae2800 __invoking___ + 144
475 CoreFoundation 0x00000001f19c43c0 -[NSInvocation invoke] + 292
476 CoreFoundation 0x00000001f19c4ff4 -[NSInvocation invokeWithTarget:] + 60
477 HelloMap 0x0000000100f44018 -[GMSDelegateForward forwardInvocation:] + 100
478 CoreFoundation 0x00000001f1ae06c4 ___forwarding___ + 636
479 CoreFoundation 0x00000001f1ae265c _CF_forwarding_prep_0 + 92
480 HelloMap 0x0000000100f4fca0 -[GMSMapView updateWithCamera:] + 176
481 Foundation 0x00000001f2562690 __NSThreadPerformPerform + 336
482 CoreFoundation 0x00000001f1a6cf1c __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 24
483 CoreFoundation 0x00000001f1a6ce9c __CFRunLoopDoSource0 + 88
484 CoreFoundation 0x00000001f1a6c7d4 __CFRunLoopDoSources0 + 256
485 CoreFoundation 0x00000001f1a676c0 __CFRunLoopRun + 1004
486 CoreFoundation 0x00000001f1a66fb4 CFRunLoopRunSpecific + 436
487 Foundation 0x00000001f243595c -[NSRunLoop+ 31068 (NSRunLoop) runMode:beforeDate:] + 300
488 HelloMap 0x0000000100e70a30 -[WKWebView+ 592432 (SynchronousEvaluateJavaScript) stringByEvaluatingJavaScriptFromString:] + 424
489 HelloMap 0x0000000100e63178 -[PluginViewController execJS:] + 536952 (PluginViewController.m:56)
490 HelloMap 0x0000000100dfe358 -[PluginMapViewController triggerMapEvent:] + 123736 (PluginMapViewController.m:513)
491 HelloMap 0x0000000100dfcd40 -[PluginMapViewController mapView:didChangeCameraPosition:] + 118080 (PluginMapViewController.m:0)
492 CoreFoundation 0x00000001f1ae2800 __invoking___ + 144
493 CoreFoundation 0x00000001f19c43c0 -[NSInvocation invoke] + 292
494 CoreFoundation 0x00000001f19c4ff4 -[NSInvocation invokeWithTarget:] + 60
495 HelloMap 0x0000000100f44018 -[GMSDelegateForward forwardInvocation:] + 100
496 CoreFoundation 0x00000001f1ae06c4 ___forwarding___ + 636
497 CoreFoundation 0x00000001f1ae265c _CF_forwarding_prep_0 + 92
498 HelloMap 0x0000000100f4fca0 -[GMSMapView updateWithCamera:] + 176
499 Foundation 0x00000001f2562690 __NSThreadPerformPerform + 336
500 CoreFoundation 0x00000001f1a6cf1c __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 24
501 CoreFoundation 0x00000001f1a6ce9c __CFRunLoopDoSource0 + 88
502 CoreFoundation 0x00000001f1a6c7d4 __CFRunLoopDoSources0 + 256
503 CoreFoundation 0x00000001f1a676c0 __CFRunLoopRun + 1004
504 CoreFoundation 0x00000001f1a66fb4 CFRunLoopRunSpecific + 436
505 Foundation 0x00000001f243595c -[NSRunLoop+ 31068 (NSRunLoop) runMode:beforeDate:] + 300
506 HelloMap 0x0000000100e70a30 -[WKWebView+ 592432 (SynchronousEvaluateJavaScript) stringByEvaluatingJavaScriptFromString:] + 424
507 HelloMap 0x0000000100e63178 -[PluginViewController execJS:] + 536952 (PluginViewController.m:56)
508 HelloMap 0x0000000100dfe358 -[PluginMapViewController triggerMapEvent:] + 123736 (PluginMapViewController.m:513)
509 HelloMap 0x0000000100dfcd40 -[PluginMapViewController mapView:didChangeCameraPosition:] + 118080 (PluginMapViewController.m:0)
510 CoreFoundation 0x00000001f1ae2800 __invoking___ + 144
Thread 1 name: com.apple.uikit.eventfetch-thread
Thread 1:
0 libsystem_kernel.dylib 0x00000001f166c0f4 mach_msg_trap + 8
1 libsystem_kernel.dylib 0x00000001f166b5a0 mach_msg + 72
2 CoreFoundation 0x00000001f1a6c914 __CFRunLoopServiceMachPort + 236
3 CoreFoundation 0x00000001f1a67824 __CFRunLoopRun + 1360
4 CoreFoundation 0x00000001f1a66fb4 CFRunLoopRunSpecific + 436
5 Foundation 0x00000001f243595c -[NSRunLoop+ 31068 (NSRunLoop) runMode:beforeDate:] + 300
6 Foundation 0x00000001f24357ec -[NSRunLoop+ 30700 (NSRunLoop) runUntilDate:] + 96
7 UIKitCore 0x000000021e3ae754 -[UIEventFetcher threadMain] + 136
8 Foundation 0x00000001f25624a0 __NSThread__start__ + 984
9 libsystem_pthread.dylib 0x00000001f16f92c0 _pthread_body + 128
10 libsystem_pthread.dylib 0x00000001f16f9220 _pthread_start + 44
11 libsystem_pthread.dylib 0x00000001f16fccdc thread_start + 4
Thread 2:
0 libsystem_pthread.dylib 0x00000001f16fccd0 start_wqthread + 0
Thread 3 name: JavaScriptCore bmalloc scavenger
Thread 3:
0 libsystem_kernel.dylib 0x00000001f1676ee4 __psynch_cvwait + 8
1 libsystem_pthread.dylib 0x00000001f16f1cf8 _pthread_cond_wait$VARIANT$mp + 636
2 libc++.1.dylib 0x00000001f0c4d128 std::__1::condition_variable::__do_timed_wait+ 33064 (std::__1::unique_lock<std::__1::mutex>&, std::__1::chrono::time_point<std::__1::chrono::system_clock, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000000000l> > >) + 96
3 JavaScriptCore 0x00000001f8d01304 std::__1::cv_status std::__1::condition_variable::wait_until<std::__1::chrono::steady_clock, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000000000l> > >+ 586500 (std::__1::unique_lock<std::__1::mutex>&, std::__1::chrono::time_point<std::__1::chrono::steady_clock, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000000000l> > > const&) + 124
4 JavaScriptCore 0x00000001f8d011b4 std::__1::cv_status std::__1::condition_variable_any::wait_until<std::__1::unique_lock<bmalloc::Mutex>, std::__1::chrono::steady_clock, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000000000l> > >+ 586164 (std::__1::unique_lock<bmalloc::Mutex>&, std::__1::chrono::time_point<std::__1::chrono::steady_clock, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000000000l> > > const&) + 116
5 JavaScriptCore 0x00000001f8cffe4c bmalloc::Scavenger::threadRunLoop+ 581196 () + 296
6 JavaScriptCore 0x00000001f8cff54c bmalloc::Scavenger::Scavenger+ 578892 (std::__1::lock_guard<bmalloc::Mutex>&) + 0
7 JavaScriptCore 0x00000001f8d00f8c std::__1::__thread_specific_ptr<std::__1::__thread_struct>::set_pointer+ 585612 (std::__1::__thread_struct*) + 0
8 libsystem_pthread.dylib 0x00000001f16f92c0 _pthread_body + 128
9 libsystem_pthread.dylib 0x00000001f16f9220 _pthread_start + 44
10 libsystem_pthread.dylib 0x00000001f16fccdc thread_start + 4
Thread 4:
0 libsystem_pthread.dylib 0x00000001f16fccd0 start_wqthread + 0
Thread 5 name: com.google.Maps.LabelingBehavior
Thread 5:
0 libsystem_kernel.dylib 0x00000001f166c0f4 mach_msg_trap + 8
1 libsystem_kernel.dylib 0x00000001f166b5a0 mach_msg + 72
2 CoreFoundation 0x00000001f1a6c914 __CFRunLoopServiceMachPort + 236
3 CoreFoundation 0x00000001f1a67824 __CFRunLoopRun + 1360
4 CoreFoundation 0x00000001f1a66fb4 CFRunLoopRunSpecific + 436
5 Foundation 0x00000001f243595c -[NSRunLoop+ 31068 (NSRunLoop) runMode:beforeDate:] + 300
6 HelloMap 0x00000001011a8fd0 -[GMSx_GTMSimpleWorkerThread main] + 184
7 Foundation 0x00000001f25624a0 __NSThread__start__ + 984
8 libsystem_pthread.dylib 0x00000001f16f92c0 _pthread_body + 128
9 libsystem_pthread.dylib 0x00000001f16f9220 _pthread_start + 44
10 libsystem_pthread.dylib 0x00000001f16fccdc thread_start + 4
Thread 6 name: com.apple.NSURLConnectionLoader
Thread 6:
0 libsystem_kernel.dylib 0x00000001f166c0f4 mach_msg_trap + 8
1 libsystem_kernel.dylib 0x00000001f166b5a0 mach_msg + 72
2 CoreFoundation 0x00000001f1a6c914 __CFRunLoopServiceMachPort + 236
3 CoreFoundation 0x00000001f1a67824 __CFRunLoopRun + 1360
4 CoreFoundation 0x00000001f1a66fb4 CFRunLoopRunSpecific + 436
5 CFNetwork 0x00000001f208174c -[__CoreSchedulingSetRunnable runForever] + 216
6 Foundation 0x00000001f25624a0 __NSThread__start__ + 984
7 libsystem_pthread.dylib 0x00000001f16f92c0 _pthread_body + 128
8 libsystem_pthread.dylib 0x00000001f16f9220 _pthread_start + 44
9 libsystem_pthread.dylib 0x00000001f16fccdc thread_start + 4
Thread 7:
0 libsystem_pthread.dylib 0x00000001f16fccd0 start_wqthread + 0
Thread 8:
0 libsystem_pthread.dylib 0x00000001f16fccd0 start_wqthread + 0
Thread 9:
0 libsystem_pthread.dylib 0x00000001f16fccd0 start_wqthread + 0
Thread 0 crashed with ARM Thread State (64-bit):
x0: 0x0000000281a84d80 x1: 0x00000001f255ffa0 x2: 0x00000001f2560028 x3: 0x0000000000000000
x4: 0x0000000000000000 x5: 0x0000000000000000 x6: 0x0000000101446a40 x7: 0x0000000000000000
x8: 0x000000016ef253c8 x9: 0x0000000000000780 x10: 0x0000000000000200 x11: 0x0000000000000200
x12: 0x0000000000000048 x13: 0x0000000000000001 x14: 0x000000000000004f x15: 0x000000000000000b
x16: 0x00000000000007fb x17: 0x00000001f243515c x18: 0x0000000000000000 x19: 0x0000000000000000
x20: 0x0000000000000000 x21: 0x0000000101446a40 x22: 0x0000000000000000 x23: 0x0000000000000000
x24: 0x00000001f2560028 x25: 0x00000001f2560028 x26: 0x00000002801b2650 x27: 0x0000000228e4c000
x28: 0x0000000000000000 fp: 0x000000016ef25390 lr: 0x00000001f1a8b5bc
sp: 0x000000016ef23e20 pc: 0x00000001f1a87da4 cpsr: 0x00000000
Binary Images:
0x100de0000 - 0x101423fff HelloMap arm64 <de7078af985634b99507d85c29692505> /var/containers/Bundle/Application/63C6FBDE-0096-48C6-AD05-9255B5DB0BDB/HelloMap.app/HelloMap
0x1017e8000 - 0x10183ffff dyld arm64 <3049bf50a9b1318c8b2b34774de49438> /usr/lib/dyld
0x103304000 - 0x10330ffff libobjc-trampolines.dylib arm64 <065bd8006d513c358dc14e2a8ff1ba31> /usr/lib/libobjc-trampolines.dylib
0x1f0c43000 - 0x1f0c44fff libSystem.B.dylib arm64 <7334f9562e353bfebf99f16d2589464a> /usr/lib/libSystem.B.dylib
0x1f0c45000 - 0x1f0c9afff libc++.1.dylib arm64 <6a272068f00d37a984e331ba58e1c3c4> /usr/lib/libc++.1.dylib
0x1f0c9b000 - 0x1f0cadfff libc++abi.dylib arm64 <d4920e50788d3be6bccf8f550bc6d491> /usr/lib/libc++abi.dylib
0x1f0cae000 - 0x1f1435fff libobjc.A.dylib arm64 <1167a03d9f853f34a96fd96818ad77b5> /usr/lib/libobjc.A.dylib
0x1f1436000 - 0x1f143afff libcache.dylib arm64 <bd876f73c3ff39459113c6fa56d15e3d> /usr/lib/system/libcache.dylib
0x1f143b000 - 0x1f1446fff libcommonCrypto.dylib arm64 <b6d7765a17a93ff4a095ee57139d16c5> /usr/lib/system/libcommonCrypto.dylib
0x1f1447000 - 0x1f144bfff libcompiler_rt.dylib arm64 <644550d26c693e95affb4ce0b8c5c7a6> /usr/lib/system/libcompiler_rt.dylib
0x1f144c000 - 0x1f1454fff libcopyfile.dylib arm64 <b0e27f378641392a9db65b4b002b959f> /usr/lib/system/libcopyfile.dylib
0x1f1455000 - 0x1f14b8fff libcorecrypto.dylib arm64 <322648cea1933b92969887dee477d005> /usr/lib/system/libcorecrypto.dylib
0x1f14b9000 - 0x1f1528fff libdispatch.dylib arm64 <c3d9e9a5b56e3215aed59b6affc80d91> /usr/lib/system/libdispatch.dylib
0x1f1529000 - 0x1f1552fff libdyld.dylib arm64 <5e181e9004763f7ba24dc51d73effd19> /usr/lib/system/libdyld.dylib
0x1f1553000 - 0x1f1553fff liblaunch.dylib arm64 <3569886aaa6a3576ab9a34935c16b079> /usr/lib/system/liblaunch.dylib
0x1f1554000 - 0x1f1559fff libmacho.dylib arm64 <9ce10d14bcb43369b0e85c4480010a66> /usr/lib/system/libmacho.dylib
0x1f155a000 - 0x1f155bfff libremovefile.dylib arm64 <268d6d12fe1030d5ba4607c5c467566c> /usr/lib/system/libremovefile.dylib
0x1f155c000 - 0x1f1573fff libsystem_asl.dylib arm64 <d7a79215dca137388e9746226003b15b> /usr/lib/system/libsystem_asl.dylib
0x1f1574000 - 0x1f1574fff libsystem_blocks.dylib arm64 <a1405ce6ae42332e9a2e06d75041f6fe> /usr/lib/system/libsystem_blocks.dylib
0x1f1575000 - 0x1f15f6fff libsystem_c.dylib arm64 <fc4c83bb09133b92919b277e2b0d0ba7> /usr/lib/system/libsystem_c.dylib
0x1f15f7000 - 0x1f15fbfff libsystem_configuration.dylib arm64 <218dc6f3496a3e37bcd497e824e727dc> /usr/lib/system/libsystem_configuration.dylib
0x1f15fc000 - 0x1f1603fff libsystem_containermanager.dylib arm64 <75002eacacfa3fbfbd6fb8699be042ee> /usr/lib/system/libsystem_containermanager.dylib
0x1f1604000 - 0x1f1605fff libsystem_coreservices.dylib arm64 <78c2250959bd387994b64a9e75464f58> /usr/lib/system/libsystem_coreservices.dylib
0x1f1606000 - 0x1f160cfff libsystem_darwin.dylib arm64 <7e76bd3057d7373696850709fc7af50c> /usr/lib/system/libsystem_darwin.dylib
0x1f160d000 - 0x1f1613fff libsystem_dnssd.dylib arm64 <d0e49be195bc3a07b2383c56dd2945ef> /usr/lib/system/libsystem_dnssd.dylib
0x1f1614000 - 0x1f1653fff libsystem_info.dylib arm64 <01aa4acd261b3fd8acf15150220161c9> /usr/lib/system/libsystem_info.dylib
0x1f1654000 - 0x1f167efff libsystem_kernel.dylib arm64 <451947374fc437afa258be0e4593163a> /usr/lib/system/libsystem_kernel.dylib
0x1f167f000 - 0x1f16acfff libsystem_m.dylib arm64 <e079abc4989b343b9fca3f43540cca7a> /usr/lib/system/libsystem_m.dylib
0x1f16ad000 - 0x1f16cffff libsystem_malloc.dylib arm64 <8a218797621a36c6843dd862510c1d5c> /usr/lib/system/libsystem_malloc.dylib
0x1f16d0000 - 0x1f16dbfff libsystem_networkextension.dylib arm64 <0193b597e65e3996890277ebd82cfc4d> /usr/lib/system/libsystem_networkextension.dylib
0x1f16dc000 - 0x1f16e2fff libsystem_notify.dylib arm64 <b701e7f441c4356b88dc2ec865084c5f> /usr/lib/system/libsystem_notify.dylib
0x1f16e3000 - 0x1f16edfff libsystem_platform.dylib arm64 <c580957483993c36bae1caedb9184a78> /usr/lib/system/libsystem_platform.dylib
0x1f16ee000 - 0x1f16fefff libsystem_pthread.dylib arm64 <7dc8076100ab3c07ba487f82aae5dbe4> /usr/lib/system/libsystem_pthread.dylib
0x1f16ff000 - 0x1f1701fff libsystem_sandbox.dylib arm64 <fb9e8e7d1c9334d8a5b22b5212a324d1> /usr/lib/system/libsystem_sandbox.dylib
0x1f1702000 - 0x1f1709fff libsystem_symptoms.dylib arm64 <20d9b3659cea33c7956aa8545dee52a2> /usr/lib/system/libsystem_symptoms.dylib
0x1f170a000 - 0x1f171ffff libsystem_trace.dylib arm64 <9ac8424153f9310dbf99cfe4a6487434> /usr/lib/system/libsystem_trace.dylib
0x1f1720000 - 0x1f1725fff libunwind.dylib arm64 <df28d357cdc737d7ace356c0de492da3> /usr/lib/system/libunwind.dylib
0x1f1726000 - 0x1f1753fff libxpc.dylib arm64 <31e6baa6561f38e486d41d3b7527682b> /usr/lib/system/libxpc.dylib
0x1f1754000 - 0x1f19affff libicucore.A.dylib arm64 <bcee3941878a3c96b7156502bfc4a15a> /usr/lib/libicucore.A.dylib
0x1f19b0000 - 0x1f19c1fff libz.1.dylib arm64 <206dc0d369803553ba987d4938299866> /usr/lib/libz.1.dylib
0x1f19c2000 - 0x1f1d20fff CoreFoundation arm64 <b40b9bb34f67381eb1b08ea54a2b16ef> /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
0x1f1d21000 - 0x1f1d31fff libbsm.0.dylib arm64 <97ae12002bcc30f59cd9f56bb48744a2> /usr/lib/libbsm.0.dylib
0x1f1d32000 - 0x1f1d32fff libenergytrace.dylib arm64 <21032416108a3e078b08e500bf8feec5> /usr/lib/libenergytrace.dylib
0x1f1d33000 - 0x1f1dc1fff IOKit arm64 <26df71f60f253aa5bdeb374f1f70396c> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x1f1dc2000 - 0x1f1ea9fff libxml2.2.dylib arm64 <09c6266beeb235038cc627672de28a1e> /usr/lib/libxml2.2.dylib
0x1f1eaa000 - 0x1f1eb7fff libbz2.1.0.dylib arm64 <ab9eb1272eee3d658a66bb3eddf951de> /usr/lib/libbz2.1.0.dylib
0x1f1eb8000 - 0x1f1ed0fff liblzma.5.dylib arm64 <29538dbe21cd34ac8328b0f708ac58ac> /usr/lib/liblzma.5.dylib
0x1f1ed1000 - 0x1f204afff libsqlite3.dylib arm64 <12c83eaeddbd3ef5965272236da869d5> /usr/lib/libsqlite3.dylib
0x1f204b000 - 0x1f207ffff libMobileGestalt.dylib arm64 <af3a9ec8e5dc3a7ea34974cc40f1769c> /usr/lib/libMobileGestalt.dylib
0x1f2080000 - 0x1f242dfff CFNetwork arm64 <d160964071a233529369006ee750fa0d> /System/Library/Frameworks/CFNetwork.framework/CFNetwork
0x1f242e000 - 0x1f2718fff Foundation arm64 <5d56f47548de3df0955debabe2a63dcf> /System/Library/Frameworks/Foundation.framework/Foundation
0x1f2719000 - 0x1f2827fff Security arm64 <549552bf5b7e3961918dd9a2b2f84b54> /System/Library/Frameworks/Security.framework/Security
0x1f2828000 - 0x1f2891fff SystemConfiguration arm64 <0fc44d7afb97324b898a3880b94e27b5> /System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration
0x1f2892000 - 0x1f28c4fff libCRFSuite.dylib arm64 <e0b9971a4a58372c917e172262a230da> /usr/lib/libCRFSuite.dylib
0x1f28c5000 - 0x1f28dbfff libapple_nghttp2.dylib arm64 <c878057f1a743813aad7651fcc833a1a> /usr/lib/libapple_nghttp2.dylib
0x1f28dc000 - 0x1f2905fff libarchive.2.dylib arm64 <65ec51aef94b3a1987332731a4d7c752> /usr/lib/libarchive.2.dylib
0x1f2906000 - 0x1f29cdfff libboringssl.dylib arm64 <c0244ebc0c8234cc8dbb456c4ab6a866> /usr/lib/libboringssl.dylib
0x1f29ce000 - 0x1f29e4fff libcoretls.dylib arm64 <6b1e9bffa372352b878c7b1744ac4905> /usr/lib/libcoretls.dylib
0x1f29e5000 - 0x1f29e6fff libcoretls_cfhelpers.dylib arm64 <59609c5520313c6794b8930d3e648ecc> /usr/lib/libcoretls_cfhelpers.dylib
0x1f29e7000 - 0x1f29e8fff liblangid.dylib arm64 <0169f9e003833f25b07aeaed83704b74> /usr/lib/liblangid.dylib
0x1f29e9000 - 0x1f2d59fff libnetwork.dylib arm64 <8a707f96087e36b8a1f7be4092e803d9> /usr/lib/libnetwork.dylib
0x1f2d5a000 - 0x1f2d8dfff libpcap.A.dylib arm64 <4fe6f38ffed23388a4621898ddb8be04> /usr/lib/libpcap.A.dylib
0x1f2d8e000 - 0x1f2debfff libusrtcp.dylib arm64 <8817d9115b5e3a61bb6030cd9b213b1c> /usr/lib/libusrtcp.dylib
0x1f2dec000 - 0x1f2df8fff IOSurface arm64 <26ea7fabea43332792609476fbbff95b> /System/Library/Frameworks/IOSurface.framework/IOSurface
0x1f2df9000 - 0x1f2eabfff libBLAS.dylib arm64 <5f5dc29a267c3ce089501fcdf56fa585> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib
0x1f2eac000 - 0x1f31c8fff libLAPACK.dylib arm64 <78d98e587d763e1d8c0e1694bf4eaf35> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib
0x1f31c9000 - 0x1f3437fff vImage arm64 <78052afe98c83c3ba2101bd84c4c7d03> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage
0x1f3438000 - 0x1f3449fff libSparseBLAS.dylib arm64 <19f40e7928d33f37b2954c0c0736392e> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparseBLAS.dylib
0x1f344a000 - 0x1f34a4fff libvMisc.dylib arm64 <e2588d2c24b2325daa45167a1d52978b> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib
0x1f34a5000 - 0x1f34d3fff libBNNS.dylib arm64 <575133594b483c3db8e58473a9477e51> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBNNS.dylib
0x1f34d4000 - 0x1f34e8fff libLinearAlgebra.dylib arm64 <d3c7b6714b533000966bf9b8fb2ea578> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLinearAlgebra.dylib
0x1f34e9000 - 0x1f34edfff libQuadrature.dylib arm64 <c3ba9791c2f13a139a32d3476406f371> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libQuadrature.dylib
0x1f34ee000 - 0x1f355cfff libSparse.dylib arm64 <998dcddd9c0a396d946e3bcb56ae9fa4> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparse.dylib
0x1f355d000 - 0x1f35edfff libvDSP.dylib arm64 <91bc58b57f7d367d9b94a5a8db4f9e6a> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib
0x1f35ee000 - 0x1f35eefff vecLib arm64 <3764dc7f15ff3782b899b8b66578b591> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib
0x1f35ef000 - 0x1f35effff Accelerate arm64 <89ca8b5b6a31367685d10baca08c6927> /System/Library/Frameworks/Accelerate.framework/Accelerate
0x1f35f0000 - 0x1f3607fff libcompression.dylib arm64 <b3be8cb0e428337db977e92f8b64a999> /usr/lib/libcompression.dylib
0x1f3608000 - 0x1f3bacfff CoreGraphics arm64 <f25c45eceaeb36a9a2ee82bfbff7adc7> /System/Library/Frameworks/CoreGraphics.framework/CoreGraphics
0x1f3bad000 - 0x1f3bb2fff IOAccelerator arm64 <f38e5eb385c332c6b05d8f591d41c000> /System/Library/PrivateFrameworks/IOAccelerator.framework/IOAccelerator
0x1f3bb3000 - 0x1f3bb8fff libCoreFSCache.dylib arm64 <85e629c6c4e73b6693a297ef7d1d852d> /System/Library/Frameworks/OpenGLES.framework/libCoreFSCache.dylib
0x1f3bb9000 - 0x1f3c5dfff Metal arm64 <2f3a24f09c7032d59e5181642fed20f2> /System/Library/Frameworks/Metal.framework/Metal
0x1f3c5e000 - 0x1f3c70fff GraphicsServices arm64 <5dc71f1e2db03637b0517c9574dd609e> /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices
0x1f3c71000 - 0x1f3c71fff MobileCoreServices arm64 <106d91760a3834338e483f4c208c8e16> /System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices
0x1f3c72000 - 0x1f3c74fff IOSurfaceAccelerator arm64 <3a58f6c1af6b3fec8df682bd9608a3cd> /System/Library/PrivateFrameworks/IOSurfaceAccelerator.framework/IOSurfaceAccelerator
0x1f3c75000 - 0x1f3cb7fff AppleJPEG arm64 <c4ff6005434534dcaae115264c7b9bf5> /System/Library/PrivateFrameworks/AppleJPEG.framework/AppleJPEG
0x1f3cb8000 - 0x1f4254fff ImageIO arm64 <79a0ce8581283b619226e5e088522dcf> /System/Library/Frameworks/ImageIO.framework/ImageIO
0x1f4255000 - 0x1f42c3fff BaseBoard arm64 <badf69222b6b33d6a5860e8eaad4c96b> /System/Library/PrivateFrameworks/BaseBoard.framework/BaseBoard
0x1f42c4000 - 0x1f42d9fff AssertionServices arm64 <0168c4ca3f5b3fa0b3d265ac72c61105> /System/Library/PrivateFrameworks/AssertionServices.framework/AssertionServices
0x1f42da000 - 0x1f42e2fff CorePhoneNumbers arm64 <b742b09e53d13fc0907dfe0dfc809860> /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/CorePhoneNumbers
0x1f42e3000 - 0x1f4326fff AppSupport arm64 <b600f93045b83de4a90273eceff10460> /System/Library/PrivateFrameworks/AppSupport.framework/AppSupport
0x1f4327000 - 0x1f433ffff CrashReporterSupport arm64 <af147e857db630f88bae47b476084948> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/CrashReporterSupport
0x1f4340000 - 0x1f4345fff AggregateDictionary arm64 <9d0819342e9839c485df24e5ac4bd33f> /System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary
0x1f4346000 - 0x1f43c1fff libTelephonyUtilDynamic.dylib arm64 <434b9743c7e6367ab83d589f87f30a94> /usr/lib/libTelephonyUtilDynamic.dylib
0x1f43c2000 - 0x1f43e0fff ProtocolBuffer arm64 <8b3396ec22843e69b43e959e35cfc899> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer
0x1f43e1000 - 0x1f4410fff MobileKeyBag arm64 <fadc4125d47f376eb07ff210d2ef93b8> /System/Library/PrivateFrameworks/MobileKeyBag.framework/MobileKeyBag
0x1f4411000 - 0x1f444bfff BackBoardServices arm64 <a473a297d27531b096eda139b1a2f311> /System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices
0x1f444c000 - 0x1f44aefff FrontBoardServices arm64 <4ee9cc7aee25390f8979b51873a9cfc8> /System/Library/PrivateFrameworks/FrontBoardServices.framework/FrontBoardServices
0x1f44af000 - 0x1f44f4fff SpringBoardServices arm64 <b2cb0e28d05a3f3eb51af08825956d14> /System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices
0x1f44f5000 - 0x1f4508fff PowerLog arm64 <76c8314f28f33bf1bf03c6740e630ba1> /System/Library/PrivateFrameworks/PowerLog.framework/PowerLog
0x1f4509000 - 0x1f4523fff CommonUtilities arm64 <5aee46a5ee843787badaeeded4921f29> /System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities
0x1f4524000 - 0x1f452ffff liblockdown.dylib arm64 <d3ca6a6e2d253541825fd95c67b93536> /usr/lib/liblockdown.dylib
0x1f4530000 - 0x1f4852fff CoreData arm64 <c2943249821a32a6aadd24f2c19d8110> /System/Library/Frameworks/CoreData.framework/CoreData
0x1f4853000 - 0x1f485afff TCC arm64 <0bf6f96fc35630d78f570de780afbfe1> /System/Library/PrivateFrameworks/TCC.framework/TCC
0x1f485b000 - 0x1f4862fff libcupolicy.dylib arm64 <784b482538eb3463b5b41990f73ad637> /usr/lib/libcupolicy.dylib
0x1f4863000 - 0x1f4936fff CoreTelephony arm64 <a903cd022d0b3d459dac8d7de3bcbf58> /System/Library/Frameworks/CoreTelephony.framework/CoreTelephony
0x1f4937000 - 0x1f498efff Accounts arm64 <c3eae3e92f9e3d0bb7566db5965bb8eb> /System/Library/Frameworks/Accounts.framework/Accounts
0x1f498f000 - 0x1f49b2fff AppleSauce arm64 <1041d29a89963b1292f9e6d1e2fca9ca> /System/Library/PrivateFrameworks/AppleSauce.framework/AppleSauce
0x1f49b3000 - 0x1f49bdfff DataMigration arm64 <7e7e6c0b4b8a3848aa39be2a253bbedf> /System/Library/PrivateFrameworks/DataMigration.framework/DataMigration
0x1f49be000 - 0x1f49c4fff Netrb arm64 <54b90ecfd7c93e2f8bb87e53c5f1d2bb> /System/Library/PrivateFrameworks/Netrb.framework/Netrb
0x1f49c5000 - 0x1f49f6fff PersistentConnection arm64 <0ab4107d070b3206b677a4d0772177cc> /System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection
0x1f49f7000 - 0x1f4a07fff libmis.dylib arm64 <d297888a7a3b3d6f8655ce89c54de06c> /usr/lib/libmis.dylib
0x1f4a08000 - 0x1f4b0dfff ManagedConfiguration arm64 <c8f976f051ff31ca8ae71d0851815090> /System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration
0x1f4b0e000 - 0x1f4b13fff libReverseProxyDevice.dylib arm64 <034e4becec3637049836b6f5c4206438> /usr/lib/libReverseProxyDevice.dylib
0x1f4b14000 - 0x1f4b26fff libamsupport.dylib arm64 <4f0fe9ba7ca231508bb33887e9fe4de0> /usr/lib/libamsupport.dylib
0x1f4b27000 - 0x1f4b2cfff libCoreVMClient.dylib arm64 <bdfd156fdbac3b29bd3b9edc444b3eb4> /System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib
0x1f4b2d000 - 0x1f4b2efff libCVMSPluginSupport.dylib arm64 <c0fc3e49d71b3163bf201bc108cc1a90> /System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib
0x1f4b2f000 - 0x1f4b32fff libutil.dylib arm64 <2c7f8b771c2a3e17b9886a1a23c1d8e6> /usr/lib/libutil.dylib
0x1f4b33000 - 0x1f4b70fff libGLImage.dylib arm64 <2ad83e8c080c357da6a2330acf3072ac> /System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib
0x1f4b71000 - 0x1f4beefff APFS arm64 <ad14f1dd819f3ec69672be6ea36d7cb1> /System/Library/PrivateFrameworks/APFS.framework/APFS
0x1f4bef000 - 0x1f4c20fff MediaKit arm64 <badad9be1cfc33c88995c641384b0ee5> /System/Library/PrivateFrameworks/MediaKit.framework/MediaKit
0x1f4c21000 - 0x1f4c3bfff libSERestoreInfo.dylib arm64 <04f883333cf831e4a41d9a52420e9ac4> /usr/lib/updaters/libSERestoreInfo.dylib
0x1f4c42000 - 0x1f4c7dfff DiskImages arm64 <47dfcedb4d943af58a8ef2f705d2e72e> /System/Library/PrivateFrameworks/DiskImages.framework/DiskImages
0x1f4c7e000 - 0x1f4c87fff libGFXShared.dylib arm64 <4ff1edf0a77838f18b219b35dfe083d5> /System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib
0x1f4c88000 - 0x1f4cd5fff libauthinstall.dylib arm64 <f6b951d33eae37efbb0f286e1d5b843b> /usr/lib/libauthinstall.dylib
0x1f4cd6000 - 0x1f4cdefff IOMobileFramebuffer arm64 <be858d7b2da33fd88f7b2b7e53bd5ad1> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/IOMobileFramebuffer
0x1f4cdf000 - 0x1f4ce9fff OpenGLES arm64 <9f8abef1a049321f9d57ca5cda4a2f00> /System/Library/Frameworks/OpenGLES.framework/OpenGLES
0x1f4cea000 - 0x1f4e0afff ColorSync arm64 <9e1bc6fa2b653b75a9a3b54a5556cbb4> /System/Library/PrivateFrameworks/ColorSync.framework/ColorSync
0x1f4e0b000 - 0x1f4e3afff CoreVideo arm64 <34ae98df7545385c927e737be5d7a522> /System/Library/Frameworks/CoreVideo.framework/CoreVideo
0x1f4e3b000 - 0x1f4e3cfff libCTGreenTeaLogger.dylib arm64 <c37cb5afb3763316b09a121faafd1f9f> /usr/lib/libCTGreenTeaLogger.dylib
0x1f4e3d000 - 0x1f4f8efff CoreAudio arm64 <d4b1d5f994c939e4b62644d63b354570> /System/Library/Frameworks/CoreAudio.framework/CoreAudio
0x1f4f8f000 - 0x1f4faefff CoreAnalytics arm64 <e546eb30c7ea3914ab1e27cafe7be4e7> /System/Library/PrivateFrameworks/CoreAnalytics.framework/CoreAnalytics
0x1f4faf000 - 0x1f4fb2fff UserFS arm64 <67b2206977d33d718428f764e22f1c1f> /System/Library/PrivateFrameworks/UserFS.framework/UserFS
0x1f4fb3000 - 0x1f5167fff CoreMedia arm64 <be71feb9453d3e359556f8059b2aff71> /System/Library/Frameworks/CoreMedia.framework/CoreMedia
0x1f5168000 - 0x1f517afff libprotobuf-lite.dylib arm64 <5a7d2aefbf0f3397a810de4052e6dec1> /usr/lib/libprotobuf-lite.dylib
0x1f517b000 - 0x1f51d8fff libprotobuf.dylib arm64 <1250be912c8230099d3ad358caae3138> /usr/lib/libprotobuf.dylib
0x1f51d9000 - 0x1f54f6fff libAWDSupportFramework.dylib arm64 <9a9d3540d2f33c86b9c48683e1ad17a6> /usr/lib/libAWDSupportFramework.dylib
0x1f54f7000 - 0x1f553cfff WirelessDiagnostics arm64 <d013da9df515350e908e98e7440094e8> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/WirelessDiagnostics
0x1f553d000 - 0x1f55fdfff VideoToolbox arm64 <56783e31309f39ffbed573f21c564afb> /System/Library/Frameworks/VideoToolbox.framework/VideoToolbox
0x1f55fe000 - 0x1f5702fff libFontParser.dylib arm64 <598fa684304938c59b619ec516296960> /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib
0x1f5703000 - 0x1f5703fff FontServices arm64 <118619dde6f031008a4c88b3e59fb602> /System/Library/PrivateFrameworks/FontServices.framework/FontServices
0x1f5704000 - 0x1f5865fff CoreText arm64 <1f2c7269a1c833179923ebc381ba2b74> /System/Library/Frameworks/CoreText.framework/CoreText
0x1f5866000 - 0x1f5874fff IntlPreferences arm64 <60dad887158631308fabef459231bc32> /System/Library/PrivateFrameworks/IntlPreferences.framework/IntlPreferences
0x1f5875000 - 0x1f587efff RTCReporting arm64 <627a5bfd20243637b88ef2de819615e7> /System/Library/PrivateFrameworks/RTCReporting.framework/RTCReporting
0x1f587f000 - 0x1f5930fff CoreBrightness arm64 <6a07d919568e30caa815a07a35c759b1> /System/Library/PrivateFrameworks/CoreBrightness.framework/CoreBrightness
0x1f5931000 - 0x1f593afff libAudioStatistics.dylib arm64 <0ee8779e8f46351ab5e2d1ff920527d3> /usr/lib/libAudioStatistics.dylib
0x1f593b000 - 0x1f5ed9fff AudioToolbox arm64 <de9300e2a2833438b1eeb0d1084d3f28> /System/Library/Frameworks/AudioToolbox.framework/AudioToolbox
0x1f5eda000 - 0x1f6113fff QuartzCore arm64 <dcc3316ad07f32faa3f377368ba2629d> /System/Library/Frameworks/QuartzCore.framework/QuartzCore
0x1f6114000 - 0x1f611efff MediaAccessibility arm64 <cc82138dbb093d219bd3a2718ab30a9e> /System/Library/Frameworks/MediaAccessibility.framework/MediaAccessibility
0x1f611f000 - 0x1f6211fff libiconv.2.dylib arm64 <56a508dc6e3132c38a3e58b1c7e272b9> /usr/lib/libiconv.2.dylib
0x1f6212000 - 0x1f622dfff NetworkStatistics arm64 <3c50de03a9a737b588f12853a14e96b1> /System/Library/PrivateFrameworks/NetworkStatistics.framework/NetworkStatistics
0x1f622e000 - 0x1f624cfff MPSCore arm64 <6a931631e0ac3c04bb516c0988308f4a> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/MPSCore
0x1f624d000 - 0x1f62c0fff MPSImage arm64 <b087e4ccc88633bb9ea72a488b9f4777> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/MPSImage
0x1f62c1000 - 0x1f62e5fff MPSMatrix arm64 <29df73ac8b283336a59f6bfea2a1e359> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/MPSMatrix
0x1f62e6000 - 0x1f62f4fff CoreAUC arm64 <d8391c59fa3430e9b3d3ffe25d5da657> /System/Library/PrivateFrameworks/CoreAUC.framework/CoreAUC
0x1f62f5000 - 0x1f6982fff MediaToolbox arm64 <e15b4a6a321e362a86e84326b38d5f27> /System/Library/Frameworks/MediaToolbox.framework/MediaToolbox
0x1f6983000 - 0x1f6aedfff MPSNeuralNetwork arm64 <755d418ed5c83ff399bc31e3d6332ea0> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/MPSNeuralNetwork
0x1f6aee000 - 0x1f6aeefff MetalPerformanceShaders arm64 <d1f20d7ab61634d5a8fbe8755f2040eb> /System/Library/Frameworks/MetalPerformanceShaders.framework/MetalPerformanceShaders
0x1f6aef000 - 0x1f6f01fff FaceCore arm64 <aab6e9fba0ab34598e0fdc6659f7da83> /System/Library/PrivateFrameworks/FaceCore.framework/FaceCore
0x1f6f02000 - 0x1f6f0ffff GraphVisualizer arm64 <2d52616bba7034d3b796e28dd3ac28dd> /System/Library/PrivateFrameworks/GraphVisualizer.framework/GraphVisualizer
0x1f6f10000 - 0x1f7134fff libFosl_dynamic.dylib arm64 <9a8eb9eab7bd3569888a0eec5e08e111> /usr/lib/libFosl_dynamic.dylib
0x1f7135000 - 0x1f73c9fff CoreImage arm64 <74c3a439c3ad3274a7749cb933c6e530> /System/Library/Frameworks/CoreImage.framework/CoreImage
0x1f73ca000 - 0x1f75ecfff CoreMotion arm64 <00ca957a89e136e883ebfb7a213a84f2> /System/Library/Frameworks/CoreMotion.framework/CoreMotion
0x1f75ed000 - 0x1f761bfff CoreBluetooth arm64 <cf7bc6b341a93f11aa2e9eafc5fdd343> /System/Library/Frameworks/CoreBluetooth.framework/CoreBluetooth
0x1f761c000 - 0x1f763dfff PlugInKit arm64 <eabcfbf1fa9e36bbb50c8b453f8d0e3c> /System/Library/PrivateFrameworks/PlugInKit.framework/PlugInKit
0x1f763e000 - 0x1f78cafff Celestial arm64 <c3118cd218673df498f3a24f0a62b9c9> /System/Library/PrivateFrameworks/Celestial.framework/Celestial
0x1f78cb000 - 0x1f794cfff Quagga arm64 <6d1eaf0f42e2362bae5bdaebad5b8aef> /System/Library/PrivateFrameworks/Quagga.framework/Quagga
0x1f794d000 - 0x1f7a43fff AVFAudio arm64 <943ab4d1d6363303ac591636a41af0e7> /System/Library/Frameworks/AVFoundation.framework/Frameworks/AVFAudio.framework/AVFAudio
0x1f7a44000 - 0x1f7c40fff AVFoundation arm64 <a81613f7b8c23340a6e66889b754dff2> /System/Library/Frameworks/AVFoundation.framework/AVFoundation
0x1f7c41000 - 0x1f7c5efff CacheDelete arm64 <dbcb92cf51b13e5d93cc7e4b39f3c5a7> /System/Library/PrivateFrameworks/CacheDelete.framework/CacheDelete
0x1f7c5f000 - 0x1f7c98fff StreamingZip arm64 <7a4bacc4a03b32678f537466a08c9545> /System/Library/PrivateFrameworks/StreamingZip.framework/StreamingZip
0x1f7c99000 - 0x1f7cabfff CoreEmoji arm64 <3176564260083593a577fddfebcfe966> /System/Library/PrivateFrameworks/CoreEmoji.framework/CoreEmoji
0x1f7cac000 - 0x1f7cfbfff CoreLocationProtobuf arm64 <5a17ecbb765d313da64c3dd317cdf36e> /System/Library/PrivateFrameworks/CoreLocationProtobuf.framework/CoreLocationProtobuf
0x1f7cfc000 - 0x1f7d03fff SymptomDiagnosticReporter arm64 <6769718294d532db8a0fcfbc574943fc> /System/Library/PrivateFrameworks/SymptomDiagnosticReporter.framework/SymptomDiagnosticReporter
0x1f7d04000 - 0x1f86ebfff GeoServices arm64 <54b6c1595a653969a7bf582e299138e0> /System/Library/PrivateFrameworks/GeoServices.framework/GeoServices
0x1f86ec000 - 0x1f8706fff MobileAsset arm64 <005d5c2d4b9232a696ce0fb6a08a38d1> /System/Library/PrivateFrameworks/MobileAsset.framework/MobileAsset
0x1f8707000 - 0x1f8742fff Lexicon arm64 <933886c128ce34a0be4c8819ac295671> /System/Library/PrivateFrameworks/Lexicon.framework/Lexicon
0x1f8743000 - 0x1f8754fff libcmph.dylib arm64 <a29f078d192a3820a97f13612890b828> /usr/lib/libcmph.dylib
0x1f8755000 - 0x1f8864fff LanguageModeling arm64 <8b351556f38436b1bd0ded1df086f21f> /System/Library/PrivateFrameworks/LanguageModeling.framework/LanguageModeling
0x1f887c000 - 0x1f8916fff CoreLocation arm64 <8a4743559e13333ca8370d273843c57c> /System/Library/Frameworks/CoreLocation.framework/CoreLocation
0x1f8917000 - 0x1f8917fff PhoneNumbers arm64 <d9c422c80d413a2f97518a502f46bf27> /System/Library/PrivateFrameworks/PhoneNumbers.framework/PhoneNumbers
0x1f8918000 - 0x1f8922fff libChineseTokenizer.dylib arm64 <efcf77f0c6e5377abecb6182f6f255fa> /usr/lib/libChineseTokenizer.dylib
0x1f8923000 - 0x1f89d3fff libmecab_em.dylib arm64 <dda9fda7a8453bf38c8ead5ef703a539> /usr/lib/libmecab_em.dylib
0x1f89d4000 - 0x1f89d5fff libThaiTokenizer.dylib arm64 <c2426d11f4853443a8fe06d2ddd39c23> /usr/lib/libThaiTokenizer.dylib
0x1f89d6000 - 0x1f89dafff libgermantok.dylib arm64 <5df65797933b3f8eb4de5fb0d8e0fb23> /usr/lib/libgermantok.dylib
0x1f89db000 - 0x1f8a3efff CoreNLP arm64 <f839dd5f26483b2f9737c13e972d3cd4> /System/Library/PrivateFrameworks/CoreNLP.framework/CoreNLP
0x1f8a4b000 - 0x1f8c0ffff MobileSpotlightIndex arm64 <4ce2ef8e5bba3f279c4bbacabf2774bc> /System/Library/PrivateFrameworks/MobileSpotlightIndex.framework/MobileSpotlightIndex
0x1f8c72000 - 0x1f9911fff JavaScriptCore arm64 <ff70546036c53d9a872e85627c2dd077> /System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore
0x1f9912000 - 0x1f9917fff libheimdal-asn1.dylib arm64 <a001ff6596873832a6e8dbd55cbd855a> /usr/lib/libheimdal-asn1.dylib
0x1f9918000 - 0x1f9992fff libate.dylib arm64 <4108470b5bec3d6d822dc9238b091e87> /usr/lib/libate.dylib
0x1f9993000 - 0x1f9a3afff TextureIO arm64 <63bd61765abd313891e0f0ddc4989f3f> /System/Library/PrivateFrameworks/TextureIO.framework/TextureIO
0x1f9a3b000 - 0x1f9afefff CoreUI arm64 <5a57278bb4d4357a90c7750917924edd> /System/Library/PrivateFrameworks/CoreUI.framework/CoreUI
0x1f9aff000 - 0x1f9b0cfff MobileIcons arm64 <23be50d2eccb3e0a87efb2b27eb8fdfa> /System/Library/PrivateFrameworks/MobileIcons.framework/MobileIcons
0x1f9b0d000 - 0x1f9b1bfff AppleFSCompression arm64 <8235503d9da135edad1eee984726d760> /System/Library/PrivateFrameworks/AppleFSCompression.framework/AppleFSCompression
0x1f9b1c000 - 0x1f9b84fff TextInput arm64 <01d2e7c0c6a03b988dad4c1ee1826eeb> /System/Library/PrivateFrameworks/TextInput.framework/TextInput
0x1f9bae000 - 0x1f9be1fff DataDetectorsCore arm64 <d876d8aaf1b938388c287b4a669ed62e> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/DataDetectorsCore
0x1f9be2000 - 0x1f9c73fff FileProvider arm64 <6423940f8d023c9cabffc444e9973eab> /System/Library/Frameworks/FileProvider.framework/FileProvider
0x1f9c74000 - 0x1f9d69fff NLP arm64 <531e2b7f020a38c2b08f2fda174e63b7> /System/Library/PrivateFrameworks/NLP.framework/NLP
0x1f9d6a000 - 0x1f9e3ffff ProofReader arm64 <f509810086b03f4b873eac19a93676a6> /System/Library/PrivateFrameworks/ProofReader.framework/ProofReader
0x1f9e40000 - 0x1f9e55fff libAccessibility.dylib arm64 <4299a46ac44b3a8b968963062d682d52> /usr/lib/libAccessibility.dylib
0x1f9e56000 - 0x1fa343fff libwebrtc.dylib arm64 <723c13ece1a1393cba5f52348f0a9124> /System/Library/PrivateFrameworks/WebCore.framework/Frameworks/libwebrtc.dylib
0x1fa344000 - 0x1fa3a8fff ContactsFoundation arm64 <8e400dcb974732cf9d54a03e13861749> /System/Library/PrivateFrameworks/ContactsFoundation.framework/ContactsFoundation
0x1fa3a9000 - 0x1fbd07fff WebCore arm64 <79d4f140d81b32a8a8813a5198c6ae8b> /System/Library/PrivateFrameworks/WebCore.framework/WebCore
0x1fbd08000 - 0x1fbea1fff WebKitLegacy arm64 <faf611b319243f4fb0da0d86d333abe7> /System/Library/PrivateFrameworks/WebKitLegacy.framework/WebKitLegacy
0x1fbea2000 - 0x1fbed1fff DataAccessExpress arm64 <3a56283fa1fd31c688d4783d7d17ac53> /System/Library/PrivateFrameworks/DataAccessExpress.framework/DataAccessExpress
0x1fbed2000 - 0x1fbf6bfff AddressBookLegacy arm64 <b728fecda6fa38f7a597680f64cb59c9> /System/Library/PrivateFrameworks/AddressBookLegacy.framework/AddressBookLegacy
0x1fbf6c000 - 0x1fbfc3fff ProtectedCloudStorage arm64 <426539dbd6c63e7ea5f705e7f6458484> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/ProtectedCloudStorage
0x1fbfc4000 - 0x1fbff5fff UserNotifications arm64 <49419a6088123a1088967b389728a68f> /System/Library/Frameworks/UserNotifications.framework/UserNotifications
0x1fbff6000 - 0x1fc001fff AppleIDAuthSupport arm64 <92fec1a8c8303bc4940f1b6edca15e68> /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/AppleIDAuthSupport
0x1fc002000 - 0x1fc057fff AuthKit arm64 <ceeb4570eb5938c0a212a07da5438fac> /System/Library/PrivateFrameworks/AuthKit.framework/AuthKit
0x1fc096000 - 0x1fc096fff UIKit arm64 <8cd1d805e6403980aacdef9414284c81> /System/Library/Frameworks/UIKit.framework/UIKit
0x1fc097000 - 0x1fc0aafff DocumentManagerCore arm64 <1efaab5ea8633d4ca743c824e8521d8c> /System/Library/PrivateFrameworks/DocumentManagerCore.framework/DocumentManagerCore
0x1fc0ab000 - 0x1fc0b9fff HangTracer arm64 <6ae4008081833ad286621b36839ef849> /System/Library/PrivateFrameworks/HangTracer.framework/HangTracer
0x1fc0ba000 - 0x1fc108fff PhysicsKit arm64 <361f88aa7ddb33d68c252f8d02c624ad> /System/Library/PrivateFrameworks/PhysicsKit.framework/PhysicsKit
0x1fc109000 - 0x1fc10dfff StudyLog arm64 <4c2f7de1107e3ce2b61e679fe40d466d> /System/Library/PrivateFrameworks/StudyLog.framework/StudyLog
0x1fc10e000 - 0x1fc1f9fff UIFoundation arm64 <77e12b7c184e344fb3511494c24d86be> /System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation
0x1fc1fa000 - 0x1fc31afff CloudKit arm64 <a3e0d95652ea39daa6b5ef1bbf15288d> /System/Library/Frameworks/CloudKit.framework/CloudKit
0x1fc31b000 - 0x1fc322fff IntentsFoundation arm64 <11acb79008683e9a8222fbdf2f20af39> /System/Library/PrivateFrameworks/IntentsFoundation.framework/IntentsFoundation
0x1fc323000 - 0x1fc609fff Intents arm64 <6ae5175fc6b03e919433a966c42c85ad> /System/Library/Frameworks/Intents.framework/Intents
0x1fc60a000 - 0x1fc622fff libresolv.9.dylib arm64 <578816afe31737f7bff30011a1499be9> /usr/lib/libresolv.9.dylib
0x1fc623000 - 0x1fc625fff CoreDuetDebugLogging arm64 <ed6a80d9f48d33b994e978b91b1a4c32> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/CoreDuetDebugLogging
0x1fc626000 - 0x1fc657fff libtidy.A.dylib arm64 <2473e09a24e23441b5fa5adccce49c17> /usr/lib/libtidy.A.dylib
0x1fc658000 - 0x1fc812fff CoreDuet arm64 <59b9f0b87177312681f88367bfe3424f> /System/Library/PrivateFrameworks/CoreDuet.framework/CoreDuet
0x1fc813000 - 0x1fc833fff CoreDuetContext arm64 <1ec73f4da44d31b28d4c4371110202b1> /System/Library/PrivateFrameworks/CoreDuetContext.framework/CoreDuetContext
0x1fc834000 - 0x1fc845fff CoreDuetDaemonProtocol arm64 <2e09aa3473a4394eb6626641a0ea8842> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/CoreDuetDaemonProtocol
0x1fc846000 - 0x1fc8acfff IMFoundation arm64 <3e2cfc69dc12331a9df863027d3fa16a> /System/Library/PrivateFrameworks/IMFoundation.framework/IMFoundation
0x1fc8ad000 - 0x1fc8defff vCard arm64 <2816c3799d4c39238da9d7763eb8f66a> /System/Library/PrivateFrameworks/vCard.framework/vCard
0x1fc8df000 - 0x1fc9f0fff Contacts arm64 <1306c6d1be3d32318cfc2009f388c1ba> /System/Library/Frameworks/Contacts.framework/Contacts
0x1fc9f1000 - 0x1fc9f2fff DiagnosticLogCollection arm64 <1b7c22827b0839729399b4af14a4d536> /System/Library/PrivateFrameworks/DiagnosticLogCollection.framework/DiagnosticLogCollection
0x1fc9f3000 - 0x1fc9f4fff Marco arm64 <597764710750346a88f800ea9088b830> /System/Library/PrivateFrameworks/Marco.framework/Marco
0x1fc9f5000 - 0x1fc9fcfff MessageProtection arm64 <e2f1b2ab571832429b93fa306244c251> /System/Library/PrivateFrameworks/MessageProtection.framework/MessageProtection
0x1fc9fd000 - 0x1fcce9fff StoreServices arm64 <2e8fa52212793a8290bc9ccba912ef79> /System/Library/PrivateFrameworks/StoreServices.framework/StoreServices
0x1fccea000 - 0x1fcd00fff Engram arm64 <55b36649e1033a3da75e792841d829a1> /System/Library/PrivateFrameworks/Engram.framework/Engram
0x1fcd01000 - 0x1fce10fff IDSFoundation arm64 <da249f90d74d333e9c4e6779aebf4466> /System/Library/PrivateFrameworks/IDSFoundation.framework/IDSFoundation
0x1fce11000 - 0x1fce1bfff CaptiveNetwork arm64 <6040b78e56283f4b8933a23497391977> /System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork
0x1fce1c000 - 0x1fce4bfff EAP8021X arm64 <1e909550518531ae8e5af4f84ae81121> /System/Library/PrivateFrameworks/EAP8021X.framework/EAP8021X
0x1fce4c000 - 0x1fce89fff MobileWiFi arm64 <aaea4968329138e58544669798387a37> /System/Library/PrivateFrameworks/MobileWiFi.framework/MobileWiFi
0x1fce8a000 - 0x1fce8cfff OAuth arm64 <3159f643ab4f32198c5f2e0cf5e03efb> /System/Library/PrivateFrameworks/OAuth.framework/OAuth
0x1fce8d000 - 0x1fce8ffff CommonAuth arm64 <76aa4d5daeca34ef846373b4e163f258> /System/Library/PrivateFrameworks/CommonAuth.framework/CommonAuth
0x1fce90000 - 0x1fcefffff Heimdal arm64 <5627b7f99336377f83867e29a58382ba> /System/Library/PrivateFrameworks/Heimdal.framework/Heimdal
0x1fcf00000 - 0x1fcf29fff GSS arm64 <4f5f9a56b6523d5e9b9fb3ecd20d1e2a> /System/Library/Frameworks/GSS.framework/GSS
0x1fcf2a000 - 0x1fcf41fff ApplePushService arm64 <733176c26c2e361a844495297b4f5077> /System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService
0x1fcf42000 - 0x1fcfd1fff AccountsDaemon arm64 <4dce3b079300348391f68bb0129e5e5c> /System/Library/PrivateFrameworks/AccountsDaemon.framework/AccountsDaemon
0x1fcfd2000 - 0x1fcff3fff AppleIDSSOAuthentication arm64 <2feb9afa1d313d2fae112373362f6819> /System/Library/PrivateFrameworks/AppleIDSSOAuthentication.framework/AppleIDSSOAuthentication
0x1fcff4000 - 0x1fd074fff AppleAccount arm64 <54af56912426303aa6ea2c8adfb0786d> /System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount
0x1fd075000 - 0x1fd1ebfff CoreUtils arm64 <db2fa88f45033e4d927583ceddaaa618> /System/Library/PrivateFrameworks/CoreUtils.framework/CoreUtils
0x1fd1ec000 - 0x1fd2e5fff IDS arm64 <9a377c51220b3e8aa254170b34241aaf> /System/Library/PrivateFrameworks/IDS.framework/IDS
0x1fd4e1000 - 0x1fd4fbfff UserManagement arm64 <ef562d815d4b371b92a8de235544a85c> /System/Library/PrivateFrameworks/UserManagement.framework/UserManagement
0x1fd50d000 - 0x1fd53dfff Bom arm64 <1d3570dfb8b5353d9ca9434ac3d29648> /System/Library/PrivateFrameworks/Bom.framework/Bom
0x1fd5fd000 - 0x1fd64bfff ChunkingLibrary arm64 <e9d985bdc95b33c6b8077c94754edc76> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/ChunkingLibrary
0x1fd64c000 - 0x1fd65afff libnetworkextension.dylib arm64 <c588fd853b103e689968fa24a7496cb3> /usr/lib/libnetworkextension.dylib
0x1fe3d8000 - 0x1fe575fff NetworkExtension arm64 <ced5acebcbf835f3b5553a4910a70e25> /System/Library/Frameworks/NetworkExtension.framework/NetworkExtension
0x1fea40000 - 0x1fea6efff GLKit arm64 <b6db091f44ad39c3ba33938587e59d50> /System/Library/Frameworks/GLKit.framework/GLKit
0x1feb99000 - 0x1febb6fff AssetCacheServices arm64 <b5f37e2a434337019e4afe1a11d5dd4e> /System/Library/PrivateFrameworks/AssetCacheServices.framework/AssetCacheServices
0x1febb7000 - 0x1fec68fff NetworkServiceProxy arm64 <99e9d0bca947358c8727f047b2bd22ab> /System/Library/PrivateFrameworks/NetworkServiceProxy.framework/NetworkServiceProxy
0x1fec69000 - 0x1fed3dfff MMCS arm64 <e332a56b234c3efcacd23a564bb98fa5> /System/Library/PrivateFrameworks/MMCS.framework/MMCS
0x1fee54000 - 0x1fee82fff PhotosFormats arm64 <ab80241bbd723a9daf4b2a7cdb5a219e> /System/Library/PrivateFrameworks/PhotosFormats.framework/PhotosFormats
0x1fef76000 - 0x1ff0d2fff CloudPhotoLibrary arm64 <461c44d6853d3c1b8577deea116e19bf> /System/Library/PrivateFrameworks/CloudPhotoLibrary.framework/CloudPhotoLibrary
0x1ff1b8000 - 0x1ff1eafff AssetsLibraryServices arm64 <e850778fef673c53b4471e87dd9b83e3> /System/Library/PrivateFrameworks/AssetsLibraryServices.framework/AssetsLibraryServices
0x1ff220000 - 0x1ff248fff DCIMServices arm64 <940600c384993c83a3d619f48b2677f7> /System/Library/PrivateFrameworks/DCIMServices.framework/DCIMServices
0x1ff249000 - 0x1ff367fff CoreMediaStream arm64 <d998b62005123576aedda324a8a86468> /System/Library/PrivateFrameworks/CoreMediaStream.framework/CoreMediaStream
0x1ff368000 - 0x1ff36ffff XPCKit arm64 <41ee21cdbd733d17b52c3e8be91764c2> /System/Library/PrivateFrameworks/XPCKit.framework/XPCKit
0x1ff450000 - 0x1ff469fff CloudPhotoServices arm64 <795ba783578f3e8e9a3c44316f71747e> /System/Library/PrivateFrameworks/CloudPhotoServices.framework/CloudPhotoServices
0x1ff476000 - 0x1ff492fff MediaStream arm64 <ddbadf5255913f8485d941fa62958bbf> /System/Library/PrivateFrameworks/MediaStream.framework/MediaStream
0x1ff493000 - 0x1ff994fff PhotoLibraryServices arm64 <3504c40d1ef830c486025f5fbb1d0da9> /System/Library/PrivateFrameworks/PhotoLibraryServices.framework/PhotoLibraryServices
0x1ff995000 - 0x1ff9b0fff PrototypeTools arm64 <24d7ea4dc99d33fd9e1462ed5d92a087> /System/Library/PrivateFrameworks/PrototypeTools.framework/PrototypeTools
0x1ff9b1000 - 0x1ffa30fff CoreSymbolication arm64 <c697350dd7103aa7b220567cf326693a> /System/Library/PrivateFrameworks/CoreSymbolication.framework/CoreSymbolication
0x1ffd93000 - 0x1ffd9bfff CoreTime arm64 <b20bee3821923825b641230adc42b386> /System/Library/PrivateFrameworks/CoreTime.framework/CoreTime
0x1ffd9c000 - 0x1ffdecfff CoreAppleCVA arm64 <d3b298ffc45c3055b29a35260b8ecbae> /System/Library/PrivateFrameworks/CoreAppleCVA.framework/CoreAppleCVA
0x1ffe2c000 - 0x1fffcefff AppleCVA arm64 <7601b3753d753bad8496859cf4b62993> /System/Library/PrivateFrameworks/AppleCVA.framework/AppleCVA
0x1fffcf000 - 0x200086fff Montreal arm64 <7f1824260c6c31a3a7b9494f85164374> /System/Library/PrivateFrameworks/Montreal.framework/Montreal
0x200087000 - 0x2003a8fff Espresso arm64 <630c94e4727632c0a15a72d9084b309e> /System/Library/PrivateFrameworks/Espresso.framework/Espresso
0x2003a9000 - 0x2003affff MobileSystemServices arm64 <ae827d4ca2bf3cd0865dc1be70b0ff9e> /System/Library/PrivateFrameworks/MobileSystemServices.framework/MobileSystemServices
0x20059d000 - 0x2007c0fff CoreML arm64 <ddbee838a9243aa2b3061908a9e5e41d> /System/Library/Frameworks/CoreML.framework/CoreML
0x2007c1000 - 0x2007c5fff CoreOptimization arm64 <a60da5d56a77385bab5ecf2a91e2cb78> /System/Library/PrivateFrameworks/CoreOptimization.framework/CoreOptimization
0x200823000 - 0x200877fff CorePrediction arm64 <1bcb7bc51f703f46992bca964be95c1d> /System/Library/PrivateFrameworks/CorePrediction.framework/CorePrediction
0x200999000 - 0x2009c5fff Futhark arm64 <0689afcbd554372cbe1af54f31af5d37> /System/Library/PrivateFrameworks/Futhark.framework/Futhark
0x2009c6000 - 0x200a35fff NanoRegistry arm64 <4dd407a79baa3114b90e2730f11abbb3> /System/Library/PrivateFrameworks/NanoRegistry.framework/NanoRegistry
0x200c70000 - 0x200d3afff CorePDF arm64 <a775f7c706643da78354acc60a284057> /System/Library/PrivateFrameworks/CorePDF.framework/CorePDF
0x200d3b000 - 0x200fccfff Vision arm64 <38b4a5173b57371bbdfb7f3fdcd6509a> /System/Library/Frameworks/Vision.framework/Vision
0x200fcd000 - 0x2014e1fff WebKit arm64 <2cb812df0acf393d9322bfaf629d44a6> /System/Library/Frameworks/WebKit.framework/WebKit
0x201578000 - 0x20157dfff ConstantClasses arm64 <605c3299145a3b2f9c36cb6c7058f488> /System/Library/PrivateFrameworks/ConstantClasses.framework/ConstantClasses
0x202e46000 - 0x202e6afff MobileInstallation arm64 <a448765d3bf73d8b97d04149bb848d13> /System/Library/PrivateFrameworks/MobileInstallation.framework/MobileInstallation
0x2030b8000 - 0x2030c9fff AssetsLibrary arm64 <2ee46bc96d613916844c295709ac9905> /System/Library/Frameworks/AssetsLibrary.framework/AssetsLibrary
0x2034c5000 - 0x2034dcfff CoreFollowUp arm64 <dc39b1ffa8803a2ab1d53020b429e48a> /System/Library/PrivateFrameworks/CoreFollowUp.framework/CoreFollowUp
0x20418b000 - 0x204199fff SetupAssistantSupport arm64 <15c081c7d48b3afebf60eb9b712519a9> /System/Library/PrivateFrameworks/SetupAssistantSupport.framework/SetupAssistantSupport
0x20419a000 - 0x2041cdfff SetupAssistant arm64 <129444f03e1b353f9795e6bf83341591> /System/Library/PrivateFrameworks/SetupAssistant.framework/SetupAssistant
0x204f53000 - 0x204f58fff LinguisticData arm64 <ea730959fc8f382b9d6da155b0e44a67> /System/Library/PrivateFrameworks/LinguisticData.framework/LinguisticData
0x206236000 - 0x2062fcfff PDFKit arm64 <1baa2b57d3ad37c3b6ba52e54fe1c42f> /System/Library/Frameworks/PDFKit.framework/PDFKit
0x206672000 - 0x206684fff MobileDeviceLink arm64 <a00b87e31ebe33b88e0cfe0d1b4548aa> /System/Library/PrivateFrameworks/MobileDeviceLink.framework/MobileDeviceLink
0x206761000 - 0x2067b4fff MobileBackup arm64 <0461e0b5f8573d5da78290e6c21ef496> /System/Library/PrivateFrameworks/MobileBackup.framework/MobileBackup
0x2067b5000 - 0x206802fff SafariSafeBrowsing arm64 <466e66ac4dc43c42b7ab475181635f80> /System/Library/PrivateFrameworks/SafariSafeBrowsing.framework/SafariSafeBrowsing
0x208f6a000 - 0x208fbbfff LoggingSupport arm64 <f972f6275bc7395c8c3f9e6a6d2b653b> /System/Library/PrivateFrameworks/LoggingSupport.framework/LoggingSupport
0x20bc47000 - 0x20bc4cfff kperf arm64 <7a89ef48a21d3f1e9665d58b1a3fe579> /System/Library/PrivateFrameworks/kperf.framework/kperf
0x20bcf1000 - 0x20be3afff libGLProgrammability.dylib arm64 <09fa726f8ee231c4976bd231cfbdafab> /System/Library/Frameworks/OpenGLES.framework/libGLProgrammability.dylib
0x20be9e000 - 0x20bebefff CellularPlanManager arm64 <bb45ce1201a733f18234c94b7a908794> /System/Library/PrivateFrameworks/CellularPlanManager.framework/CellularPlanManager
0x20c07d000 - 0x20c085fff kperfdata arm64 <06520184071d31719b159cfb87130d35> /System/Library/PrivateFrameworks/kperfdata.framework/kperfdata
0x20c0c8000 - 0x20c0cffff libdscsym.dylib arm64 <ca91952eaf3733998d8f6b2920e8fac2> /usr/lib/libdscsym.dylib
0x20c472000 - 0x20c4a9fff ktrace arm64 <62185159e42038b99ebfebf8c729e61b> /System/Library/PrivateFrameworks/ktrace.framework/ktrace
0x20d515000 - 0x20d517fff AGXCompilerConnection arm64 <adf48b12e572320fbeeaca60ecc3e878> /System/Library/PrivateFrameworks/AGXCompilerConnection.framework/AGXCompilerConnection
0x20daea000 - 0x20daf3fff libGPUSupportMercury.dylib arm64 <dee62831768b3288b0e2826ef5f1e4d6> /System/Library/PrivateFrameworks/GPUSupport.framework/libGPUSupportMercury.dylib
0x20e74d000 - 0x20e75cfff CTCarrierSpace arm64 <62db6751c46f33e595a6322d761918fb> /System/Library/PrivateFrameworks/CTCarrierSpace.framework/CTCarrierSpace
0x20ebb5000 - 0x20ebd8fff DeviceIdentity arm64 <923d44a1fea0305ea23f0745e8344bff> /System/Library/PrivateFrameworks/DeviceIdentity.framework/DeviceIdentity
0x210b4b000 - 0x210bc3fff Rapport arm64 <24b8a966d17839a49b24b103c889e048> /System/Library/PrivateFrameworks/Rapport.framework/Rapport
0x210bff000 - 0x210c41fff SignpostSupport arm64 <8fd93797d31730aeb5e66fd10b320825> /System/Library/PrivateFrameworks/SignpostSupport.framework/SignpostSupport
0x211b39000 - 0x211b40fff libMatch.1.dylib arm64 <0ab6e6fae4a039eaad03429b1c74d823> /usr/lib/libMatch.1.dylib
0x211b89000 - 0x211b9efff libtailspin.dylib arm64 <97a536ebbd543e8bb5fd2c4442403d8e> /usr/lib/libtailspin.dylib
0x211e97000 - 0x21215dfff RawCamera arm64 <7ff8546416f7397f85ceb362ac8b31e3> /System/Library/CoreServices/RawCamera.bundle/RawCamera
0x212175000 - 0x2121fafff AGXGLDriver arm64 <e3763e7950293b50bb20de42cbad36fe> /System/Library/Extensions/AGXGLDriver.bundle/AGXGLDriver
0x212346000 - 0x21235afff libCGInterfaces.dylib arm64 <7a9488d7f89931b484428689e920c6ba> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/Libraries/libCGInterfaces.dylib
0x21316b000 - 0x213252fff GLEngine arm64 <3edeaa36318d30b58085fcaa7bdaf7ff> /System/Library/Frameworks/OpenGLES.framework/GLEngine.bundle/GLEngine
0x2149e5000 - 0x214a0cfff CoreServicesInternal arm64 <76068e39b78c32f6abaab1117775a851> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesInternal
0x21507a000 - 0x21508cfff libGSFontCache.dylib arm64 <654308310b4931a2bec34675aa3d8a45> /System/Library/PrivateFrameworks/FontServices.framework/libGSFontCache.dylib
0x21508d000 - 0x2150bdfff libTrueTypeScaler.dylib arm64 <a39a0f8d03d63ca49d121d74ae992fde> /System/Library/PrivateFrameworks/FontServices.framework/libTrueTypeScaler.dylib
0x216abf000 - 0x216ac3fff InternationalSupport arm64 <27cc782b373537af9aa24edffacf09e2> /System/Library/PrivateFrameworks/InternationalSupport.framework/InternationalSupport
0x21827e000 - 0x218288fff SignpostCollection arm64 <9f5402f71bf03953aebed55638322eaf> /System/Library/PrivateFrameworks/SignpostCollection.framework/SignpostCollection
0x218ccb000 - 0x218ccefff XCTTargetBootstrap arm64 <04c9799049f336cab2c33ed8c1370c7b> /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/XCTTargetBootstrap
0x218d0c000 - 0x218d1ffff libEDR arm64 <71cf2c7e251c3fc78fcacd54e8be8e4a> /System/Library/PrivateFrameworks/libEDR.framework/libEDR
0x219796000 - 0x219796fff libcharset.1.dylib arm64 <407954967d42398ba8f25e1891f39960> /usr/lib/libcharset.1.dylib
0x21a206000 - 0x21a207fff libsandbox.1.dylib arm64 <be173ca6237a37bc84342689de420109> /usr/lib/libsandbox.1.dylib
0x21a246000 - 0x21a247fff liblog_network.dylib arm64 <13653b98a46935e5858c252e701597d4> /usr/lib/log/liblog_network.dylib
0x21a3c2000 - 0x21a4fffff CoreServices arm64 <5f53079ab0e836b7af624d05ba9fc41d> /System/Library/Frameworks/CoreServices.framework/CoreServices
0x21a529000 - 0x21a542fff MPSRayIntersector arm64 <d6d05474d6bd3365aaeb79616fd7ba20> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSRayIntersector.framework/MPSRayIntersector
0x21a56f000 - 0x21a695fff Network arm64 <4ad46f271d3e3acd98d5b109e2e8b04a> /System/Library/Frameworks/Network.framework/Network
0x21a6a6000 - 0x21a6b4fff ANEServices arm64 <dcb20117f8ab33c0946f2c555017d257> /System/Library/PrivateFrameworks/ANEServices.framework/ANEServices
0x21a6b9000 - 0x21a6bdfff ASEProcessing arm64 <9f902a0c35083c36bb8f44de375b06bb> /System/Library/PrivateFrameworks/ASEProcessing.framework/ASEProcessing
0x21a6be000 - 0x21a6c9fff AXCoreUtilities arm64 <c5673a50c6a43cbda01d7fba9fe4e454> /System/Library/PrivateFrameworks/AXCoreUtilities.framework/AXCoreUtilities
0x21a949000 - 0x21aa96fff AppleMediaServices arm64 <c384d4aa6f5936d3ae65f48583fcd9b3> /System/Library/PrivateFrameworks/AppleMediaServices.framework/AppleMediaServices
0x21aa97000 - 0x21aaa6fff AppleNeuralEngine arm64 <49ccc308846e34d5850be88fda6000fb> /System/Library/PrivateFrameworks/AppleNeuralEngine.framework/AppleNeuralEngine
0x21ac1f000 - 0x21ac54fff C2 arm64 <175ce2e91e4f38798a9c43e0437b0bf0> /System/Library/PrivateFrameworks/C2.framework/C2
0x21b26c000 - 0x21b2bffff DocumentManager arm64 <8e270887737430b099a4d43900e2ee65> /System/Library/PrivateFrameworks/DocumentManager.framework/DocumentManager
0x21b3fe000 - 0x21b402fff IdleTimerServices arm64 <ae57544db59f355db6b4aa15625512a5> /System/Library/PrivateFrameworks/IdleTimerServices.framework/IdleTimerServices
0x21b4e4000 - 0x21b50cfff MetadataUtilities arm64 <da900e8bb5123acd9d077abf78c2b12e> /System/Library/PrivateFrameworks/MetadataUtilities.framework/MetadataUtilities
0x21c679000 - 0x21c6c5fff OTSVG arm64 <793493c68ab13330a421f7cbd5c61f52> /System/Library/PrivateFrameworks/OTSVG.framework/OTSVG
0x21c7b9000 - 0x21c813fff PhotoFoundation arm64 <5f5043339fd935359daf0537dcfa0fd5> /System/Library/PrivateFrameworks/PhotoFoundation.framework/PhotoFoundation
0x21c906000 - 0x21c953fff ROCKit arm64 <91466a6e18843da08642493d2423261f> /System/Library/PrivateFrameworks/ROCKit.framework/ROCKit
0x21cba6000 - 0x21cc3afff SampleAnalysis arm64 <c619b57ac4853071b9ff81db337b16fc> /System/Library/PrivateFrameworks/SampleAnalysis.framework/SampleAnalysis
0x21cde5000 - 0x21cdecfff StatsKit arm64 <464a62c99cbd340d9d96c9bed41ed318> /System/Library/PrivateFrameworks/StatsKit.framework/StatsKit
0x21da0c000 - 0x21eaf0fff UIKitCore arm64 <a1f463bfcf9b3796ba9e7c2b40617fae> /System/Library/PrivateFrameworks/UIKitCore.framework/UIKitCore
0x21eaf1000 - 0x21eafbfff UIKitServices arm64 <ad0c5c64bbb83b17b4ac0706c9b9487b> /System/Library/PrivateFrameworks/UIKitServices.framework/UIKitServices
0x21eafc000 - 0x21eb02fff URLFormatting arm64 <c842e0066f893fc2bcd763b29e02b7dc> /System/Library/PrivateFrameworks/URLFormatting.framework/URLFormatting
EOF
About this issue
- Original URL
- State: closed
- Created 4 years ago
- Comments: 22 (11 by maintainers)
UPDATE: I’ve installed Cordova iOS 6.0.0 and it looks like the issue is no more reproducible
We could use a debounce function to throw away most events while zooming, what do you think?