-
Notifications
You must be signed in to change notification settings - Fork 80
/
VirtualGarage.txt
1854 lines (1854 loc) · 260 KB
/
VirtualGarage.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/System/Library/PrivateFrameworks/VirtualGarage.framework/Versions/A/VirtualGarage [arm64e, 0.038160 seconds]:
2B5D5029-E824-3AEA-B836-642C5A2436F3 /System/Library/PrivateFrameworks/VirtualGarage.framework/Versions/A/VirtualGarage [DYLIB, DYLDSHAREDCACHE, FaultedFromDiskDyldSharedCache, MMap64]
0x000000019f50a000 ( 0x38000) __TEXT SEGMENT
0x000000019f50a000 ( 0x2154) MACH_HEADER
0x000000019f50c154 ( 0x24edc) __TEXT __text
0x000000019f50c154 ( 0x18) -[VGChargingNetworkStorage hasName] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50c16c ( 0x20) -[VGChargingNetworkStorage setIdentifier:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50c18c ( 0x1c) -[VGChargingNetworkStorage setHasIdentifier:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50c1a8 ( 0x14) -[VGChargingNetworkStorage hasIdentifier] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50c1bc ( 0xa4) -[VGChargingNetworkStorage description] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50c260 ( 0xb0) -[VGChargingNetworkStorage dictionaryRepresentation] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50c310 ( 0x238) VGChargingNetworkStorageReadFrom [FUNC, EXT, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50c548 ( 0x8) -[VGChargingNetworkStorage readFrom:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50c550 ( 0x8c) -[VGChargingNetworkStorage writeTo:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50c5dc ( 0x84) -[VGChargingNetworkStorage copyTo:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50c660 ( 0x98) -[VGChargingNetworkStorage copyWithZone:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50c6f8 ( 0xbc) -[VGChargingNetworkStorage isEqual:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50c7b4 ( 0x64) -[VGChargingNetworkStorage hash] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50c818 ( 0x88) -[VGChargingNetworkStorage mergeFrom:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50c8a0 ( 0x10) -[VGChargingNetworkStorage name] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50c8b0 ( 0x14) -[VGChargingNetworkStorage setName:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50c8c4 ( 0x10) -[VGChargingNetworkStorage identifier] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50c8d4 ( 0x14) -[VGChargingNetworkStorage .cxx_destruct] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50c8e8 ( 0xc) VirtualGarageConfig_EVRoutingUseMapsSyncLiveUpdates_Metadata_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50c8f4 ( 0xc) VirtualGarageConfig_EVRoutingKeyNameForModelID_Metadata_block_invoke_2 [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50c900 ( 0xc) VirtualGarageConfig_EVRoutingManifestKeyNameForSiriAllowlist_Metadata_block_invoke_3 [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50c90c ( 0xc) VirtualGarageConfig_EVRoutingManifestKeyNameForSiriBundleID_Metadata_block_invoke_4 [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50c918 ( 0xc) VirtualGarageConfig_EVRoutingManifestKeyNameForSiriAllowListedModelIDs_Metadata_block_invoke_5 [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50c924 ( 0xc) VirtualGarageConfig_EVRoutingManifestKeyNameForIApAllowlist_Metadata_block_invoke_6 [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50c930 ( 0xc) VirtualGarageConfig_EVRoutingManifestKeyNameForIApDenylist_Metadata_block_invoke_7 [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50c93c ( 0xc) VirtualGarageConfig_EVRoutingManifestKeyNameForIApDenyListedModelID_Metadata_block_invoke_8 [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50c948 ( 0xc) VirtualGarageConfig_EVRoutingManifestKeyNameForIApDenyListedFirmwareID_Metadata_block_invoke_9 [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50c954 ( 0xc) VirtualGarageConfig_EVRoutingManifestKeyNameForIApDenyListedModel_Metadata_block_invoke_10 [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50c960 ( 0xc) VirtualGarageConfig_EVRoutingManifestKeyNameForIApDenyListedYear_Metadata_block_invoke_11 [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50c96c ( 0xc) VirtualGarageConfig_EVRoutingResourceNameForAllowAndDenylists_Metadata_block_invoke_12 [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50c978 ( 0xc) VirtualGarageConfig_EVRoutingForceShowLastSyncDate_Metadata_block_invoke_13 [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50c984 ( 0xc) VirtualGarageConfig_EVRoutingOEMAppPullInterval_Metadata_block_invoke_14 [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50c990 ( 0xc) VirtualGarageConfig_EVRoutingIntentsRequestTimeout_Metadata_block_invoke_15 [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50c99c ( 0xc) VirtualGarageConfig_EVRoutingStreamUpdatesDuringNav_Metadata_block_invoke_16 [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50c9a8 ( 0xc) VirtualGarageConfig_EVRoutingEnableAllowListing_Metadata_block_invoke_17 [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50c9b4 ( 0xc) VirtualGarageConfig_EVRoutingDisabledApplications_Metadata_block_invoke_18 [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50c9c0 ( 0xc) VirtualGarageConfig_EVRoutingSynchronousVehicleStateUpdate_Metadata_block_invoke_19 [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50c9cc ( 0xc) VirtualGarageConfig_EVRoutingEnableIAP2Onboarding_Metadata_block_invoke_20 [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50c9d8 ( 0xc) VirtualGarageConfig_EVRoutingUseCarDisplaySimIdentifier_Metadata_block_invoke_21 [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50c9e4 ( 0xc) VirtualGarageConfig_EVRoutingEnableAutomaticVehicleDeselection_Metadata_block_invoke_22 [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50c9f0 ( 0xc) VirtualGarageConfig_AutomaticallyDeselectMissingVehicles_Metadata_block_invoke_23 [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50c9fc ( 0xc) VirtualGarageConfig_CapacityThresholdForVehicleStateComparison_Metadata_block_invoke_24 [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50ca08 ( 0xc) VirtualGarageConfig_TimeThresholdForVehicleStateComparison_Metadata_block_invoke_25 [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50ca14 ( 0xc) VirtualGarageConfig_EVRoutingResourceNameForPreferredNetworksList_Metadata_block_invoke_26 [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50ca20 ( 0xc) VirtualGarageConfig_EnableAutomaticVehicleUnpairing_Metadata_block_invoke_27 [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50ca2c ( 0x4) _registerStateCaptureCallbacks [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50ca30 ( 0x268) +[VGVehicleDeduper actionForAddingNewVehicle:withExistingGarageVehicles:andUnpairedVehicles:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50cc98 ( 0xe8) +[VGVehicleDeduper _vehicleMatchingVehicle:inArray:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50cd80 ( 0x8) __52+[VGVehicleDeduper _vehicleMatchingVehicle:inArray:]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50cd88 ( 0x2c) IsVirtualGarageEnabled [FUNC, EXT, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50cdb4 ( 0x64) startHostingVirtualGarageServiceWithPersister [FUNC, EXT, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50ce18 ( 0x48) stopHostingVirtualGarageService [FUNC, EXT, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50ce60 ( 0xc4) VGProcessNameForPID [FUNC, EXT, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50cf24 ( 0x20) -[NSMeasurement(VGExtras) isGreaterThanMeasurement:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50cf44 ( 0x20) -[NSMeasurement(VGExtras) isLessThanMeasurement:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50cf64 ( 0x20) -[NSMeasurement(VGExtras) isEqualToMeasurement:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50cf84 ( 0x1c) -[NSMeasurement(VGExtras) isGreaterThanOrEqualToMeasurement:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50cfa0 ( 0x1c) -[NSMeasurement(VGExtras) isLessThanOrEqualToMeasurement:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50cfbc ( 0xc0) -[NSMeasurement(VGExtras) compare:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50d07c ( 0x98) GEOEvChargingConnectorTypeFromVGConnectorType [FUNC, EXT, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50d114 ( 0x20) (null) [FUNC, FunctionStarts]
0x000000019f50d134 ( 0x100) VGVehiclesHaveMatchingVehicleStateProviders [FUNC, EXT, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50d234 ( 0x204) -[VGVehicle initWithDisplayName:year:manufacturer:model:colorHex:headUnitIdentifier:headUnitBluetoothIdentifier:supportedConnectors:powerByConnector:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50d438 ( 0x12c) -[VGVehicle initWithLicensePlate:lprVehicleType:lprPowerType:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50d564 ( 0x1d0) -[VGVehicle initWithIdentifier:displayName:year:manufacturer:model:colorHex:licensePlate:lprVehicleType:lprPowerType:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50d734 ( 0x538) -[VGVehicle initWithMapsSyncVehicle:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50dc6c ( 0x358) __37-[VGVehicle initWithMapsSyncVehicle:]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50dfc4 ( 0x58) __37-[VGVehicle initWithMapsSyncVehicle:]_block_invoke.10 [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50e01c ( 0x4e8) -[VGVehicle initWithCoder:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50e504 ( 0x258) -[VGVehicle encodeWithCoder:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50e75c ( 0x8) +[VGVehicle supportsSecureCoding] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50e764 ( 0x70) -[VGVehicle isPureElectricVehicle] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50e7d4 ( 0x130) -[VGVehicle _updateWithVehicleState:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50e904 ( 0xa0) -[VGVehicle _setVehicleState:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50e9a4 ( 0x284) -[VGVehicle _vehicleByUpdatingWithVehicle:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50ec28 ( 0x38) -[VGVehicle _vehicleByUpdatingUsesPreferredNetworksForRouting:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50ec60 ( 0x178) -[VGVehicle pairToIapIdentifier:bluetoothIdentifier:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50edd8 ( 0x5c) -[VGVehicle _identifierForVehicleStateOrigin:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50ee34 ( 0x7c) -[VGVehicle _canBeUpdatedFromState:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50eeb0 ( 0x58) -[VGVehicle combinedDisplayName] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50ef08 ( 0x190) -[VGVehicle displayedBatteryPercentage] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50f098 ( 0x1a8) -[VGVehicle batteryPercentageBasedOfCapacity] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50f240 ( 0x220) -[VGVehicle copyWithZone:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50f460 ( 0x1a8) -[VGVehicle description] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50f608 ( 0x4d8) -[VGVehicle isEqual:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50fae0 ( 0x8) -[VGVehicle identifier] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50fae8 ( 0x8) -[VGVehicle creationDate] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50faf0 ( 0x8) -[VGVehicle lastStateUpdateDate] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50faf8 ( 0x8) -[VGVehicle displayName] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50fb00 ( 0x8) -[VGVehicle setDisplayName:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50fb08 ( 0x8) -[VGVehicle year] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50fb10 ( 0x8) -[VGVehicle manufacturer] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50fb18 ( 0x8) -[VGVehicle model] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50fb20 ( 0x8) -[VGVehicle colorHex] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50fb28 ( 0x8) -[VGVehicle setColorHex:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50fb30 ( 0x8) -[VGVehicle headUnitBluetoothIdentifier] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50fb38 ( 0x8) -[VGVehicle headUnitIdentifier] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50fb40 ( 0x8) -[VGVehicle licensePlate] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50fb48 ( 0x8) -[VGVehicle setLicensePlate:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50fb50 ( 0x8) -[VGVehicle lprVehicleType] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50fb58 ( 0x8) -[VGVehicle setLprVehicleType:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50fb60 ( 0x8) -[VGVehicle lprPowerType] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50fb68 ( 0x8) -[VGVehicle setLprPowerType:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50fb70 ( 0x8) -[VGVehicle supportedConnectors] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50fb78 ( 0x8) -[VGVehicle setSupportedConnectors:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50fb80 ( 0x8) -[VGVehicle powerByConnector] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50fb88 ( 0x8) -[VGVehicle preferredChargingNetworks] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50fb90 ( 0xc) -[VGVehicle setPreferredChargingNetworks:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50fb9c ( 0x8) -[VGVehicle usesPreferredNetworksForRouting] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50fba4 ( 0x8) -[VGVehicle setUsesPreferredNetworksForRouting:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50fbac ( 0x8) -[VGVehicle currentVehicleState] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50fbb4 ( 0x8) -[VGVehicle pairedAppIdentifier] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50fbbc ( 0xc) -[VGVehicle setPairedAppIdentifier:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50fbc8 ( 0x8) -[VGVehicle iapIdentifier] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50fbd0 ( 0xc) -[VGVehicle setIapIdentifier:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50fbdc ( 0x8) -[VGVehicle siriIntentsIdentifier] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50fbe4 ( 0xc) -[VGVehicle setSiriIntentsIdentifier:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50fbf0 ( 0x8) -[VGVehicle pairedAppInstallDeviceIdentifier] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50fbf8 ( 0xc) -[VGVehicle setPairedAppInstallDeviceIdentifier:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50fc04 ( 0x8) -[VGVehicle pairedAppInstallSessionIdentifier] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50fc0c ( 0xc) -[VGVehicle setPairedAppInstallSessionIdentifier:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50fc18 ( 0x128) -[VGVehicle .cxx_destruct] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50fd40 ( 0x20) -[VGVehicleStateStorage setDateOfUpdate:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50fd60 ( 0x28) -[VGVehicleStateStorage setHasDateOfUpdate:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50fd88 ( 0x14) -[VGVehicleStateStorage hasDateOfUpdate] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50fd9c ( 0x28) -[VGVehicleStateStorage origin] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50fdc4 ( 0x24) -[VGVehicleStateStorage setOrigin:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50fde8 ( 0x28) -[VGVehicleStateStorage setHasOrigin:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50fe10 ( 0x14) -[VGVehicleStateStorage hasOrigin] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50fe24 ( 0x60) -[VGVehicleStateStorage originAsString:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50fe84 ( 0x84) -[VGVehicleStateStorage StringAsOrigin:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50ff08 ( 0x24) -[VGVehicleStateStorage setBatteryPercentage:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50ff2c ( 0x1c) -[VGVehicleStateStorage setHasBatteryPercentage:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50ff48 ( 0x14) -[VGVehicleStateStorage hasBatteryPercentage] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50ff5c ( 0x24) -[VGVehicleStateStorage setCurrentEVRange:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50ff80 ( 0x28) -[VGVehicleStateStorage setHasCurrentEVRange:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50ffa8 ( 0x14) -[VGVehicleStateStorage hasCurrentEVRange] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50ffbc ( 0x24) -[VGVehicleStateStorage setMaxEVRange:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f50ffe0 ( 0x28) -[VGVehicleStateStorage setHasMaxEVRange:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f510008 ( 0x14) -[VGVehicleStateStorage hasMaxEVRange] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51001c ( 0x24) -[VGVehicleStateStorage setMinBatteryCapacity:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f510040 ( 0x28) -[VGVehicleStateStorage setHasMinBatteryCapacity:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f510068 ( 0x14) -[VGVehicleStateStorage hasMinBatteryCapacity] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51007c ( 0x24) -[VGVehicleStateStorage setCurrentBatteryCapacity:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5100a0 ( 0x28) -[VGVehicleStateStorage setHasCurrentBatteryCapacity:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5100c8 ( 0x14) -[VGVehicleStateStorage hasCurrentBatteryCapacity] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5100dc ( 0x24) -[VGVehicleStateStorage setMaxBatteryCapacity:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f510100 ( 0x28) -[VGVehicleStateStorage setHasMaxBatteryCapacity:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f510128 ( 0x14) -[VGVehicleStateStorage hasMaxBatteryCapacity] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51013c ( 0x18) -[VGVehicleStateStorage hasConsumptionArguments] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f510154 ( 0x18) -[VGVehicleStateStorage hasChargingArguments] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51016c ( 0x24) -[VGVehicleStateStorage setIsCharging:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f510190 ( 0x28) -[VGVehicleStateStorage setHasIsCharging:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5101b8 ( 0x14) -[VGVehicleStateStorage hasIsCharging] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5101cc ( 0x28) -[VGVehicleStateStorage activeConnector] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5101f4 ( 0x24) -[VGVehicleStateStorage setActiveConnector:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f510218 ( 0x28) -[VGVehicleStateStorage setHasActiveConnector:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f510240 ( 0x14) -[VGVehicleStateStorage hasActiveConnector] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f510254 ( 0x60) -[VGVehicleStateStorage activeConnectorAsString:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5102b4 ( 0x12c) -[VGVehicleStateStorage StringAsActiveConnector:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5103e0 ( 0x18) -[VGVehicleStateStorage hasPairedAppInstallSessionIdentifier] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5103f8 ( 0x18) -[VGVehicleStateStorage hasPairedAppInstallDeviceIdentifier] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f510410 ( 0xa4) -[VGVehicleStateStorage description] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5104b4 ( 0x3d4) -[VGVehicleStateStorage dictionaryRepresentation] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f510888 ( 0x698) VGVehicleStateStorageReadFrom [FUNC, EXT, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f510f20 ( 0x3c) (null) [FUNC, FunctionStarts]
0x000000019f510f5c ( 0x8) -[VGVehicleStateStorage readFrom:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f510f64 ( 0x258) -[VGVehicleStateStorage writeTo:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5111bc ( 0x254) -[VGVehicleStateStorage copyTo:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f511410 ( 0x27c) -[VGVehicleStateStorage copyWithZone:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51168c ( 0x2b8) -[VGVehicleStateStorage isEqual:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f511944 ( 0x47c) -[VGVehicleStateStorage hash] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f511dc0 ( 0x25c) -[VGVehicleStateStorage mergeFrom:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51201c ( 0x10) -[VGVehicleStateStorage identifier] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51202c ( 0x14) -[VGVehicleStateStorage setIdentifier:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f512040 ( 0x10) -[VGVehicleStateStorage dateOfUpdate] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f512050 ( 0x10) -[VGVehicleStateStorage batteryPercentage] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f512060 ( 0x10) -[VGVehicleStateStorage currentEVRange] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f512070 ( 0x10) -[VGVehicleStateStorage maxEVRange] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f512080 ( 0x10) -[VGVehicleStateStorage minBatteryCapacity] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f512090 ( 0x10) -[VGVehicleStateStorage currentBatteryCapacity] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5120a0 ( 0x10) -[VGVehicleStateStorage maxBatteryCapacity] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5120b0 ( 0x10) -[VGVehicleStateStorage consumptionArguments] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5120c0 ( 0x14) -[VGVehicleStateStorage setConsumptionArguments:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5120d4 ( 0x10) -[VGVehicleStateStorage chargingArguments] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5120e4 ( 0x14) -[VGVehicleStateStorage setChargingArguments:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5120f8 ( 0x10) -[VGVehicleStateStorage isCharging] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f512108 ( 0x10) -[VGVehicleStateStorage pairedAppInstallSessionIdentifier] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f512118 ( 0x14) -[VGVehicleStateStorage setPairedAppInstallSessionIdentifier:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51212c ( 0x10) -[VGVehicleStateStorage pairedAppInstallDeviceIdentifier] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51213c ( 0x14) -[VGVehicleStateStorage setPairedAppInstallDeviceIdentifier:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f512150 ( 0x84) -[VGVehicleStateStorage .cxx_destruct] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5121d4 ( 0x184) -[VGDataCoordinator initWithApplicationFinder:externalAccessory:delegate:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f512358 ( 0x48) -[VGDataCoordinator dealloc] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5123a0 ( 0xf0) -[VGDataCoordinator unpairedVehicles] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f512490 ( 0x10) __Block_byref_object_copy_ [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5124a0 ( 0x8) __Block_byref_object_dispose_ [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5124a8 ( 0x4c) __37-[VGDataCoordinator unpairedVehicles]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5124f4 ( 0x10) -[VGDataCoordinator _vehicleStateRefreshInterval] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f512504 ( 0xfc) -[VGDataCoordinator forceFetchAllVehicles] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f512600 ( 0xe4) __42-[VGDataCoordinator forceFetchAllVehicles]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5126e4 ( 0x68) __42-[VGDataCoordinator forceFetchAllVehicles]_block_invoke.6 [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51274c ( 0x9c8) -[VGDataCoordinator _updateGarageWithVehicle:syncAcrossDevices:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f513114 ( 0x10) (null) [FUNC, FunctionStarts]
0x000000019f513124 ( 0x14) __64-[VGDataCoordinator _updateGarageWithVehicle:syncAcrossDevices:]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f513138 ( 0x58) __64-[VGDataCoordinator _updateGarageWithVehicle:syncAcrossDevices:]_block_invoke.8 [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f513190 ( 0x58) __64-[VGDataCoordinator _updateGarageWithVehicle:syncAcrossDevices:]_block_invoke.9 [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5131e8 ( 0x260) -[VGDataCoordinator _updateStateOfChargeForVehicle:syncAcrossDevices:completion:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f513448 ( 0x4) __81-[VGDataCoordinator _updateStateOfChargeForVehicle:syncAcrossDevices:completion:]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51344c ( 0x1dc) __81-[VGDataCoordinator _updateStateOfChargeForVehicle:syncAcrossDevices:completion:]_block_invoke.12 [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f513628 ( 0x1dc) __81-[VGDataCoordinator _updateStateOfChargeForVehicle:syncAcrossDevices:completion:]_block_invoke.13 [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f513804 ( 0xa0) -[VGDataCoordinator _indexOfVehicleInUnpairedVehicles:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5138a4 ( 0x8) __55-[VGDataCoordinator _indexOfVehicleInUnpairedVehicles:]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5138ac ( 0x140) -[VGDataCoordinator _vehicleStateProviderForVehicle:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5139ec ( 0xd0) -[VGDataCoordinator finishOnboardingVehicle:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f513abc ( 0x488) __45-[VGDataCoordinator finishOnboardingVehicle:]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f513f44 ( 0x70) __45-[VGDataCoordinator finishOnboardingVehicle:]_block_invoke.62 [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f513fb4 ( 0x6c) -[VGDataCoordinator shouldUnpairVehicle:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f514020 ( 0x68) -[VGDataCoordinator _saveOnboardingInfoForVehicle:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f514088 ( 0x1c0) -[VGDataCoordinator unpairVehicle:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f514248 ( 0x470) __35-[VGDataCoordinator unpairVehicle:]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5146b8 ( 0x98) __35-[VGDataCoordinator unpairVehicle:]_block_invoke.63 [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f514750 ( 0x17c) -[VGDataCoordinator startContinuousUpdatesForVehicle:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5148cc ( 0x104) __54-[VGDataCoordinator startContinuousUpdatesForVehicle:]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5149d0 ( 0xa8) -[VGDataCoordinator endAllContinuousUpdates] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f514a78 ( 0x184) __44-[VGDataCoordinator endAllContinuousUpdates]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f514bfc ( 0xa8) -[VGDataCoordinator _refreshStateForTrackedVehicles] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f514ca4 ( 0x3ec) __52-[VGDataCoordinator _refreshStateForTrackedVehicles]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f515090 ( 0x80) -[VGDataCoordinator _invalidateRefreshTimer] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f515110 ( 0xf4) -[VGDataCoordinator _setupTimerIfNeeded] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f515204 ( 0x164) -[VGDataCoordinator _applicationForVehicle:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f515368 ( 0x350) -[VGDataCoordinator _loadAllOEMVehiclesForApps:completion:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5156b8 ( 0x31c) __59-[VGDataCoordinator _loadAllOEMVehiclesForApps:completion:]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5159d4 ( 0x210) __59-[VGDataCoordinator _loadAllOEMVehiclesForApps:completion:]_block_invoke.71 [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f515be4 ( 0x8) __59-[VGDataCoordinator _loadAllOEMVehiclesForApps:completion:]_block_invoke.72 [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f515bec ( 0x18) __59-[VGDataCoordinator _loadAllOEMVehiclesForApps:completion:]_block_invoke_2 [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f515c04 ( 0x168) -[VGDataCoordinator _oemAppForChargeStreamForVehicle:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f515d6c ( 0xec) -[VGDataCoordinator _startChargeStreamForVehicle:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f515e58 ( 0xe0) -[VGDataCoordinator _stopChargeStreamForVehicle:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f515f38 ( 0xd0) -[VGDataCoordinator vehicleStateUpdated:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f516008 ( 0x488) __41-[VGDataCoordinator vehicleStateUpdated:]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f516490 ( 0x74) __41-[VGDataCoordinator vehicleStateUpdated:]_block_invoke.74 [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f516504 ( 0x164) -[VGDataCoordinator accessoryUpdatedWithVehicle:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f516668 ( 0x3d0) __49-[VGDataCoordinator accessoryUpdatedWithVehicle:]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f516a38 ( 0x114) -[VGDataCoordinator _loadIapVehicles] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f516b4c ( 0x60) __37-[VGDataCoordinator _loadIapVehicles]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f516bac ( 0x204) -[VGDataCoordinator _removeUnpairedIapVehicleIfNeeded] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f516db0 ( 0x70) __54-[VGDataCoordinator _removeUnpairedIapVehicleIfNeeded]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f516e20 ( 0xd0) -[VGDataCoordinator OEMAppsUpdated:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f516ef0 ( 0x9ec) __36-[VGDataCoordinator OEMAppsUpdated:]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5178dc ( 0x48) __36-[VGDataCoordinator OEMAppsUpdated:]_block_invoke.75 [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f517924 ( 0x328) __36-[VGDataCoordinator OEMAppsUpdated:]_block_invoke.76 [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f517c4c ( 0x294) -[VGDataCoordinator getLatestStateOfVehicle:withReply:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f517ee0 ( 0x2e8) __55-[VGDataCoordinator getLatestStateOfVehicle:withReply:]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5181c8 ( 0x198) __55-[VGDataCoordinator getLatestStateOfVehicle:withReply:]_block_invoke.83 [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f518360 ( 0x160) __55-[VGDataCoordinator getLatestStateOfVehicle:withReply:]_block_invoke.84 [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5184c0 ( 0x94) -[VGDataCoordinator .cxx_destruct] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f518554 ( 0x184) VGHexRepresentationFromCGColor [FUNC, EXT, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5186d8 ( 0x58) -[EAAccessory(CarPlaySupport) _vg_supportsCarPlay] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f518730 ( 0x850) -[VGExternalAccessoryState _updateWithVehicleInfo:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f518f80 ( 0x134) __51-[VGExternalAccessoryState _updateWithVehicleInfo:]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5190b4 ( 0x84) -[VGExternalAccessoryState description] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f519138 ( 0x18) -[VGExternalAccessoryState name] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f519150 ( 0xc) -[VGExternalAccessoryState setName:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51915c ( 0x8) -[VGExternalAccessoryState manufacturer] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f519164 ( 0xc) -[VGExternalAccessoryState setManufacturer:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f519170 ( 0x8) -[VGExternalAccessoryState model] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f519178 ( 0xc) -[VGExternalAccessoryState setModel:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f519184 ( 0x8) -[VGExternalAccessoryState year] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51918c ( 0xc) -[VGExternalAccessoryState setYear:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f519198 ( 0x8) -[VGExternalAccessoryState colorHex] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5191a0 ( 0xc) -[VGExternalAccessoryState setColorHex:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5191ac ( 0x8) -[VGExternalAccessoryState currentEVRange] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5191b4 ( 0xc) -[VGExternalAccessoryState setCurrentEVRange:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5191c0 ( 0x8) -[VGExternalAccessoryState maxEVRange] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5191c8 ( 0xc) -[VGExternalAccessoryState setMaxEVRange:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5191d4 ( 0x8) -[VGExternalAccessoryState consumptionArguments] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5191dc ( 0xc) -[VGExternalAccessoryState setConsumptionArguments:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5191e8 ( 0x8) -[VGExternalAccessoryState chargingArguments] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5191f0 ( 0xc) -[VGExternalAccessoryState setChargingArguments:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5191fc ( 0x8) -[VGExternalAccessoryState batteryCharge] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f519204 ( 0xc) -[VGExternalAccessoryState setBatteryCharge:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f519210 ( 0x8) -[VGExternalAccessoryState minBatteryCapacity] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f519218 ( 0xc) -[VGExternalAccessoryState setMinBatteryCapacity:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f519224 ( 0x8) -[VGExternalAccessoryState currentBatteryCapacity] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51922c ( 0xc) -[VGExternalAccessoryState setCurrentBatteryCapacity:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f519238 ( 0x8) -[VGExternalAccessoryState maxBatteryCapacity] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f519240 ( 0xc) -[VGExternalAccessoryState setMaxBatteryCapacity:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51924c ( 0x8) -[VGExternalAccessoryState supportedConnectors] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f519254 ( 0x8) -[VGExternalAccessoryState setSupportedConnectors:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51925c ( 0x8) -[VGExternalAccessoryState isCharging] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f519264 ( 0x8) -[VGExternalAccessoryState activeConnector] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51926c ( 0x8) -[VGExternalAccessoryState powerByConnector] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f519274 ( 0xf8) -[VGExternalAccessoryState .cxx_destruct] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51936c ( 0x1fc) -[VGExternalAccessory init] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f519568 ( 0xc0) -[VGExternalAccessory dealloc] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f519628 ( 0x118) -[VGExternalAccessory _updateFromVehicleInfo:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f519740 ( 0x200) __46-[VGExternalAccessory _updateFromVehicleInfo:]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f519940 ( 0x114) -[VGExternalAccessory _notifyDelegateWithCurrentVehicle] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f519a54 ( 0x1c0) __56-[VGExternalAccessory _notifyDelegateWithCurrentVehicle]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f519c14 ( 0x288) -[VGExternalAccessory _vehicleForCurrentState] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f519e9c ( 0x22c) -[VGExternalAccessory _vehicleStateForCurrentState] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51a0c8 ( 0x1b0) -[VGExternalAccessory _currentStatePassesEVRoutingRequirements] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51a278 ( 0x190) -[VGExternalAccessory _modelIdFromArguments:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51a408 ( 0x280) -[VGExternalAccessory _isConnectedVehicleAllowlisted] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51a688 ( 0x80) -[VGExternalAccessory _isConnectedToElectricVehicle] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51a708 ( 0x100) -[VGExternalAccessory _isConnectedToCarPlayAccessory] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51a808 ( 0xa4) -[VGExternalAccessory _identifier] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51a8ac ( 0xa4) -[VGExternalAccessory _bluetoothIdentifier] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51a950 ( 0xa4) -[VGExternalAccessory _firmwareId] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51a9f4 ( 0xcc) -[VGExternalAccessory isConnectedToVehicle:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51aac0 ( 0xd8) __44-[VGExternalAccessory isConnectedToVehicle:]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51ab98 ( 0xcc) -[VGExternalAccessory isConnectedToAccessoryWithIdentifier:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51ac64 ( 0x88) __60-[VGExternalAccessory isConnectedToAccessoryWithIdentifier:]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51acec ( 0xf0) -[VGExternalAccessory getStateOfChargeForVehicle:completion:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51addc ( 0x28c) __61-[VGExternalAccessory getStateOfChargeForVehicle:completion:]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51b068 ( 0xd0) -[VGExternalAccessory listCarsWithCompletion:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51b138 ( 0x1c0) __46-[VGExternalAccessory listCarsWithCompletion:]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51b2f8 ( 0x2c) -[VGExternalAccessory accessoryUpdateDelegate] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51b324 ( 0xc) -[VGExternalAccessory setAccessoryUpdateDelegate:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51b330 ( 0x88) -[VGExternalAccessory .cxx_destruct] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51b3b8 ( 0x26c) VGAllowlistPayload [FUNC, PEXT, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51b624 ( 0x288) VGDictionaryFromVGVehicleArguments [FUNC, PEXT, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51b8ac ( 0x188) VGMap [FUNC, PEXT, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51ba34 ( 0x194) VGFilter [FUNC, PEXT, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51bbc8 ( 0x54) VGChargingConnectorTypeOptionsList [FUNC, EXT, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51bc1c ( 0x18) __VGChargingConnectorTypeOptionsList_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51bc34 ( 0x134) VGChargingConnectorTypeOptionsUnpacked [FUNC, EXT, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51bd68 ( 0xfc) VGChargingConnectorTypeOptionsPacked [FUNC, EXT, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51be64 ( 0x23c) NSStringFromVGChargingConnectorTypeOptions [FUNC, EXT, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51c0a0 ( 0x10) __Block_byref_object_copy_ [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51c0b0 ( 0x8) __Block_byref_object_dispose_ [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51c0b8 ( 0x168) __NSStringFromVGChargingConnectorTypeOptions_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51c220 ( 0x20) (null) [FUNC, FunctionStarts]
0x000000019f51c240 ( 0x70) __NSStringFromVGChargingConnectorTypeOptions_block_invoke.42 [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51c2b0 ( 0x1e0) -[VGVehicleState initWithIdentifier:dateOfUpdate:origin:batteryPercentage:currentEVRange:maxEVRange:minBatteryCapacity:currentBatteryCapacity:maxBatteryCapacity:consumptionArguments:chargingArguments:isCharging:activeConnector:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51c490 ( 0x3b0) -[VGVehicleState isSignificantlyDifferentFromVehicleState:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51c840 ( 0x528) +[VGVehicleState _vehicleStateFromStorage:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51cd68 ( 0x3d0) -[VGVehicleState _storage] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51d138 ( 0x24) (null) [FUNC, FunctionStarts]
0x000000019f51d15c ( 0x8) +[VGVehicleState supportsSecureCoding] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51d164 ( 0x2e0) -[VGVehicleState initWithCoder:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51d444 ( 0x16c) -[VGVehicleState encodeWithCoder:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51d5b0 ( 0x68) -[VGVehicleState copyWithZone:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51d618 ( 0x310) -[VGVehicleState isEqual:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51d928 ( 0x14c) -[VGVehicleState description] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51da74 ( 0x8) -[VGVehicleState identifier] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51da7c ( 0x8) -[VGVehicleState dateOfUpdate] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51da84 ( 0x8) -[VGVehicleState origin] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51da8c ( 0x8) -[VGVehicleState currentEVRange] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51da94 ( 0x8) -[VGVehicleState maxEVRange] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51da9c ( 0x8) -[VGVehicleState minBatteryCapacity] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51daa4 ( 0x8) -[VGVehicleState currentBatteryCapacity] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51daac ( 0x8) -[VGVehicleState maxBatteryCapacity] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51dab4 ( 0x8) -[VGVehicleState consumptionArguments] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51dabc ( 0x8) -[VGVehicleState chargingArguments] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51dac4 ( 0x8) -[VGVehicleState isCharging] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51dacc ( 0x8) -[VGVehicleState activeConnector] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51dad4 ( 0x8) -[VGVehicleState batteryPercentage] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51dadc ( 0xa4) -[VGVehicleState .cxx_destruct] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51db80 ( 0x1b4) -[VGChargingNetworkAvailabilityProvider initWithDelegate:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51dd34 ( 0xd8) __58-[VGChargingNetworkAvailabilityProvider initWithDelegate:]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51de0c ( 0x64) -[VGChargingNetworkAvailabilityProvider dealloc] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51de70 ( 0xf0) -[VGChargingNetworkAvailabilityProvider suggestedNetworks] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51df60 ( 0x10) __Block_byref_object_copy_ [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51df70 ( 0x8) __Block_byref_object_dispose_ [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51df78 ( 0x4c) __58-[VGChargingNetworkAvailabilityProvider suggestedNetworks]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51dfc4 ( 0xf0) -[VGChargingNetworkAvailabilityProvider otherNetworks] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51e0b4 ( 0x4c) __54-[VGChargingNetworkAvailabilityProvider otherNetworks]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51e100 ( 0x580) -[VGChargingNetworkAvailabilityProvider _reloadNetworks] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51e680 ( 0x270) __56-[VGChargingNetworkAvailabilityProvider _reloadNetworks]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51e8f0 ( 0x70) __56-[VGChargingNetworkAvailabilityProvider _reloadNetworks]_block_invoke.15 [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51e960 ( 0x70) __56-[VGChargingNetworkAvailabilityProvider _reloadNetworks]_block_invoke_2 [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51e9d0 ( 0xe4) __56-[VGChargingNetworkAvailabilityProvider _reloadNetworks]_block_invoke_3 [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51eab4 ( 0xa8) -[VGChargingNetworkAvailabilityProvider _localeChanged:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51eb5c ( 0x2e0) __56-[VGChargingNetworkAvailabilityProvider _localeChanged:]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51ee3c ( 0x74) -[VGChargingNetworkAvailabilityProvider resourceManifestManagerDidChangeActiveTileGroup:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51eeb0 ( 0x7c) -[VGChargingNetworkAvailabilityProvider .cxx_destruct] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51ef2c ( 0x9c) VGChargingNetworkStorageFromVGChargingNetwork [FUNC, EXT, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51efc8 ( 0x320) -[VGChargingNetwork initWithBrandInfoMapping:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51f2e8 ( 0x130) -[VGChargingNetwork initWithChargingNetworkStorage:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51f418 ( 0x50) -[VGChargingNetwork copyWithZone:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51f468 ( 0xa0) -[VGChargingNetwork initWithCoder:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51f508 ( 0x6c) -[VGChargingNetwork encodeWithCoder:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51f574 ( 0x8) +[VGChargingNetwork supportsSecureCoding] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51f57c ( 0x68) -[VGChargingNetwork isEqual:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51f5e4 ( 0x34) -[VGChargingNetwork hash] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51f618 ( 0x50) -[VGChargingNetwork description] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51f668 ( 0x8) -[VGChargingNetwork globalBrandID] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51f670 ( 0x8) -[VGChargingNetwork name] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51f678 ( 0xc) -[VGChargingNetwork .cxx_destruct] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51f684 ( 0x54) VGGetAssertLog [FUNC, EXT, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51f6d8 ( 0x44) __VGGetAssertLog_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51f71c ( 0x54) VGGetChargingNetworksLog [FUNC, EXT, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51f770 ( 0x44) __VGGetChargingNetworksLog_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51f7b4 ( 0x54) VGGetExternalAccessoryLog [FUNC, EXT, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51f808 ( 0x44) __VGGetExternalAccessoryLog_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51f84c ( 0x54) VGGetExternalAccessoryModelFilterLog [FUNC, EXT, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51f8a0 ( 0x44) __VGGetExternalAccessoryModelFilterLog_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51f8e4 ( 0x54) VGGetDataCoordinatorLog [FUNC, EXT, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51f938 ( 0x44) __VGGetDataCoordinatorLog_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51f97c ( 0x54) VGGetOEMApplicationLog [FUNC, EXT, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51f9d0 ( 0x44) __VGGetOEMApplicationLog_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51fa14 ( 0x54) VGGetPersistingLog [FUNC, EXT, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51fa68 ( 0x44) __VGGetPersistingLog_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51faac ( 0x54) VGGetUIHelperLog [FUNC, EXT, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51fb00 ( 0x44) __VGGetUIHelperLog_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51fb44 ( 0x54) VGGetVirtualGarageLog [FUNC, EXT, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51fb98 ( 0x44) __VGGetVirtualGarageLog_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51fbdc ( 0x138) -[VGDenylistEntry initWithModelId:firmwareIds:years:models:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51fd14 ( 0x170) -[VGDenylistEntry isEqual:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51fe84 ( 0x7c) -[VGDenylistEntry isSupersetOfEntry:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51ff00 ( 0xb0) __37-[VGDenylistEntry isSupersetOfEntry:]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f51ffb0 ( 0x6ec) -[VGDenylistEntry description] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52069c ( 0x5c) -[VGDenylistEntry .cxx_destruct] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5206f8 ( 0x54) -[VGExternalAccessoryModelFilter init] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52074c ( 0x44) -[VGExternalAccessoryModelFilter modelIdAllowlist] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f520790 ( 0x44) -[VGExternalAccessoryModelFilter denylist] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5207d4 ( 0xb4) -[VGExternalAccessoryModelFilter _initializeAllowAndDenylists] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f520888 ( 0x27c) __62-[VGExternalAccessoryModelFilter _initializeAllowAndDenylists]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f520b04 ( 0x5e8) __62-[VGExternalAccessoryModelFilter _initializeAllowAndDenylists]_block_invoke.27 [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5210ec ( 0x164) __62-[VGExternalAccessoryModelFilter _initializeAllowAndDenylists]_block_invoke.31 [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f521250 ( 0x148) __62-[VGExternalAccessoryModelFilter _initializeAllowAndDenylists]_block_invoke.33 [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f521398 ( 0x598) -[VGExternalAccessoryModelFilter allowsVehicleWithModelId:firmwareId:year:model:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f521930 ( 0x48) __81-[VGExternalAccessoryModelFilter allowsVehicleWithModelId:firmwareId:year:model:]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f521978 ( 0xec) __81-[VGExternalAccessoryModelFilter allowsVehicleWithModelId:firmwareId:year:model:]_block_invoke.38 [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f521a64 ( 0xc) -[VGExternalAccessoryModelFilter setModelIdAllowlist:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f521a70 ( 0xc) -[VGExternalAccessoryModelFilter setDenylist:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f521a7c ( 0x44) -[VGExternalAccessoryModelFilter .cxx_destruct] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f521ac0 ( 0x338) -[VGVirtualGarage initWithGaragePersister:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f521df8 ( 0x278) __43-[VGVirtualGarage initWithGaragePersister:]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f522070 ( 0xf8) -[VGVirtualGarage initWithCoder:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f522168 ( 0xe0) -[VGVirtualGarage dealloc] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f522248 ( 0x8) +[VGVirtualGarage supportsSecureCoding] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f522250 ( 0x318) -[VGVirtualGarage description] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f522568 ( 0x68) -[VGVirtualGarage vehicles] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5225d0 ( 0x70) -[VGVirtualGarage selectedVehicle] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f522640 ( 0x404) -[VGVirtualGarage _vehicleWithIdentifier:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f522a44 ( 0x44) __42-[VGVirtualGarage _vehicleWithIdentifier:]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f522a88 ( 0x70) -[VGVirtualGarage setShouldAssumeFullCharge:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f522af8 ( 0x1d8) -[VGVirtualGarage _persisterHasStaleStateForVehicle:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f522cd0 ( 0x204) -[VGVirtualGarage _addVehicle:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f522ed4 ( 0x4c8) -[VGVirtualGarage _saveVehicle:syncAcrossDevices:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52339c ( 0x70) __50-[VGVirtualGarage _saveVehicle:syncAcrossDevices:]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52340c ( 0x1c4) -[VGVirtualGarage _removeVehicleWithIdentifier:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5235d0 ( 0x190) -[VGVirtualGarage _selectVehicleWithIdentifier:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f523760 ( 0x4d4) -[VGVirtualGarage _onboardVehicle:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f523c34 ( 0xc) __35-[VGVirtualGarage _onboardVehicle:]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f523c40 ( 0x154) -[VGVirtualGarage _unpairVehicle:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f523d94 ( 0x178) -[VGVirtualGarage _setShouldUsePreferredNetworks:forVehicle:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f523f0c ( 0x194) -[VGVirtualGarage _startContinuousUpdatesIfNeeded] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5240a0 ( 0x138) -[VGVirtualGarage _endContinuousUpdates] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5241d8 ( 0x1c4) -[VGVirtualGarage _garageCopy] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52439c ( 0x20) __30-[VGVirtualGarage _garageCopy]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5243bc ( 0x23c) -[VGVirtualGarage _executeQueuedCompletionHandlersIfNeeded] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5245f8 ( 0x2f8) -[VGVirtualGarage _removeVehiclesWithUninstalledAppsIfNeeded] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5248f0 ( 0x89c) -[VGVirtualGarage _forceUpdateWithVehicles:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52518c ( 0x68) __44-[VGVirtualGarage _forceUpdateWithVehicles:]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5251f4 ( 0x14c) -[VGVirtualGarage garagePersister:wantsToUpdateVehicles:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f525340 ( 0x64) -[VGVirtualGarage _notifyObserversGarageDidUpdateVehicles] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5253a4 ( 0x98) -[VGVirtualGarage encodeWithCoder:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52543c ( 0xa8) -[VGVirtualGarage copyWithZone:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5254e4 ( 0x4) -[VGVirtualGarage valueChangedForGEOConfigKey:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5254e8 ( 0xcc) -[VGVirtualGarage dataCoordinator:wantsToUpdateVehicle:syncAcrossDevices:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5255b4 ( 0x64) -[VGVirtualGarage dataCoordinator:didUpdateUnpairedVehicles:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f525618 ( 0x74) -[VGVirtualGarage dataCoordinatorDidUpdateInstalledApps:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52568c ( 0x4) -[VGVirtualGarage virtualGarageAddVehicle:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f525690 ( 0x58) -[VGVirtualGarage virtualGarageRemoveVehicle:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5256e8 ( 0x170) -[VGVirtualGarage virtualGarageGetGarageWithReply:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f525858 ( 0x14) __51-[VGVirtualGarage virtualGarageGetGarageWithReply:]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52586c ( 0x1b8) -[VGVirtualGarage virtualGarageSelectVehicle:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f525a24 ( 0x138) __46-[VGVirtualGarage virtualGarageSelectVehicle:]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f525b5c ( 0x8) -[VGVirtualGarage virtualGarageSaveVehicle:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f525b64 ( 0x4) -[VGVirtualGarage virtualGarageOnboardVehicle:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f525b68 ( 0x4) -[VGVirtualGarage virtualGarageSetShouldUsePreferredNetworks:forVehicle:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f525b6c ( 0x4) -[VGVirtualGarage virtualGarageStartContinuousUpdatesIfNeeded] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f525b70 ( 0x4) -[VGVirtualGarage virtualGarageEndContinuousUpdates] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f525b74 ( 0x4) -[VGVirtualGarage virtualGarageSetAssumesFullCharge:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f525b78 ( 0x6c) -[VGVirtualGarage virtualGarageForceFetchAllVehicles] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f525be4 ( 0x84) -[VGVirtualGarage virtualGarageGetListOfUnpairedVehiclesWithReply:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f525c68 ( 0x2c4) -[VGVirtualGarage virtualGarageGetLatestStateOfVehicleWithIdentifier:syncAcrossDevices:withReply:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f525f2c ( 0xcc) __98-[VGVirtualGarage virtualGarageGetLatestStateOfVehicleWithIdentifier:syncAcrossDevices:withReply:]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f525ff8 ( 0x8) -[VGVirtualGarage shouldAssumeFullCharge] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f526000 ( 0x2c) -[VGVirtualGarage delegate] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52602c ( 0xc) -[VGVirtualGarage setDelegate:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f526038 ( 0x70) -[VGVirtualGarage .cxx_destruct] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5260a8 ( 0x10) -[VGChargingNetworksStorage clearNetworks] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5260b8 ( 0x80) -[VGChargingNetworksStorage addNetworks:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f526138 ( 0x10) -[VGChargingNetworksStorage networksCount] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f526148 ( 0x10) -[VGChargingNetworksStorage networksAtIndex:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f526158 ( 0xc) +[VGChargingNetworksStorage networksType] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f526164 ( 0x20) -[VGChargingNetworksStorage setUsesPreferredNetworksForRouting:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f526184 ( 0x1c) -[VGChargingNetworksStorage setHasUsesPreferredNetworksForRouting:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5261a0 ( 0x14) -[VGChargingNetworksStorage hasUsesPreferredNetworksForRouting] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5261b4 ( 0xa4) -[VGChargingNetworksStorage description] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f526258 ( 0x1dc) -[VGChargingNetworksStorage dictionaryRepresentation] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f526434 ( 0x284) VGChargingNetworksStorageReadFrom [FUNC, EXT, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5266b8 ( 0x8) -[VGChargingNetworksStorage readFrom:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5266c0 ( 0x13c) -[VGChargingNetworksStorage writeTo:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5267fc ( 0xd0) -[VGChargingNetworksStorage copyTo:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5268cc ( 0x168) -[VGChargingNetworksStorage copyWithZone:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f526a34 ( 0xc4) -[VGChargingNetworksStorage isEqual:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f526af8 ( 0x64) -[VGChargingNetworksStorage hash] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f526b5c ( 0x13c) -[VGChargingNetworksStorage mergeFrom:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f526c98 ( 0x10) -[VGChargingNetworksStorage networks] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f526ca8 ( 0x14) -[VGChargingNetworksStorage setNetworks:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f526cbc ( 0x10) -[VGChargingNetworksStorage usesPreferredNetworksForRouting] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f526ccc ( 0x14) -[VGChargingNetworksStorage .cxx_destruct] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f526ce0 ( 0x4) -[VGOEMApplicationFinder findOEMApplications] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f526ce4 ( 0x2c) -[VGOEMApplicationFinder delegate] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f526d10 ( 0xc) -[VGOEMApplicationFinder setDelegate:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f526d1c ( 0x8) -[VGOEMApplicationFinder .cxx_destruct] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f526d24 ( 0xcc) -[VGOEMApplication initWithIdentifier:applicationRecord:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f526df0 ( 0x188) -[VGOEMApplication _VGChargingConnectorTypeOptionsFromINCarChargingConnectorTypes:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f526f78 ( 0xb8) -[VGOEMApplication _VGChargingConnectorTypeOptionFromINCarChargingConnectorType:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f527030 ( 0x178) -[VGOEMApplication _isValidConsumptionModelForResponse:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5271a8 ( 0x6a0) -[VGOEMApplication _vehicleStateFromResponse:error:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f527848 ( 0x5f4) -[VGOEMApplication _vehiclesFromListCarsIntentResponse:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f527e3c ( 0x2c4) -[VGOEMApplication _powerByConnectorDictionaryFromCar:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f528100 ( 0x264) -[VGOEMApplication listCarsWithCompletion:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f528364 ( 0x230) __43-[VGOEMApplication listCarsWithCompletion:]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f528594 ( 0x2e4) __43-[VGOEMApplication listCarsWithCompletion:]_block_invoke.25 [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f528878 ( 0x18) __43-[VGOEMApplication listCarsWithCompletion:]_block_invoke.26 [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f528890 ( 0x1fc) __43-[VGOEMApplication listCarsWithCompletion:]_block_invoke.28 [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f528a8c ( 0x190) __43-[VGOEMApplication listCarsWithCompletion:]_block_invoke.29 [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f528c1c ( 0x298) -[VGOEMApplication getStateOfChargeForVehicle:completion:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f528eb4 ( 0x2a4) __58-[VGOEMApplication getStateOfChargeForVehicle:completion:]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f529158 ( 0x2f8) __58-[VGOEMApplication getStateOfChargeForVehicle:completion:]_block_invoke.34 [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f529450 ( 0x18) __58-[VGOEMApplication getStateOfChargeForVehicle:completion:]_block_invoke.35 [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f529468 ( 0x568) __58-[VGOEMApplication getStateOfChargeForVehicle:completion:]_block_invoke.36 [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5299d0 ( 0x254) __58-[VGOEMApplication getStateOfChargeForVehicle:completion:]_block_invoke.48 [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f529c24 ( 0x17c) -[VGOEMApplication _createChargeStreamingConnectionIfNeededForVehicle:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f529da0 ( 0x21c) __71-[VGOEMApplication _createChargeStreamingConnectionIfNeededForVehicle:]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f529fbc ( 0x244) -[VGOEMApplication startSendingChargeUpdatesForVehicle:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52a200 ( 0x15c) __56-[VGOEMApplication startSendingChargeUpdatesForVehicle:]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52a35c ( 0x174) __56-[VGOEMApplication startSendingChargeUpdatesForVehicle:]_block_invoke.53 [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52a4d0 ( 0x244) -[VGOEMApplication stopSendingChargeUpdatesForVehicle:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52a714 ( 0x15c) __55-[VGOEMApplication stopSendingChargeUpdatesForVehicle:]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52a870 ( 0x180) __55-[VGOEMApplication stopSendingChargeUpdatesForVehicle:]_block_invoke.54 [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52a9f0 ( 0x188) -[VGOEMApplication intentResponseDidUpdate:withSerializedCacheItems:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52ab78 ( 0x3f0) __69-[VGOEMApplication intentResponseDidUpdate:withSerializedCacheItems:]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52af68 ( 0x240) -[VGOEMApplication _connectionWithIntent:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52b1a8 ( 0x13c) __42-[VGOEMApplication _connectionWithIntent:]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52b2e4 ( 0x94) -[VGOEMApplication isEqual:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52b378 ( 0x3c) -[VGOEMApplication description] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52b3b4 ( 0x8) -[VGOEMApplication applicationRecord] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52b3bc ( 0x2c) -[VGOEMApplication chargeStreamingDelegate] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52b3e8 ( 0xc) -[VGOEMApplication setChargeStreamingDelegate:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52b3f4 ( 0x8) -[VGOEMApplication isEnabled] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52b3fc ( 0x8) -[VGOEMApplication setEnabled:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52b404 ( 0x8) -[VGOEMApplication identifier] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52b40c ( 0x8) -[VGOEMApplication allowedFormulaIDs] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52b414 ( 0xc) -[VGOEMApplication setAllowedFormulaIDs:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52b420 ( 0x70) -[VGOEMApplication .cxx_destruct] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52b490 ( 0x134) ___connectorMapping_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52b5c4 ( 0xe0) -[VGVirtualGarageServer init] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52b6a4 ( 0x6c) -[VGVirtualGarageServer listener] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52b710 ( 0x68) -[VGVirtualGarageServer garage] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52b778 ( 0x54) +[VGVirtualGarageServer sharedServer] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52b7cc ( 0x3c) __37+[VGVirtualGarageServer sharedServer]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52b808 ( 0x48) -[VGVirtualGarageServer dealloc] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52b850 ( 0x8) +[VGVirtualGarageServer canUseVirtualGarageXPCService] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52b858 ( 0xdc) -[VGVirtualGarageServer startWithPersister:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52b934 ( 0x144) __44-[VGVirtualGarageServer startWithPersister:]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52ba78 ( 0xa8) -[VGVirtualGarageServer stop] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52bb20 ( 0x134) __29-[VGVirtualGarageServer stop]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52bc54 ( 0x104) -[VGVirtualGarageServer _cleanUp] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52bd58 ( 0x1c) -[VGVirtualGarageServer setHostsVirtualGarage:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52bd74 ( 0xd8) -[VGVirtualGarageServer _setupVirtualGarageHostingIfNeeded] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52be4c ( 0x60) __59-[VGVirtualGarageServer _setupVirtualGarageHostingIfNeeded]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52beac ( 0x124) -[VGVirtualGarageServer valueChangedForGEOConfigKey:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52bfd0 ( 0x1b4) -[VGVirtualGarageServer listener:shouldAcceptNewConnection:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52c184 ( 0x1b0) __60-[VGVirtualGarageServer listener:shouldAcceptNewConnection:]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52c334 ( 0x68) __60-[VGVirtualGarageServer listener:shouldAcceptNewConnection:]_block_invoke_2 [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52c39c ( 0x1b0) __60-[VGVirtualGarageServer listener:shouldAcceptNewConnection:]_block_invoke.46 [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52c54c ( 0x1a0) __60-[VGVirtualGarageServer listener:shouldAcceptNewConnection:]_block_invoke.47 [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52c6ec ( 0x210) -[VGVirtualGarageServer virtualGarageDidUpdate:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52c8fc ( 0x60) __48-[VGVirtualGarageServer virtualGarageDidUpdate:]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52c95c ( 0x190) __48-[VGVirtualGarageServer virtualGarageDidUpdate:]_block_invoke_2 [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52caec ( 0xd8) __48-[VGVirtualGarageServer virtualGarageDidUpdate:]_block_invoke_3 [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52cbc4 ( 0x470) -[VGVirtualGarageServer virtualGarage:didUpdateUnpairedVehicles:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52d034 ( 0x60) __65-[VGVirtualGarageServer virtualGarage:didUpdateUnpairedVehicles:]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52d094 ( 0x190) __65-[VGVirtualGarageServer virtualGarage:didUpdateUnpairedVehicles:]_block_invoke_2 [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52d224 ( 0xd8) __65-[VGVirtualGarageServer virtualGarage:didUpdateUnpairedVehicles:]_block_invoke_3 [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52d2fc ( 0x60) -[VGVirtualGarageServer virtualGarageAddVehicle:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52d35c ( 0x60) -[VGVirtualGarageServer virtualGarageRemoveVehicle:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52d3bc ( 0x60) -[VGVirtualGarageServer virtualGarageSaveVehicle:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52d41c ( 0x60) -[VGVirtualGarageServer virtualGarageSelectVehicle:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52d47c ( 0x60) -[VGVirtualGarageServer virtualGarageOnboardVehicle:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52d4dc ( 0x70) -[VGVirtualGarageServer virtualGarageSetShouldUsePreferredNetworks:forVehicle:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52d54c ( 0x40) -[VGVirtualGarageServer virtualGarageStartContinuousUpdatesIfNeeded] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52d58c ( 0x40) -[VGVirtualGarageServer virtualGarageEndContinuousUpdates] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52d5cc ( 0x8) -[VGVirtualGarageServer virtualGarageSetAssumesFullCharge:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52d5d4 ( 0x40) -[VGVirtualGarageServer virtualGarageForceFetchAllVehicles] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52d614 ( 0xb4) -[VGVirtualGarageServer virtualGarageGetGarageWithReply:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52d6c8 ( 0xe8) __57-[VGVirtualGarageServer virtualGarageGetGarageWithReply:]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52d7b0 ( 0x18) __57-[VGVirtualGarageServer virtualGarageGetGarageWithReply:]_block_invoke_2 [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52d7c8 ( 0xb4) -[VGVirtualGarageServer virtualGarageGetListOfUnpairedVehiclesWithReply:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52d87c ( 0xe8) __73-[VGVirtualGarageServer virtualGarageGetListOfUnpairedVehiclesWithReply:]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52d964 ( 0x18) __73-[VGVirtualGarageServer virtualGarageGetListOfUnpairedVehiclesWithReply:]_block_invoke_2 [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52d97c ( 0xd8) -[VGVirtualGarageServer virtualGarageGetLatestStateOfVehicleWithIdentifier:syncAcrossDevices:withReply:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52da54 ( 0xe8) __104-[VGVirtualGarageServer virtualGarageGetLatestStateOfVehicleWithIdentifier:syncAcrossDevices:withReply:]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52db3c ( 0x18) __104-[VGVirtualGarageServer virtualGarageGetLatestStateOfVehicleWithIdentifier:syncAcrossDevices:withReply:]_block_invoke_2 [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52db54 ( 0x2c) -[VGVirtualGarageServer observer] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52db80 ( 0xc) -[VGVirtualGarageServer setObserver:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52db8c ( 0x8) -[VGVirtualGarageServer observerQueue] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52db94 ( 0xc) -[VGVirtualGarageServer setObserverQueue:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52dba0 ( 0x8) -[VGVirtualGarageServer hostsVirtualGarage] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52dba8 ( 0xc) -[VGVirtualGarageServer setGarage:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52dbb4 ( 0xc) -[VGVirtualGarageServer setListener:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52dbc0 ( 0x8) -[VGVirtualGarageServer activeConnections] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52dbc8 ( 0xc) -[VGVirtualGarageServer setActiveConnections:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52dbd4 ( 0x7c) -[VGVirtualGarageServer .cxx_destruct] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52dc50 ( 0x1f0) -[VGVirtualGarageService init] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52de40 ( 0x8) +[VGVirtualGarageService canUseVirtualGarageXPCService] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52de48 ( 0x44) -[VGVirtualGarageService connection] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52de8c ( 0x280) -[VGVirtualGarageService openForClient:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52e10c ( 0x134) __40-[VGVirtualGarageService openForClient:]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52e240 ( 0x40) __40-[VGVirtualGarageService openForClient:]_block_invoke.17 [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52e280 ( 0x260) -[VGVirtualGarageService closeForClient:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52e4e0 ( 0xe4) __41-[VGVirtualGarageService closeForClient:]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52e5c4 ( 0x420) -[VGVirtualGarageService _openConnection] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52e9e4 ( 0x68) __41-[VGVirtualGarageService _openConnection]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52ea4c ( 0x80) __41-[VGVirtualGarageService _openConnection]_block_invoke.57 [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52eacc ( 0xa8) -[VGVirtualGarageService _closeConnection] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52eb74 ( 0x12c) __42-[VGVirtualGarageService _closeConnection]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52eca0 ( 0x54) +[VGVirtualGarageService sharedService] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52ecf4 ( 0x3c) __39+[VGVirtualGarageService sharedService]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52ed30 ( 0xc4) -[VGVirtualGarageService registerObserver:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52edf4 ( 0xc4) -[VGVirtualGarageService unregisterObserver:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52eeb8 ( 0xcc) -[VGVirtualGarageService _clearActiveVehicleIdentifierIfNeeded:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52ef84 ( 0x350) -[VGVirtualGarageService messageTargetWithErrorReply:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52f2d4 ( 0xd0) __54-[VGVirtualGarageService messageTargetWithErrorReply:]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52f3a4 ( 0x160) -[VGVirtualGarageService virtualGarageAddVehicle:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52f504 ( 0x64) __50-[VGVirtualGarageService virtualGarageAddVehicle:]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52f568 ( 0x160) -[VGVirtualGarageService virtualGarageRemoveVehicle:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52f6c8 ( 0x64) __53-[VGVirtualGarageService virtualGarageRemoveVehicle:]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52f72c ( 0x154) -[VGVirtualGarageService virtualGarageGetGarageWithReply:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52f880 ( 0xb8) __58-[VGVirtualGarageService virtualGarageGetGarageWithReply:]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52f938 ( 0x18) __58-[VGVirtualGarageService virtualGarageGetGarageWithReply:]_block_invoke_2 [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52f950 ( 0x160) -[VGVirtualGarageService virtualGarageSelectVehicle:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52fab0 ( 0x64) __53-[VGVirtualGarageService virtualGarageSelectVehicle:]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52fb14 ( 0x160) -[VGVirtualGarageService virtualGarageOnboardVehicle:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52fc74 ( 0x64) __54-[VGVirtualGarageService virtualGarageOnboardVehicle:]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52fcd8 ( 0x160) -[VGVirtualGarageService virtualGarageSaveVehicle:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52fe38 ( 0x64) __51-[VGVirtualGarageService virtualGarageSaveVehicle:]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f52fe9c ( 0x19c) -[VGVirtualGarageService virtualGarageSetShouldUsePreferredNetworks:forVehicle:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f530038 ( 0x68) __80-[VGVirtualGarageService virtualGarageSetShouldUsePreferredNetworks:forVehicle:]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5300a0 ( 0x12c) -[VGVirtualGarageService virtualGarageStartContinuousUpdatesIfNeeded] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5301cc ( 0x5c) __69-[VGVirtualGarageService virtualGarageStartContinuousUpdatesIfNeeded]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f530228 ( 0x12c) -[VGVirtualGarageService virtualGarageEndContinuousUpdates] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f530354 ( 0x5c) __59-[VGVirtualGarageService virtualGarageEndContinuousUpdates]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5303b0 ( 0x148) -[VGVirtualGarageService virtualGarageSetAssumesFullCharge:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5304f8 ( 0x64) __60-[VGVirtualGarageService virtualGarageSetAssumesFullCharge:]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f53055c ( 0x12c) -[VGVirtualGarageService virtualGarageForceFetchAllVehicles] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f530688 ( 0x5c) __60-[VGVirtualGarageService virtualGarageForceFetchAllVehicles]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5306e4 ( 0x154) -[VGVirtualGarageService virtualGarageGetListOfUnpairedVehiclesWithReply:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f530838 ( 0xb8) __74-[VGVirtualGarageService virtualGarageGetListOfUnpairedVehiclesWithReply:]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f5308f0 ( 0x18) __74-[VGVirtualGarageService virtualGarageGetListOfUnpairedVehiclesWithReply:]_block_invoke_2 [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f530908 ( 0x190) -[VGVirtualGarageService virtualGarageGetLatestStateOfVehicleWithIdentifier:syncAcrossDevices:withReply:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f530a98 ( 0xbc) __105-[VGVirtualGarageService virtualGarageGetLatestStateOfVehicleWithIdentifier:syncAcrossDevices:withReply:]_block_invoke [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f530b54 ( 0x18) __105-[VGVirtualGarageService virtualGarageGetLatestStateOfVehicleWithIdentifier:syncAcrossDevices:withReply:]_block_invoke_2 [FUNC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f530b6c ( 0x108) -[VGVirtualGarageService virtualGarageDidUpdate:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f530c74 ( 0x31c) -[VGVirtualGarageService virtualGarage:didUpdateUnpairedVehicles:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f530f90 ( 0xc) -[VGVirtualGarageService activeVehicleIdentifier] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f530f9c ( 0x8) -[VGVirtualGarageService setActiveVehicleIdentifier:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f530fa4 ( 0xc) -[VGVirtualGarageService setConnection:] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f530fb0 ( 0x80) -[VGVirtualGarageService .cxx_destruct] [FUNC, OBJC, NameNList, MangledNameNList, Merged, NList, FunctionStarts]
0x000000019f531030 ( 0x6c0) __TEXT __auth_stubs
0x000000019f531030 ( 0x10) DYLD-STUB$$CFStringCreateWithCString [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f531040 ( 0x10) DYLD-STUB$$CGColorGetColorSpace [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f531050 ( 0x10) DYLD-STUB$$CGColorGetComponents [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f531060 ( 0x10) DYLD-STUB$$CGColorGetNumberOfComponents [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f531070 ( 0x10) DYLD-STUB$$CGColorSpaceGetModel [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f531080 ( 0x10) DYLD-STUB$$CGColorSpaceGetName [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f531090 ( 0x10) DYLD-STUB$$GEOConfigGetBOOL [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f5310a0 ( 0x10) DYLD-STUB$$GEOConfigGetDouble [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f5310b0 ( 0x10) DYLD-STUB$$GEOConfigGetString [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f5310c0 ( 0x10) DYLD-STUB$$GEOConfigRemoveDelegateListenerForAllKeys [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f5310d0 ( 0x10) DYLD-STUB$$GEOErrorDomain [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f5310e0 ( 0x10) DYLD-STUB$$MapsFeature_IsEnabled_Alberta [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f5310f0 ( 0x10) DYLD-STUB$$MapsFeature_IsEnabled_EVRouting [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f531100 ( 0x10) DYLD-STUB$$NSStringFromClass [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f531110 ( 0x10) DYLD-STUB$$NSStringFromSelector [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f531120 ( 0x10) DYLD-STUB$$PBDataWriterWriteBOOLField [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f531130 ( 0x10) DYLD-STUB$$PBDataWriterWriteDataField [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f531140 ( 0x10) DYLD-STUB$$PBDataWriterWriteDoubleField [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f531150 ( 0x10) DYLD-STUB$$PBDataWriterWriteInt32Field [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f531160 ( 0x10) DYLD-STUB$$PBDataWriterWriteStringField [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f531170 ( 0x10) DYLD-STUB$$PBDataWriterWriteSubmessage [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f531180 ( 0x10) DYLD-STUB$$PBDataWriterWriteUint64Field [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f531190 ( 0x10) DYLD-STUB$$PBReaderPlaceMark [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f5311a0 ( 0x10) DYLD-STUB$$PBReaderReadData [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f5311b0 ( 0x10) DYLD-STUB$$PBReaderReadString [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f5311c0 ( 0x10) DYLD-STUB$$PBReaderRecallMark [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f5311d0 ( 0x10) DYLD-STUB$$PBReaderSkipValueWithTag [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f5311e0 ( 0x10) DYLD-STUB$$_Block_object_dispose [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f5311f0 ( 0x10) DYLD-STUB$$_GEOConfigAddDelegateListenerForKey [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f531200 ( 0x10) DYLD-STUB$$_Unwind_Resume [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f531210 ( 0x10) DYLD-STUB$$__stack_chk_fail [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f531220 ( 0x10) DYLD-STUB$$_os_log_impl [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f531230 ( 0x10) DYLD-STUB$$_os_signpost_emit_with_name_impl [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f531240 ( 0x10) DYLD-STUB$$dispatch_async [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f531250 ( 0x10) DYLD-STUB$$dispatch_group_create [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f531260 ( 0x10) DYLD-STUB$$dispatch_group_enter [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f531270 ( 0x10) DYLD-STUB$$dispatch_group_leave [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f531280 ( 0x10) DYLD-STUB$$dispatch_group_notify [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f531290 ( 0x10) DYLD-STUB$$dispatch_once [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f5312a0 ( 0x10) DYLD-STUB$$dispatch_queue_attr_make_with_autorelease_frequency [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f5312b0 ( 0x10) DYLD-STUB$$dispatch_queue_create [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f5312c0 ( 0x10) DYLD-STUB$$dispatch_sync [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f5312d0 ( 0x10) DYLD-STUB$$fmod [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f5312e0 ( 0x10) DYLD-STUB$$geo_get_global_queue [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f5312f0 ( 0x10) DYLD-STUB$$geo_isolate_sync_data [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f531300 ( 0x10) DYLD-STUB$$geo_isolater_create_with_format [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f531310 ( 0x10) DYLD-STUB$$objc_alloc [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f531320 ( 0x10) DYLD-STUB$$objc_alloc_init [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f531330 ( 0x10) DYLD-STUB$$objc_autorelease [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f531340 ( 0x10) DYLD-STUB$$objc_autoreleaseReturnValue [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f531350 ( 0x10) DYLD-STUB$$objc_claimAutoreleasedReturnValue [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f531360 ( 0x10) DYLD-STUB$$objc_copyWeak [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f531370 ( 0x10) DYLD-STUB$$objc_destroyWeak [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f531380 ( 0x10) DYLD-STUB$$objc_enumerationMutation [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f531390 ( 0x10) DYLD-STUB$$objc_getProperty [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f5313a0 ( 0x10) DYLD-STUB$$objc_initWeak [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f5313b0 ( 0x10) DYLD-STUB$$objc_loadWeakRetained [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f5313c0 ( 0x10) DYLD-STUB$$objc_msgSendSuper2 [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f5313d0 ( 0x10) DYLD-STUB$$objc_opt_class [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f5313e0 ( 0x10) DYLD-STUB$$objc_opt_isKindOfClass [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f5313f0 ( 0x10) DYLD-STUB$$objc_opt_new [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f531400 ( 0x10) DYLD-STUB$$objc_opt_respondsToSelector [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f531410 ( 0x10) DYLD-STUB$$objc_release [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f531420 ( 0x10) DYLD-STUB$$objc_release_x1 [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f531430 ( 0x10) DYLD-STUB$$objc_release_x19 [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f531440 ( 0x10) DYLD-STUB$$objc_release_x20 [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f531450 ( 0x10) DYLD-STUB$$objc_release_x21 [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f531460 ( 0x10) DYLD-STUB$$objc_release_x22 [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f531470 ( 0x10) DYLD-STUB$$objc_release_x23 [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f531480 ( 0x10) DYLD-STUB$$objc_release_x24 [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f531490 ( 0x10) DYLD-STUB$$objc_release_x25 [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f5314a0 ( 0x10) DYLD-STUB$$objc_release_x26 [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f5314b0 ( 0x10) DYLD-STUB$$objc_release_x27 [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f5314c0 ( 0x10) DYLD-STUB$$objc_release_x28 [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f5314d0 ( 0x10) DYLD-STUB$$objc_release_x8 [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f5314e0 ( 0x10) DYLD-STUB$$objc_release_x9 [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f5314f0 ( 0x10) DYLD-STUB$$objc_retain [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f531500 ( 0x10) DYLD-STUB$$objc_retainAutorelease [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f531510 ( 0x10) DYLD-STUB$$objc_retainAutoreleaseReturnValue [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f531520 ( 0x10) DYLD-STUB$$objc_retainBlock [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f531530 ( 0x10) DYLD-STUB$$objc_retain_x1 [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f531540 ( 0x10) DYLD-STUB$$objc_retain_x19 [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f531550 ( 0x10) DYLD-STUB$$objc_retain_x2 [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f531560 ( 0x10) DYLD-STUB$$objc_retain_x20 [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f531570 ( 0x10) DYLD-STUB$$objc_retain_x21 [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f531580 ( 0x10) DYLD-STUB$$objc_retain_x22 [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f531590 ( 0x10) DYLD-STUB$$objc_retain_x23 [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f5315a0 ( 0x10) DYLD-STUB$$objc_retain_x24 [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f5315b0 ( 0x10) DYLD-STUB$$objc_retain_x25 [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f5315c0 ( 0x10) DYLD-STUB$$objc_retain_x26 [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f5315d0 ( 0x10) DYLD-STUB$$objc_retain_x27 [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f5315e0 ( 0x10) DYLD-STUB$$objc_retain_x28 [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f5315f0 ( 0x10) DYLD-STUB$$objc_retain_x3 [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f531600 ( 0x10) DYLD-STUB$$objc_retain_x4 [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f531610 ( 0x10) DYLD-STUB$$objc_retain_x8 [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f531620 ( 0x10) DYLD-STUB$$objc_setProperty_atomic_copy [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f531630 ( 0x10) DYLD-STUB$$objc_setProperty_nonatomic_copy [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f531640 ( 0x10) DYLD-STUB$$objc_storeStrong [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f531650 ( 0x10) DYLD-STUB$$objc_storeWeak [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f531660 ( 0x10) DYLD-STUB$$objc_sync_enter [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f531670 ( 0x10) DYLD-STUB$$objc_sync_exit [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f531680 ( 0x10) DYLD-STUB$$objc_unsafeClaimAutoreleasedReturnValue [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f531690 ( 0x10) DYLD-STUB$$os_log_create [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f5316a0 ( 0x10) DYLD-STUB$$os_log_type_enabled [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f5316b0 ( 0x10) DYLD-STUB$$os_signpost_enabled [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f5316c0 ( 0x10) DYLD-STUB$$os_signpost_id_generate [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f5316d0 ( 0x10) DYLD-STUB$$sel_getName [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f5316e0 ( 0x10) DYLD-STUB$$sysctl [DYLD-STUB, LENGTH, NameNList, MangledNameNList, NList]
0x000000019f5316f0 ( 0x16a4) __TEXT __objc_methlist
0x000000019f5316f0 ( 0xd8) _OBJC_$_INSTANCE_METHODS_VGChargingNetworkStorage [NameNList, MangledNameNList, NList]
0x000000019f5317c8 ( 0x20) _OBJC_$_CLASS_METHODS_VGVehicleDeduper [NameNList, MangledNameNList, NList]
0x000000019f5317e8 ( 0x50) _OBJC_$_INSTANCE_METHODS_NSMeasurement(VGExtras) [NameNList, MangledNameNList, NList]
0x000000019f531838 ( 0x18) _OBJC_$_CLASS_METHODS_VGVehicle [NameNList, MangledNameNList, NList]
0x000000019f531850 ( 0x2b8) _OBJC_$_INSTANCE_METHODS_VGVehicle [NameNList, MangledNameNList, NList]
0x000000019f531b08 ( 0x338) _OBJC_$_INSTANCE_METHODS_VGVehicleStateStorage [NameNList, MangledNameNList, NList]
0x000000019f531e40 ( 0x170) _OBJC_$_INSTANCE_METHODS_VGDataCoordinator [NameNList, MangledNameNList, NList]
0x000000019f531fb0 ( 0x18) _OBJC_$_INSTANCE_METHODS_EAAccessory(CarPlaySupport) [NameNList, MangledNameNList, NList]
0x000000019f531fc8 ( 0x108) _OBJC_$_INSTANCE_METHODS_VGExternalAccessory [NameNList, MangledNameNList, NList]
0x000000019f5320d0 ( 0x1a0) _OBJC_$_INSTANCE_METHODS_VGExternalAccessoryState [NameNList, MangledNameNList, NList]
0x000000019f532270 ( 0x20) _OBJC_$_CLASS_METHODS_VGVehicleState [NameNList, MangledNameNList, NList]
0x000000019f532290 ( 0x110) _OBJC_$_INSTANCE_METHODS_VGVehicleState [NameNList, MangledNameNList, NList]
0x000000019f5323a0 ( 0x68) _OBJC_$_INSTANCE_METHODS_VGChargingNetworkAvailabilityProvider [NameNList, MangledNameNList, NList]
0x000000019f532408 ( 0x18) _OBJC_$_CLASS_METHODS_VGChargingNetwork [NameNList, MangledNameNList, NList]
0x000000019f532420 ( 0x90) _OBJC_$_INSTANCE_METHODS_VGChargingNetwork [NameNList, MangledNameNList, NList]
0x000000019f5324b0 ( 0x48) _OBJC_$_INSTANCE_METHODS_VGDenylistEntry [NameNList, MangledNameNList, NList]
0x000000019f5324f8 ( 0x68) _OBJC_$_INSTANCE_METHODS_VGExternalAccessoryModelFilter [NameNList, MangledNameNList, NList]
0x000000019f532560 ( 0x18) _OBJC_$_CLASS_METHODS_VGVirtualGarage [NameNList, MangledNameNList, NList]
0x000000019f532578 ( 0x240) _OBJC_$_INSTANCE_METHODS_VGVirtualGarage [NameNList, MangledNameNList, NList]
0x000000019f5327b8 ( 0x18) _OBJC_$_CLASS_METHODS_VGChargingNetworksStorage [NameNList, MangledNameNList, NList]
0x000000019f5327d0 ( 0xf8) _OBJC_$_INSTANCE_METHODS_VGChargingNetworksStorage [NameNList, MangledNameNList, NList]
0x000000019f5328c8 ( 0x38) _OBJC_$_INSTANCE_METHODS_VGOEMApplicationFinder [NameNList, MangledNameNList, NList]
0x000000019f532900 ( 0x138) _OBJC_$_INSTANCE_METHODS_VGOEMApplication [NameNList, MangledNameNList, NList]
0x000000019f532a38 ( 0x20) _OBJC_$_CLASS_METHODS_VGVirtualGarageServer [NameNList, MangledNameNList, NList]
0x000000019f532a58 ( 0x1b8) _OBJC_$_INSTANCE_METHODS_VGVirtualGarageServer [NameNList, MangledNameNList, NList]
0x000000019f532c10 ( 0x20) _OBJC_$_CLASS_METHODS_VGVirtualGarageService [NameNList, MangledNameNList, NList]
0x000000019f532c30 ( 0x164) _OBJC_$_INSTANCE_METHODS_VGVirtualGarageService [NameNList, MangledNameNList, NList]
0x000000019f532d98 ( 0xc0) __TEXT __const
0x000000019f532d98 ( 0x38) VirtualGarageVersionString [PEXT, NameNList, MangledNameNList, NList]
0x000000019f532dd0 ( 0x88) VirtualGarageVersionNumber [PEXT, NameNList, MangledNameNList, NList]
0x000000019f532e58 ( 0x2713) __TEXT __cstring
0x000000019f53556b ( 0x3574) __TEXT __oslogstring
0x000000019f538ae0 ( 0x968) __TEXT __gcc_except_tab
0x000000019f538ae0 ( 0x20) GCC_except_table9 [NameNList, MangledNameNList, NList]
0x000000019f538b00 ( 0x1c) GCC_except_table13 [NameNList, MangledNameNList, NList]
0x000000019f538b1c ( 0x20) GCC_except_table23 [NameNList, MangledNameNList, NList]
0x000000019f538b3c ( 0x18) GCC_except_table14 [NameNList, MangledNameNList, NList]
0x000000019f538b54 ( 0x3c) GCC_except_table38 [NameNList, MangledNameNList, NList]
0x000000019f538b90 ( 0x18) GCC_except_table60 [NameNList, MangledNameNList, NList]
0x000000019f538ba8 ( 0x1c) GCC_except_table40 [NameNList, MangledNameNList, NList]
0x000000019f538bc4 ( 0x18) GCC_except_table4 [NameNList, MangledNameNList, NList]
0x000000019f538bdc ( 0xc4) GCC_except_table14 [NameNList, MangledNameNList, NList]
0x000000019f538ca0 ( 0x1c) GCC_except_table0 [NameNList, MangledNameNList, NList]
0x000000019f538cbc ( 0x20) GCC_except_table1 [NameNList, MangledNameNList, NList]
0x000000019f538cdc ( 0x94) GCC_except_table5 [NameNList, MangledNameNList, NList]
0x000000019f538d70 ( 0x10) GCC_except_table6 [NameNList, MangledNameNList, NList]
0x000000019f538d80 ( 0x10) GCC_except_table7 [NameNList, MangledNameNList, NList]
0x000000019f538d90 ( 0x8c) GCC_except_table8 [NameNList, MangledNameNList, NList]
0x000000019f538e1c ( 0x10) GCC_except_table10 [NameNList, MangledNameNList, NList]
0x000000019f538e2c ( 0x48) GCC_except_table12 [NameNList, MangledNameNList, NList]
0x000000019f538e74 ( 0xb4) GCC_except_table13 [NameNList, MangledNameNList, NList]
0x000000019f538f28 ( 0x34) GCC_except_table15 [NameNList, MangledNameNList, NList]
0x000000019f538f5c ( 0x2c) GCC_except_table16 [NameNList, MangledNameNList, NList]
0x000000019f538f88 ( 0xac) GCC_except_table17 [NameNList, MangledNameNList, NList]
0x000000019f539034 ( 0x18) GCC_except_table19 [NameNList, MangledNameNList, NList]
0x000000019f53904c ( 0x20) GCC_except_table20 [NameNList, MangledNameNList, NList]
0x000000019f53906c ( 0x20) GCC_except_table21 [NameNList, MangledNameNList, NList]
0x000000019f53908c ( 0x18) GCC_except_table22 [NameNList, MangledNameNList, NList]
0x000000019f5390a4 ( 0x44) GCC_except_table26 [NameNList, MangledNameNList, NList]
0x000000019f5390e8 ( 0x170) GCC_except_table27 [NameNList, MangledNameNList, NList]
0x000000019f539258 ( 0x14) GCC_except_table31 [NameNList, MangledNameNList, NList]
0x000000019f53926c ( 0x1c) GCC_except_table32 [NameNList, MangledNameNList, NList]
0x000000019f539288 ( 0x20) GCC_except_table39 [NameNList, MangledNameNList, NList]
0x000000019f5392a8 ( 0x10) GCC_except_table49 [NameNList, MangledNameNList, NList]
0x000000019f5392b8 ( 0x20) GCC_except_table51 [NameNList, MangledNameNList, NList]
0x000000019f5392d8 ( 0x18) GCC_except_table8 [NameNList, MangledNameNList, NList]
0x000000019f5392f0 ( 0x14) GCC_except_table9 [NameNList, MangledNameNList, NList]
0x000000019f539304 ( 0x18) GCC_except_table14 [NameNList, MangledNameNList, NList]
0x000000019f53931c ( 0x14) GCC_except_table15 [NameNList, MangledNameNList, NList]
0x000000019f539330 ( 0x18) GCC_except_table22 [NameNList, MangledNameNList, NList]
0x000000019f539348 ( 0x18) GCC_except_table25 [NameNList, MangledNameNList, NList]
0x000000019f539360 ( 0x14) GCC_except_table29 [NameNList, MangledNameNList, NList]
0x000000019f539374 ( 0x1c) GCC_except_table17 [NameNList, MangledNameNList, NList]
0x000000019f539390 ( 0x20) GCC_except_table21 [NameNList, MangledNameNList, NList]
0x000000019f5393b0 ( 0x20) GCC_except_table25 [NameNList, MangledNameNList, NList]
0x000000019f5393d0 ( 0x18) GCC_except_table3 [NameNList, MangledNameNList, NList]
0x000000019f5393e8 ( 0x20) GCC_except_table6 [NameNList, MangledNameNList, NList]
0x000000019f539408 ( 0x1c) GCC_except_table8 [NameNList, MangledNameNList, NList]
0x000000019f539424 ( 0x24) GCC_except_table17 [NameNList, MangledNameNList, NList]
0x000000019f539448 ( 0x7ec) __TEXT __unwind_info
0x000000019f539c34 ( 0x368) __TEXT __objc_classname
0x000000019f539f9c ( 0x41a3) __TEXT __objc_methname
0x000000019f53e13f ( 0xb5e) __TEXT __objc_methtype
0x000000019f53eca0 ( 0x3360) __TEXT __objc_stubs
0x000000019f53eca0 ( 0x20) objc_msgSend$JSONObjectWithData:options:error: [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53ecc0 ( 0x20) objc_msgSend$UTF8String [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53ece0 ( 0x20) objc_msgSend$UUID [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53ed00 ( 0x20) objc_msgSend$UUIDString [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53ed20 ( 0x20) objc_msgSend$_VGChargingConnectorTypeOptionFromINCarChargingConnectorType: [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53ed40 ( 0x20) objc_msgSend$_VGChargingConnectorTypeOptionsFromINCarChargingConnectorTypes: [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53ed60 ( 0x20) objc_msgSend$_addVehicle: [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53ed80 ( 0x20) objc_msgSend$_applicationForVehicle: [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53eda0 ( 0x20) objc_msgSend$_bluetoothIdentifier [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53edc0 ( 0x20) objc_msgSend$_canBeUpdatedFromState: [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53ede0 ( 0x20) objc_msgSend$_cleanUp [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53ee00 ( 0x20) objc_msgSend$_clearActiveVehicleIdentifierIfNeeded: [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53ee20 ( 0x20) objc_msgSend$_closeConnection [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53ee40 ( 0x20) objc_msgSend$_connectionWithIntent: [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53ee60 ( 0x20) objc_msgSend$_createChargeStreamingConnectionIfNeededForVehicle: [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53ee80 ( 0x20) objc_msgSend$_currentStatePassesEVRoutingRequirements [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53eea0 ( 0x20) objc_msgSend$_endContinuousUpdates [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53eec0 ( 0x20) objc_msgSend$_executeQueuedCompletionHandlersIfNeeded [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53eee0 ( 0x20) objc_msgSend$_firmwareId [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53ef00 ( 0x20) objc_msgSend$_forceUpdateWithVehicles: [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53ef20 ( 0x20) objc_msgSend$_garageCopy [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53ef40 ( 0x20) objc_msgSend$_identifier [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53ef60 ( 0x20) objc_msgSend$_identifierForVehicleStateOrigin: [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53ef80 ( 0x20) objc_msgSend$_indexOfVehicleInUnpairedVehicles: [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53efa0 ( 0x20) objc_msgSend$_initializeAllowAndDenylists [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53efc0 ( 0x20) objc_msgSend$_invalidateRefreshTimer [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53efe0 ( 0x20) objc_msgSend$_isConnectedToCarPlayAccessory [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f000 ( 0x20) objc_msgSend$_isConnectedToElectricVehicle [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f020 ( 0x20) objc_msgSend$_isConnectedVehicleAllowlisted [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f040 ( 0x20) objc_msgSend$_isValidConsumptionModelForResponse: [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f060 ( 0x20) objc_msgSend$_loadAllOEMVehiclesForApps:completion: [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f080 ( 0x20) objc_msgSend$_loadIapVehicles [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f0a0 ( 0x20) objc_msgSend$_modelIdFromArguments: [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f0c0 ( 0x20) objc_msgSend$_notifyDelegateWithCurrentVehicle [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f0e0 ( 0x20) objc_msgSend$_notifyObserversGarageDidUpdateVehicles [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f100 ( 0x20) objc_msgSend$_oemAppForChargeStreamForVehicle: [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f120 ( 0x20) objc_msgSend$_onboardVehicle: [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f140 ( 0x20) objc_msgSend$_openConnection [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f160 ( 0x20) objc_msgSend$_persisterHasStaleStateForVehicle: [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f180 ( 0x20) objc_msgSend$_powerByConnectorDictionaryFromCar: [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f1a0 ( 0x20) objc_msgSend$_refreshStateForTrackedVehicles [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f1c0 ( 0x20) objc_msgSend$_reloadNetworks [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f1e0 ( 0x20) objc_msgSend$_removeUnpairedIapVehicleIfNeeded [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f200 ( 0x20) objc_msgSend$_removeVehicleWithIdentifier: [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f220 ( 0x20) objc_msgSend$_removeVehiclesWithUninstalledAppsIfNeeded [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f240 ( 0x20) objc_msgSend$_saveOnboardingInfoForVehicle: [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f260 ( 0x20) objc_msgSend$_saveVehicle:syncAcrossDevices: [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f280 ( 0x20) objc_msgSend$_selectVehicleWithIdentifier: [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f2a0 ( 0x20) objc_msgSend$_setLaunchId: [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f2c0 ( 0x20) objc_msgSend$_setQueue: [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f2e0 ( 0x20) objc_msgSend$_setShouldUsePreferredNetworks:forVehicle: [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f300 ( 0x20) objc_msgSend$_setVehicleState: [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f320 ( 0x20) objc_msgSend$_setupTimerIfNeeded [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f340 ( 0x20) objc_msgSend$_setupVirtualGarageHostingIfNeeded [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f360 ( 0x20) objc_msgSend$_startChargeStreamForVehicle: [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f380 ( 0x20) objc_msgSend$_startContinuousUpdatesIfNeeded [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f3a0 ( 0x20) objc_msgSend$_stopChargeStreamForVehicle: [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f3c0 ( 0x20) objc_msgSend$_unpairVehicle: [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f3e0 ( 0x20) objc_msgSend$_updateGarageWithVehicle:syncAcrossDevices: [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f400 ( 0x20) objc_msgSend$_updateStateOfChargeForVehicle:syncAcrossDevices:completion: [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f420 ( 0x20) objc_msgSend$_updateWithVehicleInfo: [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f440 ( 0x20) objc_msgSend$_updateWithVehicleState: [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f460 ( 0x20) objc_msgSend$_vehicleByUpdatingUsesPreferredNetworksForRouting: [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f480 ( 0x20) objc_msgSend$_vehicleByUpdatingWithVehicle: [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f4a0 ( 0x20) objc_msgSend$_vehicleForCurrentState [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f4c0 ( 0x20) objc_msgSend$_vehicleMatchingVehicle:inArray: [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f4e0 ( 0x20) objc_msgSend$_vehicleStateForCurrentState [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f500 ( 0x20) objc_msgSend$_vehicleStateFromResponse:error: [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f520 ( 0x20) objc_msgSend$_vehicleStateFromStorage: [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f540 ( 0x20) objc_msgSend$_vehicleStateProviderForVehicle: [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f560 ( 0x20) objc_msgSend$_vehicleStateRefreshInterval [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f580 ( 0x20) objc_msgSend$_vehicleWithIdentifier: [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f5a0 ( 0x20) objc_msgSend$_vehiclesFromListCarsIntentResponse: [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f5c0 ( 0x20) objc_msgSend$accessoryUpdateDelegate [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f5e0 ( 0x20) objc_msgSend$accessoryUpdatedWithVehicle: [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f600 ( 0x20) objc_msgSend$actionForAddingNewVehicle:withExistingGarageVehicles:andUnpairedVehicles: [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f620 ( 0x20) objc_msgSend$activeConnections [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f640 ( 0x20) objc_msgSend$activeConnector [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f660 ( 0x20) objc_msgSend$activeVehicleIdentifier [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f680 ( 0x20) objc_msgSend$addNetworks: [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f6a0 ( 0x20) objc_msgSend$addObject: [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f6c0 ( 0x20) objc_msgSend$addObserver:selector:name:object: [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f6e0 ( 0x20) objc_msgSend$addTileGroupObserver:queue: [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f700 ( 0x20) objc_msgSend$addVehicle: [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f720 ( 0x20) objc_msgSend$allKeys [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f740 ( 0x20) objc_msgSend$allObjects [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f760 ( 0x20) objc_msgSend$allValues [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f780 ( 0x20) objc_msgSend$allocWithZone: [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f7a0 ( 0x20) objc_msgSend$allowedFormulaIDs [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f7c0 ( 0x20) objc_msgSend$allowsVehicleWithModelId:firmwareId:year:model: [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f7e0 ( 0x20) objc_msgSend$appendFormat: [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f800 ( 0x20) objc_msgSend$appendString: [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f820 ( 0x20) objc_msgSend$array [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f840 ( 0x20) objc_msgSend$arrayWithCapacity: [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f860 ( 0x20) objc_msgSend$arrayWithObjects:count: [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f880 ( 0x20) objc_msgSend$availableNetworksDidChangeForProvider: [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f8a0 ( 0x20) objc_msgSend$batteryCharge [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f8c0 ( 0x20) objc_msgSend$batteryPercentage [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f8e0 ( 0x20) objc_msgSend$batteryPercentageBasedOfCapacity [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f900 ( 0x20) objc_msgSend$bestStringForCurrentLocale:fallbackToFirstAvailable: [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f920 ( 0x20) objc_msgSend$bluetoothIdentifier [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f940 ( 0x20) objc_msgSend$boolValue [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f960 ( 0x20) objc_msgSend$brandInfoMappings [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f980 ( 0x20) objc_msgSend$canUseVirtualGarageXPCService [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f9a0 ( 0x20) objc_msgSend$carIdentifier [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f9c0 ( 0x20) objc_msgSend$cars [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53f9e0 ( 0x20) objc_msgSend$caseInsensitiveCompare: [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53fa00 ( 0x20) objc_msgSend$chargePercentRemaining [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53fa20 ( 0x20) objc_msgSend$charging [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53fa40 ( 0x20) objc_msgSend$chargingArguments [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53fa60 ( 0x20) objc_msgSend$chargingFormulaArguments [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53fa80 ( 0x20) objc_msgSend$chargingNetworkInfo [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53faa0 ( 0x20) objc_msgSend$clearNetworks [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53fac0 ( 0x20) objc_msgSend$code [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53fae0 ( 0x20) objc_msgSend$color [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53fb00 ( 0x20) objc_msgSend$colorHex [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53fb20 ( 0x20) objc_msgSend$compare: [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53fb40 ( 0x20) objc_msgSend$componentsJoinedByString: [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53fb60 ( 0x20) objc_msgSend$conformsToProtocol: [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53fb80 ( 0x20) objc_msgSend$connection [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53fba0 ( 0x20) objc_msgSend$consumptionArguments [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53fbc0 ( 0x20) objc_msgSend$consumptionFormulaArguments [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53fbe0 ( 0x20) objc_msgSend$containsObject: [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53fc00 ( 0x20) objc_msgSend$copy [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53fc20 ( 0x20) objc_msgSend$copyWithZone: [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53fc40 ( 0x20) objc_msgSend$count [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53fc60 ( 0x20) objc_msgSend$countByEnumeratingWithState:objects:count: [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53fc80 ( 0x20) objc_msgSend$countryCode [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53fca0 ( 0x20) objc_msgSend$currentBatteryCapacity [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53fcc0 ( 0x20) objc_msgSend$currentCalendar [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53fce0 ( 0x20) objc_msgSend$currentEVRange [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53fd00 ( 0x20) objc_msgSend$currentLocale [FUNC, PEXT, NameNList, MangledNameNList, NList]
0x000000019f53fd20 ( 0x20) objc_msgSend$currentVehicleState [FUNC, PEXT, NameNList, MangledNameNList, NList]