Coder Social home page Coder Social logo

video-quickstart-ios's Introduction

Download Docs

Warning

We are no longer allowing new customers to onboard to Twilio Video. Effective December 5th, 2024, Twilio Video will End of Life (EOL) and will cease to function for all customers. Customers may transition to any video provider they choose, however, we are recommending customers migrate to the Zoom Video SDK and we have prepared a Migration Guide. Additional information on this EOL is available in our Help Center here.

NEW: Please check out the newly open-sourced video collaboration app built with iOS Video SDK.

Twilio Video Quickstart for iOS

NOTE: These sample applications use the Twilio Video 5.x APIs. For examples using previous releases please see the following repositories:

  • For 4.x APIs, please see the 4.x tag.
  • For 3.x APIs, please see the 3.x branch.
  • For 2.x APIs, please see the 2.x branch.
  • For 1.x APIs, please see the 1.x branch.

Get started with Video on iOS:

Setup

This repository contains example code written in both Objective-C and Swift.

If you haven't used Twilio before, welcome! You'll need to Sign up for a Twilio account first. It's free!

These Quickstarts expect that you have "Client-side Room Creation" enabled in your Twilio account. You can check this setting on the Default Room Settings page in the Twilio Console.

Quickstart

Running the Swift Quickstart

To get started with the Swift Quickstart application follow these steps:

  1. Open the VideoQuickStart target from the VideoQuickStart.xcworkspace in Xcode

  1. Type in an identity and click on "Generate Access Token" from the Testing Tools page.

Note: If you enter the Room Name, then you can restrict this user's access to the specified Room only. Ideally, you want to implement and deploy an Access Token server to generate tokens. You can read more about setting up your own Access Token Server in this section. Read this tutorial to learn more about Access Tokens.

  1. Paste the token you generated in the earlier step in the ViewController.swift.

  1. Run the Quickstart app on your iOS device or simulator.

  1. As in Step 2, generate a new Token for another identity (such as "Bob"). Copy and paste the access token into ViewController.swift (replacing the one you used earlier). Build and run the app on a second physical device if you have one, or the iPhone simulator.

  2. Once you have both apps running, enter an identical Room name (such as "my-cool-room") into both apps, and tap "Connect" to connect to a video Room (you'll be prompted for mic and camera access on the physical device). Once you've connected from both devices, you should see video!

Running the Objective-C Quickstart

To get started with the Objective-C Quickstart application follow these steps:

  1. Open the ObjCVideoQuickstart target from the VideoQuickStart.xcworkspace in Xcode

  1. Type in an identity and click on "Generate Access Token" from the Testing Tools page.

Note: If you enter the Room Name, then you can restrict this user's access to the specified Room only. Ideally, you want to implement and deploy an Access Token server to generate tokens. You can read more about setting up your own Access Token Server in this section. Read this tutorial to learn more about Access Tokens.

  1. Paste the token you generated in the earlier step in the ViewController.m.

  1. Run the Quickstart app on your iOS device or simulator.

  1. As in Step 2, generate a new Token for another identity (such as "Bob"). Copy and paste the access token into ViewController.m (replacing the one you used earlier). Build and run the app on a second physical device if you have one, or the iPhone simulator.

  2. Once you have both apps running, enter an identical Room name (such as "my-cool-room") into both apps, and tap "Connect" to connect to a video Room (you'll be prompted for mic and camera access on the physical device). Once you've connected from both devices, you should see video!

Using a Simulator

You can use the iOS Simulator that comes with Xcode to do your testing, but local video will not be shared since the Simulator cannot access a camera.

Note: If you have an iOS device, you can now run apps from Xcode on your device without a paid developer account.

Examples

You will also find additional examples that provide more advanced use cases of the Video SDK. The currently included examples are as follows:

  • AudioDevice - Provide your own means to playback and record audio using a custom AudioDevice and CoreAudio.
  • AudioSink - Access raw audio samples and record them to disk using AVFoundation. Perform live voice recognition using Apple's Speech framework.
  • ARKit - Captures augmented reality content with ARKit and uses SceneKit to place objects in the virtual scene. The resulting rendering is previewed locally, and shared in a Room via a custom VideoSource source.
  • AVPlayer - Shows how to use AVPlayer to stream Audio & Video content while connected to a Room.
  • CallKit - Shows how to use Twilio Video with the CallKit framework.
  • DataTrack - Shows how to use the Data Track APIs for interactive drawing.
  • Collaboration App - A collaboration app that demonstrates how to use the Room API for multiparty conferencing.
  • ReplayKit - Shows how to use ReplayKit to share the screen, and microphone via VideoSource and AudioDevice.
  • Screen Capturer - Use a custom VideoSource to capture the contents of a WKWebView.

Setup an Access Token Server

Using Twilio's Video client within your applications requires an access token. Access Tokens are short-lived credentials that are signed with a Twilio API Key Secret and contain grants which govern the actions the client holding the token is permitted to perform.

Configuring the Access Token Server

If you want to be a little closer to a real environment, you can download one of the video Quickstart server applications - for instance, Video Quickstart: PHP and either run it locally, or install it on a server. You can review a detailed tutorial.

You'll need to gather a couple of configuration options from the Twilio developer console before running it, so read the directions on the Quickstart. You'll copy the config.example.php file to a config.php file, and then add in these credentials:

Credential Description
Twilio Account SID Your main Twilio account identifier - find it on your dashboard.
API Key Used to authenticate - generate one here.
API Secret Used to authenticate - just like the above, you'll get one here.

Use whatever clever username you would like for the identity. If you enter the Room Name, then you can restrict this users access to the specified Room only. Read this tutorial for more information on Access Tokens.

A Note on API Keys

When you generate an API key pair at the URLs above, your API Secret will only be shown once - make sure to save this in a secure location.

Running the Video Quickstart with ngrok

Because we suggest that you run your video chat application on actual iOS device so that you can use the camera on the device, you'll need to provide an externally accessible URL for the app (the iOS simulator will be fine with localhost). Ngrok creates a publicly accessible URL that you can use to send HTTP/HTTPS traffic to a server running on your localhost. Use HTTPS to make web connections that retrieve a Twilio access token.

When you get a URL from ngrok, go ahead and update ViewController.swift with the new URL. If you go down this path, be sure to follow the directions in the comments in the viewDidLoad() method at the top of the source file - you will need to uncomment one line, and comment out another. You will also need to update the code if your ngrok URL changes.

For this Quickstart, the Application transport security settings are set to allow arbitrary HTTP loads for testing your app. For production applications, you'll definitely want to retrieve access tokens over HTTPS/SSL.

More Documentation

You can find more documentation on getting started as well as our latest Docs below:

Issues and Support

Please file any issues you find here on Github. Please ensure that you are not sharing any Personally Identifiable Information(PII) or sensitive account information (API keys, credentials, etc.) when reporting an issue.

For general inquiries related to the Video SDK you can file a support ticket.

License

MIT License

video-quickstart-ios's People

Contributors

asemivragovs avatar bmctigue avatar bobiechen-twilio avatar ceaglest avatar dipankadas avatar girtis avatar idelgado avatar jefflinwood avatar jpsphaxer avatar kwhinnery avatar llsourcell avatar markandrus avatar paynerc avatar piyushtank avatar pt-old avatar rfbrazier avatar timrozum avatar vassjozsef avatar wolfspy avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

video-quickstart-ios's Issues

Build failed after following instructions in readme

Looks like pod install didn't pull down twilio-common; taking a look.

Ld /Users/rbrazier/Library/Developer/Xcode/DerivedData/video-quickstart-swift-csonjphyfecnyjeownqcrzevxtvk/Build/Products/Debug-iphonesimulator/video-quickstart-swift.app/video-quickstart-swift normal x86_64
    cd /Users/rbrazier/Projects/video-quickstart-swift
    export IPHONEOS_DEPLOYMENT_TARGET=9.0
    export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator9.2.sdk -L/Users/rbrazier/Library/Developer/Xcode/DerivedData/video-quickstart-swift-csonjphyfecnyjeownqcrzevxtvk/Build/Products/Debug-iphonesimulator -F/Users/rbrazier/Library/Developer/Xcode/DerivedData/video-quickstart-swift-csonjphyfecnyjeownqcrzevxtvk/Build/Products/Debug-iphonesimulator -F/Users/rbrazier/Projects/video-quickstart-swift/Pods/TwilioCommon -F/Users/rbrazier/Projects/video-quickstart-swift/Pods/TwilioRTCSDK -F/Users/rbrazier/Projects/video-quickstart-swift -filelist /Users/rbrazier/Library/Developer/Xcode/DerivedData/video-quickstart-swift-csonjphyfecnyjeownqcrzevxtvk/Build/Intermediates/video-quickstart-swift.build/Debug-iphonesimulator/video-quickstart-swift.build/Objects-normal/x86_64/video-quickstart-swift.LinkFileList -Xlinker -rpath -Xlinker @executable_path/Frameworks -mios-simulator-version-min=9.0 -Xlinker -objc_abi_version -Xlinker 2 -ObjC -read_only_relocs suppress -lPods-TwilioCommon -lPods-TwilioRTCSDK -lc++ -lstdc++ -framework AVFoundation -framework AudioToolbox -framework CoreMedia -framework CoreTelephony -framework GLKit -framework SystemConfiguration -framework TwilioCommon -framework TwilioConversationsClient -framework VideoToolbox -L/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator -Xlinker -add_ast_path -Xlinker /Users/rbrazier/Library/Developer/Xcode/DerivedData/video-quickstart-swift-csonjphyfecnyjeownqcrzevxtvk/Build/Intermediates/video-quickstart-swift.build/Debug-iphonesimulator/video-quickstart-swift.build/Objects-normal/x86_64/video_quickstart_swift.swiftmodule -lc++ -lPods -Xlinker -dependency_info -Xlinker /Users/rbrazier/Library/Developer/Xcode/DerivedData/video-quickstart-swift-csonjphyfecnyjeownqcrzevxtvk/Build/Intermediates/video-quickstart-swift.build/Debug-iphonesimulator/video-quickstart-swift.build/Objects-normal/x86_64/video-quickstart-swift_dependency_info.dat -o /Users/rbrazier/Library/Developer/Xcode/DerivedData/video-quickstart-swift-csonjphyfecnyjeownqcrzevxtvk/Build/Products/Debug-iphonesimulator/video-quickstart-swift.app/video-quickstart-swift

ld: library not found for -lPods-TwilioCommon
clang: error: linker command failed with exit code 1 (use -v to see invocation)

VP8 is the only supported video codec

At the moment our SDKs only support the VP8 video codec. On Android this is hardware accelerated (where possible), but on iOS VP8 support is provided via a software implementation.

On the positive side VP8 support in Chromium WebRTC is mature and well understood. However, performance could be better and ultimately using the hardware codecs (which ship with all iOS devices) is going to provide the best performance for small scale Rooms.

We are working to add support for H.264 on both of our mobile platforms. This ticket will be updated with more details as we get closer to releasing this feature.

TwilioPoco::NullPointerException Crash

Hi. I've experienced a crash while instantiating a TVIVideoClient. The log says that TwilioPoco::NullPointerException was encountered. I've tried running your quick start app, and it worked perfectly fine. Any idea on the reason behind the crash? Thanks.

Here is the crash log:

CrashReporter Key:   71a72fd37edf2935425c28f3875d453e1842e6d1
Hardware Model:      iPhone8,1
Process:             Noteabout-Chat [2108]
Path:                /private/var/containers/Bundle/Application/9650C040-73E4-4FBF-805F-77A8C7376387/Noteabout-Chat.app/Noteabout-Chat
Identifier:          com.noteabout.chat.dev
Version:             3 (1.02)
Code Type:           ARM-64 (Native)
Role:                Foreground
Parent Process:      launchd [1]
Coalition:           com.noteabout.chat.dev [1450]

Date/Time:           2016-12-29 07:02:23.3772 +0800
Launch Time:         2016-12-29 07:02:22.1441 +0800
OS Version:          iPhone OS 10.2 (14C92)
Report Version:      104

Exception Type:  EXC_CRASH (SIGABRT)
Exception Codes: 0x0000000000000000, 0x0000000000000000
Exception Note:  EXC_CORPSE_NOTIFY
Triggered by Thread:  9

Application Specific Information:
abort() called

Filtered syslog:
None found

Thread 0 name:  Dispatch queue: com.apple.main-thread
Thread 0:
0   libsystem_kernel.dylib        	0x0000000185cd2e1c __psynch_cvwait + 8
1   libsystem_pthread.dylib       	0x0000000185d989c0 _pthread_cond_wait + 640
2   libc++.1.dylib                	0x00000001856c13ec std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 56
3   TwilioVideo                   	0x00000001029fb594 0x10235c000 + 6944148
4   libc++.1.dylib                	0x00000001856f4b5c std::__1::__shared_weak_count::__release_shared() + 60
5   TwilioVideo                   	0x00000001029e88c8 0x10235c000 + 6867144
6   TwilioVideo                   	0x00000001029e89c8 0x10235c000 + 6867400
7   TwilioVideo                   	0x000000010236aef0 0x10235c000 + 61168
8   Noteabout-Chat                	0x000000010020a328 0x100078000 + 1647400
9   Noteabout-Chat                	0x00000001002a621c 0x100078000 + 2286108
10  libdispatch.dylib             	0x0000000185b8e1fc _dispatch_call_block_and_release + 24
11  libdispatch.dylib             	0x0000000185b8e1bc _dispatch_client_callout + 16
12  libdispatch.dylib             	0x0000000185b92d68 _dispatch_main_queue_callback_4CF + 1000
13  CoreFoundation                	0x0000000186cb2810 __CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE__ + 12
14  CoreFoundation                	0x0000000186cb03fc __CFRunLoopRun + 1660
15  CoreFoundation                	0x0000000186bde2b8 CFRunLoopRunSpecific + 444
16  GraphicsServices              	0x0000000188692198 GSEventRunModal + 180
17  UIKit                         	0x000000018cc257fc -[UIApplication _run] + 684
18  UIKit                         	0x000000018cc20534 UIApplicationMain + 208
19  Noteabout-Chat                	0x00000001001d8394 0x100078000 + 1442708
20  libdyld.dylib                 	0x0000000185bc15b8 start + 4

Thread 1:
0   libsystem_kernel.dylib        	0x0000000185cd3a88 __workq_kernreturn + 8
1   libsystem_pthread.dylib       	0x0000000185d97344 _pthread_wqthread + 1452
2   libsystem_pthread.dylib       	0x0000000185d96d8c start_wqthread + 4

Thread 2:
0   libsystem_pthread.dylib       	0x0000000185d96d88 start_wqthread + 0

Thread 3:
0   libsystem_pthread.dylib       	0x0000000185d96d88 start_wqthread + 0

Thread 4 name:  com.apple.uikit.eventfetch-thread
Thread 4:
0   libsystem_kernel.dylib        	0x0000000185cb5188 mach_msg_trap + 8
1   libsystem_kernel.dylib        	0x0000000185cb4ff8 mach_msg + 72
2   CoreFoundation                	0x0000000186cb25d0 __CFRunLoopServiceMachPort + 192
3   CoreFoundation                	0x0000000186cb01ec __CFRunLoopRun + 1132
4   CoreFoundation                	0x0000000186bde2b8 CFRunLoopRunSpecific + 444
5   Foundation                    	0x000000018771b26c -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 304
6   Foundation                    	0x000000018773bdd0 -[NSRunLoop(NSRunLoop) runUntilDate:] + 96
7   UIKit                         	0x000000018d599c38 -[UIEventFetcher threadMain] + 136
8   Foundation                    	0x0000000187818e68 __NSThread__start__ + 1024
9   libsystem_pthread.dylib       	0x0000000185d99850 _pthread_body + 240
10  libsystem_pthread.dylib       	0x0000000185d99760 _pthread_body + 0
11  libsystem_pthread.dylib       	0x0000000185d96d94 thread_start + 4

Thread 5:
0   libsystem_pthread.dylib       	0x0000000185d96d88 start_wqthread + 0

Thread 6:
0   libsystem_kernel.dylib        	0x0000000185cd3a88 __workq_kernreturn + 8
1   libsystem_pthread.dylib       	0x0000000185d97344 _pthread_wqthread + 1452
2   libsystem_pthread.dylib       	0x0000000185d96d8c start_wqthread + 4

Thread 7 name:  com.twitter.crashlytics.ios.MachExceptionServer
Thread 7:
0   libsystem_kernel.dylib        	0x0000000185cb5188 mach_msg_trap + 8
1   libsystem_kernel.dylib        	0x0000000185cb4ff8 mach_msg + 72
2   Noteabout-Chat                	0x000000010079c7dc 0x100078000 + 7489500
3   libsystem_pthread.dylib       	0x0000000185d99850 _pthread_body + 240
4   libsystem_pthread.dylib       	0x0000000185d99760 _pthread_body + 0
5   libsystem_pthread.dylib       	0x0000000185d96d94 thread_start + 4

Thread 8:
0   libsystem_kernel.dylib        	0x0000000185cd3a88 __workq_kernreturn + 8
1   libsystem_pthread.dylib       	0x0000000185d97344 _pthread_wqthread + 1452
2   libsystem_pthread.dylib       	0x0000000185d96d8c start_wqthread + 4

Thread 9 name:  Dispatch queue: com.twilio.video.worker
Thread 9 Crashed:
0   libsystem_kernel.dylib        	0x0000000185cd3014 __pthread_kill + 8
1   libsystem_pthread.dylib       	0x0000000185d9b450 pthread_kill + 112
2   libsystem_c.dylib             	0x0000000185c4749c __abort + 144
3   libsystem_c.dylib             	0x0000000185c4740c __abort + 0
4   libc++abi.dylib               	0x00000001857112d4 __cxa_bad_cast + 0
5   libc++abi.dylib               	0x000000018572ecc0 default_unexpected_handler() + 0
6   libobjc.A.dylib               	0x000000018573c860 _objc_terminate() + 152
7   Noteabout-Chat                	0x00000001007ae5c8 0x100078000 + 7562696
8   libc++abi.dylib               	0x000000018572b66c std::__terminate(void (*)()) + 16
9   libc++abi.dylib               	0x000000018572af84 __cxxabiv1::exception_cleanup_func(_Unwind_Reason_Code, _Unwind_Exception*) + 0
10  Noteabout-Chat                	0x00000001007fcea4 0x100078000 + 7884452
11  Noteabout-Chat                	0x00000001007f7fec 0x100078000 + 7864300
12  Noteabout-Chat                	0x00000001008c89e0 0x100078000 + 8718816
13  TwilioVideo                   	0x00000001024182f8 0x10235c000 + 770808
14  TwilioVideo                   	0x00000001023f70bc 0x10235c000 + 635068
15  TwilioVideo                   	0x00000001023cfc40 0x10235c000 + 474176
16  TwilioVideo                   	0x000000010239edd0 0x10235c000 + 273872
17  TwilioVideo                   	0x000000010239f0a8 0x10235c000 + 274600
18  TwilioVideo                   	0x00000001023a2030 0x10235c000 + 286768
19  TwilioVideo                   	0x000000010288c7f4 0x10235c000 + 5441524
20  TwilioVideo                   	0x000000010239c718 0x10235c000 + 263960
21  TwilioVideo                   	0x000000010287d320 0x10235c000 + 5378848
22  TwilioVideo                   	0x000000010287c9d4 0x10235c000 + 5376468
23  TwilioVideo                   	0x00000001029f27e4 0x10235c000 + 6907876
24  TwilioVideo                   	0x00000001029f9014 0x10235c000 + 6934548
25  TwilioVideo                   	0x00000001029fb9d4 0x10235c000 + 6945236
26  libdispatch.dylib             	0x0000000185b8e1fc _dispatch_call_block_and_release + 24
27  libdispatch.dylib             	0x0000000185b8e1bc _dispatch_client_callout + 16
28  libdispatch.dylib             	0x0000000185b9c3dc _dispatch_queue_serial_drain + 928
29  libdispatch.dylib             	0x0000000185b919a4 _dispatch_queue_invoke + 652
30  libdispatch.dylib             	0x0000000185b9c8d8 _dispatch_queue_override_invoke + 360
31  libdispatch.dylib             	0x0000000185b9e34c _dispatch_root_queue_drain + 572
32  libdispatch.dylib             	0x0000000185b9e0ac _dispatch_worker_thread3 + 124
33  libsystem_pthread.dylib       	0x0000000185d972a0 _pthread_wqthread + 1288
34  libsystem_pthread.dylib       	0x0000000185d96d8c start_wqthread + 4

Thread 10 name:  com.apple.NSURLConnectionLoader
Thread 10:
0   libsystem_kernel.dylib        	0x0000000185cb5188 mach_msg_trap + 8
1   libsystem_kernel.dylib        	0x0000000185cb4ff8 mach_msg + 72
2   CoreFoundation                	0x0000000186cb25d0 __CFRunLoopServiceMachPort + 192
3   CoreFoundation                	0x0000000186cb01ec __CFRunLoopRun + 1132
4   CoreFoundation                	0x0000000186bde2b8 CFRunLoopRunSpecific + 444
5   CFNetwork                     	0x00000001873e38f0 +[NSURLConnection(Loader) _resourceLoadLoop:] + 336
6   Foundation                    	0x0000000187818e68 __NSThread__start__ + 1024
7   libsystem_pthread.dylib       	0x0000000185d99850 _pthread_body + 240
8   libsystem_pthread.dylib       	0x0000000185d99760 _pthread_body + 0
9   libsystem_pthread.dylib       	0x0000000185d96d94 thread_start + 4

Thread 11 name:  AVAudioSession Notify Thread
Thread 11:
0   libsystem_kernel.dylib        	0x0000000185cb5188 mach_msg_trap + 8
1   libsystem_kernel.dylib        	0x0000000185cb4ff8 mach_msg + 72
2   CoreFoundation                	0x0000000186cb25d0 __CFRunLoopServiceMachPort + 192
3   CoreFoundation                	0x0000000186cb01ec __CFRunLoopRun + 1132
4   CoreFoundation                	0x0000000186bde2b8 CFRunLoopRunSpecific + 444
5   AVFAudio                      	0x00000001a0873d24 GenericRunLoopThread::Entry(void*) + 164
6   AVFAudio                      	0x00000001a0899d9c CAPThread::Entry(CAPThread*) + 84
7   libsystem_pthread.dylib       	0x0000000185d99850 _pthread_body + 240
8   libsystem_pthread.dylib       	0x0000000185d99760 _pthread_body + 0
9   libsystem_pthread.dylib       	0x0000000185d96d94 thread_start + 4

Thread 12 name:  GAIThread
Thread 12:
0   libsystem_kernel.dylib        	0x0000000185cb5188 mach_msg_trap + 8
1   libsystem_kernel.dylib        	0x0000000185cb4ff8 mach_msg + 72
2   CoreFoundation                	0x0000000186cb25d0 __CFRunLoopServiceMachPort + 192
3   CoreFoundation                	0x0000000186cb01ec __CFRunLoopRun + 1132
4   CoreFoundation                	0x0000000186bde2b8 CFRunLoopRunSpecific + 444
5   Foundation                    	0x000000018771b26c -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 304
6   Foundation                    	0x000000018776faa0 -[NSRunLoop(NSRunLoop) run] + 88
7   Noteabout-Chat                	0x000000010041f280 0x100078000 + 3830400
8   Foundation                    	0x0000000187818e68 __NSThread__start__ + 1024
9   libsystem_pthread.dylib       	0x0000000185d99850 _pthread_body + 240
10  libsystem_pthread.dylib       	0x0000000185d99760 _pthread_body + 0
11  libsystem_pthread.dylib       	0x0000000185d96d94 thread_start + 4

Thread 13:
0   libsystem_kernel.dylib        	0x0000000185cd3314 __semwait_signal + 8
1   libsystem_c.dylib             	0x0000000185bf125c nanosleep + 212
2   libsystem_c.dylib             	0x0000000185bf117c usleep + 64
3   TwilioVoiceClient             	0x000000010322ccbc 0x103028000 + 2116796
4   TwilioVoiceClient             	0x00000001032a30d0 0x103028000 + 2601168
5   TwilioVoiceClient             	0x00000001032a0378 0x103028000 + 2589560
6   TwilioVoiceClient             	0x000000010322cac0 0x103028000 + 2116288
7   libsystem_pthread.dylib       	0x0000000185d99850 _pthread_body + 240
8   libsystem_pthread.dylib       	0x0000000185d99760 _pthread_body + 0
9   libsystem_pthread.dylib       	0x0000000185d96d94 thread_start + 4

Thread 14:
0   libsystem_kernel.dylib        	0x0000000185cd323c __select + 8
1   TwilioVoiceClient             	0x0000000103260610 0x103028000 + 2328080
2   TwilioVoiceClient             	0x00000001032a2dfc 0x103028000 + 2600444
3   TwilioVoiceClient             	0x0000000103290584 0x103028000 + 2524548
4   TwilioVoiceClient             	0x0000000103233710 0x103028000 + 2144016
5   TwilioVoiceClient             	0x00000001032330e8 0x103028000 + 2142440
6   TwilioVoiceClient             	0x000000010322cac0 0x103028000 + 2116288
7   libsystem_pthread.dylib       	0x0000000185d99850 _pthread_body + 240
8   libsystem_pthread.dylib       	0x0000000185d99760 _pthread_body + 0
9   libsystem_pthread.dylib       	0x0000000185d96d94 thread_start + 4

Thread 15 name:  MediaFactoryImpl::signaling
Thread 15:
0   libsystem_kernel.dylib        	0x0000000185cd323c __select + 8
1   TwilioVideo                   	0x00000001025e66d0 0x10235c000 + 2664144
2   TwilioVideo                   	0x00000001025d74e8 0x10235c000 + 2602216
3   TwilioVideo                   	0x00000001025ef348 0x10235c000 + 2700104
4   TwilioVideo                   	0x00000001025ef19c 0x10235c000 + 2699676
5   libsystem_pthread.dylib       	0x0000000185d99850 _pthread_body + 240
6   libsystem_pthread.dylib       	0x0000000185d99760 _pthread_body + 0
7   libsystem_pthread.dylib       	0x0000000185d96d94 thread_start + 4

Thread 16 name:  MediaFactoryImpl::worker
Thread 16:
0   libsystem_kernel.dylib        	0x0000000185cd323c __select + 8
1   TwilioVideo                   	0x00000001025e66d0 0x10235c000 + 2664144
2   TwilioVideo                   	0x00000001025d74e8 0x10235c000 + 2602216
3   TwilioVideo                   	0x00000001025ef348 0x10235c000 + 2700104
4   TwilioVideo                   	0x00000001025ef19c 0x10235c000 + 2699676
5   libsystem_pthread.dylib       	0x0000000185d99850 _pthread_body + 240
6   libsystem_pthread.dylib       	0x0000000185d99760 _pthread_body + 0
7   libsystem_pthread.dylib       	0x0000000185d96d94 thread_start + 4

Thread 17 name:  VoiceProcessThread
Thread 17:
0   libsystem_kernel.dylib        	0x0000000185cd2e1c __psynch_cvwait + 8
1   libsystem_pthread.dylib       	0x0000000185d989c0 _pthread_cond_wait + 640
2   TwilioVideo                   	0x00000001025f515c 0x10235c000 + 2724188
3   TwilioVideo                   	0x0000000102795204 0x10235c000 + 4428292
4   TwilioVideo                   	0x00000001026f8de4 0x10235c000 + 3788260
5   TwilioVideo                   	0x00000001025f55dc 0x10235c000 + 2725340
6   TwilioVideo                   	0x00000001025f5584 0x10235c000 + 2725252
7   libsystem_pthread.dylib       	0x0000000185d99850 _pthread_body + 240
8   libsystem_pthread.dylib       	0x0000000185d99760 _pthread_body + 0
9   libsystem_pthread.dylib       	0x0000000185d96d94 thread_start + 4

Thread 18:
0   libsystem_kernel.dylib        	0x0000000185cb964c kevent + 8
1   TwilioVideo                   	0x000000010241f854 0x10235c000 + 800852
2   TwilioVideo                   	0x000000010241d714 0x10235c000 + 792340
3   TwilioVideo                   	0x00000001029e7168 0x10235c000 + 6861160
4   TwilioVideo                   	0x00000001029e7ac0 0x10235c000 + 6863552
5   libsystem_pthread.dylib       	0x0000000185d99850 _pthread_body + 240
6   libsystem_pthread.dylib       	0x0000000185d99760 _pthread_body + 0
7   libsystem_pthread.dylib       	0x0000000185d96d94 thread_start + 4

Thread 19 name:  SipSignalingStackWorker 0x0x13de94b50
Thread 19:
0   libsystem_kernel.dylib        	0x0000000185cd323c __select + 8
1   TwilioVideo                   	0x00000001029e1b7c 0x10235c000 + 6839164
2   TwilioVideo                   	0x00000001025d74e8 0x10235c000 + 2602216
3   TwilioVideo                   	0x00000001025ef348 0x10235c000 + 2700104
4   TwilioVideo                   	0x00000001029e1ec4 0x10235c000 + 6840004
5   TwilioVideo                   	0x00000001025ef188 0x10235c000 + 2699656
6   libsystem_pthread.dylib       	0x0000000185d99850 _pthread_body + 240
7   libsystem_pthread.dylib       	0x0000000185d99760 _pthread_body + 0
8   libsystem_pthread.dylib       	0x0000000185d96d94 thread_start + 4

Thread 9 crashed with ARM Thread State (64-bit):
    x0: 0x0000000000000000   x1: 0x0000000000000000   x2: 0x0000000000000000   x3: 0x0000000000000001
    x4: 0x0000000000000000   x5: 0x0000000000989680   x6: 0x6e6f697470656378   x7: 0x000000016e3e37d0
    x8: 0x000000000c000000   x9: 0x0000000004000000  x10: 0x0000000185d95314  x11: 0x0000000000000010
   x12: 0x0000000185c5e772  x13: 0x0000000000000000  x14: 0x0000050000000500  x15: 0x0000000000000000
   x16: 0x0000000000000148  x17: 0x0000000000000000  x18: 0x0000000000000000  x19: 0x0000000000000006
   x20: 0x000000016e3e7000  x21: 0x000000016e3e5240  x22: 0x0000000000000003  x23: 0x00000001010b5a73
   x24: 0x0000000000000001  x25: 0x0000000174059e30  x26: 0x0000000000000000  x27: 0x00000001008bd39c
   x28: 0x000000000000001c   fp: 0x000000016e3e5160   lr: 0x0000000185d9b450
    sp: 0x000000016e3e5140   pc: 0x0000000185cd3014 cpsr: 0x00000000

Binary Images:
0x100078000 - 0x10137ffff Noteabout-Chat arm64  <6f6913b258323ca2bd3c3a7d6ac14fa8> /var/containers/Bundle/Application/9650C040-73E4-4FBF-805F-77A8C7376387/Noteabout-Chat.app/Noteabout-Chat
0x1022d8000 - 0x102307fff dyld arm64  <f54ed85a94253887886a8028e20ed8ba> /usr/lib/dyld
0x10235c000 - 0x102b7bfff TwilioVideo arm64  <c29f18c3ae29319f8a12673b4475a163> /var/containers/Bundle/Application/9650C040-73E4-4FBF-805F-77A8C7376387/Noteabout-Chat.app/Frameworks/TwilioVideo.framework/TwilioVideo
0x103028000 - 0x1033affff TwilioVoiceClient arm64  <4e4ab298f1ff3a58b84c339acc671c33> /var/containers/Bundle/Application/9650C040-73E4-4FBF-805F-77A8C7376387/Noteabout-Chat.app/Frameworks/TwilioVoiceClient.framework/TwilioVoiceClient
0x1856b8000 - 0x1856b9fff libSystem.B.dylib arm64  <6c1de96c8fe5363cab2ef76f891c6e22> /usr/lib/libSystem.B.dylib
0x1856ba000 - 0x18570ffff libc++.1.dylib arm64  <b2db8b1d09283b7bafe1b2933adc5dfd> /usr/lib/libc++.1.dylib
0x185710000 - 0x185730fff libc++abi.dylib arm64  <e3419bbaface31b5970c6c8d430be26d> /usr/lib/libc++abi.dylib
0x185734000 - 0x185b0dfff libobjc.A.dylib arm64  <538f809dcd7c35ceb59d99802248f045> /usr/lib/libobjc.A.dylib
0x185b0e000 - 0x185b12fff libcache.dylib arm64  <f09cab6893c631218f817e61b3d77fcb> /usr/lib/system/libcache.dylib
0x185b13000 - 0x185b1efff libcommonCrypto.dylib arm64  <e071643355cd3f67bae19045c7f9f340> /usr/lib/system/libcommonCrypto.dylib
0x185b1f000 - 0x185b22fff libcompiler_rt.dylib arm64  <8209cb28df5d3b48894899019fcbb344> /usr/lib/system/libcompiler_rt.dylib
0x185b23000 - 0x185b2afff libcopyfile.dylib arm64  <567f33ef4d8f3e48a5afac933ccd389f> /usr/lib/system/libcopyfile.dylib
0x185b2b000 - 0x185b8cfff libcorecrypto.dylib arm64  <056a6c201d3d3696b59f0b264ba9b972> /usr/lib/system/libcorecrypto.dylib
0x185b8d000 - 0x185bbcfff libdispatch.dylib arm64  <fb1d0baf642337d1bea0af309586df97> /usr/lib/system/libdispatch.dylib
0x185bbd000 - 0x185bc1fff libdyld.dylib arm64  <6ebb575f616935cbbef02f2c031490d1> /usr/lib/system/libdyld.dylib
0x185bc2000 - 0x185bc2fff liblaunch.dylib arm64  <ceb57f62c49e38d8a8d33309db668bd3> /usr/lib/system/liblaunch.dylib
0x185bc3000 - 0x185bc8fff libmacho.dylib arm64  <20627f9f062c3ee8873e3ab3bc3fda8c> /usr/lib/system/libmacho.dylib
0x185bc9000 - 0x185bcafff libremovefile.dylib arm64  <43110ffd953537e28981c6dead2c0b1f> /usr/lib/system/libremovefile.dylib
0x185bcb000 - 0x185be2fff libsystem_asl.dylib arm64  <e52a49b27e963d2bb90332a5b0895f8d> /usr/lib/system/libsystem_asl.dylib
0x185be3000 - 0x185be3fff libsystem_blocks.dylib arm64  <480fe954b3f63f16af8acfd6dc34e2da> /usr/lib/system/libsystem_blocks.dylib
0x185be4000 - 0x185c62fff libsystem_c.dylib arm64  <8a5a190d70563f3c8d4ce16cab74f599> /usr/lib/system/libsystem_c.dylib
0x185c63000 - 0x185c67fff libsystem_configuration.dylib arm64  <7628c33e4c383a78b0e33cf403e6f019> /usr/lib/system/libsystem_configuration.dylib
0x185c68000 - 0x185c6dfff libsystem_containermanager.dylib arm64  <9de64e7545ab359fb9cefc695aa510f0> /usr/lib/system/libsystem_containermanager.dylib
0x185c6e000 - 0x185c6ffff libsystem_coreservices.dylib arm64  <e61211f8f4c9399595fbd921e8589a8b> /usr/lib/system/libsystem_coreservices.dylib
0x185c70000 - 0x185c88fff libsystem_coretls.dylib arm64  <14fa1ba4b14b338181c2ef87b214695e> /usr/lib/system/libsystem_coretls.dylib
0x185c89000 - 0x185c8ffff libsystem_dnssd.dylib arm64  <7d745bdfb72e3119bad43c36f60a5a8a> /usr/lib/system/libsystem_dnssd.dylib
0x185c90000 - 0x185cb3fff libsystem_info.dylib arm64  <6546bc8b4fa23df898bf2471e801d50b> /usr/lib/system/libsystem_info.dylib
0x185cb4000 - 0x185cd8fff libsystem_kernel.dylib arm64  <9ec307fcdd2f3f728f37ec6e0186df20> /usr/lib/system/libsystem_kernel.dylib
0x185cd9000 - 0x185d05fff libsystem_m.dylib arm64  <ba786894a7213d37baa99aafc0ee5493> /usr/lib/system/libsystem_m.dylib
0x185d06000 - 0x185d21fff libsystem_malloc.dylib arm64  <c57ecb4ada5c3930a580b3d07583058a> /usr/lib/system/libsystem_malloc.dylib
0x185d22000 - 0x185d79fff libsystem_network.dylib arm64  <efa018a4cb4936e3b77b9194d390efc4> /usr/lib/system/libsystem_network.dylib
0x185d7a000 - 0x185d83fff libsystem_networkextension.dylib arm64  <34c2d9c2986f32dd996e4e439d94c9c5> /usr/lib/system/libsystem_networkextension.dylib
0x185d84000 - 0x185d8efff libsystem_notify.dylib arm64  <605beaf21db73cc3ae98a65e8c11f7d0> /usr/lib/system/libsystem_notify.dylib
0x185d8f000 - 0x185d95fff libsystem_platform.dylib arm64  <518e18adfdfc316e9b4d519f6e4b6a47> /usr/lib/system/libsystem_platform.dylib
0x185d96000 - 0x185d9ffff libsystem_pthread.dylib arm64  <d8480fc3a35d3475b0d12553c761d8cb> /usr/lib/system/libsystem_pthread.dylib
0x185da0000 - 0x185da3fff libsystem_sandbox.dylib arm64  <89419e71367637d590768d37ca10d9a3> /usr/lib/system/libsystem_sandbox.dylib
0x185da4000 - 0x185dabfff libsystem_symptoms.dylib arm64  <832499573c1730b48f6ff8e7c06fae15> /usr/lib/system/libsystem_symptoms.dylib
0x185dac000 - 0x185dcafff libsystem_trace.dylib arm64  <27778d14d3cb3239a6bb52a2461cd543> /usr/lib/system/libsystem_trace.dylib
0x185dcb000 - 0x185dd0fff libunwind.dylib arm64  <7a7545249f7d3a69a162acb73ec4f17a> /usr/lib/system/libunwind.dylib
0x185dd1000 - 0x185dd1fff libvminterpose.dylib arm64  <21d158555a6233b19c53df16cafb6974> /usr/lib/system/libvminterpose.dylib
0x185dd2000 - 0x185df8fff libxpc.dylib arm64  <8f1330e254b83bd3a973af6933b91836> /usr/lib/system/libxpc.dylib
0x185df9000 - 0x186013fff libicucore.A.dylib arm64  <35fc5fa2aab8326897081ab8416c497c> /usr/lib/libicucore.A.dylib
0x186014000 - 0x186024fff libz.1.dylib arm64  <b3ab59ff330f3225a53b4e8e95440d77> /usr/lib/libz.1.dylib
0x186bd5000 - 0x186f59fff CoreFoundation arm64  <dd9791d198ef32eea1335b8ebc9b3d55> /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
0x186f5a000 - 0x186f6afff libbsm.0.dylib arm64  <788093e9b6b738cea7045bfec4bef1d8> /usr/lib/libbsm.0.dylib
0x186f6b000 - 0x186f6bfff libenergytrace.dylib arm64  <3bcefd094fa83b26807a1c6c92933cd2> /usr/lib/libenergytrace.dylib
0x186f6c000 - 0x186fe7fff IOKit arm64  <e0a6f4f0810b3f75813eda2afebd591c> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x186fe8000 - 0x187008fff libMobileGestalt.dylib arm64  <1e9e78da74143c54bb1e50aa7e285a0f> /usr/lib/libMobileGestalt.dylib
0x187009000 - 0x1870f3fff libxml2.2.dylib arm64  <b3fc55542fe33491877c661cf410b164> /usr/lib/libxml2.2.dylib
0x1870f4000 - 0x187182fff Security arm64  <88e5d6eb0de13ff6b7904f1b0e43a88e> /System/Library/Frameworks/Security.framework/Security
0x187183000 - 0x1871edfff SystemConfiguration arm64  <d907035d1ff936e5986035f50a77f5d3> /System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration
0x1871ee000 - 0x187303fff libsqlite3.dylib arm64  <87863a80836a3d659e5485f5029c3ed4> /usr/lib/libsqlite3.dylib
0x187304000 - 0x18769dfff CFNetwork arm64  <d63319a4fe2738dfb695ceb729f9b972> /System/Library/Frameworks/CFNetwork.framework/CFNetwork
0x18769e000 - 0x1876aefff libbz2.1.0.dylib arm64  <0d14fa7337f43079bad2a4cfc6d66b70> /usr/lib/libbz2.1.0.dylib
0x1876af000 - 0x1876c7fff liblzma.5.dylib arm64  <b90cea0595ff3f8599d9788e1d2cb454> /usr/lib/liblzma.5.dylib
0x1876c8000 - 0x1876e2fff libCRFSuite.dylib arm64  <ac663b865b6b38429a40878701aa484a> /usr/lib/libCRFSuite.dylib
0x1876e3000 - 0x18770cfff libarchive.2.dylib arm64  <667b9f199ef63c89b05bf1ea9a3ffe13> /usr/lib/libarchive.2.dylib
0x18770d000 - 0x18770efff liblangid.dylib arm64  <a74f4f8a2d533e1f926044f052cc5b7d> /usr/lib/liblangid.dylib
0x18770f000 - 0x1879ddfff Foundation arm64  <7d40355e685036cc803455e5cbf6245f> /System/Library/Frameworks/Foundation.framework/Foundation
0x1879de000 - 0x187a8afff libBLAS.dylib arm64  <fa29c2ad87a73ccea2885d9182faee53> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib
0x187a8b000 - 0x187dcdfff libLAPACK.dylib arm64  <6df40b0afcbb35a48d63e2fa8ec03b1b> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib
0x187dce000 - 0x188070fff vImage arm64  <8b797590cf983693b4c3b6b83dc4ba29> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage
0x188071000 - 0x188093fff libvMisc.dylib arm64  <5bcbb491c0a03816a7634797852c21ad> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib
0x188094000 - 0x1880a8fff libLinearAlgebra.dylib arm64  <1adeb99764f63e9e8ef1225bb7a5120d> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLinearAlgebra.dylib
0x1880a9000 - 0x1880bafff libSparseBLAS.dylib arm64  <515a7b8f5c433b709c1f6d205b9a73d2> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparseBLAS.dylib
0x1880bb000 - 0x188133fff libvDSP.dylib arm64  <80294f738c053c4991fa3ab4e867218e> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib
0x188134000 - 0x188134fff vecLib arm64  <15dc1eafe1f8377d9cab3ba5c7e488be> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib
0x188135000 - 0x188135fff Accelerate arm64  <32a527bb13a63e37bf50c725b008e9d5> /System/Library/Frameworks/Accelerate.framework/Accelerate
0x188136000 - 0x188685fff CoreGraphics arm64  <52f191594f523f41880280896948b786> /System/Library/Frameworks/CoreGraphics.framework/CoreGraphics
0x188686000 - 0x18869afff GraphicsServices arm64  <7c0dd118a4bc37dc8fab6449abde7ff9> /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices
0x18869b000 - 0x1886e6fff AppSupport arm64  <bdaad3a71677315bb126c4a73a1bcb9e> /System/Library/PrivateFrameworks/AppSupport.framework/AppSupport
0x1886e7000 - 0x18880afff MobileCoreServices arm64  <e035420bfabe3f28bc6eef0a144ac1d1> /System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices
0x18880b000 - 0x188863fff BaseBoard arm64  <210cb4a9a0073c7b9e0b3d437cc1aa4b> /System/Library/PrivateFrameworks/BaseBoard.framework/BaseBoard
0x188864000 - 0x18886ffff AssertionServices arm64  <7ca242e983fd3c0f805d51fca8a4c46a> /System/Library/PrivateFrameworks/AssertionServices.framework/AssertionServices
0x188870000 - 0x18889cfff BackBoardServices arm64  <c333604ae8123e3cbb46fe26f233beb9> /System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices
0x1888a1000 - 0x1888f0fff FrontBoardServices arm64  <00b3c2ff89f53d3dba0069b6bb5a56bd> /System/Library/PrivateFrameworks/FrontBoardServices.framework/FrontBoardServices
0x1888f4000 - 0x188927fff SpringBoardServices arm64  <d2c3d08eff3f3119a6f4eb1a0a180305> /System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices
0x188928000 - 0x18893cfff MobileKeyBag arm64  <a78d40cc257231978e752c5a81cd1356> /System/Library/PrivateFrameworks/MobileKeyBag.framework/MobileKeyBag
0x18893d000 - 0x188945fff IOSurface arm64  <9a22349e905539a0a1598af6d7fe9cc9> /System/Library/PrivateFrameworks/IOSurface.framework/IOSurface
0x188946000 - 0x188951fff liblockdown.dylib arm64  <ab36b2ace988302c89207cb290ff4a76> /usr/lib/liblockdown.dylib
0x188952000 - 0x188968fff CrashReporterSupport arm64  <326017f8d07d3e7cb338dda00fa888f7> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/CrashReporterSupport
0x188969000 - 0x18896bfff IOSurfaceAccelerator arm64  <7b7c2b7ea506374cb3902b7408d5d4bf> /System/Library/PrivateFrameworks/IOSurfaceAccelerator.framework/IOSurfaceAccelerator
0x18896c000 - 0x1889acfff AppleJPEG arm64  <b2fd4ef37aaf38f58311e33ea1683082> /System/Library/PrivateFrameworks/AppleJPEG.framework/AppleJPEG
0x1889ad000 - 0x188f3ffff ImageIO arm64  <f5ddfe623d4f3a338ae75c666ea10815> /System/Library/Frameworks/ImageIO.framework/ImageIO
0x188f40000 - 0x188f46fff TCC arm64  <c9f168508185369591dfcd1c1cf9b6a3> /System/Library/PrivateFrameworks/TCC.framework/TCC
0x188f47000 - 0x188f4bfff AggregateDictionary arm64  <4be0041fb69b358cada4eeabbf22adf3> /System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary
0x188f4c000 - 0x188f58fff PowerLog arm64  <e5003d8e49d0390c8a67da790407e704> /System/Library/PrivateFrameworks/PowerLog.framework/PowerLog
0x188f59000 - 0x188fc1fff libTelephonyUtilDynamic.dylib arm64  <4a1e447a97f43b91a92ee731c2a4286b> /usr/lib/libTelephonyUtilDynamic.dylib
0x188fc2000 - 0x188fd4fff CommonUtilities arm64  <486d816afdc431aaa2ef67b229cf4e96> /System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities
0x188fd5000 - 0x188fe9fff libcompression.dylib arm64  <c764915fa0ec384f8a1759e63235b5a9> /usr/lib/libcompression.dylib
0x188fea000 - 0x189288fff CoreData arm64  <980c0f8663a0330d8b5fb541c22e7b66> /System/Library/Frameworks/CoreData.framework/CoreData
0x189289000 - 0x18928efff libCoreVMClient.dylib arm64  <3a28c232b17430839305f9d17745e247> /System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib
0x18928f000 - 0x189294fff IOAccelerator arm64  <f4d5cd421bd03a52b40c991fd1c73806> /System/Library/PrivateFrameworks/IOAccelerator.framework/IOAccelerator
0x189295000 - 0x189296fff libCVMSPluginSupport.dylib arm64  <7110757134ea3599b3d739db2ea6f48a> /System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib
0x189297000 - 0x18929afff libCoreFSCache.dylib arm64  <2147b40a3d713d53b221e8f40ca5ac7f> /System/Library/Frameworks/OpenGLES.framework/libCoreFSCache.dylib
0x18929b000 - 0x1892defff libGLImage.dylib arm64  <c2e2de9ee34236558c89d7fe9bc0116c> /System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib
0x1892df000 - 0x1892e9fff libGFXShared.dylib arm64  <058e54d10e9838c5bea32a75f199c2db> /System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib
0x1892ea000 - 0x1892f2fff IOMobileFramebuffer arm64  <811101a668313da993fa3881ac7cddef> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/IOMobileFramebuffer
0x1892f3000 - 0x1892f3fff libmetal_timestamp.dylib arm64  <2bbf481d5e4a35aea434cd15f9d6a182> /System/Library/PrivateFrameworks/GPUCompiler.framework/libmetal_timestamp.dylib
0x1892f4000 - 0x189352fff Metal arm64  <ff1261ae94e03c19964dda0546e189fd> /System/Library/Frameworks/Metal.framework/Metal
0x189353000 - 0x18935dfff OpenGLES arm64  <52e0ecb1f2c23cc4a26345d035127679> /System/Library/Frameworks/OpenGLES.framework/OpenGLES
0x18935e000 - 0x189382fff CoreVideo arm64  <581f5f9967923c4983c1373dfa23195b> /System/Library/Frameworks/CoreVideo.framework/CoreVideo
0x189383000 - 0x189385fff OAuth arm64  <23d43697c1b130ed814eaddbd9851e0d> /System/Library/PrivateFrameworks/OAuth.framework/OAuth
0x18938d000 - 0x1893cafff Accounts arm64  <ba89d108cfef37ae91b70116c6d7c66d> /System/Library/Frameworks/Accounts.framework/Accounts
0x1893cb000 - 0x1894bdfff libiconv.2.dylib arm64  <c85933d9062f32ac885047aadb359e88> /usr/lib/libiconv.2.dylib
0x1894be000 - 0x18960efff CoreAudio arm64  <8ff5628b7e9b36efb6b746e6ea3e9088> /System/Library/Frameworks/CoreAudio.framework/CoreAudio
0x18960f000 - 0x189612fff UserFS arm64  <13d40ea4a3e032b199465cddc45c8479> /System/Library/PrivateFrameworks/UserFS.framework/UserFS
0x189613000 - 0x189721fff CoreMedia arm64  <98e944101d7b3745ae7bc0e43a8b59cb> /System/Library/Frameworks/CoreMedia.framework/CoreMedia
0x189722000 - 0x189728fff libcupolicy.dylib arm64  <e88ddf38bf5a3f2583b7f1c9b1af4e76> /usr/lib/libcupolicy.dylib
0x189729000 - 0x1897b6fff CoreTelephony arm64  <c5ef9b84bce0312e96b3faed5e424110> /System/Library/Frameworks/CoreTelephony.framework/CoreTelephony
0x1897b7000 - 0x1898c4fff libFontParser.dylib arm64  <2784cc1e874a395bb3ea2f7c3382c62f> /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib
0x1898c5000 - 0x189954fff VideoToolbox arm64  <d0baea0326d13f66ae8623f19aa1ac76> /System/Library/Frameworks/VideoToolbox.framework/VideoToolbox
0x189955000 - 0x189955fff FontServices arm64  <a4b99cf7d62630aeb2f8c8e865a8fe34> /System/Library/PrivateFrameworks/FontServices.framework/FontServices
0x189956000 - 0x189aa3fff CoreText arm64  <9d73af39afa63ea68673374a3862426b> /System/Library/Frameworks/CoreText.framework/CoreText
0x189aa4000 - 0x189abefff ProtocolBuffer arm64  <11c5f55b03ff32c6b25310171c1c7afe> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer
0x189abf000 - 0x189ae7fff PersistentConnection arm64  <65b64570bee63c0580880163a91c230f> /System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection
0x189ae8000 - 0x189aeefff DataMigration arm64  <5961a23a26153867b4bb8c80c19799d0> /System/Library/PrivateFrameworks/DataMigration.framework/DataMigration
0x189aef000 - 0x189f4ffff AudioToolbox arm64  <3ea60e00d2383ae498996690ab1fdbdd> /System/Library/Frameworks/AudioToolbox.framework/AudioToolbox
0x189f50000 - 0x18a128fff QuartzCore arm64  <6dc61ad83fc03f799792d1cb950622f7> /System/Library/Frameworks/QuartzCore.framework/QuartzCore
0x18a129000 - 0x18a12ffff Netrb arm64  <81262209ce983a5197fc2da41fc3b6a3> /System/Library/PrivateFrameworks/Netrb.framework/Netrb
0x18a130000 - 0x18a140fff libcmph.dylib arm64  <7f719c3d948530c78be18a40b3ea59aa> /usr/lib/libcmph.dylib
0x18a141000 - 0x18a161fff libmis.dylib arm64  <cd871843480d31b8b074ac87e66cb63d> /usr/lib/libmis.dylib
0x18a162000 - 0x18a255fff LanguageModeling arm64  <8483753bf96f3484b448a47883cd5ab4> /System/Library/PrivateFrameworks/LanguageModeling.framework/LanguageModeling
0x18a256000 - 0x18a33dfff ManagedConfiguration arm64  <d9e33a6cfa163270bb50a1a6e370ea95> /System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration
0x18a33e000 - 0x18a354fff libmarisa.dylib arm64  <f0eea40d2c0a33a58d7cd2c9b52da4b7> /usr/lib/libmarisa.dylib
0x18a355000 - 0x18a425fff ProofReader arm64  <1596b3e0c7c43398ac19ac08a5460868> /System/Library/PrivateFrameworks/ProofReader.framework/ProofReader
0x18a426000 - 0x18a430fff MediaAccessibility arm64  <7b482ef272bf34fcb742c2afd236b626> /System/Library/Frameworks/MediaAccessibility.framework/MediaAccessibility
0x18a431000 - 0x18a441fff MobileAsset arm64  <66b4c8da5b103557b258b9bac8d37772> /System/Library/PrivateFrameworks/MobileAsset.framework/MobileAsset
0x18a442000 - 0x18a4b3fff ColorSync arm64  <d4fa34368b923aaa8679c1bb8433b9b5> /System/Library/PrivateFrameworks/ColorSync.framework/ColorSync
0x18a4b4000 - 0x18a524fff MetalPerformanceShaders arm64  <251f089c067b30d4922d67dc463d2300> /System/Library/Frameworks/MetalPerformanceShaders.framework/MetalPerformanceShaders
0x18a525000 - 0x18a954fff FaceCore arm64  <04c8c7b7a36d3d98a96817f4365b3439> /System/Library/PrivateFrameworks/FaceCore.framework/FaceCore
0x18a955000 - 0x18a9d0fff Quagga arm64  <068db048c7e03054b73e3691592d1287> /System/Library/PrivateFrameworks/Quagga.framework/Quagga
0x18a9d1000 - 0x18ab9bfff CoreImage arm64  <8c3df52ae00634d0ac530ceea391edac> /System/Library/Frameworks/CoreImage.framework/CoreImage
0x18ab9c000 - 0x18abe8fff TextInput arm64  <25840bba5f6e347290d6f9e13dc2adf7> /System/Library/PrivateFrameworks/TextInput.framework/TextInput
0x18abe9000 - 0x18abf9fff libAccessibility.dylib arm64  <f9f8b21c43c33c20a44455087fb58d36> /usr/lib/libAccessibility.dylib
0x18ac09000 - 0x18b55ffff JavaScriptCore arm64  <8f81ebee9a4c3d42903b89e5e73a54a7> /System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore
0x18b560000 - 0x18b77dfff StoreServices arm64  <2f9d7cd0f84d33f3bce6134c7acb25c5> /System/Library/PrivateFrameworks/StoreServices.framework/StoreServices
0x18b77e000 - 0x18c871fff WebCore arm64  <ef6c9957757b3733a0e5d447fe4455aa> /System/Library/PrivateFrameworks/WebCore.framework/WebCore
0x18c872000 - 0x18c89bfff libxslt.1.dylib arm64  <28d75f17d5b03dfd8717fea9677e1720> /usr/lib/libxslt.1.dylib
0x18c89c000 - 0x18c981fff WebKitLegacy arm64  <2c47baeea50b32f6bab25105cfc7df1f> /System/Library/PrivateFrameworks/WebKitLegacy.framework/WebKitLegacy
0x18c982000 - 0x18ca4afff CoreUI arm64  <c5f28ba5feee3fa68d7d42174e006ad5> /System/Library/PrivateFrameworks/CoreUI.framework/CoreUI
0x18ca4b000 - 0x18ca72fff DictionaryServices arm64  <95116730515a356b990751cd0513b912> /System/Library/PrivateFrameworks/DictionaryServices.framework/DictionaryServices
0x18ca73000 - 0x18ca74fff HangTracer arm64  <d433b5e6e9d93fbeb761be625f893433> /System/Library/PrivateFrameworks/HangTracer.framework/HangTracer
0x18ca75000 - 0x18cac5fff PhysicsKit arm64  <abbda49ec9cb3e67934ed6ca38a54986> /System/Library/PrivateFrameworks/PhysicsKit.framework/PhysicsKit
0x18cac6000 - 0x18cb9efff UIFoundation arm64  <bf83b49e8565319c87a0d11769135836> /System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation
0x18cbab000 - 0x18d937fff UIKit arm64  <1804405f7b2a3e77a349b53163b09cdb> /System/Library/Frameworks/UIKit.framework/UIKit
0x18d938000 - 0x18d960fff CoreBluetooth arm64  <12009b6e55113d8da05a44a02f819497> /System/Library/Frameworks/CoreBluetooth.framework/CoreBluetooth
0x18d961000 - 0x18d986fff DataAccessExpress arm64  <ee3cce236aaf3b77b59100acd44c2f29> /System/Library/PrivateFrameworks/DataAccessExpress.framework/DataAccessExpress
0x18d987000 - 0x18d9a8fff NetworkStatistics arm64  <a0b0f25f321b35fba72fcdddcc334766> /System/Library/PrivateFrameworks/NetworkStatistics.framework/NetworkStatistics
0x18d9a9000 - 0x18da32fff AddressBook arm64  <54368e264b6b3cf5bfc46b20d8c407be> /System/Library/Frameworks/AddressBook.framework/AddressBook
0x18da33000 - 0x18db90fff CoreMotion arm64  <32e6ecff39443a1687ad3f188b97b09f> /System/Library/Frameworks/CoreMotion.framework/CoreMotion
0x18db91000 - 0x18dbbefff CacheDelete arm64  <8da9a120ed5f31fcb904a48633c0612c> /System/Library/PrivateFrameworks/CacheDelete.framework/CacheDelete
0x18dbbf000 - 0x18dbccfff CoreAUC arm64  <671a13f17b6d3f7da0b81595e1957bc5> /System/Library/PrivateFrameworks/CoreAUC.framework/CoreAUC
0x18dbcd000 - 0x18e16efff MediaToolbox arm64  <6a968276d7153a80b6059d561045f83d> /System/Library/Frameworks/MediaToolbox.framework/MediaToolbox
0x18e16f000 - 0x18e31afff Celestial arm64  <4b71ffa1c45d346887475b45f842fb12> /System/Library/PrivateFrameworks/Celestial.framework/Celestial
0x18e31b000 - 0x18e32afff IntlPreferences arm64  <41f26994496f3c4981cd2939832f54d6> /System/Library/PrivateFrameworks/IntlPreferences.framework/IntlPreferences
0x18e32b000 - 0x18e32dfff CoreDuetDebugLogging arm64  <a16fb61a2c833e93852b77b5b5520db2> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/CoreDuetDebugLogging
0x18e32e000 - 0x18e342fff CoreDuetDaemonProtocol arm64  <486d428723a038fc994d0b926b4a84af> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/CoreDuetDaemonProtocol
0x18e343000 - 0x18e418fff CoreDuet arm64  <8ab25716062a373c9bb1c54fc647d0fe> /System/Library/PrivateFrameworks/CoreDuet.framework/CoreDuet
0x18e419000 - 0x18e5cbfff AVFoundation arm64  <4fed94e1676f3b50928f9be1cb375e75> /System/Library/Frameworks/AVFoundation.framework/AVFoundation
0x18e5cc000 - 0x18e5fefff libtidy.A.dylib arm64  <daa87ffd63a43a5aa805bce93b398a11> /usr/lib/libtidy.A.dylib
0x18e5ff000 - 0x18e665fff IMFoundation arm64  <a2ca1e8dfe203f928802b19dcca8fbf7> /System/Library/PrivateFrameworks/IMFoundation.framework/IMFoundation
0x18e666000 - 0x18ecf3fff GeoServices arm64  <43d3e18725873a68be5c828ce90a623a> /System/Library/PrivateFrameworks/GeoServices.framework/GeoServices
0x18ecf4000 - 0x18ecf5fff DiagnosticLogCollection arm64  <944c96e416a331efbf7bab3839ccd10d> /System/Library/PrivateFrameworks/DiagnosticLogCollection.framework/DiagnosticLogCollection
0x18ecf6000 - 0x18ecf7fff Marco arm64  <bff480036e39364fafccd764c6dbaeb4> /System/Library/PrivateFrameworks/Marco.framework/Marco
0x18ecf8000 - 0x18ed7cfff CoreLocation arm64  <28f1187102a531528323faead1645b58> /System/Library/Frameworks/CoreLocation.framework/CoreLocation
0x18ed7d000 - 0x18ed82fff ConstantClasses arm64  <9d635c1173f83a22b1d1b1e53c16f6bb> /System/Library/PrivateFrameworks/ConstantClasses.framework/ConstantClasses
0x18ed83000 - 0x18ed8dfff libChineseTokenizer.dylib arm64  <10321183aad832e6988d2cb25dc1169e> /usr/lib/libChineseTokenizer.dylib
0x18ed8e000 - 0x18f00efff libmecabra.dylib arm64  <7d15e6ac19ea3b3d8b1fb3dc6f5a79ed> /usr/lib/libmecabra.dylib
0x18f00f000 - 0x18f060fff IDSFoundation arm64  <ae619c4ab4343eaaaf51a9d5cc3acd3f> /System/Library/PrivateFrameworks/IDSFoundation.framework/IDSFoundation
0x18f061000 - 0x18f127fff IDS arm64  <f6a74797fdb43277b966a72442b3a803> /System/Library/PrivateFrameworks/IDS.framework/IDS
0x18f128000 - 0x18f145fff MediaServices arm64  <b4725476785c34aa8518b5b4a9ae13e6> /System/Library/PrivateFrameworks/MediaServices.framework/MediaServices
0x18f146000 - 0x18f186fff AuthKit arm64  <fb557bb1badb3e298bbc0b0945322e33> /System/Library/PrivateFrameworks/AuthKit.framework/AuthKit
0x18f187000 - 0x18f18cfff libheimdal-asn1.dylib arm64  <166bb8b0eaa6368d836a7702b4ade694> /usr/lib/libheimdal-asn1.dylib
0x18f18d000 - 0x18f23bfff MediaRemote arm64  <aed85a16fdeb30c7bb1e12c1ca7361ed> /System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote
0x18f23c000 - 0x18f3c3fff MobileSpotlightIndex arm64  <5383bbd06360330b8ad7f3d857bf0f87> /System/Library/PrivateFrameworks/MobileSpotlightIndex.framework/MobileSpotlightIndex
0x18f3c4000 - 0x18f3e4fff PlugInKit arm64  <354f2edb8c5e3f4b95155b744b56ecc8> /System/Library/PrivateFrameworks/PlugInKit.framework/PlugInKit
0x18f3e5000 - 0x18f411fff ProtectedCloudStorage arm64  <1be1f41a77f138e7b177db7aea32c460> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/ProtectedCloudStorage
0x18f412000 - 0x18f42dfff libresolv.9.dylib arm64  <1088f2b7d38b3b29b79ea0a4de8eb83c> /usr/lib/libresolv.9.dylib
0x18f42e000 - 0x18f443fff ApplePushService arm64  <404f080a4df430a6a4012958806b6e57> /System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService
0x18f444000 - 0x18f493fff ContactsFoundation arm64  <b2d796f48a0d336fb6f3d048299c9aa3> /System/Library/PrivateFrameworks/ContactsFoundation.framework/ContactsFoundation
0x18f494000 - 0x18f499fff ParsecSubscriptionServiceSupport arm64  <53e5ef742ffa3af287a2fc7c1a0fbc6a> /System/Library/PrivateFrameworks/ParsecSubscriptionServiceSupport.framework/ParsecSubscriptionServiceSupport
0x18f49a000 - 0x18f542fff Contacts arm64  <74d5212f603f3e9ca9522262ad9aeacf> /System/Library/Frameworks/Contacts.framework/Contacts
0x18f543000 - 0x18f591fff CoreSpotlight arm64  <dd56f04ebe813448a8009a72e6a5d4c0> /System/Library/Frameworks/CoreSpotlight.framework/CoreSpotlight
0x18f592000 - 0x18f5bafff vCard arm64  <6177f1a1d74e3a788a888913862c8487> /System/Library/PrivateFrameworks/vCard.framework/vCard
0x18f5bb000 - 0x18f647fff VoiceServices arm64  <4a9d9d7c87063e31ac02c51832d12985> /System/Library/PrivateFrameworks/VoiceServices.framework/VoiceServices
0x18f648000 - 0x18f696fff SAObjects arm64  <cb968a4c94793cee9f24675abe5a5b93> /System/Library/PrivateFrameworks/SAObjects.framework/SAObjects
0x18f733000 - 0x18f7cffff AssistantServices arm64  <0521c745ab213216a63de8d14b08b4b0> /System/Library/PrivateFrameworks/AssistantServices.framework/AssistantServices
0x18f7e7000 - 0x18f7e9fff MessageSupport arm64  <9da4f5d6c66e33a191bfa15af72d846c> /System/Library/PrivateFrameworks/MessageSupport.framework/MessageSupport
0x18f7ea000 - 0x18f83efff MIME arm64  <e389f4b280673c67b9f52e35f3dacd65> /System/Library/PrivateFrameworks/MIME.framework/MIME
0x18f8da000 - 0x18f8f6fff AppleIDSSOAuthentication arm64  <86f02c1364c433578943f63cfdd6d63f> /System/Library/PrivateFrameworks/AppleIDSSOAuthentication.framework/AppleIDSSOAuthentication
0x18f8f7000 - 0x18f907fff MailServices arm64  <9294a06f0a3834068ebf3d872a27d7ff> /System/Library/PrivateFrameworks/MailServices.framework/MailServices
0x18f908000 - 0x18f976fff AppleAccount arm64  <ddcedeb71dde3b96af5ef48fafdbcaa3> /System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount
0x18f977000 - 0x18f97bfff CommunicationsFilter arm64  <c09574c4d9f132d080f543f4d2bc7c1d> /System/Library/PrivateFrameworks/CommunicationsFilter.framework/CommunicationsFilter
0x18f97c000 - 0x18f9a0fff ChunkingLibrary arm64  <2d79fcffe0a8325bb364c297197c2d65> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/ChunkingLibrary
0x18f9a1000 - 0x18f9acfff CaptiveNetwork arm64  <5d095ea1c7e93865a577f73201dc43df> /System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork
0x18f9ad000 - 0x18f9dbfff EAP8021X arm64  <87f61032e0c23911a752f834b3bf1ffa> /System/Library/PrivateFrameworks/EAP8021X.framework/EAP8021X
0x18f9dc000 - 0x18f9e2fff AssetCacheServices arm64  <075670ecd32d3fbeb5b3ce6da947f51b> /System/Library/PrivateFrameworks/AssetCacheServices.framework/AssetCacheServices
0x18f9e3000 - 0x18fabcfff MMCS arm64  <92dc4de4192c362591d4b4e019af6db1> /System/Library/PrivateFrameworks/MMCS.framework/MMCS
0x18fabd000 - 0x18faedfff MobileWiFi arm64  <b8634bee980a3594aeadee3f06a7186d> /System/Library/PrivateFrameworks/MobileWiFi.framework/MobileWiFi
0x18faee000 - 0x18fb30fff ContentIndex arm64  <19eda95a34c639d093b9dc61c0b3f4e6> /System/Library/PrivateFrameworks/ContentIndex.framework/ContentIndex
0x18fb31000 - 0x18fb39fff MobileIcons arm64  <b73eaea49b493f708a793777ef16cfce> /System/Library/PrivateFrameworks/MobileIcons.framework/MobileIcons
0x18fb8f000 - 0x18fbbffff Bom arm64  <9545e5dc0248350ea55266dafdf1c3f7> /System/Library/PrivateFrameworks/Bom.framework/Bom
0x18fbc0000 - 0x18fbc7fff CertUI arm64  <8fcb899eb96c3ca2a44f0f439a26b4fb> /System/Library/PrivateFrameworks/CertUI.framework/CertUI
0x18fbc8000 - 0x18fc18fff FTServices arm64  <b7c8a07e3a6336f286d247ec2b404488> /System/Library/PrivateFrameworks/FTServices.framework/FTServices
0x18fc19000 - 0x18fc77fff CoreDAV arm64  <11b89b735ad93ffca4d0efb854df9ab8> /System/Library/PrivateFrameworks/CoreDAV.framework/CoreDAV
0x18fc78000 - 0x18fc85fff BaseBoardUI arm64  <444fc42ebd893244be48a2ab3fa98e3f> /System/Library/PrivateFrameworks/BaseBoardUI.framework/BaseBoardUI
0x18fc86000 - 0x18fc9afff UserManagement arm64  <26bc451e92fd3d18a4f237c34798385a> /System/Library/PrivateFrameworks/UserManagement.framework/UserManagement
0x18fc9b000 - 0x18fd63fff CorePDF arm64  <83ce0866f79834d1b91423333a40f932> /System/Library/PrivateFrameworks/CorePDF.framework/CorePDF
0x18fd64000 - 0x18fd98fff iCalendar arm64  <a6f2dc3bfc41351c9dded418139ee97d> /System/Library/PrivateFrameworks/iCalendar.framework/iCalendar
0x18fda1000 - 0x18fe00fff CalendarFoundation arm64  <d8bae7d431e5328ca1d2716a42f29eae> /System/Library/PrivateFrameworks/CalendarFoundation.framework/CalendarFoundation
0x18fe01000 - 0x18fe07fff IncomingCallFilter arm64  <62bdc5aac98c371ea540084da652f001> /System/Library/PrivateFrameworks/IncomingCallFilter.framework/IncomingCallFilter
0x18ff00000 - 0x18ff98fff CalendarDatabase arm64  <5997d40c47c632ad848c0da62416fff7> /System/Library/PrivateFrameworks/CalendarDatabase.framework/CalendarDatabase
0x18ff99000 - 0x18ffdefff CalendarDaemon arm64  <737888a19d1d3e2eb55023f964582a8d> /System/Library/PrivateFrameworks/CalendarDaemon.framework/CalendarDaemon
0x18ffdf000 - 0x1900aefff EventKit arm64  <39e4a110cfb53e2f83a3f54255233a03> /System/Library/Frameworks/EventKit.framework/EventKit
0x1900af000 - 0x1903b2fff WebKit arm64  <17220d29d7b2334db44059e6ff7f61e5> /System/Library/Frameworks/WebKit.framework/WebKit
0x1903b3000 - 0x1903f9fff WebBookmarks arm64  <e79d45649948354a8585b97e91ec1380> /System/Library/PrivateFrameworks/WebBookmarks.framework/WebBookmarks
0x1903fa000 - 0x190542fff ContactsUI arm64  <a5d684c338fb3ad9a5758cb81cae2073> /System/Library/Frameworks/ContactsUI.framework/ContactsUI
0x190543000 - 0x190cfdfff ModelIO arm64  <54c4cfa7d1ce37648feac1566c688eae> /System/Library/Frameworks/ModelIO.framework/ModelIO
0x190cfe000 - 0x190d04fff DAAPKit arm64  <e2f5c35af4e73c0b8880725e14fc12e7> /System/Library/PrivateFrameworks/DAAPKit.framework/DAAPKit
0x190d05000 - 0x190d86fff CoreSymbolication arm64  <cf4c7faecfdf355cbefd302e616b0234> /System/Library/PrivateFrameworks/CoreSymbolication.framework/CoreSymbolication
0x190d87000 - 0x190e24fff TelephonyUtilities arm64  <4bb95814034337aba0e676c1c33c9627> /System/Library/PrivateFrameworks/TelephonyUtilities.framework/TelephonyUtilities
0x190e25000 - 0x190e55fff GLKit arm64  <133a53348b2e3a1bb872e9f13871a842> /System/Library/Frameworks/GLKit.framework/GLKit
0x190e56000 - 0x1910c0fff MusicLibrary arm64  <0b694389c0443d8f905235f5b346964c> /System/Library/PrivateFrameworks/MusicLibrary.framework/MusicLibrary
0x1910c1000 - 0x1910fffff Notes arm64  <a0ede9e5e20e36938fda18c8e2e2de65> /System/Library/PrivateFrameworks/Notes.framework/Notes
0x191100000 - 0x1911d7fff AddressBookUI arm64  <83d4193ac4dd31b9b1690a0ecd1cd5f0> /System/Library/Frameworks/AddressBookUI.framework/AddressBookUI
0x1911d8000 - 0x1912b5fff CloudKit arm64  <57ee991dbad6343aa5b1da537ef0c65f> /System/Library/Frameworks/CloudKit.framework/CloudKit
0x1912b6000 - 0x191313fff iTunesStore arm64  <6b3c659271773947b78c6f2bdcec916e> /System/Library/PrivateFrameworks/iTunesStore.framework/iTunesStore
0x191314000 - 0x19131afff CloudPhotoServices arm64  <381563610a603902b5a5bc6eb71411fb> /System/Library/PrivateFrameworks/CloudPhotoServices.framework/CloudPhotoServices
0x19131b000 - 0x191411fff CloudPhotoLibrary arm64  <5aea2d9cd31a314c8c4107445241a237> /System/Library/PrivateFrameworks/CloudPhotoLibrary.framework/CloudPhotoLibrary
0x191412000 - 0x191461fff DataAccess arm64  <210f37b04eab3bc0baa17f1218505f25> /System/Library/PrivateFrameworks/DataAccess.framework/DataAccess
0x191462000 - 0x191489fff AssetsLibraryServices arm64  <da2212f776a73a3cbae134918f26336c> /System/Library/PrivateFrameworks/AssetsLibraryServices.framework/AssetsLibraryServices
0x19148a000 - 0x191522fff HomeSharing arm64  <16daec5c02433eb4947ae0cce5a58ce1> /System/Library/PrivateFrameworks/HomeSharing.framework/HomeSharing
0x191523000 - 0x191551fff ACTFramework arm64  <4109d6d2547c3ff6947434cd22492bfd> /System/Library/PrivateFrameworks/ACTFramework.framework/ACTFramework
0x191552000 - 0x19155dfff DCIMServices arm64  <e83ee6449bd43b719ee6689f153fb4eb> /System/Library/PrivateFrameworks/DCIMServices.framework/DCIMServices
0x19155e000 - 0x19168bfff CoreMediaStream arm64  <73e65daffe5c3aa7a54d64817cf62583> /System/Library/PrivateFrameworks/CoreMediaStream.framework/CoreMediaStream
0x19168c000 - 0x1916a4fff PhotosFormats arm64  <0a62b66d803e3ade95d2e303f5dc92ce> /System/Library/PrivateFrameworks/PhotosFormats.framework/PhotosFormats
0x1916a5000 - 0x1916acfff XPCKit arm64  <238c5b445c233772b1456419738eb478> /System/Library/PrivateFrameworks/XPCKit.framework/XPCKit
0x1916ad000 - 0x191a2bfff MediaPlayer arm64  <7f0e6ef0d236360a96c4eb58067704f0> /System/Library/Frameworks/MediaPlayer.framework/MediaPlayer
0x191a2c000 - 0x191b12fff CameraKit arm64  <dced4b1aaa6c3025a834b265f84c86db> /System/Library/PrivateFrameworks/CameraKit.framework/CameraKit
0x191b1b000 - 0x191b36fff MediaStream arm64  <c09f05a03f4531c8a40dc8c1b0e5d352> /System/Library/PrivateFrameworks/MediaStream.framework/MediaStream
0x191b37000 - 0x191ebdfff PhotoLibraryServices arm64  <e254ca00e46f3ca8a90a29c3018e3dc3> /System/Library/PrivateFrameworks/PhotoLibraryServices.framework/PhotoLibraryServices
0x191ebe000 - 0x191ef4fff PrototypeTools arm64  <a219ff307840362bb385c5776a3fac25> /System/Library/PrivateFrameworks/PrototypeTools.framework/PrototypeTools
0x191ef5000 - 0x191f63fff libprotobuf.dylib arm64  <0281cb59de1d3e858bd9e59dddaf41ff> /usr/lib/libprotobuf.dylib
0x191f64000 - 0x191f87fff ScreenReaderCore arm64  <d5b8c93b2f6e3586b6d41b57cdeac1cb> /System/Library/PrivateFrameworks/ScreenReaderCore.framework/ScreenReaderCore
0x19203d000 - 0x19205cfff TextToSpeech arm64  <0689a50ffd3a3898aee4ac75ddb2ae11> /System/Library/PrivateFrameworks/TextToSpeech.framework/TextToSpeech
0x1920e8000 - 0x1920eafff libAXSafeCategoryBundle.dylib arm64  <62cd5437576e39aeb0a6882e690f1ad2> /usr/lib/libAXSafeCategoryBundle.dylib
0x1920eb000 - 0x1920f4fff libAXSpeechManager.dylib arm64  <9ef1090ce73733a58867321f27f91a3e> /usr/lib/libAXSpeechManager.dylib
0x1920f5000 - 0x192197fff AccessibilityUtilities arm64  <f1b75aee54273a55a72bd33bd01c2ec6> /System/Library/PrivateFrameworks/AccessibilityUtilities.framework/AccessibilityUtilities
0x192198000 - 0x1922d5fff Message arm64  <ecd86c630dbd3fcfa592adb5cfa4d493> /System/Library/PrivateFrameworks/Message.framework/Message
0x192389000 - 0x1923bcfff DataDetectorsCore arm64  <36ddb64003543f17a4ae5f50cf5ca896> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/DataDetectorsCore
0x1923cb000 - 0x19260efff libAWDSupportFramework.dylib arm64  <5d208ba22cbd3626a213751b9f5a08da> /usr/lib/libAWDSupportFramework.dylib
0x19264e000 - 0x19268bfff WirelessDiagnostics arm64  <940dc9eff3fd3865ae91cb2af37e86aa> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/WirelessDiagnostics
0x19268c000 - 0x192799fff Photos arm64  <c22e0114511937ffae76791cf6df1686> /System/Library/Frameworks/Photos.framework/Photos
0x19279a000 - 0x1927d1fff AXRuntime arm64  <53df3e57409730768fbe0776de11877a> /System/Library/PrivateFrameworks/AXRuntime.framework/AXRuntime
0x19284f000 - 0x192868fff GenerationalStorage arm64  <3b7cc03de3dc311e8ebbc53a86643300> /System/Library/PrivateFrameworks/GenerationalStorage.framework/GenerationalStorage
0x192869000 - 0x192874fff CoreRecents arm64  <5919be3a936736239f53dc6057ac945e> /System/Library/PrivateFrameworks/CoreRecents.framework/CoreRecents
0x192877000 - 0x192880fff AccessibilityUIUtilities arm64  <64aa863eab153764a713bc4dd3a775e9> /System/Library/PrivateFrameworks/Accessibility.framework/Frameworks/AccessibilityUIUtilities.framework/AccessibilityUIUtilities
0x192975000 - 0x192988fff AssetsLibrary arm64  <f7bc78a1943130c387a5d9661bd239cb> /System/Library/Frameworks/AssetsLibrary.framework/AssetsLibrary
0x1929c0000 - 0x192fb6fff VectorKit arm64  <b85fe130baa13e698e5b15fbd7b395f3> /System/Library/PrivateFrameworks/VectorKit.framework/VectorKit
0x192fb7000 - 0x1931c6fff MapKit arm64  <b01e1b5efea930fd846d824a43fb6faa> /System/Library/Frameworks/MapKit.framework/MapKit
0x1931e5000 - 0x1931e8fff FTClientServices arm64  <cf575d90f0ef36b2a055840f02691b56> /System/Library/PrivateFrameworks/FTClientServices.framework/FTClientServices
0x1931e9000 - 0x1931fbfff QuickLookThumbnailing arm64  <9b111083e2b1386091f3f5f4a6cdbc3c> /System/Library/PrivateFrameworks/QuickLookThumbnailing.framework/QuickLookThumbnailing
0x1932ff000 - 0x193395fff QuickLook arm64  <b0790b2a84023f60a91da6260ad9c948> /System/Library/Frameworks/QuickLook.framework/QuickLook
0x1933e4000 - 0x19341dfff ContactsAutocomplete arm64  <797d7b400c5331fa9d7a7f6ded49b0db> /System/Library/PrivateFrameworks/ContactsAutocomplete.framework/ContactsAutocomplete
0x19342e000 - 0x19350cfff MessageUI arm64  <db6cdc704fcd362797fa7a59836fc841> /System/Library/Frameworks/MessageUI.framework/MessageUI
0x19350d000 - 0x193585fff libnetwork.dylib arm64  <5a78675ccd2f3b50ba5ae3e5ef088969> /usr/lib/libnetwork.dylib
0x193599000 - 0x193617fff Network arm64  <7c97545661d93a238dd3201713c90bbe> /System/Library/PrivateFrameworks/Network.framework/Network
0x19361e000 - 0x1936bdfff Social arm64  <b62cec6888253e85963301dc2604e2d1> /System/Library/Frameworks/Social.framework/Social
0x1937b9000 - 0x1937cffff FTAWD arm64  <d5d986fdf2a73746badf86337ea26b3a> /System/Library/PrivateFrameworks/FTAWD.framework/FTAWD
0x1939ab000 - 0x1939abfff AdSupport arm64  <dd8f4f3183913751b8239f5b83785f40> /System/Library/Frameworks/AdSupport.framework/AdSupport
0x1939ac000 - 0x1939ccfff StoreKit arm64  <856d6838b9e5329d9fd82e038b9719e8> /System/Library/Frameworks/StoreKit.framework/StoreKit
0x1939ff000 - 0x193a56fff ImageCapture arm64  <c4b1b77966ae350997986c475fdfe0b5> /System/Library/PrivateFrameworks/ImageCapture.framework/ImageCapture
0x193a57000 - 0x193a6dfff iPhotoMigrationSupport arm64  <19c46322a6f53dbe9be9b943e7287943> /System/Library/PrivateFrameworks/iPhotoMigrationSupport.framework/iPhotoMigrationSupport
0x193a6e000 - 0x193a8efff SharedUtils arm64  <7daf1f044294321fa2b2969c4ad56422> /System/Library/Frameworks/LocalAuthentication.framework/Support/SharedUtils.framework/SharedUtils
0x193a9e000 - 0x193b31fff PhotoLibrary arm64  <1b1a9ced905a31f688a0bfdbbca0a26f> /System/Library/PrivateFrameworks/PhotoLibrary.framework/PhotoLibrary
0x193d32000 - 0x193d44fff LocalAuthentication arm64  <518efa2598233531b5a1dceb013241cc> /System/Library/Frameworks/LocalAuthentication.framework/LocalAuthentication
0x193d45000 - 0x193d7bfff CalendarUIKit arm64  <d1e7c63a537d3d4cb13bf24664b3a287> /System/Library/PrivateFrameworks/CalendarUIKit.framework/CalendarUIKit
0x193ded000 - 0x193fb0fff EventKitUI arm64  <574a0b3800163a0da0f5bd4cbe44359e> /System/Library/Frameworks/EventKitUI.framework/EventKitUI
0x193fb1000 - 0x194038fff CoreRecognition arm64  <5d295f3c0f423b35865e89a188cc203a> /System/Library/PrivateFrameworks/CoreRecognition.framework/CoreRecognition
0x194066000 - 0x194098fff Pegasus arm64  <16f175f3c4b5343fbba9f33a019df587> /System/Library/PrivateFrameworks/Pegasus.framework/Pegasus
0x194099000 - 0x1940fafff WebInspector arm64  <6cad931cedea3e538fea37ba0f742466> /System/Library/PrivateFrameworks/WebInspector.framework/WebInspector
0x194150000 - 0x194199fff AVKit arm64  <a22d21e340683071aae9308e7e98ea46> /System/Library/Frameworks/AVKit.framework/AVKit
0x1941c8000 - 0x19428cfff ITMLKit arm64  <f327fea7d82b3f198cd73545217f1ed2> /System/Library/PrivateFrameworks/ITMLKit.framework/ITMLKit
0x19428d000 - 0x19449efff SafariShared arm64  <629e722f6c3838da8af537ba034508a8> /System/Library/PrivateFrameworks/SafariShared.framework/SafariShared
0x19449f000 - 0x1944b1fff SiriTasks arm64  <cf2be6f4dba133c18c64e8450b1147b7> /System/Library/PrivateFrameworks/SiriTasks.framework/SiriTasks
0x1946fe000 - 0x194781fff PhotoEditSupport arm64  <ccaac3637c1533759af0c9a548ea1ea5> /System/Library/PrivateFrameworks/PhotoEditSupport.framework/PhotoEditSupport
0x194d4b000 - 0x194d92fff WebUI arm64  <d15df032bcc43ceb9c859d5914c8efa0> /System/Library/PrivateFrameworks/WebUI.framework/WebUI
0x194dbe000 - 0x195229fff PhotosUI arm64  <727e1e51350e3803990f0555d9bc6e6c> /System/Library/Frameworks/PhotosUI.framework/PhotosUI
0x19522a000 - 0x1952cdfff SafariServices arm64  <4e514c6f1a353a3c9e7da75ef28d0b9d> /System/Library/Frameworks/SafariServices.framework/SafariServices
0x195c81000 - 0x195c89fff AccessibilityUI arm64  <b14ade9681e235bc94f74bdafc63d443> /System/Library/PrivateFrameworks/Accessibility.framework/Frameworks/AccessibilityUI.framework/AccessibilityUI
0x196425000 - 0x196455fff WirelessProximity arm64  <46b5f46f92af38b2965f7d21bd9ed3aa> /System/Library/PrivateFrameworks/WirelessProximity.framework/WirelessProximity
0x1966c3000 - 0x196740fff CoreHandwriting arm64  <2c2abc16390631299955479f738bf139> /System/Library/PrivateFrameworks/CoreHandwriting.framework/CoreHandwriting
0x196846000 - 0x1968d8fff MediaPlatform arm64  <a956f56e7f5137f6b6fcd0012b79f0f7> /System/Library/PrivateFrameworks/MediaPlatform.framework/MediaPlatform
0x197382000 - 0x1973defff CoreBrightness arm64  <85ad1b8cc94739a6a1e65cfb56900997> /System/Library/PrivateFrameworks/CoreBrightness.framework/CoreBrightness
0x1976ee000 - 0x197817fff StoreServicesCore arm64  <265f2ee887003ee7a6f622c9278f1861> /System/Library/PrivateFrameworks/StoreServicesCore.framework/StoreServicesCore
0x197aa9000 - 0x197aadfff ZoomServices arm64  <4244cd4f2b6d3787aef0fae249755ff1> /System/Library/PrivateFrameworks/Accessibility.framework/Frameworks/ZoomServices.framework/ZoomServices
0x197d57000 - 0x19819afff MediaLibraryCore arm64  <02b1955ea96135e195d5bea426c6702e> /System/Library/PrivateFrameworks/MediaLibraryCore.framework/MediaLibraryCore
0x1987d8000 - 0x1988dbfff AnnotationKit arm64  <4adbb0dc3383365badb357f588f292c0> /System/Library/PrivateFrameworks/AnnotationKit.framework/AnnotationKit
0x19acb4000 - 0x19acbbfff libMatch.1.dylib arm64  <c3665e4566383a39b147400243f14660> /usr/lib/libMatch.1.dylib
0x19ad82000 - 0x19ad8dfff AccessibilitySettingsLoader arm64  <370623657f6233d0b0b8dd7fa2011740> /System/Library/AccessibilityBundles/AccessibilitySettingsLoader.bundle/AccessibilitySettingsLoader
0x19b383000 - 0x19b397fff libCGInterfaces.dylib arm64  <a94effd0df4d3bb691067ae3ae270125> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/Libraries/libCGInterfaces.dylib
0x19b398000 - 0x19b610fff AudioCodecs arm64  <dc938f61b75f327cb996d8ca884683f1> /System/Library/Frameworks/AudioToolbox.framework/AudioCodecs
0x19bb78000 - 0x19bb7bfff PushKit arm64  <27abcf6736153f6bbc103796dc56c9b2> /System/Library/Frameworks/PushKit.framework/PushKit
0x19c288000 - 0x19c296fff AppleFSCompression arm64  <a1afd6c88f183b0896626b220de4d2c2> /System/Library/PrivateFrameworks/AppleFSCompression.framework/AppleFSCompression
0x19c297000 - 0x19c2a2fff AppleIDAuthSupport arm64  <5ef7f5e8da2c364b9d459b7280615c26> /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/AppleIDAuthSupport
0x19cf58000 - 0x19cf7efff CoreServicesInternal arm64  <3a007d98794d3e3a9d1f377b2c3619ee> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesInternal
0x19d2a7000 - 0x19d2b1fff DiagnosticExtensions arm64  <bf963a4bf08d3b82b4e1832f8ea2984e> /System/Library/PrivateFrameworks/DiagnosticExtensions.framework/DiagnosticExtensions
0x19d6b8000 - 0x19d6c4fff libGSFontCache.dylib arm64  <e35b6863bb623df5b8e7735a66f76e50> /System/Library/PrivateFrameworks/FontServices.framework/libGSFontCache.dylib
0x19d6c5000 - 0x19d6f6fff libTrueTypeScaler.dylib arm64  <de847921d0693dc48e78f8847117768a> /System/Library/PrivateFrameworks/FontServices.framework/libTrueTypeScaler.dylib
0x19d779000 - 0x19d7a5fff Futhark arm64  <355a369df71e346e8f951d2a25a3d80a> /System/Library/PrivateFrameworks/Futhark.framework/Futhark
0x19e6b2000 - 0x19e6e3fff MarkupUI arm64  <31815c047f8c362fb2935f7c4e962292> /System/Library/PrivateFrameworks/MarkupUI.framework/MarkupUI
0x19eaa6000 - 0x19eaaffff MobileStorage arm64  <d52617f7f151376f9c76c912ee5f1f68> /System/Library/PrivateFrameworks/MobileStorage.framework/MobileStorage
0x19f623000 - 0x19f650fff SafariSafeBrowsing arm64  <887d44eb862f3bdb80970559178b5a79> /System/Library/PrivateFrameworks/SafariSafeBrowsing.framework/SafariSafeBrowsing
0x1a01a1000 - 0x1a037cfff libFosl_dynamic.dylib arm64  <0aa33a84bd8630f29c6fc401fa0ffd5e> /usr/lib/libFosl_dynamic.dylib
0x1a0793000 - 0x1a07c2fff libpcap.A.dylib arm64  <983b5efbde5d30238673d8b74a8a2653> /usr/lib/libpcap.A.dylib
0x1a07c3000 - 0x1a07fafff libsandbox.1.dylib arm64  <6807064629533d0280639b570d79d179> /usr/lib/libsandbox.1.dylib
0x1a07fe000 - 0x1a08cffff AVFAudio arm64  <b1a0fc23635a35bb8ba6e8fe869cae92> /System/Library/Frameworks/AVFoundation.framework/Frameworks/AVFAudio.framework/AVFAudio
0x1a08d0000 - 0x1a08d9fff ProactiveEventTracker arm64  <5b8319222fbb31c58bd392b6d4fc1035> /System/Library/PrivateFrameworks/ProactiveEventTracker.framework/ProactiveEventTracker
0x1a08da000 - 0x1a0a30fff Intents arm64  <242a81c86a613c7e961765694a6f9e89> /System/Library/Frameworks/Intents.framework/Intents
0x1a0a31000 - 0x1a0a88fff CallKit arm64  <cfddd9cd11d33ff69595957a8b0ad067> /System/Library/Frameworks/CallKit.framework/CallKit
0x1a0b74000 - 0x1a0b97fff UserNotifications arm64  <0dd7c46e70d23483a26b02bfed7be22f> /System/Library/Frameworks/UserNotifications.framework/UserNotifications
0x1a0ba7000 - 0x1a0bb5fff PersonaKit arm64  <11315b9f03073d42a84dfedc91b43347> /System/Library/PrivateFrameworks/PersonaKit.framework/PersonaKit
0x1a0c42000 - 0x1a0e38fff CVML arm64  <cc734717fab431688fad56eb0b3f139a> /System/Library/PrivateFrameworks/CVML.framework/CVML
0x1a0f32000 - 0x1a0fe4fff Navigation arm64  <714104bfd3273e248e37e1ce6fd2f5a9> /System/Library/PrivateFrameworks/Navigation.framework/Navigation
0x1a10ad000 - 0x1a1237fff TextureIO arm64  <c54172604d14378eb9ca8a71942a9a7e> /System/Library/PrivateFrameworks/TextureIO.framework/TextureIO
0x1a16bf000 - 0x1a16c1fff SpeakTypingServices arm64  <90cd8bd9314f38f889ed3c0870af34be> /System/Library/PrivateFrameworks/Accessibility.framework/Frameworks/SpeakTypingServices.framework/SpeakTypingServices
0x1a1753000 - 0x1a179dfff ContactsUICore arm64  <e046c6d1c0d33c0dadfe2a5c663a6683> /System/Library/PrivateFrameworks/ContactsUICore.framework/ContactsUICore
0x1a1f61000 - 0x1a1f7efff SearchFoundation arm64  <f06ed152e1b83f57aded04d6d2f82869> /System/Library/PrivateFrameworks/SearchFoundation.framework/SearchFoundation
0x1a26fa000 - 0x1a270cfff libBNNS.dylib arm64  <4fe669ed8f7e3fd6aa4687faa52c18e9> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBNNS.dylib
0x1a270d000 - 0x1a2712fff libQuadrature.dylib arm64  <b42c49db566e3e5f9577adbfcf2e0a42> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libQuadrature.dylib
0x1a2aae000 - 0x1a2abffff CoreEmoji arm64  <a5aa53b703bf3c669425672d599a24f9> /System/Library/PrivateFrameworks/CoreEmoji.framework/CoreEmoji
0x1a2ac0000 - 0x1a2ad8fff CoreInterest arm64  <d85bf0b4967a338cacb3403da52ec1c2> /System/Library/PrivateFrameworks/CoreInterest.framework/CoreInterest
0x1a2c68000 - 0x1a2c9bfff CoreParsec arm64  <4316c778b9483a708b2640bc07b315d0> /System/Library/PrivateFrameworks/CoreParsec.framework/CoreParsec
0x1a2cf7000 - 0x1a2d29fff DifferentialPrivacy arm64  <b79e65b3133f3ba1a977f99a9369478d> /System/Library/PrivateFrameworks/DifferentialPrivacy.framework/DifferentialPrivacy
0x1a2f7b000 - 0x1a2f7bfff IntentsFoundation arm64  <011ec9d36ee0348aa1c272522b03a06f> /System/Library/PrivateFrameworks/IntentsFoundation.framework/IntentsFoundation
0x1a309a000 - 0x1a3162fff NLP arm64  <41213ee6dc4c3221876add1679d24b72> /System/Library/PrivateFrameworks/NLP.framework/NLP
0x1a31f4000 - 0x1a3264fff PDFKit arm64  <5d68e68df9fc3665980822dd386778ad> /System/Library/PrivateFrameworks/PDFKit.framework/PDFKit
0x1a374b000 - 0x1a39affff PhotosUICore arm64  <471cf0efdf60387ab49c1cce59a68873> /System/Library/PrivateFrameworks/PhotosUICore.framework/PhotosUICore
0x1a4198000 - 0x1a420ffff libate.dylib arm64  <afb1757e1bdd3804b372511c4c3ba662> /usr/lib/libate.dylib
0x1a4210000 - 0x1a4210fff libcoretls.dylib arm64  <3798381066cd3288b95a25164d224a06> /usr/lib/libcoretls.dylib
0x1a4211000 - 0x1a4212fff libcoretls_cfhelpers.dylib arm64  <f528dac189a931439165cffb8579f5ef> /usr/lib/libcoretls_cfhelpers.dylib

EOF

Crush When Many People Invite Conversation

I try to invite 2 people then crush

call

[self.conversationsClient inviteManyToConversation:@[@"PompousCameronXiaoJin",@"FiestyPennyAnchorage"]
                                            localMedia:self.localMedia handler:^(TWCConversation * _Nullable conversation, NSError * _Nullable error) {
        if (conversation != nil) {
            self.conversation = conversation;
            self.conversation.delegate = self;

        } else {
            NSString *errorMessage = [NSString stringWithFormat:@"Error inviting user(%@): %@", identity, [error localizedDescription]];
            [self displayErrorMessage:errorMessage];
            NSLog(@"%@",errorMessage);
        }
    }];

then only FiestyPennyAnchorage Crush because
TSCPeerConnection open
EXC_BAD_ACCESS

or
MediaStuck EXC_BAD_ACCESS
PompousCameronXiaoJin does not crush

Could you help me??

Backgrounding without active audio can crash

This is a bug fix we are working on for our next 1.0.0-beta9 release.

Problem Description

Does not occur when CallKit is being used.

Alice connects to a Room with no other Participants, and without using CallKit. Next Alice presses the home button and/or turns off the screen causing the app to enter a deep background state. During this time, signaling and media connections are killed by the OS.

Upon returning from the background Alice's app often crashes, and a signaling connection to the Room is not re-established.

The problem does not occur if there is at least one other Participant in the Room and either Alice or the remote party are sharing audio.

Enhanced Audio Support

Currently, the Video SDK has no support for external audio equipment, such as bluetooth headphones, or plugging in an external microphone. This is required for my application, and I would really like to use the Twilio SDK. Is this something you could consider adding to TVIAudioTrack.

Perhaps there could be a class method with that shows the available devices, and then when one is created, you could pass in a matching identifier.

Podfile Correction

Hi,

I was trying video-quickstart-swift for Room api. I was trying to add TwilioVideo by "pod install". It was giving error like this,

[!] Unable to satisfy the following requirements:
TwilioVideo (= 1.0-preview1) required by Podfile

So I visited https://github.com/twilio/cocoapod-specs/blob/master/TwilioVideo/1.0.0-preview1/TwilioVideo.podspec - to check the exact version number and it was showing "1.0.0-preview1".

I changed the version in my local podfile and it is working. I am not sure I should use "1.0.0-preview1" version for the demo or not. I just want to make you aware of the error.

Thanks & Regards,
Vishal Gabani

Can't connect using test SID

Not sure what I'm doing wrong, but I can't connect using the test SID. It's as if the test SID can't access my API key.

Here's the error message:

{"message":"com.twilio.domain.auth.scoped.ScopedAuthorizationException: 'sub'Axxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx9 is not allowed to access signing key Sxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx8","code":9000,"user_error":true,"params":{"requestId":"xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"}}

And my .env:

// From https://www.twilio.com/console/account/settings
TWILIO_ACCOUNT_SID=Axxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx9

// From https://www.twilio.com/console/video/dev-tools/api-keys
// The Key SID
TWILIO_API_KEY=Sxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx8

// From https://www.twilio.com/console/video/dev-tools/api-keys
// The secret
TWILIO_API_SECRET=...snip... // <-- 

// From https://www.twilio.com/console/video/profiles
TWILIO_CONFIGURATION_SID=...snip... // <- configured

React Native

Guys,

I just wanted to let you know I have started a wrapper of this for React Native.

gaston23/react-native-twilio-video-webrtc

It should be working. One of the biggest issues I've had so far was react-native and cocoa pods dependency.

This is a WIP, so please any feedback and code contribution is more than welcome. It's just a start.

Thank you

podspec has empty description

Updating local specs repositories
Analyzing dependencies
Fetching podspec for TwilioCommon from https://media.twiliocdn.com/sdk/rtc/ios/common/v0.1/TwilioCommon.podspec
[!] The TwilioCommon pod failed to validate due to 1 error:
- ERROR | description: The description is empty.

had to pull the podspec local and fill out a dummy description....

Network handoff to/from a NAT'd IPv6 network

This is an enhancement we are making to our network handoff capabilities in preparation for our first General Availability release.

Problem Description

A Client Alice connects to a Room from a NAT'd IPv6 network. The connection succeeds and at a later time Alice switches to another network. The handoff to the new network fails, and eventually a room:didDisconnect callback is raised.

The same issue occurs when Alice connects over an IPv4 network, and then attempts to transition to a NAT'd IPv6 network. The NAT mapping needs to be re-established in order to open a connection on the new network.

Audio does not work on iOS simulators

I have followed all steps mentioned in the quickstart example with generating access tokens for device and simulator separately and installed app at both sides. When I call from my device to simulator, video works. I can see my video on simulator but audio does not come. I tried it many times but no audio. I checked speakers and everything but no success.

Please let me know if there is any quick solution. At least quickstart example should work.

Voice - Outbound Call 403 Error

Hi, I am trying to get this sample app running with my Twilio account, and having some problems. When I try to place a call I get a 403 error code along with the following in my console.

{"code":9200,"message":"com.twilio.domain.auth.jwt.JwtAuthorizationException: 'iss' claim SK*** was not a valid Signing Key Sid"}

I am using the quick start application server as well as the quick start Swift project and still get this error. I have also tried with the test credentials and live ones. Any suggestions? Below is the full printout from my console.

2017-03-07 07:22:45.487559 SwiftVoiceQuickstart[14361:4429568] [DEBUG Twilio] on_transport_state(): 3
2017-03-07 07:22:45.488811 SwiftVoiceQuickstart[14361:4429568] PJSIP(4): tlsc0x103056c2  TLS transport destroyed normally
2017-03-07 07:22:49.540610 SwiftVoiceQuickstart[14361:4429432] [DEBUG TVOReachability] Reachability Flag Status: -R ------- networkStatusForFlags
2017-03-07 07:22:49.540749 SwiftVoiceQuickstart[14361:4429432] [DEBUG TVOCommandHandler] Inside postCommand:, received command of type TVOMakeCallCommand
2017-03-07 07:22:49.543466 SwiftVoiceQuickstart[14361:4431398] [VERBOSE Twilio] Inside constructUri: Registration URL: sip:[email protected];transport=tls
2017-03-07 07:22:49.543577 SwiftVoiceQuickstart[14361:4431398] [INFO TVOMakeCallCommand] Call URI: sip:[email protected];transport=tls
2017-03-07 07:22:49.543827 SwiftVoiceQuickstart[14361:4431398] [VERBOSE TVOCallImpl] Inside makeCall, record permission was granted
2017-03-07 07:22:49.543872 SwiftVoiceQuickstart[14361:4431398] PJSIP(4):   pjsua_call.c !Making call with acc #0 to sip:[email protected];transport=tls
2017-03-07 07:22:49.543907 SwiftVoiceQuickstart[14361:4431398] PJSIP(4):    pjsua_aud.c  .Set sound device: capture=-1, playback=-2
2017-03-07 07:22:49.563876 SwiftVoiceQuickstart[14361:4431398] PJSIP(4):    pjsua_aud.c  ..Opening sound device (speaker + mic) PCM@16000/1/20ms
2017-03-07 07:22:49.563970 SwiftVoiceQuickstart[14361:4431398] PJSIP(4): coreaudio_dev.  ...Using VoiceProcessingIO audio unit
2017-03-07 07:22:49.822757 SwiftVoiceQuickstart[14361:4431398] PJSIP(4): coreaudio_dev.  ...core audio stream started
2017-03-07 07:22:49.828770 SwiftVoiceQuickstart[14361:4431398] PJSIP(4):    pjsua_acc.c  .Warning: cannot use source TCP/TLS socket address for Contact when nameserver is configured.
2017-03-07 07:22:49.828830 SwiftVoiceQuickstart[14361:4431398] PJSIP(5): dlg0x1039116a8  .UAC dialog created
2017-03-07 07:22:49.829260 SwiftVoiceQuickstart[14361:4431398] PJSIP(5): dlg0x1039116a8  ..Session count inc to 2 by mod-pjsua
2017-03-07 07:22:49.829285 SwiftVoiceQuickstart[14361:4431398] PJSIP(4):  pjsua_media.c  .Call 3: initializing media..
2017-03-07 07:22:49.829352 SwiftVoiceQuickstart[14361:4431398] PJSIP(4):  pjsua_media.c  ..RTP socket reachable at 192.168.1.127:4917
2017-03-07 07:22:49.829371 SwiftVoiceQuickstart[14361:4431398] PJSIP(4):  pjsua_media.c  ..RTCP socket reachable at 192.168.1.127:4918
2017-03-07 07:22:49.829416 SwiftVoiceQuickstart[14361:4431398] PJSIP(4):  pjsua_media.c  ..Media index 0 selected for audio call 3
2017-03-07 07:22:49.829437 SwiftVoiceQuickstart[14361:4431398] PJSIP(5): dlg0x1039116a8  ..Session count dec to 2 by mod-pjsua
2017-03-07 07:22:49.843899 SwiftVoiceQuickstart[14361:4431398] PJSIP(5): dlg0x1039116a8  .Module mod-invite added as dialog usage, data=0x102b121f8
2017-03-07 07:22:49.843927 SwiftVoiceQuickstart[14361:4431398] PJSIP(5): dlg0x1039116a8  ..Session count inc to 4 by mod-invite
2017-03-07 07:22:49.843948 SwiftVoiceQuickstart[14361:4431398] PJSIP(5): dlg0x1039116a8  .Module mod-100rel added as dialog usage, data=0x102b11378
2017-03-07 07:22:49.843969 SwiftVoiceQuickstart[14361:4431398] PJSIP(5): dlg0x1039116a8  .100rel module attached
2017-03-07 07:22:49.843989 SwiftVoiceQuickstart[14361:4431398] PJSIP(5): inv0x1039116a8  .UAC invite session created for dialog dlg0x1039116a8
2017-03-07 07:22:49.844020 SwiftVoiceQuickstart[14361:4431398] PJSIP(5):       endpoint  .Request msg INVITE/cseq=12016 (tdta0x10303ec00) created.
2017-03-07 07:22:49.844044 SwiftVoiceQuickstart[14361:4431398] PJSIP(5): inv0x1039116a8  ..Sending Request msg INVITE/cseq=12016 (tdta0x10303ec00)
2017-03-07 07:22:49.844647 SwiftVoiceQuickstart[14361:4431719] PJSIP(5): coreaudio_dev. !Recorder thread started, (372 frames)
2017-03-07 07:22:49.844692 SwiftVoiceQuickstart[14361:4431719] PJSIP(4): os_core_unix.c !Info: possibly re-registering existing thread
2017-03-07 07:22:49.844711 SwiftVoiceQuickstart[14361:4431719] PJSIP(5): coreaudio_dev. !Player thread started, (372 frames)
2017-03-07 07:22:49.844935 SwiftVoiceQuickstart[14361:4431398] PJSIP(5): dlg0x1039116a8 !...Sending Request msg INVITE/cseq=12016 (tdta0x10303ec00)
2017-03-07 07:22:49.844977 SwiftVoiceQuickstart[14361:4431398] PJSIP(5): tsx0x10385eea8 !....Transaction created for Request msg INVITE/cseq=12015 (tdta0x10303ec00)
2017-03-07 07:22:49.845047 SwiftVoiceQuickstart[14361:4431398] PJSIP(5): tsx0x10385eea8  ...Sending Request msg INVITE/cseq=12015 (tdta0x10303ec00) in state Null
2017-03-07 07:22:49.845072 SwiftVoiceQuickstart[14361:4431398] PJSIP(5):  sip_resolve.c  ....Starting async DNS SRV query: target=_sips._tcp.chunderm.gll.twilio.com, transport=TLS, port=0
2017-03-07 07:22:49.845133 SwiftVoiceQuickstart[14361:4431398] PJSIP(5): _sips._tcp.chu  ....Starting async DNS SRV query_job: target=_sips._tcp.chunderm.gll.twilio.com:5061
2017-03-07 07:22:49.845180 SwiftVoiceQuickstart[14361:4431398] PJSIP(5):     resolver.c  ....Picked up DNS SRV record for _sips._tcp.chunderm.gll.twilio.com from cache, ttl=40
2017-03-07 07:22:49.845203 SwiftVoiceQuickstart[14361:4431398] PJSIP(5): _sips._tcp.chu  ....SRV query_job for _sips._tcp.chunderm.gll.twilio.com completed, 2 of 2 total entries selected:
2017-03-07 07:22:49.845233 SwiftVoiceQuickstart[14361:4431398] PJSIP(5): _sips._tcp.chu  .... 0: SRV 10 100 10194 chunderm0.us1.twilio.com (-)
2017-03-07 07:22:49.846681 SwiftVoiceQuickstart[14361:4431398] PJSIP(5): _sips._tcp.chu  .... 1: SRV 10 100 10194 chunderm1.us1.twilio.com (-)
2017-03-07 07:22:49.846710 SwiftVoiceQuickstart[14361:4431398] PJSIP(5): _sips._tcp.chu  ....Starting async DNS A query_job for chunderm0.us1.twilio.com
2017-03-07 07:22:49.846781 SwiftVoiceQuickstart[14361:4431398] PJSIP(5):     resolver.c  ....Picked up DNS A record for chunderm0.us1.twilio.com from cache, ttl=263
2017-03-07 07:22:49.846859 SwiftVoiceQuickstart[14361:4431398] PJSIP(5): _sips._tcp.chu  ....DNS A for chunderm0.us1.twilio.com: 54.84.219.21
2017-03-07 07:22:49.846904 SwiftVoiceQuickstart[14361:4431398] PJSIP(5): _sips._tcp.chu  ....Starting async DNS A query_job for chunderm1.us1.twilio.com
2017-03-07 07:22:49.846935 SwiftVoiceQuickstart[14361:4431398] PJSIP(5):     resolver.c  ....Picked up DNS A record for chunderm1.us1.twilio.com from cache, ttl=263
2017-03-07 07:22:49.846990 SwiftVoiceQuickstart[14361:4431398] PJSIP(5): _sips._tcp.chu  ....DNS A for chunderm1.us1.twilio.com: 54.85.119.44
2017-03-07 07:22:49.848113 SwiftVoiceQuickstart[14361:4431398] PJSIP(5): _sips._tcp.chu  ....Server resolution complete, 2 server entry(s) found
2017-03-07 07:22:49.848174 SwiftVoiceQuickstart[14361:4431398] PJSIP(4): tlsc0x10305362  ....TLS client transport created
2017-03-07 07:22:49.848322 SwiftVoiceQuickstart[14361:4431398] PJSIP(4): tlsc0x10305362  ....TLS transport 192.168.1.127:49791 is connecting to chunderm.gll.twilio.com:10194...
2017-03-07 07:22:49.848530 SwiftVoiceQuickstart[14361:4431398] PJSIP(4): \367๏ฟฝ
2017-03-07 07:22:49.848565 SwiftVoiceQuickstart[14361:4431398] PJSIP(5): tsx0x10385eea8  ....State changed from Null to Calling, event=TX_MSG
2017-03-07 07:22:49.848586 SwiftVoiceQuickstart[14361:4431398] PJSIP(5): dlg0x1039116a8  .....Transaction tsx0x10385eea8 state changed to Calling
2017-03-07 07:22:49.848652 SwiftVoiceQuickstart[14361:4431398] [DEBUG Twilio] Inside on_call_state(), call: 0x1702e9d80, internal state: 1
2017-03-07 07:22:49.848714 SwiftVoiceQuickstart[14361:4431398] [VERBOSE Twilio] Inside on_call_state(), PJSIP_INV_STATE_CALLING
2017-03-07 07:22:49.849646 SwiftVoiceQuickstart[14361:4431398] [VERBOSE TVOCall] handlePJSIPInviteStateCalling. Error: (null)
2017-03-07 07:22:49.849782 SwiftVoiceQuickstart[14361:4431398] [VERBOSE Twilio] on_call_tsx_state(), state: 1, status_code: 0: (null)
2017-03-07 07:22:49.951104 SwiftVoiceQuickstart[14361:4429568] [DEBUG Twilio] on_transport_state(): 0
2017-03-07 07:22:49.951175 SwiftVoiceQuickstart[14361:4429568] [DEBUG Twilio] ------>Transport connected: 0x3053628, inside transportConnected:
2017-03-07 07:22:49.951213 SwiftVoiceQuickstart[14361:4429568] PJSIP(4): tlsc0x10305362 !TLS transport 192.168.1.127:49791 is connected to chunderm.gll.twilio.com:10194
2017-03-07 07:22:49.986348 SwiftVoiceQuickstart[14361:4429568] PJSIP(5): sip_endpoint.c  Processing incoming message: Response msg 302/INVITE/cseq=12015 (rdata0x103053940)
2017-03-07 07:22:49.986394 SwiftVoiceQuickstart[14361:4429568] PJSIP(4):   pjsua_core.c  .RX 477 bytes Response msg 302/INVITE/cseq=12015 (rdata0x103053940) from TLS 54.84.219.21:10194:
SIP/2.0 302 Moved Temporarily

Via: SIP/2.0/TLS 192.168.1.127:49791;received=71.75.195.86;rport=49791;branch=z9hG4bKPjrDyx.t8oj98WKPAAnA3R8vItoY5Js89o;alias

From: sip:[email protected];tag=QhwSyeyw8ygzkMzqdZNNe3tnLSqb4MRN

To: sip:[email protected];tag=861ca43f2fa3995a6ab91f0ae17351dd.ec09

Call-ID: KiVaQXEe8aua6MqQCVklg6D0mAQ-oXuK

CSeq: 12015 INVITE

Contact: <sip:54.172.61.54:10194;transport=tls>

Server: Twilio Client SBC

Content-Length: 0




--end msg--
2017-03-07 07:22:49.986465 SwiftVoiceQuickstart[14361:4429568] [VERBOSE Twilio] Inside on_rx_response(): received INVITE response, rewriting contact
2017-03-07 07:22:49.986496 SwiftVoiceQuickstart[14361:4429568] PJSIP(5): tsx0x10385eea8  .Incoming Response msg 302/INVITE/cseq=12015 (rdata0x103053940) in state Calling
2017-03-07 07:22:49.986807 SwiftVoiceQuickstart[14361:4429568] PJSIP(5):       endpoint  ..Request msg ACK/cseq=12015 (tdta0x103056e00) created.
2017-03-07 07:22:49.987030 SwiftVoiceQuickstart[14361:4429568] PJSIP(4):   pjsua_core.c  ..TX 418 bytes Request msg ACK/cseq=12015 (tdta0x103056e00) to TLS 54.84.219.21:10194:
ACK sip:[email protected];transport=tls SIP/2.0

Via: SIP/2.0/TLS 192.168.1.127:49791;rport;branch=z9hG4bKPjrDyx.t8oj98WKPAAnA3R8vItoY5Js89o;alias

Max-Forwards: 70

From: sip:[email protected];tag=QhwSyeyw8ygzkMzqdZNNe3tnLSqb4MRN

To: sip:[email protected];tag=861ca43f2fa3995a6ab91f0ae17351dd.ec09

Call-ID: KiVaQXEe8aua6MqQCVklg6D0mAQ-oXuK

CSeq: 12015 ACK

Content-Length:  0




--end msg--
2017-03-07 07:22:49.987198 SwiftVoiceQuickstart[14361:4429568] PJSIP(5): tsx0x10385eea8  ..State changed from Calling to Completed, event=RX_MSG
2017-03-07 07:22:49.987254 SwiftVoiceQuickstart[14361:4429568] PJSIP(5): dlg0x1039116a8  ...Received Response msg 302/INVITE/cseq=12015 (rdata0x103053940)
2017-03-07 07:22:49.987275 SwiftVoiceQuickstart[14361:4429568] PJSIP(5): dlg0x1039116a8  ...Transaction tsx0x10385eea8 state changed to Completed
2017-03-07 07:22:49.987412 SwiftVoiceQuickstart[14361:4429568] [DEBUG Twilio] In on_call_redirected, call_id: 3, target: 0x102b3ccb8, pjsip_event: 0x16e73c638
2017-03-07 07:22:49.987456 SwiftVoiceQuickstart[14361:4429568] PJSIP(5): dlg0x1039116a8  .....Session count inc to 3 by mod-invite
2017-03-07 07:22:49.987559 SwiftVoiceQuickstart[14361:4429568] PJSIP(5): dlg0x1039116a8  .....Session count dec to 3 by mod-invite
2017-03-07 07:22:49.987580 SwiftVoiceQuickstart[14361:4429568] PJSIP(5): inv0x1039116a8  .....Sending Request msg INVITE/cseq=12015 (tdta0x10303ec00)
2017-03-07 07:22:49.987759 SwiftVoiceQuickstart[14361:4429568] PJSIP(5): dlg0x1039116a8  ......Sending Request msg INVITE/cseq=12015 (tdta0x10303ec00)
2017-03-07 07:22:49.987789 SwiftVoiceQuickstart[14361:4429568] PJSIP(5): tsx0x1030674a8  .......Transaction created for Request msg INVITE/cseq=12016 (tdta0x10303ec00)
2017-03-07 07:22:49.987811 SwiftVoiceQuickstart[14361:4429568] PJSIP(5): tsx0x1030674a8  ......Sending Request msg INVITE/cseq=12016 (tdta0x10303ec00) in state Null
2017-03-07 07:22:49.987839 SwiftVoiceQuickstart[14361:4429568] PJSIP(5):  sip_resolve.c  .......Target '54.172.61.54:10194' type=TLS resolved to '54.172.61.54:10194' type=TLS (TLS transport)
2017-03-07 07:22:49.987871 SwiftVoiceQuickstart[14361:4429568] PJSIP(4): tlsc0x10305a82  .......TLS client transport created
2017-03-07 07:22:49.988107 SwiftVoiceQuickstart[14361:4429568] PJSIP(4): tlsc0x10305a82  .......TLS transport 192.168.1.127:49792 is connecting to 54.172.61.54:10194...
2017-03-07 07:22:49.988393 SwiftVoiceQuickstart[14361:4429568] PJSIP(4): \367๏ฟฝ
2017-03-07 07:22:49.988446 SwiftVoiceQuickstart[14361:4429568] PJSIP(5): tsx0x1030674a8  .......State changed from Null to Calling, event=TX_MSG
2017-03-07 07:22:49.988468 SwiftVoiceQuickstart[14361:4429568] PJSIP(5): dlg0x1039116a8  ........Transaction tsx0x1030674a8 state changed to Calling
2017-03-07 07:22:49.988549 SwiftVoiceQuickstart[14361:4429568] [VERBOSE Twilio] on_call_tsx_state(), state: 1, status_code: 0: (null)
2017-03-07 07:22:49.988670 SwiftVoiceQuickstart[14361:4429568] [VERBOSE Twilio] on_call_tsx_state(), state: 4, status_code: 302: Moved Temporarily
2017-03-07 07:22:49.988778 SwiftVoiceQuickstart[14361:4429568] PJSIP(5): tsx0x10385eea8  Timeout timer event
2017-03-07 07:22:49.988832 SwiftVoiceQuickstart[14361:4429568] PJSIP(5): tsx0x10385eea8  .State changed from Completed to Terminated, event=TIMER
2017-03-07 07:22:49.988852 SwiftVoiceQuickstart[14361:4429568] PJSIP(5): dlg0x1039116a8  ..Transaction tsx0x10385eea8 state changed to Terminated
2017-03-07 07:22:49.988934 SwiftVoiceQuickstart[14361:4429568] [VERBOSE Twilio] on_call_tsx_state(), state: 6, status_code: 302: Moved Temporarily
2017-03-07 07:22:49.989044 SwiftVoiceQuickstart[14361:4429568] [DEBUG Twilio] ------>Destroying transport: 0x103053628, inside releaseTransport
2017-03-07 07:22:49.989083 SwiftVoiceQuickstart[14361:4429568] PJSIP(5): tsx0x10385eea8  Timeout timer event
2017-03-07 07:22:49.989127 SwiftVoiceQuickstart[14361:4429568] PJSIP(5): tsx0x10385eea8  .State changed from Terminated to Destroyed, event=TIMER
2017-03-07 07:22:49.989154 SwiftVoiceQuickstart[14361:4429568] PJSIP(5): tdta0x103056e0  ..Destroying txdata Request msg ACK/cseq=12015 (tdta0x103056e00)
2017-03-07 07:22:49.989174 SwiftVoiceQuickstart[14361:4429568] PJSIP(5): tsx0x10385eea8  Transaction destroyed!
2017-03-07 07:22:50.122676 SwiftVoiceQuickstart[14361:4429568] [DEBUG Twilio] on_transport_state(): 0
2017-03-07 07:22:50.122880 SwiftVoiceQuickstart[14361:4429568] [DEBUG Twilio] ------>Transport connected: 0x305a828, inside transportConnected:
2017-03-07 07:22:50.122926 SwiftVoiceQuickstart[14361:4429568] PJSIP(4): tlsc0x10305a82  TLS transport 192.168.1.127:49792 is connected to 54.172.61.54:10194
2017-03-07 07:22:50.167762 SwiftVoiceQuickstart[14361:4429568] PJSIP(5): sip_endpoint.c  Processing incoming message: Response msg 403/INVITE/cseq=12016 (rdata0x10305ab40)
2017-03-07 07:22:50.167815 SwiftVoiceQuickstart[14361:4429568] PJSIP(4):   pjsua_core.c  .RX 552 bytes Response msg 403/INVITE/cseq=12016 (rdata0x10305ab40) from TLS 54.172.61.54:10194:
SIP/2.0 403 Forbidden

CSeq: 12016 INVITE

Call-ID: KiVaQXEe8aua6MqQCVklg6D0mAQ-oXuK

From: <sip:[email protected]>;tag=QhwSyeyw8ygzkMzqdZNNe3tnLSqb4MRN

To: <sip:[email protected]>;tag=72121762_6772d868_37083e5f-f86b-4e6a-9728-d0b1ac40031f

Via: SIP/2.0/TLS 192.168.1.127:49792;rport=49792;branch=z9hG4bKPjG7JJSHJjawi81SND7pY4d6fp0rcSm95j;alias;received=71.75.195.86

Server: Twilio

Contact: <sip:ec2-54-172-61-54.compute-1.amazonaws.com:10194;transport=tls>

X-Twilio-Error: 31201 Authentication failed

Content-Length: 0




--end msg--
2017-03-07 07:22:50.167896 SwiftVoiceQuickstart[14361:4429568] [VERBOSE Twilio] Inside on_rx_response(): received INVITE response, rewriting contact
2017-03-07 07:22:50.167966 SwiftVoiceQuickstart[14361:4429568] PJSIP(5): tsx0x1030674a8  .Incoming Response msg 403/INVITE/cseq=12016 (rdata0x10305ab40) in state Calling
2017-03-07 07:22:50.168057 SwiftVoiceQuickstart[14361:4429568] PJSIP(5):       endpoint  ..Request msg ACK/cseq=12016 (tdta0x103056e00) created.
2017-03-07 07:22:50.168165 SwiftVoiceQuickstart[14361:4429568] PJSIP(4):   pjsua_core.c  ..TX 425 bytes Request msg ACK/cseq=12016 (tdta0x103056e00) to TLS 54.172.61.54:10194:
ACK sip:54.172.61.54:10194;transport=tls SIP/2.0

Via: SIP/2.0/TLS 192.168.1.127:49792;rport;branch=z9hG4bKPjG7JJSHJjawi81SND7pY4d6fp0rcSm95j;alias

Max-Forwards: 70

From: sip:[email protected];tag=QhwSyeyw8ygzkMzqdZNNe3tnLSqb4MRN

To: sip:[email protected];tag=72121762_6772d868_37083e5f-f86b-4e6a-9728-d0b1ac40031f

Call-ID: KiVaQXEe8aua6MqQCVklg6D0mAQ-oXuK

CSeq: 12016 ACK

Content-Length:  0




--end msg--
2017-03-07 07:22:50.168439 SwiftVoiceQuickstart[14361:4429568] PJSIP(5): tsx0x1030674a8  ..State changed from Calling to Completed, event=RX_MSG
2017-03-07 07:22:50.168500 SwiftVoiceQuickstart[14361:4429568] PJSIP(5): dlg0x1039116a8  ...Received Response msg 403/INVITE/cseq=12016 (rdata0x10305ab40)
2017-03-07 07:22:50.168525 SwiftVoiceQuickstart[14361:4429568] PJSIP(5): dlg0x1039116a8  ...Transaction tsx0x1030674a8 state changed to Completed
2017-03-07 07:22:50.168683 SwiftVoiceQuickstart[14361:4429568] [VERBOSE Twilio] on_call_tsx_state(), state: 4, status_code: 403: Forbidden
2017-03-07 07:22:50.168781 SwiftVoiceQuickstart[14361:4429568] [DEBUG Twilio] Inside on_call_state(), call: 0x1702e9d80, internal state: 1
2017-03-07 07:22:50.168897 SwiftVoiceQuickstart[14361:4429568] [VERBOSE Twilio] Inside on_call_state(), PJSIP_INV_STATE_DISCONNECTED, internal state: 1, last_status: 403
2017-03-07 07:22:50.168991 SwiftVoiceQuickstart[14361:4429568] [WARN Twilio] Inside Twilio.transportToTwilioErrorCode(): 403
2017-03-07 07:22:50.169102 SwiftVoiceQuickstart[14361:4429568] [VERBOSE TVOCall] handlePJSIPInviteStateDisconnected. Error: <TwilioError: 0x17404fd20>
2017-03-07 07:22:50.169240 SwiftVoiceQuickstart[14361:4429432] call:didFailWithError: Twilio Services Error
2017-03-07 07:22:50.169321 SwiftVoiceQuickstart[14361:4429432] [INFO TVOCall] Inside publishConenctionEvent:, event type: error
2017-03-07 07:22:50.169714 SwiftVoiceQuickstart[14361:4429432] [VERBOSE TVOCall] Inside publisherConnectionEvent:, sending error event
2017-03-07 07:22:50.169778 SwiftVoiceQuickstart[14361:4429432] [DEBUG TVOEventPublisher] Publishing event to Twilio Endpoint Analytics
2017-03-07 07:22:50.170582 SwiftVoiceQuickstart[14361:4429568] [DEBUG VoiceClient] Inside removeFromActiveCalls:, remove call <TVOCall: 0x1702e9d80> from active calls
2017-03-07 07:22:50.170782 SwiftVoiceQuickstart[14361:4429568] [DEBUG TVORTCMonitorThresholds] No thresholds specified. Default values will be applied.
2017-03-07 07:22:50.170901 SwiftVoiceQuickstart[14361:4429568] [VERBOSE TVORTCMonitorThresholds] Thresholds for the RTC-monitor: {
    "audio_input_level" =     {
        TVOEndpointAnalyticsThresholdMaxDuration = 10;
    };
    "audio_output_level" =     {
        TVOEndpointAnalyticsThresholdMaxDuration = 10;
    };
    jitter =     {
        TVOEndpointAnalyticsThresholdMax = 30;
    };
    mos =     {
        TVOEndpointAnalyticsThresholdMin = 3;
    };
    "packets_lost_fraction" =     {
        TVOEndpointAnalyticsThresholdMax = 1;
    };
    rtt =     {
        TVOEndpointAnalyticsThresholdMax = 400;
    };
}
2017-03-07 07:22:50.171025 SwiftVoiceQuickstart[14361:4429568] [DEBUG Twilio] ------>Destroying transport: 0x10305a828, inside releaseAllTransports
2017-03-07 07:22:50.171178 SwiftVoiceQuickstart[14361:4429568] [DEBUG Twilio] on_transport_state(): 2
2017-03-07 07:22:50.171268 SwiftVoiceQuickstart[14361:4429568] [DEBUG Twilio] ------>Transport disconnected: 0x10305a828, inside transportDisconnected:
2017-03-07 07:22:50.171337 SwiftVoiceQuickstart[14361:4429568] PJSIP(4):  pjsua_media.c  .....Call 3: deinitializing media..
2017-03-07 07:22:50.171750 SwiftVoiceQuickstart[14361:4429568] PJSIP(4):  pjsua_media.c  ......Call 3: cleaning up provisional media, prov_med_cnt=1, med_cnt=0
2017-03-07 07:22:50.172101 SwiftVoiceQuickstart[14361:4429568] PJSIP(5): dlg0x1039116a8  .....Session count dec to 1 by mod-invite
2017-03-07 07:22:50.172133 SwiftVoiceQuickstart[14361:4429568] PJSIP(5): tdta0x10303ec0  ..Destroying txdata Request msg INVITE/cseq=12016 (tdta0x10303ec00)
2017-03-07 07:22:50.172195 SwiftVoiceQuickstart[14361:4429568] PJSIP(5): tsx0x1030674a8  Timeout timer event
2017-03-07 07:22:50.172218 SwiftVoiceQuickstart[14361:4429568] PJSIP(5): tsx0x1030674a8  .State changed from Completed to Terminated, event=TIMER
2017-03-07 07:22:50.172239 SwiftVoiceQuickstart[14361:4429568] PJSIP(5): dlg0x1039116a8  ..Transaction tsx0x1030674a8 state changed to Terminated
2017-03-07 07:22:50.172262 SwiftVoiceQuickstart[14361:4429568] PJSIP(5): dlg0x1039116a8  ...Dialog destroyed
2017-03-07 07:22:50.172295 SwiftVoiceQuickstart[14361:4429568] PJSIP(5): tsx0x1030674a8  Timeout timer event
2017-03-07 07:22:50.172352 SwiftVoiceQuickstart[14361:4429568] PJSIP(5): tsx0x1030674a8  .State changed from Terminated to Destroyed, event=TIMER
2017-03-07 07:22:50.172790 SwiftVoiceQuickstart[14361:4429568] PJSIP(5): tdta0x103056e0  ..Destroying txdata Request msg ACK/cseq=12016 (tdta0x103056e00)
2017-03-07 07:22:50.172867 SwiftVoiceQuickstart[14361:4429568] PJSIP(5): tsx0x1030674a8  Transaction destroyed!
2017-03-07 07:22:50.174225 SwiftVoiceQuickstart[14361:4429568] [DEBUG Twilio] on_transport_state(): 3
2017-03-07 07:22:50.174470 SwiftVoiceQuickstart[14361:4429568] PJSIP(4): tlsc0x10305a82  TLS transport destroyed normally
2017-03-07 07:22:50.382095 SwiftVoiceQuickstart[14361:4431615] [DEBUG TVOEventPublisher] TwilioVoiceClient Endpoint-Analytic HTTP response - status: 403, error: (null)
2017-03-07 07:22:50.382471 SwiftVoiceQuickstart[14361:4431615] [ERROR TVOEventPublisher] Failed to send request, status code: 403
2017-03-07 07:22:50.383075 SwiftVoiceQuickstart[14361:4431615] [VERBOSE TVOEventPublisher]  - response body:
{"code":9200,"message":"com.twilio.domain.auth.jwt.JwtAuthorizationException: 'iss' claim SK*** was not a valid Signing Key Sid"}
2017-03-07 07:22:53.171921 SwiftVoiceQuickstart[14361:4429568] PJSIP(4):    pjsua_aud.c  Closing sound device after idle for 3 second(s)
2017-03-07 07:22:53.176241 SwiftVoiceQuickstart[14361:4429568] PJSIP(4):    pjsua_aud.c  .Closing iPhone IO device sound playback device and iPhone IO device sound capture device
2017-03-07 07:22:53.754280 SwiftVoiceQuickstart[14361:4429568] PJSIP(4): coreaudio_dev.  .core audio stream stopped
2017-03-07 07:23:22.989562 SwiftVoiceQuickstart[14361:4429568] [DEBUG Twilio] on_transport_state(): 3
2017-03-07 07:23:22.990813 SwiftVoiceQuickstart[14361:4429568] PJSIP(4): tlsc0x10305362  TLS transport destroyed normally

Twilio v1.0.0-beta3 fails

Hi,

I tried to install the video-quickstart-swift projects, but when i run pod install (pod version = 1.1.0.rc.3) as explained in the readme file, cocoapods displays this error log :
Analyzing dependencies
[!] Unable to satisfy the following requirements:

  • TwilioVideo (= 1.0.0-beta3) required by Podfile
  • TwilioVideo (= 1.0.0-beta3) required by Podfile
  • TwilioVideo (= 1.0.0-beta3) required by Podfile
  • TwilioVideo (= 1.0.0-beta3) required by Podfile

None of your spec sources contain a spec satisfying the dependency: TwilioVideo (= 1.0.0-beta3).

You have either:

  • out-of-date source repos which you can update with pod repo update.
  • mistyped the name or version.
  • not added the source repo that hosts the Podspec to your Podfile.

Note: as of CocoaPods 1.0, pod repo update does not happen on pod install by default.

room connection failed.

When I enter room text and click connection button, after some minutes always I failed to connect that room receiving message "Failed to connect to room with error".
I tried to know why it is happened as following:

func room(_ room: TVIRoom, didFailToConnectWithError error: Error) {
        logMessage(messageText: "Failed to connect to room with error")
        print("error=\(error)")        
        self.room = nil
        self.showRoomUI(inRoom: false)
    }

But the program is crashed in print sentence.
I received the token and am successful in showing camera preview.

Expired token gives vague error code

When using an expired token, the error message is very vague and cryptic. Attached is the NSError output.

Expected Output:
Error Domain=com.twilio.video Code=53000 "The token that you are using is either invalid or expired."

Actual Output:
Error Domain=com.twilio.video Code=53000 "SIP error 403"

Make line-endings consistent

Generally, Swift devs do not terminate line-endings with semi-colons. Suggest we remove them all here. Either way, we should pick one approach and stick with it, as we're using a mix of styles throughout the code.

The operation couldnโ€™t be completed. (com.twilio.video error 2.) & (com.twilio.video error 0)

Im using the PHP server SDK 5 and the tokens are recieved to my device but once I try to create/join a room It get this error. : "Failed to connect to room with error The operation couldnโ€™t be completed. (com.twilio.video error 2.)" . Then I tried to switch to PHP Server SDK 4 and I started to receive (com.twilio.video error 0.). In both cases the token was successfully retrieved to the device.

Switch default audio out to iPhone speaker instead of earpiece

Hello, I have everything set up and running as I'd like it to other than the audio output. With video chat, it seems it would be better to have the audio default to speaker output doesn't it? Currently mine defaults to the earpiece.

Any insight would be appreciated. I've seen some references to the following

AVAudioSessionPortOverride.Speaker

podfile from quickstart needs some tweeking to start working.

#source 'https://github.com/CocoaPods/Specs.git'

platform :ios, '9.0'

target 'VideoQuickStart' do
use_frameworks!

pod 'TwilioRTCSDK', :podspec => 'https://media.twiliocdn.com/sdk/rtc/ios/conversations/v0.20/TwilioConversationsClient.podspec'
pod 'TwilioCommon', :podspec =>'https://media.twiliocdn.com/sdk/rtc/ios/common/v0.1/TwilioCommon.podspec'

end

twillo video sdk not working in swift

iOS/Pods/TwilioCommon/TwilioCommon.framework/TwilioCommon, file was built for unsupported file format ( 0x76 0x65 0x72 0x73 0x69 0x6F 0x6E 0x20 0x68 0x74 0x74 0x70 0x73 0x3A 0x2F 0x2F ) which is not the architecture being linked (x86_64): /Users/somendra/Documents/iOS/Pods/TwilioCommon/TwilioCommon.framework/TwilioCommon

iOS/Pods/TwilioConversationsClient/TwilioConversationsClient.framework/TwilioConversationsClient, file was built for unsupported file format ( 0x76 0x65 0x72 0x73 0x69 0x6F 0x6E 0x20 0x68 0x74 0x74 0x70 0x73 0x3A 0x2F 0x2F ) which is not the architecture being linked (x86_64): /Users/somendra/Documents/iOS/Pods/TwilioConversationsClient/TwilioConversationsClient.framework/TwilioConversationsClient

Undefined symbols for architecture x86_64:
"OBJC_CLASS$_TWCCameraCapturer", referenced from:
type metadata accessor for __ObjC.TWCCameraCapturer in TwilioManager.o
"OBJC_CLASS$_TWCConversation", referenced from:
type metadata accessor for __ObjC.TWCConversation in TwilioManager.o
"OBJC_CLASS$_TWCIncomingInvite", referenced from:
type metadata accessor for __ObjC.TWCIncomingInvite in TwilioManager.o
"OBJC_CLASS$_TWCLocalMedia", referenced from:
type metadata accessor for __ObjC.TWCLocalMedia in TwilioManager.o
"OBJC_CLASS$_TWCOutgoingInvite", referenced from:
type metadata accessor for __ObjC.TWCOutgoingInvite in TwilioManager.o
"OBJC_CLASS$_TwilioAccessManager", referenced from:
type metadata accessor for __ObjC.TwilioAccessManager in TwilioManager.o
"OBJC_CLASS$_TwilioConversationsClient", referenced from:
type metadata accessor for __ObjC.TwilioConversationsClient in TwilioManager.o
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
[http://stackoverflow.com/questions/38642693/twillo-video-sdk-not-working](

Support for playback only audio

Currently, it seems that there is no way to put a user in observer or "listen only" mode. This is a main use case for our app. We need the AVAudioSession to be set to just AVAudioSessionCategoryPlay, not AVAudioSessionCategoryPlayAndRecord. In addition, we cannot set from the available options without going through TVILocalMedia, which does not exist if I'm only listening/watching.

TwilioVideo.framework does not support Bitcode

The quickstart project builds fine, but adding the TwilioVideo.framework to a brand new app and then building for an ios device throws a linker error.

The error which appears is:

ld: '<path>/TwilioVideo/TwilioVideo.framework/TwilioVideo' does not 
contain bitcode. You must rebuild it with bitcode enabled (Xcode setting 
ENABLE_BITCODE), obtain an updated library from the vendor, or disable 
bitcode for this target. for architecture arm64

The error can be fixed by adding the build setting ENABLE_BITCODE=NO, but this disables iTunes app thinning.

Could the final frameworks support app thinning and bitcode re-optimizations?
If not, it would be good to have this in the documentation.

Apple Bitcode reference docs

Heap Corruption Crashes - Multiparty Rooms

We performed tests with six users, and almost all of us had crashes with the current version (beta 8). Crashlytics noted at least 7 different crashes in the TwilioVideo codebase. I will be happy to provide stack traces for each one.
screen shot 2017-02-25 at 10 12 56 am

Building errors

Hey
I got 2 errors while building this project any clue ?

swift 3 port

any idea when a swift 3 port will be available?

TwilioVideo SDK Bitcode support

When building my application, Bitcode is not enabled for this SDK. This makes it impossible to build an application with Bitcode, which has many benefits when sending to the App Store. It should be as simple as enabling it in Xcode Build Settings.

Error Message:
ld: 'TwilioVideo' does not contain bitcode. You must rebuild it with bitcode enabled (Xcode setting ENABLE_BITCODE), obtain an updated library from the vendor, or disable bitcode for this target. for architecture arm64

Participant joining crash

Hello,

I'm using TwilioVideo framework for video communication for our product. I'm experiencing crash very often when new participant joins the room. I have also noticed that this is more frequently when I'm connecting two iOS devices (iPhone 7 and iPad Air).

Here is one of my crashlogs:

Incident Identifier: B4DDCAEB-34D3-4265-8F0E-0D91E2E6B230
CrashReporter Key:   f7bfd34b70bfa08eb50aa972809e2b624047ebc2
Hardware Model:      iPhone9,3
Process:             myApp [4116]
Path:                /private/var/containers/Bundle/Application/269D3A64-E628-40D6-B32E-A61B9A839B78/MyApp.app/MyApp
Identifier:          com.myapp.myapp
Version:             17 (1.0)
Code Type:           ARM-64 (Native)
Role:                Foreground
Parent Process:      launchd [1]
Coalition:           com.myapp.myapp [1730]


Date/Time:           2016-11-28 11:33:32.0684 +0100
Launch Time:         2016-11-28 11:32:33.0005 +0100
OS Version:          iPhone OS 10.1.1 (14B150)
Report Version:      104

Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
Exception Subtype: KERN_INVALID_ADDRESS at 0x0000000000000000
Termination Signal: Segmentation fault: 11
Termination Reason: Namespace SIGNAL, Code 0xb
Terminating Process: exc handler [0]
Triggered by Thread:  0

Filtered syslog:
None found

Thread 0 name:  Dispatch queue: com.apple.main-thread
Thread 0 Crashed:
0   TwilioVideo                   	0x00000001016ed398 0x101020000 + 7132056
1   TwilioVideo                   	0x00000001016ed394 0x101020000 + 7132052
2   TwilioVideo                   	0x000000010170642c 0x101020000 + 7234604
3   TwilioVideo                   	0x000000010170ae0c 0x101020000 + 7253516
4   libdispatch.dylib             	0x000000018c2c1200 _dispatch_call_block_and_release + 24
5   libdispatch.dylib             	0x000000018c2c11c0 _dispatch_client_callout + 16
6   libdispatch.dylib             	0x000000018c2c5d6c _dispatch_main_queue_callback_4CF + 1000
7   CoreFoundation                	0x000000018d3e3f2c __CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE__ + 12
8   CoreFoundation                	0x000000018d3e1b18 __CFRunLoopRun + 1660
9   CoreFoundation                	0x000000018d310048 CFRunLoopRunSpecific + 444
10  GraphicsServices              	0x000000018ed96198 GSEventRunModal + 180
11  UIKit                         	0x00000001932fc2fc -[UIApplication _run] + 684
12  UIKit                         	0x00000001932f7034 UIApplicationMain + 208
13  MyApp                        	0x00000001000cf254 0x1000b0000 + 127572
14  libdyld.dylib                 	0x000000018c2f45b8 start + 4

Thread 1:
0   libsystem_pthread.dylib       	0x000000018c4c9da0 start_wqthread + 0

Thread 2 name:  com.apple.uikit.eventfetch-thread
Thread 2:
0   libsystem_kernel.dylib        	0x000000018c3e816c mach_msg_trap + 8
1   libsystem_kernel.dylib        	0x000000018c3e7fdc mach_msg + 72
2   CoreFoundation                	0x000000018d3e3cec __CFRunLoopServiceMachPort + 192
3   CoreFoundation                	0x000000018d3e1908 __CFRunLoopRun + 1132
4   CoreFoundation                	0x000000018d310048 CFRunLoopRunSpecific + 444
5   Foundation                    	0x000000018de21a8c -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 304
6   Foundation                    	0x000000018de4257c -[NSRunLoop(NSRunLoop) runUntilDate:] + 96
7   UIKit                         	0x0000000193c71a2c -[UIEventFetcher threadMain] + 136
8   Foundation                    	0x000000018df1f47c __NSThread__start__ + 1024
9   libsystem_pthread.dylib       	0x000000018c4cc850 _pthread_body + 240
10  libsystem_pthread.dylib       	0x000000018c4cc760 _pthread_body + 0
11  libsystem_pthread.dylib       	0x000000018c4c9dac thread_start + 4

Thread 3 name:  com.apple.CFStream.LegacyThread
Thread 3:
0   libsystem_kernel.dylib        	0x000000018c3e816c mach_msg_trap + 8
1   libsystem_kernel.dylib        	0x000000018c3e7fdc mach_msg + 72
2   CoreFoundation                	0x000000018d3e3cec __CFRunLoopServiceMachPort + 192
3   CoreFoundation                	0x000000018d3e1908 __CFRunLoopRun + 1132
4   CoreFoundation                	0x000000018d310048 CFRunLoopRunSpecific + 444
5   CoreFoundation                	0x000000018d3f1808 _legacyStreamRunLoop_workThread + 268
6   libsystem_pthread.dylib       	0x000000018c4cc850 _pthread_body + 240
7   libsystem_pthread.dylib       	0x000000018c4cc760 _pthread_body + 0
8   libsystem_pthread.dylib       	0x000000018c4c9dac thread_start + 4

Thread 4 name:  com.apple.NSURLConnectionLoader
Thread 4:
0   libsystem_kernel.dylib        	0x000000018c3e816c mach_msg_trap + 8
1   libsystem_kernel.dylib        	0x000000018c3e7fdc mach_msg + 72
2   CoreFoundation                	0x000000018d3e3cec __CFRunLoopServiceMachPort + 192
3   CoreFoundation                	0x000000018d3e1908 __CFRunLoopRun + 1132
4   CoreFoundation                	0x000000018d310048 CFRunLoopRunSpecific + 444
5   CFNetwork                     	0x000000018db01fd0 +[NSURLConnection(Loader) _resourceLoadLoop:] + 336
6   Foundation                    	0x000000018df1f47c __NSThread__start__ + 1024
7   libsystem_pthread.dylib       	0x000000018c4cc850 _pthread_body + 240
8   libsystem_pthread.dylib       	0x000000018c4cc760 _pthread_body + 0
9   libsystem_pthread.dylib       	0x000000018c4c9dac thread_start + 4

Thread 5 name:  com.apple.CFSocket.private
Thread 5:
0   libsystem_kernel.dylib        	0x000000018c40623c __select + 8
1   CoreFoundation                	0x000000018d3eab84 __CFSocketManager + 640
2   libsystem_pthread.dylib       	0x000000018c4cc850 _pthread_body + 240
3   libsystem_pthread.dylib       	0x000000018c4cc760 _pthread_body + 0
4   libsystem_pthread.dylib       	0x000000018c4c9dac thread_start + 4

Thread 6:
0   libsystem_pthread.dylib       	0x000000018c4c9da0 start_wqthread + 0

Thread 7:
0   libsystem_kernel.dylib        	0x000000018c406a88 __workq_kernreturn + 8
1   libsystem_pthread.dylib       	0x000000018c4ca178 _pthread_wqthread + 968
2   libsystem_pthread.dylib       	0x000000018c4c9da4 start_wqthread + 4

Thread 8:
0   libsystem_pthread.dylib       	0x000000018c4c9da0 start_wqthread + 0

Thread 9 name:  MediaFactoryImpl::signaling
Thread 9:
0   libsystem_kernel.dylib        	0x000000018c40623c __select + 8
1   TwilioVideo                   	0x0000000101281590 0x101020000 + 2495888
2   TwilioVideo                   	0x00000001012717a4 0x101020000 + 2430884
3   TwilioVideo                   	0x000000010128a398 0x101020000 + 2532248
4   TwilioVideo                   	0x000000010128a194 0x101020000 + 2531732
5   libsystem_pthread.dylib       	0x000000018c4cc850 _pthread_body + 240
6   libsystem_pthread.dylib       	0x000000018c4cc760 _pthread_body + 0
7   libsystem_pthread.dylib       	0x000000018c4c9dac thread_start + 4

Thread 10 name:  MediaFactoryImpl::worker
Thread 10:
0   libsystem_kernel.dylib        	0x000000018c40623c __select + 8
1   TwilioVideo                   	0x0000000101281590 0x101020000 + 2495888
2   TwilioVideo                   	0x00000001012717a4 0x101020000 + 2430884
3   TwilioVideo                   	0x000000010128a398 0x101020000 + 2532248
4   TwilioVideo                   	0x000000010128a194 0x101020000 + 2531732
5   libsystem_pthread.dylib       	0x000000018c4cc850 _pthread_body + 240
6   libsystem_pthread.dylib       	0x000000018c4cc760 _pthread_body + 0
7   libsystem_pthread.dylib       	0x000000018c4c9dac thread_start + 4

Thread 11 name:  VoiceProcessThread
Thread 11:
0   libsystem_kernel.dylib        	0x000000018c405e1c __psynch_cvwait + 8
1   libsystem_pthread.dylib       	0x000000018c4cb9c0 _pthread_cond_wait + 640
2   TwilioVideo                   	0x000000010129025c 0x101020000 + 2556508
3   TwilioVideo                   	0x000000010136c8c4 0x101020000 + 3459268
4   TwilioVideo                   	0x00000001014e30d4 0x101020000 + 4993236
5   TwilioVideo                   	0x0000000101290580 0x101020000 + 2557312
6   libsystem_pthread.dylib       	0x000000018c4cc850 _pthread_body + 240
7   libsystem_pthread.dylib       	0x000000018c4cc760 _pthread_body + 0
8   libsystem_pthread.dylib       	0x000000018c4c9dac thread_start + 4

Thread 12:
0   libsystem_kernel.dylib        	0x000000018c3ec630 kevent + 8
1   TwilioVideo                   	0x0000000101175c24 0x101020000 + 1399844
2   TwilioVideo                   	0x00000001011736b0 0x101020000 + 1390256
3   TwilioVideo                   	0x000000010171cd94 0x101020000 + 7327124
4   TwilioVideo                   	0x000000010171d6ec 0x101020000 + 7329516
5   libsystem_pthread.dylib       	0x000000018c4cc850 _pthread_body + 240
6   libsystem_pthread.dylib       	0x000000018c4cc760 _pthread_body + 0
7   libsystem_pthread.dylib       	0x000000018c4c9dac thread_start + 4

Thread 13 name:  SipSignalingStackWorker 0x0x10276c080
Thread 13:
0   libsystem_kernel.dylib        	0x000000018c40623c __select + 8
1   TwilioVideo                   	0x00000001017175dc 0x101020000 + 7304668
2   TwilioVideo                   	0x00000001012717a4 0x101020000 + 2430884
3   TwilioVideo                   	0x000000010128a4ac 0x101020000 + 2532524
4   TwilioVideo                   	0x0000000101717924 0x101020000 + 7305508
5   TwilioVideo                   	0x000000010128a180 0x101020000 + 2531712
6   libsystem_pthread.dylib       	0x000000018c4cc850 _pthread_body + 240
7   libsystem_pthread.dylib       	0x000000018c4cc760 _pthread_body + 0
8   libsystem_pthread.dylib       	0x000000018c4c9dac thread_start + 4

Thread 14 name:  Dispatch queue: com.twilio.video.worker
Thread 14:
0   libsystem_kernel.dylib        	0x000000018c3e816c mach_msg_trap + 8
1   libsystem_kernel.dylib        	0x000000018c3e7fdc mach_msg + 72
2   libdispatch.dylib             	0x000000018c2c11a4 _dispatch_send_wakeup_runloop_thread + 68
3   libdispatch.dylib             	0x000000018c2cefac _dispatch_runloop_queue_poke + 256
4   TwilioVideo                   	0x000000010170628c 0x101020000 + 7234188
5   TwilioVideo                   	0x0000000101705328 0x101020000 + 7230248
6   TwilioVideo                   	0x00000001017047a0 0x101020000 + 7227296
7   libdispatch.dylib             	0x000000018c2c1200 _dispatch_call_block_and_release + 24
8   libdispatch.dylib             	0x000000018c2c11c0 _dispatch_client_callout + 16
9   libdispatch.dylib             	0x000000018c2cf444 _dispatch_queue_serial_drain + 928
10  libdispatch.dylib             	0x000000018c2c49a8 _dispatch_queue_invoke + 652
11  libdispatch.dylib             	0x000000018c2d138c _dispatch_root_queue_drain + 572
12  libdispatch.dylib             	0x000000018c2d10ec _dispatch_worker_thread3 + 124
13  libsystem_pthread.dylib       	0x000000018c4ca2b8 _pthread_wqthread + 1288
14  libsystem_pthread.dylib       	0x000000018c4c9da4 start_wqthread + 4

Thread 15:
0   libsystem_kernel.dylib        	0x000000018c406a88 __workq_kernreturn + 8
1   libsystem_pthread.dylib       	0x000000018c4ca178 _pthread_wqthread + 968
2   libsystem_pthread.dylib       	0x000000018c4c9da4 start_wqthread + 4

Thread 16 name:  ModuleProcessThread
Thread 16:
0   libsystem_kernel.dylib        	0x000000018c405e1c __psynch_cvwait + 8
1   libsystem_pthread.dylib       	0x000000018c4cb9c0 _pthread_cond_wait + 640
2   TwilioVideo                   	0x000000010129025c 0x101020000 + 2556508
3   TwilioVideo                   	0x000000010136c8c4 0x101020000 + 3459268
4   TwilioVideo                   	0x00000001014e30d4 0x101020000 + 4993236
5   TwilioVideo                   	0x0000000101290580 0x101020000 + 2557312
6   libsystem_pthread.dylib       	0x000000018c4cc850 _pthread_body + 240
7   libsystem_pthread.dylib       	0x000000018c4cc760 _pthread_body + 0
8   libsystem_pthread.dylib       	0x000000018c4c9dac thread_start + 4

Thread 17 name:  PacerThread
Thread 17:
0   libsystem_kernel.dylib        	0x000000018c405e1c __psynch_cvwait + 8
1   libsystem_pthread.dylib       	0x000000018c4cb9c0 _pthread_cond_wait + 640
2   TwilioVideo                   	0x000000010129025c 0x101020000 + 2556508
3   TwilioVideo                   	0x000000010136c8c4 0x101020000 + 3459268
4   TwilioVideo                   	0x00000001014e30d4 0x101020000 + 4993236
5   TwilioVideo                   	0x0000000101290580 0x101020000 + 2557312
6   libsystem_pthread.dylib       	0x000000018c4cc850 _pthread_body + 240
7   libsystem_pthread.dylib       	0x000000018c4cc760 _pthread_body + 0
8   libsystem_pthread.dylib       	0x000000018c4c9dac thread_start + 4

Thread 0 crashed with ARM Thread State (64-bit):
    x0: 0x0000000000000000   x1: 0x00000001700dfd80   x2: 0x0000000000000000   x3: 0xfffffff0001fc088
    x4: 0x0000000000002303   x5: 0x00000000ffffffff   x6: 0x0000000000000000   x7: 0x0000000000000000
    x8: 0x0000000102787a50   x9: 0x0000000102787a58  x10: 0x0000000000000103  x11: 0x0000000000000000
   x12: 0x0000010000000100  x13: 0x0000000000000000  x14: 0x0000000000000000  x15: 0x0000000000000103
   x16: 0x000000018c4ca4e0  x17: 0x000000018d310520  x18: 0x0000000000000000  x19: 0x0000000000000000
   x20: 0x0000000102787a18  x21: 0x0000000101721de8  x22: 0x0000000000000000  x23: 0x0000000000000014
   x24: 0x00000001b24bfd20  x25: 0x0000000000000000  x26: 0xffffffffffffffff  x27: 0x0000000170477e80
   x28: 0x0000000002ffffff   fp: 0x000000016fd4eb90   lr: 0x00000001016ed394
    sp: 0x000000016fd4eb70   pc: 0x00000001016ed398 cpsr: 0x60000000

Binary Images:
0x1000b0000 - 0x10015ffff MyApp arm64  <f9b7f632fabb3dda9e6a43ef6495278a> /var/containers/Bundle/Application/269D3A64-E628-40D6-B32E-A61B9A839B78/MyApp.app/MyApp
0x100238000 - 0x10025ffff ActionCableClient arm64  <24494a4fe10d3345ba7e0d52ea204519> /var/containers/Bundle/Application/269D3A64-E628-40D6-B32E-A61B9A839B78/MyApp.app/Frameworks/ActionCableClient.framework/ActionCableClient
0x1002a0000 - 0x1002b3fff Result arm64  <11599fb0fedc3ff0903585df666d4b6f> /var/containers/Bundle/Application/269D3A64-E628-40D6-B32E-A61B9A839B78/MyApp.app/Frameworks/Result.framework/Result
0x1002cc000 - 0x1002d7fff libswiftAVFoundation.dylib arm64  <47d693336a323d75a724b5b167a1dd5f> /var/containers/Bundle/Application/269D3A64-E628-40D6-B32E-A61B9A839B78/MyApp.app/Frameworks/libswiftAVFoundation.dylib
0x1002e8000 - 0x1002effff libswiftCoreImage.dylib arm64  <4e476f8e88ca34e39f9db870b8ebc7a1> /var/containers/Bundle/Application/269D3A64-E628-40D6-B32E-A61B9A839B78/MyApp.app/Frameworks/libswiftCoreImage.dylib
0x100300000 - 0x10032ffff dyld arm64  <f5a894bbb0cc38b1930add2172007394> /usr/lib/dyld
0x100384000 - 0x10043bfff Alamofire arm64  <aa366975b55c3e7c9e67dae32ab89edf> /var/containers/Bundle/Application/269D3A64-E628-40D6-B32E-A61B9A839B78/MyApp.app/Frameworks/Alamofire.framework/Alamofire
0x10055c000 - 0x1006b3fff Mixpanel arm64  <885bc3b3c3653053afe86078f8084838> /var/containers/Bundle/Application/269D3A64-E628-40D6-B32E-A61B9A839B78/MyApp.app/Frameworks/Mixpanel.framework/Mixpanel
0x100880000 - 0x1008affff Moya arm64  <21ec995426ec3804ae2f6bd822e94dd9> /var/containers/Bundle/Application/269D3A64-E628-40D6-B32E-A61B9A839B78/MyApp.app/Frameworks/Moya.framework/Moya
0x1008fc000 - 0x100937fff NVActivityIndicatorView arm64  <8f09bf64c8a1307c937379a175b32adf> /var/containers/Bundle/Application/269D3A64-E628-40D6-B32E-A61B9A839B78/MyApp.app/Frameworks/NVActivityIndicatorView.framework/NVActivityIndicatorView
0x100998000 - 0x100a3ffff RxCocoa arm64  <9c8b0c0ff9d5335d8748503a94f3f0be> /var/containers/Bundle/Application/269D3A64-E628-40D6-B32E-A61B9A839B78/MyApp.app/Frameworks/RxCocoa.framework/RxCocoa
0x100b58000 - 0x100b93fff RxDataSources arm64  <ba4c5878083e3932b18745e03338caee> /var/containers/Bundle/Application/269D3A64-E628-40D6-B32E-A61B9A839B78/MyApp.app/Frameworks/RxDataSources.framework/RxDataSources
0x100c04000 - 0x100d53fff RxSwift arm64  <fc9317e1397a3cc8a66d382b6a68df1c> /var/containers/Bundle/Application/269D3A64-E628-40D6-B32E-A61B9A839B78/MyApp.app/Frameworks/RxSwift.framework/RxSwift
0x100f40000 - 0x100f6bfff Starscream arm64  <08fd8a741d04304584f57b0dd8fa62a4> /var/containers/Bundle/Application/269D3A64-E628-40D6-B32E-A61B9A839B78/MyApp.app/Frameworks/Starscream.framework/Starscream
0x100fb8000 - 0x100febfff SwiftyJSON arm64  <6cb66b6507513608822c152893bfc537> /var/containers/Bundle/Application/269D3A64-E628-40D6-B32E-A61B9A839B78/MyApp.app/Frameworks/SwiftyJSON.framework/SwiftyJSON
0x101020000 - 0x10189ffff TwilioVideo arm64  <0479aab2c0513b279d695f8fd4ecb565> /var/containers/Bundle/Application/269D3A64-E628-40D6-B32E-A61B9A839B78/MyApp.app/Frameworks/TwilioVideo.framework/TwilioVideo
0x101cec000 - 0x101d27fff XCGLogger arm64  <8e120f63beac39b68f2cfc6358f7c25d> /var/containers/Bundle/Application/269D3A64-E628-40D6-B32E-A61B9A839B78/MyApp.app/Frameworks/XCGLogger.framework/XCGLogger
0x101da4000 - 0x101fc7fff libswiftCore.dylib arm64  <0969696c7f0b3c9e8eef73014242042e> /var/containers/Bundle/Application/269D3A64-E628-40D6-B32E-A61B9A839B78/MyApp.app/Frameworks/libswiftCore.dylib
0x10225c000 - 0x102267fff libswiftCoreAudio.dylib arm64  <6ed2f32a14783660a8d0f3cfc6006205> /var/containers/Bundle/Application/269D3A64-E628-40D6-B32E-A61B9A839B78/MyApp.app/Frameworks/libswiftCoreAudio.dylib
0x10227c000 - 0x10228bfff libswiftCoreGraphics.dylib arm64  <7198afd2badc33cba52d66e2a526bb1c> /var/containers/Bundle/Application/269D3A64-E628-40D6-B32E-A61B9A839B78/MyApp.app/Frameworks/libswiftCoreGraphics.dylib
0x1022a8000 - 0x1022affff libswiftCoreMedia.dylib arm64  <5c16ff31478c35329adf54f1acaca709> /var/containers/Bundle/Application/269D3A64-E628-40D6-B32E-A61B9A839B78/MyApp.app/Frameworks/libswiftCoreMedia.dylib
0x1022bc000 - 0x1022c3fff libswiftDarwin.dylib arm64  <3c4418f9722635ddba9748a460382966> /var/containers/Bundle/Application/269D3A64-E628-40D6-B32E-A61B9A839B78/MyApp.app/Frameworks/libswiftDarwin.dylib
0x1022d4000 - 0x1022effff libswiftDispatch.dylib arm64  <43701ffffad133d29454d60a35c852c9> /var/containers/Bundle/Application/269D3A64-E628-40D6-B32E-A61B9A839B78/MyApp.app/Frameworks/libswiftDispatch.dylib
0x102330000 - 0x1023f3fff libswiftFoundation.dylib arm64  <9023e16cf7c03bd1af94d1fe66fac0ed> /var/containers/Bundle/Application/269D3A64-E628-40D6-B32E-A61B9A839B78/MyApp.app/Frameworks/libswiftFoundation.dylib
0x1024fc000 - 0x102503fff libswiftObjectiveC.dylib arm64  <fd15443960fd39e99b9662aa85746226> /var/containers/Bundle/Application/269D3A64-E628-40D6-B32E-A61B9A839B78/MyApp.app/Frameworks/libswiftObjectiveC.dylib
0x102510000 - 0x102517fff libswiftQuartzCore.dylib arm64  <3724aa8e874837ccbd94e5ec0f530c91> /var/containers/Bundle/Application/269D3A64-E628-40D6-B32E-A61B9A839B78/MyApp.app/Frameworks/libswiftQuartzCore.dylib
0x102520000 - 0x10254bfff libswiftSwiftOnoneSupport.dylib arm64  <fd39ec7ece593892b28f1efe06aa4da9> /var/containers/Bundle/Application/269D3A64-E628-40D6-B32E-A61B9A839B78/MyApp.app/Frameworks/libswiftSwiftOnoneSupport.dylib
0x102610000 - 0x10261bfff libswiftUIKit.dylib arm64  <72abc5d06b00391ebff2f6bde050ebaf> /var/containers/Bundle/Application/269D3A64-E628-40D6-B32E-A61B9A839B78/MyApp.app/Frameworks/libswiftUIKit.dylib
0x10262c000 - 0x102637fff libswiftCoreData.dylib arm64  <bb9391e881fb32ea96ebd05a4f075c84> /var/containers/Bundle/Application/269D3A64-E628-40D6-B32E-A61B9A839B78/MyApp.app/Frameworks/libswiftCoreData.dylib
0x1031dc000 - 0x1031e7fff GAXClient arm64  <354fc5ae9d2738a3a13a0c7bd550b1ee> /System/Library/AccessibilityBundles/GAXClient.bundle/GAXClient
0x18bdec000 - 0x18bdedfff libSystem.B.dylib arm64  <7f6df0ff83ca38c5bd2451d798c6619b> /usr/lib/libSystem.B.dylib
0x18bdee000 - 0x18be43fff libc++.1.dylib arm64  <ad5eb3d0e134370ab9ab52e3979ac239> /usr/lib/libc++.1.dylib
0x18be44000 - 0x18be64fff libc++abi.dylib arm64  <514938651ad43466908d2d993b588bec> /usr/lib/libc++abi.dylib
0x18be68000 - 0x18c241fff libobjc.A.dylib arm64  <cfe85583868931d48088e908339f76c6> /usr/lib/libobjc.A.dylib
0x18c242000 - 0x18c246fff libcache.dylib arm64  <3f13f51a773b35c1ba38ca66ad803e89> /usr/lib/system/libcache.dylib
0x18c247000 - 0x18c252fff libcommonCrypto.dylib arm64  <dc02b342926033248c75ef323b51edc4> /usr/lib/system/libcommonCrypto.dylib
0x18c253000 - 0x18c256fff libcompiler_rt.dylib arm64  <6bcab91bf9f1390eac1d038f9a2699d6> /usr/lib/system/libcompiler_rt.dylib
0x18c257000 - 0x18c25efff libcopyfile.dylib arm64  <0c337bd80f193fbdb28313e4eaf758ea> /usr/lib/system/libcopyfile.dylib
0x18c25f000 - 0x18c2bffff libcorecrypto.dylib arm64  <3b0c9c05a798360ebc821fbe2f50b95c> /usr/lib/system/libcorecrypto.dylib
0x18c2c0000 - 0x18c2effff libdispatch.dylib arm64  <3840477f1dcb32c5be29d805a0b43d93> /usr/lib/system/libdispatch.dylib
0x18c2f0000 - 0x18c2f4fff libdyld.dylib arm64  <39aaa2dbe1a1313c9c838cc0268a2ea0> /usr/lib/system/libdyld.dylib
0x18c2f5000 - 0x18c2f5fff liblaunch.dylib arm64  <04e27dee99a031ba8a7124b6b72c909c> /usr/lib/system/liblaunch.dylib
0x18c2f6000 - 0x18c2fbfff libmacho.dylib arm64  <a3797232763a393faa9bf3cf5a871e0c> /usr/lib/system/libmacho.dylib
0x18c2fc000 - 0x18c2fdfff libremovefile.dylib arm64  <28e912626c483873a21e720a9e6e31d3> /usr/lib/system/libremovefile.dylib
0x18c2fe000 - 0x18c315fff libsystem_asl.dylib arm64  <36b03a6fe92b36a687a31254e4eef33b> /usr/lib/system/libsystem_asl.dylib
0x18c316000 - 0x18c316fff libsystem_blocks.dylib arm64  <1c111df9108e3d0f90cfbe5a197ae4a2> /usr/lib/system/libsystem_blocks.dylib
0x18c317000 - 0x18c395fff libsystem_c.dylib arm64  <93efa69c71cb30a092cc72cf178f2e65> /usr/lib/system/libsystem_c.dylib
0x18c396000 - 0x18c39afff libsystem_configuration.dylib arm64  <e57ff277342c3b22b2da2fecef617b23> /usr/lib/system/libsystem_configuration.dylib
0x18c39b000 - 0x18c3a0fff libsystem_containermanager.dylib arm64  <41d8a1a4127b3cccb4cb93f337b922d7> /usr/lib/system/libsystem_containermanager.dylib
0x18c3a1000 - 0x18c3a2fff libsystem_coreservices.dylib arm64  <5f536aa39a3d34079d3277708c4b5f3b> /usr/lib/system/libsystem_coreservices.dylib
0x18c3a3000 - 0x18c3bbfff libsystem_coretls.dylib arm64  <5b2a44a2d8ed3cc6aaccbae99e805dd4> /usr/lib/system/libsystem_coretls.dylib
0x18c3bc000 - 0x18c3c2fff libsystem_dnssd.dylib arm64  <dd0a055b1bea35e7a371d2a134aa4cb4> /usr/lib/system/libsystem_dnssd.dylib
0x18c3c3000 - 0x18c3e6fff libsystem_info.dylib arm64  <b372a8a239223d20b9cb13bd4efe0790> /usr/lib/system/libsystem_info.dylib
0x18c3e7000 - 0x18c40bfff libsystem_kernel.dylib arm64  <3bb31dbc99853fa4b33f4948c9e2af64> /usr/lib/system/libsystem_kernel.dylib
0x18c40c000 - 0x18c438fff libsystem_m.dylib arm64  <03779efeda81345586b8fd3d69323160> /usr/lib/system/libsystem_m.dylib
0x18c439000 - 0x18c454fff libsystem_malloc.dylib arm64  <2828f6cf98c631969e22ae3aaf0c9289> /usr/lib/system/libsystem_malloc.dylib
0x18c455000 - 0x18c4acfff libsystem_network.dylib arm64  <5e487af9f3a03dd8ba7833602b554363> /usr/lib/system/libsystem_network.dylib
0x18c4ad000 - 0x18c4b6fff libsystem_networkextension.dylib arm64  <db6affcb13a53af58cbe796b7ef935bd> /usr/lib/system/libsystem_networkextension.dylib
0x18c4b7000 - 0x18c4c1fff libsystem_notify.dylib arm64  <a86d8c5a0bea3666a69ecfc6b81a2fe7> /usr/lib/system/libsystem_notify.dylib
0x18c4c2000 - 0x18c4c8fff libsystem_platform.dylib arm64  <14630f9a42813c0a819764b8ada8383b> /usr/lib/system/libsystem_platform.dylib
0x18c4c9000 - 0x18c4d2fff libsystem_pthread.dylib arm64  <548d3d6a3b5738f2820e0382c8d77c0e> /usr/lib/system/libsystem_pthread.dylib
0x18c4d3000 - 0x18c4d6fff libsystem_sandbox.dylib arm64  <4bb12da1ae923ba38e60e63ced4c0ad0> /usr/lib/system/libsystem_sandbox.dylib
0x18c4d7000 - 0x18c4defff libsystem_symptoms.dylib arm64  <295884acb7c63956892540ada2cd23a4> /usr/lib/system/libsystem_symptoms.dylib
0x18c4df000 - 0x18c4fdfff libsystem_trace.dylib arm64  <8c79d49939f33d33b5a29474667934b8> /usr/lib/system/libsystem_trace.dylib
0x18c4fe000 - 0x18c503fff libunwind.dylib arm64  <f4dc6306fe0d3a819f67667eff14553c> /usr/lib/system/libunwind.dylib
0x18c504000 - 0x18c504fff libvminterpose.dylib arm64  <027cf263be4933609dd97728b329a18b> /usr/lib/system/libvminterpose.dylib
0x18c505000 - 0x18c52bfff libxpc.dylib arm64  <a0c4e91da2c839b59ecbbb7aa397e244> /usr/lib/system/libxpc.dylib
0x18c52c000 - 0x18c746fff libicucore.A.dylib arm64  <e53c0577ce0b38afb83a2b7a54b4a390> /usr/lib/libicucore.A.dylib
0x18c747000 - 0x18c757fff libz.1.dylib arm64  <a8ab1654147738bda28160886a3a5df1> /usr/lib/libz.1.dylib
0x18d307000 - 0x18d68afff CoreFoundation arm64  <d72e357f5b3337aa9693522564a6032e> /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
0x18d68b000 - 0x18d69bfff libbsm.0.dylib arm64  <a964c720dd6c3b828b3490d0da04b5f8> /usr/lib/libbsm.0.dylib
0x18d69c000 - 0x18d69cfff libenergytrace.dylib arm64  <e6230b7a7ea4327893377cb661336e25> /usr/lib/libenergytrace.dylib
0x18d69d000 - 0x18d718fff IOKit arm64  <97df8046f49d3a3c9a28ad1c89ec90a9> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x18d719000 - 0x18d739fff libMobileGestalt.dylib arm64  <e9c324bb1aa63739946642d6cf3c2dd0> /usr/lib/libMobileGestalt.dylib
0x18d73a000 - 0x18d824fff libxml2.2.dylib arm64  <30ee067a18313bb18a3ad40b0dd4ccc1> /usr/lib/libxml2.2.dylib
0x18d825000 - 0x18d8b2fff Security arm64  <0e0e9f42cb41335ab94eee731c6a4db8> /System/Library/Frameworks/Security.framework/Security
0x18d8b3000 - 0x18d91dfff SystemConfiguration arm64  <d2744fb1dcd93a0e938f5065e7ac4039> /System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration
0x18d91e000 - 0x18da32fff libsqlite3.dylib arm64  <a54037ad22f1329998d318a227192323> /usr/lib/libsqlite3.dylib
0x18da33000 - 0x18dda3fff CFNetwork arm64  <516a98d92600361d89748c8c865aeb9d> /System/Library/Frameworks/CFNetwork.framework/CFNetwork
0x18dda4000 - 0x18ddb4fff libbz2.1.0.dylib arm64  <4035caebd18030b698192b8c92fed3ea> /usr/lib/libbz2.1.0.dylib
0x18ddb5000 - 0x18ddcdfff liblzma.5.dylib arm64  <690a1d50cfad332c9ffce151555cf5d3> /usr/lib/liblzma.5.dylib
0x18ddce000 - 0x18dde8fff libCRFSuite.dylib arm64  <b80cb8a907773d08997be69dc6340070> /usr/lib/libCRFSuite.dylib
0x18dde9000 - 0x18de12fff libarchive.2.dylib arm64  <104744e9187837d8ba843c443f4a98cb> /usr/lib/libarchive.2.dylib
0x18de13000 - 0x18de14fff liblangid.dylib arm64  <70c15ad0050435899c857e8844aedd04> /usr/lib/liblangid.dylib
0x18de15000 - 0x18e0e3fff Foundation arm64  <8c727aea9f34365fb2fe552669585011> /System/Library/Frameworks/Foundation.framework/Foundation
0x18e0e4000 - 0x18e190fff libBLAS.dylib arm64  <6ea5b89378513f2e846e31871b410a0b> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib
0x18e191000 - 0x18e4d3fff libLAPACK.dylib arm64  <0646b0c159c93102926cdf9221d11568> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib
0x18e4d4000 - 0x18e776fff vImage arm64  <c17d2e052c6f36349a2cae4dd3a5aee1> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage
0x18e777000 - 0x18e799fff libvMisc.dylib arm64  <20d445b170e730d1888141bfaa6be593> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib
0x18e79a000 - 0x18e7aefff libLinearAlgebra.dylib arm64  <930cd329b8ea391fb226d14819375940> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLinearAlgebra.dylib
0x18e7af000 - 0x18e7c0fff libSparseBLAS.dylib arm64  <2ee1252ee69e3ec587cc93364d05fd4d> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparseBLAS.dylib
0x18e7c1000 - 0x18e839fff libvDSP.dylib arm64  <43133d90a9fd32e681cee537ebc0f154> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib
0x18e83a000 - 0x18e83afff vecLib arm64  <1b404e41514b383285c36288ece53c9b> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib
0x18e83b000 - 0x18e83bfff Accelerate arm64  <3c43596ee1eb3048a65bfc8b3bb05c0c> /System/Library/Frameworks/Accelerate.framework/Accelerate
0x18e83c000 - 0x18ed89fff CoreGraphics arm64  <1b546c1bd4eb334eb850e116b430e550> /System/Library/Frameworks/CoreGraphics.framework/CoreGraphics
0x18ed8a000 - 0x18ed9efff GraphicsServices arm64  <6d8ec4c741ae3332ae4854a3c69f9c68> /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices
0x18ed9f000 - 0x18edeafff AppSupport arm64  <caf9b40929c73faeaaf25b33ad2a0647> /System/Library/PrivateFrameworks/AppSupport.framework/AppSupport
0x18edeb000 - 0x18ef0dfff MobileCoreServices arm64  <8172d8e133d23395bbfa078d6a44f089> /System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices
0x18ef0e000 - 0x18ef65fff BaseBoard arm64  <b33d2bf343f43bc5b5a7d0d4b4dd5f5a> /System/Library/PrivateFrameworks/BaseBoard.framework/BaseBoard
0x18ef66000 - 0x18ef71fff AssertionServices arm64  <7610246b4f683b77811d43811f30465d> /System/Library/PrivateFrameworks/AssertionServices.framework/AssertionServices
0x18ef72000 - 0x18ef9efff BackBoardServices arm64  <d463b45d03f13e6987eb6bdae3bf941c> /System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices
0x18efa3000 - 0x18eff2fff FrontBoardServices arm64  <c559fb4fa9ba31319bc7b1ba9c4ba308> /System/Library/PrivateFrameworks/FrontBoardServices.framework/FrontBoardServices
0x18eff6000 - 0x18f029fff SpringBoardServices arm64  <d388e2d75b523b748f195d9a3d27d278> /System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices
0x18f02a000 - 0x18f03efff MobileKeyBag arm64  <270099c5284b31a1906053816b6cec02> /System/Library/PrivateFrameworks/MobileKeyBag.framework/MobileKeyBag
0x18f03f000 - 0x18f047fff IOSurface arm64  <ef7ac073d6943dc78d9fd3440e0348d9> /System/Library/PrivateFrameworks/IOSurface.framework/IOSurface
0x18f048000 - 0x18f053fff liblockdown.dylib arm64  <9b0b0e6f40d33edfaf15399d4bad8121> /usr/lib/liblockdown.dylib
0x18f054000 - 0x18f069fff CrashReporterSupport arm64  <66e9fd41492333dfab588cc2021fbebc> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/CrashReporterSupport
0x18f06a000 - 0x18f06cfff IOSurfaceAccelerator arm64  <4e2f4feb26af3b22ae56f1730fb8a133> /System/Library/PrivateFrameworks/IOSurfaceAccelerator.framework/IOSurfaceAccelerator
0x18f06d000 - 0x18f0adfff AppleJPEG arm64  <87de27bcf04536ae846760442b89cad1> /System/Library/PrivateFrameworks/AppleJPEG.framework/AppleJPEG
0x18f0ae000 - 0x18f641fff ImageIO arm64  <e16442857870346fbe11e98073358914> /System/Library/Frameworks/ImageIO.framework/ImageIO
0x18f642000 - 0x18f648fff TCC arm64  <225b54db9ae3396fa00a310bf3310765> /System/Library/PrivateFrameworks/TCC.framework/TCC
0x18f649000 - 0x18f64dfff AggregateDictionary arm64  <5eae0ee54d7238d38c60df504164bd7c> /System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary
0x18f64e000 - 0x18f65afff PowerLog arm64  <752721ed2da73535b1f7e61d50c0026b> /System/Library/PrivateFrameworks/PowerLog.framework/PowerLog
0x18f65b000 - 0x18f6c3fff libTelephonyUtilDynamic.dylib arm64  <878f4d0fcf5830a984dfecf58c639d0a> /usr/lib/libTelephonyUtilDynamic.dylib
0x18f6c4000 - 0x18f6d6fff CommonUtilities arm64  <0d35a47331413981a51a592a4b4c3302> /System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities
0x18f6d7000 - 0x18f6ebfff libcompression.dylib arm64  <388d583a262f3c8fbbb0453ff8d17426> /usr/lib/libcompression.dylib
0x18f6ec000 - 0x18f986fff CoreData arm64  <8ed91a98ce0b37208579ff6ed712895c> /System/Library/Frameworks/CoreData.framework/CoreData
0x18f987000 - 0x18f98afff libCoreVMClient.dylib arm64  <760ae35b9c1932edbd00150e7a98233a> /System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib
0x18f98b000 - 0x18f990fff IOAccelerator arm64  <89785d94951d32b1a745248a1bf25467> /System/Library/PrivateFrameworks/IOAccelerator.framework/IOAccelerator
0x18f991000 - 0x18f992fff libCVMSPluginSupport.dylib arm64  <5affde13a3443280a5965cd5348d5149> /System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib
0x18f993000 - 0x18f996fff libCoreFSCache.dylib arm64  <893e81d4d84e3946974e360cb29cda11> /System/Library/Frameworks/OpenGLES.framework/libCoreFSCache.dylib
0x18f997000 - 0x18f9dafff libGLImage.dylib arm64  <8b343c8b5c2537d08c7e1885354b1215> /System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib
0x18f9db000 - 0x18f9e5fff libGFXShared.dylib arm64  <0058e13e9a2f382eb9cde69f36b7ff62> /System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib
0x18f9e6000 - 0x18f9edfff IOMobileFramebuffer arm64  <2355c7f4d2a231e4be5d5b373305da9d> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/IOMobileFramebuffer
0x18f9ee000 - 0x18f9eefff libmetal_timestamp.dylib arm64  <8faeb09acb873be09949113fa3bd09ff> /System/Library/PrivateFrameworks/GPUCompiler.framework/libmetal_timestamp.dylib
0x18f9ef000 - 0x18fa4cfff Metal arm64  <20393a96a3363112a27a4d6b3c665ff6> /System/Library/Frameworks/Metal.framework/Metal
0x18fa4d000 - 0x18fa57fff OpenGLES arm64  <d08c2b2cceff3d5c84e5c9a0c36d8616> /System/Library/Frameworks/OpenGLES.framework/OpenGLES
0x18fa58000 - 0x18fa7cfff CoreVideo arm64  <ffe63a1da77632a299fb49c0d1a5d1ae> /System/Library/Frameworks/CoreVideo.framework/CoreVideo
0x18fa7d000 - 0x18fa7ffff OAuth arm64  <cae3b485d0ab36258111405e19ac90a8> /System/Library/PrivateFrameworks/OAuth.framework/OAuth
0x18fa87000 - 0x18fac5fff Accounts arm64  <8048b7450119347d8da167b5c1335450> /System/Library/Frameworks/Accounts.framework/Accounts
0x18fac6000 - 0x18fbb8fff libiconv.2.dylib arm64  <73b7dfe2c5ff3976a8ab4296f054e0e5> /usr/lib/libiconv.2.dylib
0x18fbb9000 - 0x18fd08fff CoreAudio arm64  <a43b5272ad823963928419f52a18b111> /System/Library/Frameworks/CoreAudio.framework/CoreAudio
0x18fd09000 - 0x18fd0cfff UserFS arm64  <729dba0a9bbf381a843c48d49ca6c480> /System/Library/PrivateFrameworks/UserFS.framework/UserFS
0x18fd0d000 - 0x18fe17fff CoreMedia arm64  <3fe516f880a13a9b9bf918a198b46e28> /System/Library/Frameworks/CoreMedia.framework/CoreMedia
0x18fe18000 - 0x18fe1efff libcupolicy.dylib arm64  <0b8bc03133f8336e97a3ae07b8147102> /usr/lib/libcupolicy.dylib
0x18fe1f000 - 0x18feabfff CoreTelephony arm64  <88ceb856f0ad32af94b11d5b48e19d7e> /System/Library/Frameworks/CoreTelephony.framework/CoreTelephony
0x18feac000 - 0x18ffb6fff libFontParser.dylib arm64  <8a900cd98c5b31398f9ba6149c569e5b> /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib
0x18ffb7000 - 0x190046fff VideoToolbox arm64  <3aca3dde0dbb3872bc95038b03502025> /System/Library/Frameworks/VideoToolbox.framework/VideoToolbox
0x190047000 - 0x190047fff FontServices arm64  <ba687761d8e73468be35c7f3d84fa306> /System/Library/PrivateFrameworks/FontServices.framework/FontServices
0x190048000 - 0x190194fff CoreText arm64  <02cfb5fa81a83126aa5fcf6157613256> /System/Library/Frameworks/CoreText.framework/CoreText
0x190195000 - 0x1901affff ProtocolBuffer arm64  <f48cb8f315d83384914b983367ba1f18> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer
0x1901b0000 - 0x1901d8fff PersistentConnection arm64  <333e3815b7723c56be80d58acce5b64e> /System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection
0x1901d9000 - 0x1901dffff DataMigration arm64  <a1d17e9bda9b318485a11a8c8c207875> /System/Library/PrivateFrameworks/DataMigration.framework/DataMigration
0x1901e0000 - 0x190637fff AudioToolbox arm64  <e19ea620e15c3f0cb40524b722dd5087> /System/Library/Frameworks/AudioToolbox.framework/AudioToolbox
0x190638000 - 0x190810fff QuartzCore arm64  <bf63fba959473e548ed5f6e4db40e3ae> /System/Library/Frameworks/QuartzCore.framework/QuartzCore
0x190811000 - 0x190817fff Netrb arm64  <9cb22261041c35fb8c6e0a9cf49e67a3> /System/Library/PrivateFrameworks/Netrb.framework/Netrb
0x190818000 - 0x190828fff libcmph.dylib arm64  <da7029d8e489384eba1a9af5cd14682c> /usr/lib/libcmph.dylib
0x190829000 - 0x190849fff libmis.dylib arm64  <b86c97bf93d630dcb3a4005dd18405db> /usr/lib/libmis.dylib
0x19084a000 - 0x19093bfff LanguageModeling arm64  <be6ee8c894f03940bb8d9f8e56614c42> /System/Library/PrivateFrameworks/LanguageModeling.framework/LanguageModeling
0x19093c000 - 0x190a22fff ManagedConfiguration arm64  <2ed5cecbd4fc3f85bc1244e1cb12e039> /System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration
0x190a23000 - 0x190a39fff libmarisa.dylib arm64  <6dc2792a342c3ef89643cc735997e56b> /usr/lib/libmarisa.dylib
0x190a3a000 - 0x190b0afff ProofReader arm64  <172b6a42b4ab3bad96828ecefd3b9530> /System/Library/PrivateFrameworks/ProofReader.framework/ProofReader
0x190b0b000 - 0x190b15fff MediaAccessibility arm64  <842aa10100d13d1688dcd6d43d3ed550> /System/Library/Frameworks/MediaAccessibility.framework/MediaAccessibility
0x190b16000 - 0x190b26fff MobileAsset arm64  <b64f721801053489b4a29f707c930b31> /System/Library/PrivateFrameworks/MobileAsset.framework/MobileAsset
0x190b27000 - 0x190b98fff ColorSync arm64  <dbaae646d6a935feb38b961d234a0fcf> /System/Library/PrivateFrameworks/ColorSync.framework/ColorSync
0x190b99000 - 0x190c08fff MetalPerformanceShaders arm64  <71664ffbbd713c43bb9f1aed5409c131> /System/Library/Frameworks/MetalPerformanceShaders.framework/MetalPerformanceShaders
0x190c09000 - 0x191038fff FaceCore arm64  <3acc58da74e433ef872fcbc74ef3b4f4> /System/Library/PrivateFrameworks/FaceCore.framework/FaceCore
0x191039000 - 0x1910b4fff Quagga arm64  <a9e8152fb85d3884a7a8eae0db28789b> /System/Library/PrivateFrameworks/Quagga.framework/Quagga
0x1910b5000 - 0x19127efff CoreImage arm64  <c57d3bcefeca33c28835754b1f411883> /System/Library/Frameworks/CoreImage.framework/CoreImage
0x19127f000 - 0x1912cafff TextInput arm64  <ce037eecb165313ea83dc7619902614b> /System/Library/PrivateFrameworks/TextInput.framework/TextInput
0x1912cb000 - 0x1912dbfff libAccessibility.dylib arm64  <ad932566e85f3a509bf61a9d6baccf1b> /usr/lib/libAccessibility.dylib
0x1912eb000 - 0x191c3ffff JavaScriptCore arm64  <218fe9fe272c312bae4bf25250451a5f> /System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore
0x191c40000 - 0x191e59fff StoreServices arm64  <ff11f8f89db033a1ae2050201f79752e> /System/Library/PrivateFrameworks/StoreServices.framework/StoreServices
0x191e5a000 - 0x192f4bfff WebCore arm64  <9a528dd69fea3d1e91cdbe233f9aa2ab> /System/Library/PrivateFrameworks/WebCore.framework/WebCore
0x192f4c000 - 0x192f75fff libxslt.1.dylib arm64  <7444cfa4c6c73e1f979308e941d9ef75> /usr/lib/libxslt.1.dylib
0x192f76000 - 0x193057fff WebKitLegacy arm64  <fbdca0f275923d8e9772474cb6541dc2> /System/Library/PrivateFrameworks/WebKitLegacy.framework/WebKitLegacy
0x193058000 - 0x193120fff CoreUI arm64  <9c0d0f2a481634d09f894167603b8e1d> /System/Library/PrivateFrameworks/CoreUI.framework/CoreUI
0x193121000 - 0x193148fff DictionaryServices arm64  <c7ba92c140f13acbbd77e28f37e308e9> /System/Library/PrivateFrameworks/DictionaryServices.framework/DictionaryServices
0x193149000 - 0x19314afff HangTracer arm64  <6865168113b53a28b5412d51379e16b8> /System/Library/PrivateFrameworks/HangTracer.framework/HangTracer
0x19314b000 - 0x19319bfff PhysicsKit arm64  <b78dfc9e358f3687a16f74f0498db603> /System/Library/PrivateFrameworks/PhysicsKit.framework/PhysicsKit
0x19319c000 - 0x193274fff UIFoundation arm64  <6d2159d7532c365d9ebc5cf3d2acdb87> /System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation
0x193281000 - 0x19400efff UIKit arm64  <7ef942f43c3e3e4aa6cec127b68ecbab> /System/Library/Frameworks/UIKit.framework/UIKit
0x19400f000 - 0x194037fff CoreBluetooth arm64  <0668bc33dc133b49b1461abda1ea968f> /System/Library/Frameworks/CoreBluetooth.framework/CoreBluetooth
0x194038000 - 0x19405dfff DataAccessExpress arm64  <5fbf9ad4bb6635e3b6dee2038037db4e> /System/Library/PrivateFrameworks/DataAccessExpress.framework/DataAccessExpress
0x19405e000 - 0x19407ffff NetworkStatistics arm64  <f997854e71c93bf1873aeaf8615f9884> /System/Library/PrivateFrameworks/NetworkStatistics.framework/NetworkStatistics
0x194080000 - 0x194108fff AddressBook arm64  <5c11f57b219530288cb2954862ed23f8> /System/Library/Frameworks/AddressBook.framework/AddressBook
0x194109000 - 0x19423dfff CoreMotion arm64  <f87d9d1a138d3aa989c550dc9dc2c66d> /System/Library/Frameworks/CoreMotion.framework/CoreMotion
0x19423e000 - 0x19426bfff CacheDelete arm64  <c4057897ab23369e8fe7a14f687818cf> /System/Library/PrivateFrameworks/CacheDelete.framework/CacheDelete
0x19426c000 - 0x194279fff CoreAUC arm64  <d88142d627d33b7f86446c5a1170babb> /System/Library/PrivateFrameworks/CoreAUC.framework/CoreAUC
0x19427a000 - 0x19485dfff MediaToolbox arm64  <bd92166d9cce382fae200e4c6ef1cf1c> /System/Library/Frameworks/MediaToolbox.framework/MediaToolbox
0x19485e000 - 0x194a04fff Celestial arm64  <e6cf92965c4d310ba8864b92ab64be98> /System/Library/PrivateFrameworks/Celestial.framework/Celestial
0x194a05000 - 0x194a14fff IntlPreferences arm64  <7062c1f3645137bfbf44f20531931a8d> /System/Library/PrivateFrameworks/IntlPreferences.framework/IntlPreferences
0x194a15000 - 0x194a17fff CoreDuetDebugLogging arm64  <eba94238c28e3cd5ae4caf73900227ac> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/CoreDuetDebugLogging
0x194a18000 - 0x194a2cfff CoreDuetDaemonProtocol arm64  <f561fda7671b34fd83890a0eb03a57a3> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/CoreDuetDaemonProtocol
0x194a2d000 - 0x194b02fff CoreDuet arm64  <b275d881a2143153b7e3ecd86421de2c> /System/Library/PrivateFrameworks/CoreDuet.framework/CoreDuet
0x194b03000 - 0x194cb1fff AVFoundation arm64  <380f25440bc6399ebf077523c12b6086> /System/Library/Frameworks/AVFoundation.framework/AVFoundation
0x194cb2000 - 0x194ce4fff libtidy.A.dylib arm64  <104c07ea5281354f99d7d86ce07ddc2c> /usr/lib/libtidy.A.dylib
0x194ce5000 - 0x194d4bfff IMFoundation arm64  <9d8462f7c4163fa0b2f5a8b808b1950c> /System/Library/PrivateFrameworks/IMFoundation.framework/IMFoundation
0x194d4c000 - 0x1953d2fff GeoServices arm64  <570b5a1a299e3a98a2b0dcfd5028d7c8> /System/Library/PrivateFrameworks/GeoServices.framework/GeoServices
0x1953d3000 - 0x1953d4fff DiagnosticLogCollection arm64  <6c702260771b3c378bd7b5304f82211e> /System/Library/PrivateFrameworks/DiagnosticLogCollection.framework/DiagnosticLogCollection
0x1953d5000 - 0x1953d6fff Marco arm64  <304daa7fa5e333f89d7995a7309df6fe> /System/Library/PrivateFrameworks/Marco.framework/Marco
0x1953d7000 - 0x195450fff CoreLocation arm64  <0157f7172a3a35b880ea1cd20d625cad> /System/Library/Frameworks/CoreLocation.framework/CoreLocation
0x195451000 - 0x195456fff ConstantClasses arm64  <5c1f9a7342303a9886345f69cb25f328> /System/Library/PrivateFrameworks/ConstantClasses.framework/ConstantClasses
0x195457000 - 0x195461fff libChineseTokenizer.dylib arm64  <a59eaa016afa3b2eb0bc3f4efd3eed68> /usr/lib/libChineseTokenizer.dylib
0x195462000 - 0x1956e5fff libmecabra.dylib arm64  <8b8427a15986325ca583087a40cf07ee> /usr/lib/libmecabra.dylib
0x1956e6000 - 0x195737fff IDSFoundation arm64  <65ce27b751f23795a484dfff40edef7e> /System/Library/PrivateFrameworks/IDSFoundation.framework/IDSFoundation
0x195738000 - 0x1957fefff IDS arm64  <57541c6ad685347692ce34754ad440ed> /System/Library/PrivateFrameworks/IDS.framework/IDS
0x1957ff000 - 0x19581cfff MediaServices arm64  <d66a4811b97d3886ab391542c1cac8de> /System/Library/PrivateFrameworks/MediaServices.framework/MediaServices
0x19581d000 - 0x19585bfff AuthKit arm64  <125e3b811f9d3625b611cf659ec5ee0d> /System/Library/PrivateFrameworks/AuthKit.framework/AuthKit
0x19585c000 - 0x195861fff libheimdal-asn1.dylib arm64  <3e7086019955357d83d25628fd4df4fd> /usr/lib/libheimdal-asn1.dylib
0x195862000 - 0x195905fff MediaRemote arm64  <1c17eb1cbf20309eb614d4116bcd5748> /System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote
0x195906000 - 0x195a8cfff MobileSpotlightIndex arm64  <ca94c75e991538958761feea7c89a4d6> /System/Library/PrivateFrameworks/MobileSpotlightIndex.framework/MobileSpotlightIndex
0x195a8d000 - 0x195aacfff PlugInKit arm64  <836deb985a983f75b033efff6b5d8079> /System/Library/PrivateFrameworks/PlugInKit.framework/PlugInKit
0x195aad000 - 0x195ad9fff ProtectedCloudStorage arm64  <4b38705531c635dc8d9516d6b24ba7e2> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/ProtectedCloudStorage
0x195ada000 - 0x195af5fff libresolv.9.dylib arm64  <0459918f803f34429fcfba4a01b1141a> /usr/lib/libresolv.9.dylib
0x195af6000 - 0x195b0bfff ApplePushService arm64  <e065fe3ca8bf3077a08f812bd51ca308> /System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService
0x195b0c000 - 0x195b5afff ContactsFoundation arm64  <773f2ebf4e2f3369a5a9d99a4b19e1b6> /System/Library/PrivateFrameworks/ContactsFoundation.framework/ContactsFoundation
0x195b61000 - 0x195c05fff Contacts arm64  <20b347eace3e3f5fae5f6b86d485cbdc> /System/Library/Frameworks/Contacts.framework/Contacts
0x195c06000 - 0x195c50fff CoreSpotlight arm64  <fe109d8775673c67940b6a5df033a580> /System/Library/Frameworks/CoreSpotlight.framework/CoreSpotlight
0x195c51000 - 0x195c78fff vCard arm64  <957503871c9338e39450392bf323fedc> /System/Library/PrivateFrameworks/vCard.framework/vCard
0x195c79000 - 0x195d04fff VoiceServices arm64  <3b14a045b99c37d8a7a210fc01fb4701> /System/Library/PrivateFrameworks/VoiceServices.framework/VoiceServices
0x195d05000 - 0x195d52fff SAObjects arm64  <a40697d1fb1d37bab2ec1c24cbb45d21> /System/Library/PrivateFrameworks/SAObjects.framework/SAObjects
0x195dee000 - 0x195e85fff AssistantServices arm64  <839ff8a145993e168281b087566ee1c3> /System/Library/PrivateFrameworks/AssistantServices.framework/AssistantServices
0x195f99000 - 0x195fb5fff AppleIDSSOAuthentication arm64  <96fe393084c531cab45a8c363c0cda06> /System/Library/PrivateFrameworks/AppleIDSSOAuthentication.framework/AppleIDSSOAuthentication
0x195fc7000 - 0x196034fff AppleAccount arm64  <a81b395eaaef3985a01f73ac25c31ffd> /System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount
0x196035000 - 0x196039fff CommunicationsFilter arm64  <80142456bd963d85ab1a74ad9ec9ea5e> /System/Library/PrivateFrameworks/CommunicationsFilter.framework/CommunicationsFilter
0x19603a000 - 0x19605efff ChunkingLibrary arm64  <fe49f6ad0e223f19a8c891504dde0e4a> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/ChunkingLibrary
0x19605f000 - 0x19606afff CaptiveNetwork arm64  <b41b7a945a893d3d94dfb7a35e6295dd> /System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork
0x19606b000 - 0x196099fff EAP8021X arm64  <3a1a59dc731839ca974bb4f536b6e0d6> /System/Library/PrivateFrameworks/EAP8021X.framework/EAP8021X
0x19609a000 - 0x1960a0fff AssetCacheServices arm64  <92a10cdd09ab39988cbaca148fb3db41> /System/Library/PrivateFrameworks/AssetCacheServices.framework/AssetCacheServices
0x1960a1000 - 0x19617afff MMCS arm64  <78ffacb7ae4436ed9d358e0efa14cdfc> /System/Library/PrivateFrameworks/MMCS.framework/MMCS
0x19617b000 - 0x1961abfff MobileWiFi arm64  <d0bba9b0deb436dda87b5b92649ed66d> /System/Library/PrivateFrameworks/MobileWiFi.framework/MobileWiFi
0x1961ac000 - 0x1961eefff ContentIndex arm64  <31b34f3a22f039a8a3614874f90b42ee> /System/Library/PrivateFrameworks/ContentIndex.framework/ContentIndex
0x1961ef000 - 0x1961f7fff MobileIcons arm64  <d9db8817be513fff979cc0170cf7074c> /System/Library/PrivateFrameworks/MobileIcons.framework/MobileIcons
0x19624d000 - 0x19627dfff Bom arm64  <1219ee24d2333d70be894e7297269422> /System/Library/PrivateFrameworks/Bom.framework/Bom
0x196286000 - 0x1962d5fff FTServices arm64  <7ce5489aa92e31c6b65d55b764dfd8e0> /System/Library/PrivateFrameworks/FTServices.framework/FTServices
0x1962d6000 - 0x196334fff CoreDAV arm64  <03351c99ff52304985511492a46048ec> /System/Library/PrivateFrameworks/CoreDAV.framework/CoreDAV
0x196335000 - 0x196342fff BaseBoardUI arm64  <01b68c876b293af8bd0a7635907801e1> /System/Library/PrivateFrameworks/BaseBoardUI.framework/BaseBoardUI
0x196343000 - 0x196357fff UserManagement arm64  <180e53f17d143af78e0480ece7e66212> /System/Library/PrivateFrameworks/UserManagement.framework/UserManagement
0x196358000 - 0x196420fff CorePDF arm64  <af77a7a15e7434009f1dc2913e78f854> /System/Library/PrivateFrameworks/CorePDF.framework/CorePDF
0x196421000 - 0x196455fff iCalendar arm64  <c599eb8734ae3be68e058ea89678bac5> /System/Library/PrivateFrameworks/iCalendar.framework/iCalendar
0x19645e000 - 0x1964bcfff CalendarFoundation arm64  <af4abf29a42033cda68f0a7d91d49bb6> /System/Library/PrivateFrameworks/CalendarFoundation.framework/CalendarFoundation
0x1964bd000 - 0x1964c3fff IncomingCallFilter arm64  <a2796de0cb9338be851025c0acf32a6c> /System/Library/PrivateFrameworks/IncomingCallFilter.framework/IncomingCallFilter
0x1965ba000 - 0x196652fff CalendarDatabase arm64  <682e547de86e32b095b9ffdc73c640e8> /System/Library/PrivateFrameworks/CalendarDatabase.framework/CalendarDatabase
0x196653000 - 0x196695fff CalendarDaemon arm64  <39cd5216471a34b6a931dd5da70abf90> /System/Library/PrivateFrameworks/CalendarDaemon.framework/CalendarDaemon
0x196696000 - 0x196765fff EventKit arm64  <39190ded8b3d382286a512df1cfac759> /System/Library/Frameworks/EventKit.framework/EventKit
0x196766000 - 0x196a67fff WebKit arm64  <8f64fe743b6d3030b64c76dee6fd7f63> /System/Library/Frameworks/WebKit.framework/WebKit
0x196aaf000 - 0x196bf3fff ContactsUI arm64  <f37a9d012d073b5e9e6ec72aeb92e8ac> /System/Library/Frameworks/ContactsUI.framework/ContactsUI
0x196bf4000 - 0x19725bfff ModelIO arm64  <0bb07b9ae62832cf94d2afa6fd17fedf> /System/Library/Frameworks/ModelIO.framework/ModelIO
0x19725c000 - 0x197262fff DAAPKit arm64  <a32bded348c232e2a4a84747aef36b9e> /System/Library/PrivateFrameworks/DAAPKit.framework/DAAPKit
0x197263000 - 0x1972e4fff CoreSymbolication arm64  <246999fb65113a479d9922f47823b894> /System/Library/PrivateFrameworks/CoreSymbolication.framework/CoreSymbolication
0x19737f000 - 0x1973aefff GLKit arm64  <40f57e2d9e2d30c29231cead9fba9a81> /System/Library/Frameworks/GLKit.framework/GLKit
0x1973af000 - 0x197618fff MusicLibrary arm64  <d9bcf51d896d3332842b0954bd8c14ff> /System/Library/PrivateFrameworks/MusicLibrary.framework/MusicLibrary
0x197658000 - 0x19772ffff AddressBookUI arm64  <ad069f239fcd31738de7c3f5e3f2267b> /System/Library/Frameworks/AddressBookUI.framework/AddressBookUI
0x19780f000 - 0x197869fff iTunesStore arm64  <0df50b04df733fff978e8de529ef3070> /System/Library/PrivateFrameworks/iTunesStore.framework/iTunesStore
0x19786a000 - 0x197870fff CloudPhotoServices arm64  <45cd8319d04d3ed782aad1681e7fb353> /System/Library/PrivateFrameworks/CloudPhotoServices.framework/CloudPhotoServices
0x197871000 - 0x197967fff CloudPhotoLibrary arm64  <583496d2197a35ff900b7b121f8da7d5> /System/Library/PrivateFrameworks/CloudPhotoLibrary.framework/CloudPhotoLibrary
0x1979b8000 - 0x1979dffff AssetsLibraryServices arm64  <fc5b5d48767f34b3944e9e0c3f531191> /System/Library/PrivateFrameworks/AssetsLibraryServices.framework/AssetsLibraryServices
0x1979e0000 - 0x197a7bfff HomeSharing arm64  <4a30fb39c8483d8992b21bb596ab2a0f> /System/Library/PrivateFrameworks/HomeSharing.framework/HomeSharing
0x197a7c000 - 0x197aaafff ACTFramework arm64  <f2f0c50a78ff306bad3fda9fcd6b8f3c> /System/Library/PrivateFrameworks/ACTFramework.framework/ACTFramework
0x197aab000 - 0x197ab6fff DCIMServices arm64  <ea2256093ae13fbaae8affc2a360df46> /System/Library/PrivateFrameworks/DCIMServices.framework/DCIMServices
0x197ab7000 - 0x197be4fff CoreMediaStream arm64  <e5ec8d81892f388a873d39bc89275cfb> /System/Library/PrivateFrameworks/CoreMediaStream.framework/CoreMediaStream
0x197be5000 - 0x197bfdfff PhotosFormats arm64  <3358716d04da30b0a7c3237c0372c06e> /System/Library/PrivateFrameworks/PhotosFormats.framework/PhotosFormats
0x197bfe000 - 0x197c05fff XPCKit arm64  <81d80739479c3f7ea8b8beed19439842> /System/Library/PrivateFrameworks/XPCKit.framework/XPCKit
0x197c06000 - 0x197f80fff MediaPlayer arm64  <74d7387d15d43a27ae9333ec738aac8d> /System/Library/Frameworks/MediaPlayer.framework/MediaPlayer
0x197f81000 - 0x198067fff CameraKit arm64  <778736cdcdcc355ea03cd71b7da15018> /System/Library/PrivateFrameworks/CameraKit.framework/CameraKit
0x198070000 - 0x19808bfff MediaStream arm64  <8ad8b4289945348d8641b394cb3dbc7e> /System/Library/PrivateFrameworks/MediaStream.framework/MediaStream
0x19808c000 - 0x19840dfff PhotoLibraryServices arm64  <4b9ed2f7510330b8baa1445415a9b830> /System/Library/PrivateFrameworks/PhotoLibraryServices.framework/PhotoLibraryServices
0x19840e000 - 0x198444fff PrototypeTools arm64  <dde28589a89d39aaa441e1d1f0e0b389> /System/Library/PrivateFrameworks/PrototypeTools.framework/PrototypeTools
0x1984b4000 - 0x1984d7fff ScreenReaderCore arm64  <50c4f1fde6f33f5e96e77373a6d55fd0> /System/Library/PrivateFrameworks/ScreenReaderCore.framework/ScreenReaderCore
0x19858d000 - 0x1985acfff TextToSpeech arm64  <ad1bcfdf58943235ae26620a17e8907e> /System/Library/PrivateFrameworks/TextToSpeech.framework/TextToSpeech
0x198636000 - 0x198638fff libAXSafeCategoryBundle.dylib arm64  <3e053302fa0e39b098c16f26231c6eb2> /usr/lib/libAXSafeCategoryBundle.dylib
0x198639000 - 0x198642fff libAXSpeechManager.dylib arm64  <63ae981ad15a3e6fba2538a99399b852> /usr/lib/libAXSpeechManager.dylib
0x198643000 - 0x1986e4fff AccessibilityUtilities arm64  <1f4a7adf39e637649216cf37987c8702> /System/Library/PrivateFrameworks/AccessibilityUtilities.framework/AccessibilityUtilities
0x1988d3000 - 0x198906fff DataDetectorsCore arm64  <eff464e7139430e4ac6d36ec1abda234> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/DataDetectorsCore
0x198bc6000 - 0x198cd1fff Photos arm64  <99cd6c8e779e356684bf63a26cdec692> /System/Library/Frameworks/Photos.framework/Photos
0x198cd2000 - 0x198d09fff AXRuntime arm64  <27a8362cd5ee38e08628ccecf0b8d839> /System/Library/PrivateFrameworks/AXRuntime.framework/AXRuntime
0x198d87000 - 0x198da0fff GenerationalStorage arm64  <b32d95e8e2ce36628b95307940cdb00a> /System/Library/PrivateFrameworks/GenerationalStorage.framework/GenerationalStorage
0x198da1000 - 0x198dacfff CoreRecents arm64  <43aa420f1e1b3666be8c44e68c934a98> /System/Library/PrivateFrameworks/CoreRecents.framework/CoreRecents
0x198daf000 - 0x198db6fff AccessibilityUIUtilities arm64  <f41ec092617f3ff5b584bd1471de819a> /System/Library/PrivateFrameworks/Accessibility.framework/Frameworks/AccessibilityUIUtilities.framework/AccessibilityUIUtilities
0x198eaa000 - 0x198ebdfff AssetsLibrary arm64  <c0da35ad53d63acca59be3f6bb633a2d> /System/Library/Frameworks/AssetsLibrary.framework/AssetsLibrary
0x19971b000 - 0x19972dfff QuickLookThumbnailing arm64  <b0da165245c63310be8c26ee68005802> /System/Library/PrivateFrameworks/QuickLookThumbnailing.framework/QuickLookThumbnailing
0x199830000 - 0x1998c6fff QuickLook arm64  <3d798963a89d36dd8087ac365fa79040> /System/Library/Frameworks/QuickLook.framework/QuickLook
0x199a3c000 - 0x199ab4fff libnetwork.dylib arm64  <3357ca8108a73179bf376acffd953d64> /usr/lib/libnetwork.dylib
0x199ac8000 - 0x199b46fff Network arm64  <91e5de27d4ba3cd0a18e56704adf4486> /System/Library/PrivateFrameworks/Network.framework/Network
0x199b4d000 - 0x199becfff Social arm64  <471649bba5f635758378d5ac559adb04> /System/Library/Frameworks/Social.framework/Social
0x199cd7000 - 0x199cedfff FTAWD arm64  <1c7ebd4e4a3c322b865f6c36344813dc> /System/Library/PrivateFrameworks/FTAWD.framework/FTAWD
0x199d5b000 - 0x199ebbfff IMCore arm64  <735abf7126413ad4a1cf0950b952332c> /System/Library/PrivateFrameworks/IMCore.framework/IMCore
0x199f19000 - 0x199f70fff ImageCapture arm64  <c01f31ffa0ce3dd7a8a48aa0fe36fd67> /System/Library/PrivateFrameworks/ImageCapture.framework/ImageCapture
0x199f71000 - 0x199f87fff iPhotoMigrationSupport arm64  <02c536e5563431a78f18bd934d09f079> /System/Library/PrivateFrameworks/iPhotoMigrationSupport.framework/iPhotoMigrationSupport
0x199fb7000 - 0x19a04bfff PhotoLibrary arm64  <a13451448c353a23bba3ce0843f80060> /System/Library/PrivateFrameworks/PhotoLibrary.framework/PhotoLibrary
0x19a25e000 - 0x19a294fff CalendarUIKit arm64  <1da809ea2cef37f7b964836a35d54742> /System/Library/PrivateFrameworks/CalendarUIKit.framework/CalendarUIKit
0x19a2c3000 - 0x19a2d2fff SetupAssistant arm64  <f3736526fd273dc7970a870b3d9e5874> /System/Library/PrivateFrameworks/SetupAssistant.framework/SetupAssistant
0x19a302000 - 0x19a4c4fff EventKitUI arm64  <1698a3213bfb38c3babf0c9f634e6539> /System/Library/Frameworks/EventKitUI.framework/EventKitUI
0x19a579000 - 0x19a5abfff Pegasus arm64  <f9d12cfbeb39372fb5b225a9216b2803> /System/Library/PrivateFrameworks/Pegasus.framework/Pegasus
0x19a663000 - 0x19a6acfff AVKit arm64  <adbfeb611b973ac6a52849feb8e62874> /System/Library/Frameworks/AVKit.framework/AVKit
0x19a98d000 - 0x19a99ffff SiriTasks arm64  <42d6b6388cff3d8288ebbbda35b2672c> /System/Library/PrivateFrameworks/SiriTasks.framework/SiriTasks
0x19ab3e000 - 0x19abe8fff IMAVCore arm64  <4ffda8299af8338fb4b81c6e7f8a8927> /System/Library/PrivateFrameworks/IMAVCore.framework/IMAVCore
0x19abe9000 - 0x19ac6cfff PhotoEditSupport arm64  <c4ede5297c6b3d1e941aa63ef09be0c5> /System/Library/PrivateFrameworks/PhotoEditSupport.framework/PhotoEditSupport
0x19b298000 - 0x19b701fff PhotosUI arm64  <2bd0a505a0e135928a00736e8cc9df59> /System/Library/Frameworks/PhotosUI.framework/PhotosUI
0x19c153000 - 0x19c15bfff AccessibilityUI arm64  <cea72e0da159316b90fa7d928060a47b> /System/Library/PrivateFrameworks/Accessibility.framework/Frameworks/AccessibilityUI.framework/AccessibilityUI
0x19c8ee000 - 0x19c91efff WirelessProximity arm64  <54d07aeb06ca3d6bb55acdda7598bce3> /System/Library/PrivateFrameworks/WirelessProximity.framework/WirelessProximity
0x19cb89000 - 0x19cc06fff CoreHandwriting arm64  <9d47eeb2bd463621b3f405c7a13726bd> /System/Library/PrivateFrameworks/CoreHandwriting.framework/CoreHandwriting
0x19cd0b000 - 0x19cd9dfff MediaPlatform arm64  <ec534375f16737339652862e38f5d382> /System/Library/PrivateFrameworks/MediaPlatform.framework/MediaPlatform
0x19d82c000 - 0x19d888fff CoreBrightness arm64  <178e9bad2c6e39d4be22e51879a075a0> /System/Library/PrivateFrameworks/CoreBrightness.framework/CoreBrightness
0x19db92000 - 0x19dcbbfff StoreServicesCore arm64  <28c1129842193d2898e36cc5ae483e0f> /System/Library/PrivateFrameworks/StoreServicesCore.framework/StoreServicesCore
0x19df48000 - 0x19df4cfff ZoomServices arm64  <84e2ae0bf78d3b3682941afac44c04b5> /System/Library/PrivateFrameworks/Accessibility.framework/Frameworks/ZoomServices.framework/ZoomServices
0x19e1ef000 - 0x19e631fff MediaLibraryCore arm64  <6fc2ecc6451a3f28927885fa54db1af8> /System/Library/PrivateFrameworks/MediaLibraryCore.framework/MediaLibraryCore
0x19e7a9000 - 0x19e802fff UserActivity arm64  <325b75af738438f08832888ff3b4dac4> /System/Library/PrivateFrameworks/UserActivity.framework/UserActivity
0x19ec59000 - 0x19ed5cfff AnnotationKit arm64  <953589d8ae8b33d69163b55b03d63361> /System/Library/PrivateFrameworks/AnnotationKit.framework/AnnotationKit
0x19f1b0000 - 0x19f1cffff CoreNLP arm64  <fc892b2b52393c09af35af2341d83da2> /System/Library/PrivateFrameworks/CoreNLP.framework/CoreNLP
0x1a10fe000 - 0x1a1105fff libMatch.1.dylib arm64  <0958cfa9ddb239b2957fb3e223569eb8> /usr/lib/libMatch.1.dylib
0x1a11cc000 - 0x1a11d6fff AccessibilitySettingsLoader arm64  <2c3584b381b9361d8b9fbfcc24c4c6bf> /System/Library/AccessibilityBundles/AccessibilitySettingsLoader.bundle/AccessibilitySettingsLoader
0x1a1727000 - 0x1a173bfff libCGInterfaces.dylib arm64  <fbf13f57f2543d8985ff13eb1594ab47> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/Libraries/libCGInterfaces.dylib
0x1a2621000 - 0x1a262ffff AppleFSCompression arm64  <8352ece375ee343fb5f3a5e15e8175bf> /System/Library/PrivateFrameworks/AppleFSCompression.framework/AppleFSCompression
0x1a2630000 - 0x1a263bfff AppleIDAuthSupport arm64  <bf4aa1ef12a33434af9725d230f3aa80> /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/AppleIDAuthSupport
0x1a333a000 - 0x1a3360fff CoreServicesInternal arm64  <fb899b5f2e913716bddb127fd12d85c0> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesInternal
0x1a3682000 - 0x1a368cfff DiagnosticExtensions arm64  <0b94810c548433a18e8ce9494893ea52> /System/Library/PrivateFrameworks/DiagnosticExtensions.framework/DiagnosticExtensions
0x1a3a4a000 - 0x1a3a56fff libGSFontCache.dylib arm64  <df1f49c7cde93369bf67d5a4726f741f> /System/Library/PrivateFrameworks/FontServices.framework/libGSFontCache.dylib
0x1a3a57000 - 0x1a3a88fff libTrueTypeScaler.dylib arm64  <54cb09a0ab1c3be3aaa7dd38b7e18943> /System/Library/PrivateFrameworks/FontServices.framework/libTrueTypeScaler.dylib
0x1a3b0b000 - 0x1a3b37fff Futhark arm64  <08762aa50cf33e3eb35e6acefc56ce77> /System/Library/PrivateFrameworks/Futhark.framework/Futhark
0x1a4a00000 - 0x1a4a30fff MarkupUI arm64  <e66f9aad8d873709990abac243814642> /System/Library/PrivateFrameworks/MarkupUI.framework/MarkupUI
0x1a4dea000 - 0x1a4df3fff MobileStorage arm64  <6a0f112c25ea3715910d7d9aba2b3777> /System/Library/PrivateFrameworks/MobileStorage.framework/MobileStorage
0x1a5d2d000 - 0x1a5d32fff TextInputUI arm64  <6a8750de312a3eb194d14336e6cbf949> /System/Library/PrivateFrameworks/TextInputUI.framework/TextInputUI
0x1a643c000 - 0x1a6617fff libFosl_dynamic.dylib arm64  <908254cd088c396288edc77691b79870> /usr/lib/libFosl_dynamic.dylib
0x1a6a26000 - 0x1a6a55fff libpcap.A.dylib arm64  <52e03f9192273a6d8deb8828daeb6386> /usr/lib/libpcap.A.dylib
0x1a6a56000 - 0x1a6a8dfff libsandbox.1.dylib arm64  <204b44f3714839b3997febf0e9a22379> /usr/lib/libsandbox.1.dylib
0x1a6a8e000 - 0x1a6a90fff libsp.dylib arm64  <01180099c78530ea9fbb9bcadab9f902> /usr/lib/libsp.dylib
0x1a6a91000 - 0x1a6b65fff AVFAudio arm64  <48a32fa789683606ad2c08fa35e0cf3c> /System/Library/Frameworks/AVFoundation.framework/Frameworks/AVFAudio.framework/AVFAudio
0x1a6b66000 - 0x1a6b6ffff ProactiveEventTracker arm64  <a302f10662963f1caac82f201afd639b> /System/Library/PrivateFrameworks/ProactiveEventTracker.framework/ProactiveEventTracker
0x1a6b70000 - 0x1a6cb2fff Intents arm64  <fee296c4cd39358a9316874c9440608c> /System/Library/Frameworks/Intents.framework/Intents
0x1a6cb3000 - 0x1a6d08fff CallKit arm64  <2bdb7b4d648630d8865b344fb7fdc2a2> /System/Library/Frameworks/CallKit.framework/CallKit
0x1a6dee000 - 0x1a6e11fff UserNotifications arm64  <187ea2161e5b3c74a5345071a14115d4> /System/Library/Frameworks/UserNotifications.framework/UserNotifications
0x1a6e21000 - 0x1a6e2ffff PersonaKit arm64  <528c08fd4d1e31bb8c40e82f3e984264> /System/Library/PrivateFrameworks/PersonaKit.framework/PersonaKit
0x1a7025000 - 0x1a704dfff IMSharedUtilities arm64  <3bc98a88cf4e3f70b1db0a4a14ac5520> /System/Library/PrivateFrameworks/IMSharedUtilities.framework/IMSharedUtilities
0x1a7292000 - 0x1a7418fff TextureIO arm64  <6e2d62cc156135659b1943b589414377> /System/Library/PrivateFrameworks/TextureIO.framework/TextureIO
0x1a789c000 - 0x1a789efff SpeakTypingServices arm64  <6572fd0c90f03ef79fbb5f365097b55c> /System/Library/PrivateFrameworks/Accessibility.framework/Frameworks/SpeakTypingServices.framework/SpeakTypingServices
0x1a792d000 - 0x1a7975fff ContactsUICore arm64  <219b45426d9e3dd2a921ef369910be83> /System/Library/PrivateFrameworks/ContactsUICore.framework/ContactsUICore
0x1a79bb000 - 0x1a79c2fff EmojiFoundation arm64  <907950f70edc3b03bae02876b8caf922> /System/Library/PrivateFrameworks/EmojiFoundation.framework/EmojiFoundation
0x1a80f8000 - 0x1a8115fff SearchFoundation arm64  <133a4abc3d9c3a18a0e2a5e14c73b0fd> /System/Library/PrivateFrameworks/SearchFoundation.framework/SearchFoundation
0x1a8642000 - 0x1a86d5fff AGXMetalA10 arm64  <98a1db0a331831da9c81d41cb9dce059> /System/Library/Extensions/AGXMetalA10.bundle/AGXMetalA10
0x1a86f8000 - 0x1a870afff libBNNS.dylib arm64  <52e343fdf8de3a5fa9bd59251a64f8fd> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBNNS.dylib
0x1a870b000 - 0x1a8710fff libQuadrature.dylib arm64  <7ffc93a0118a38d18f6eba6b74497baf> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libQuadrature.dylib
0x1a8b3f000 - 0x1a8b50fff CoreEmoji arm64  <08791744b9c93a25a88d318143e3d5ba> /System/Library/PrivateFrameworks/CoreEmoji.framework/CoreEmoji
0x1a8b51000 - 0x1a8b69fff CoreInterest arm64  <693b2e2ceaf63370a6c24cb4a76faff0> /System/Library/PrivateFrameworks/CoreInterest.framework/CoreInterest
0x1a8cec000 - 0x1a8d1efff CoreParsec arm64  <8adedfa87f8635988091eb9b0f513a75> /System/Library/PrivateFrameworks/CoreParsec.framework/CoreParsec
0x1a8d77000 - 0x1a8da8fff DifferentialPrivacy arm64  <78a3f0543dc334158644807cae7e7566> /System/Library/PrivateFrameworks/DifferentialPrivacy.framework/DifferentialPrivacy
0x1a910d000 - 0x1a91d5fff NLP arm64  <91cee4fe997e3efab30e4b8dfcd91b5e> /System/Library/PrivateFrameworks/NLP.framework/NLP
0x1a9266000 - 0x1a92d5fff PDFKit arm64  <c44770622ba935a59373208e6a1cf301> /System/Library/PrivateFrameworks/PDFKit.framework/PDFKit
0x1a97ac000 - 0x1a9a06fff PhotosUICore arm64  <7355a9be2a9d3e13bd65001c9aa5f9eb> /System/Library/PrivateFrameworks/PhotosUICore.framework/PhotosUICore
0x1aa140000 - 0x1aa1b1fff libate.dylib arm64  <75dc2c6be9ed3f18af23079b3f663cd5> /usr/lib/libate.dylib
0x1aa1b2000 - 0x1aa1b2fff libcoretls.dylib arm64  <3d058b4a20723e8692beecbf41439b9b> /usr/lib/libcoretls.dylib
0x1aa1b3000 - 0x1aa1b4fff libcoretls_cfhelpers.dylib arm64  <08f36307d3c138a9a0683b9c8e0e4149> /usr/lib/libcoretls_cfhelpers.dylib

EOF

Signaling Error

Hi,
I have this error in logs
ERROR:TwilioConversations:[Signaling]:RESIP::TRANSPORT: Got TLS read ret=0 error=6 error:00000006:invalid library (0):OPENSSL_internal:public key routines
but i could make call normally but don't know what's this error relate or affect

Video not attaching when trying to call participant twice

When I make the first call to the participant, the video on both ends work fine. However, I hang up the call and try to call the same person again. The participants sees the new invitation, but the remote video is never attached. Here is the sequence the participant is logging:

Connected as john
didReceiveInvite from: bruce
added media track
video dimensions changed

// video is working on the first invitation
didConnectParticipant: bruce
participant attached remote view
WARNING: no real random source present!

// video is not working after hangup and inviting again, remote view is not attached.
didDisconnectParticipant
conversationEnded
didReceiveInvite from: bruce
didConnectParticipant: bruce
WARNING: no real random source present!

TVITrack is not updating properly

Using the video quick start with call kit example as reference provided in the GitHub.

Adding multiple users into the video call conversation and ending the video call works fine. After doing the similar process for couple of times, i am not receiving the proper TVITrack from the delegate method where it shows a blank screen instead of remote view. Even my local video seems not updating properly to web server(vice-versa).

At some point of time, while working on other views, i got the below error message.

ERROR:TwilioVideo:[Platform]:Fatal runtime capture error: Error Domain=AVFoundationErrorDomain Code=-11800 "The operation could not be completed" UserInfo={NSUnderlyingError=0x17425adf0 {Error Domain=NSOSStatusErrorDomain Code=-12785 "(null)"}, NSLocalizedFailureReason=An unknown error occurred (-12785), NSLocalizedDescription=The operation could not be completed}, code -11800

Video preview not showing up

The video preview on load is not showing up. It is only when a conversation is started the preview shows. Any ideas how to fix this?

Consistently crashing on iOS 10.0 betas

I'm consistently getting a crash whenever I run this example on a physical iPhone 6s Plus running iOS 10.0.

Here's the info for reproducing the crash.

I'm using the following:

  • Xcode v. 8.0 (8A21a)
  • CocoaPods v. 1.1.0.rc.2
  • iPhone 6s Plus running iOS v. 10.0 (14A5346a)

Steps to reproduce:

  1. Clone the Video Quick Start Swift repo.
  2. Do pod install.
  3. Generate a new access token via the console testing tools (we already have an existing configuration profile), naming the client identity "Alice" per the README suggestion.
  4. Open VideoQuickStart.xcworkspace in Xcode.
  5. Change the bundle identifier to com.mycompany.VideoQuickStart and the team to My Team Name on the VideoQuickStart target; otherwise, the project won't code sign correctly for the physical device. (I don't think this is significant, but I'm including this step here for completeness.)
  6. Set the accessToken to the generated token from step 2.
  7. Build and run.
  8. Note the app consistently crashes when the line around 139 in ViewController.swift is called:
localVideoTrack = localMedia?.addVideoTrack(true, capturer: camera!)

This gives generic reason EXC_BAD_ACCESS(code=1, address=0x0).

Per the stack track trace (see image), it appears this may be related to calling [TWCDeviceFormatUtilities videoCaptureDeviceForSource:] in the underlying Objective-C code.

iphone6splus_crash_stack_trace

I also tried the Objective-C version of this quick start (following the same steps listed above), and I get the same crash whenever the equivalent line in Objective-C is called:

self.localVideoTrack = [self.localMedia addVideoTrack:YES capturer:self.camera];

I suspect this is an issue within the underlying TwilioVideo library, not the demos.

Twilio Video - Capturer related crash

i am getting the issue when we are coming back through navigation controller back button

ERROR:TwilioVideo:[Platform]:Tried to copy a frame while stopped.
libc++abi.dylib: terminating with uncaught exception of type std::__1::system_error: mutex lock failed: Invalid argument
warning: could not load any Objective-C class information. This will significantly reduce the quality of type information available.
(lldb)

Library not found for libPods-TwilioVideo-VideoQuickStart.a

I successfully updated twilio pod and installed it:

pod repo update twilio
pod install

but when I try to build from within XCode, I get the following missing library:

Library not found for -lPods-TwilioVideo-VideoQuickStart
Linker command failed with exit code 1 (use -v to see invocation)

Thanks, Jose

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.