SensMe Slideshow application.

Is there a specific order for the way the slideshow takes your photos from your phone?

I have never installed a slide show, and whenever I have to dock my phone to load, a slide show starts. I'm just curious as to how he takes pictures to display. Certainly, it appears in chronological order, or the order in which they are presented in my album. I'm jst assuming it is random, but would definitely this confirms, if possible?

I do not, it seems, he'll play all the. I can only find a way to put music and the effects of the change.

Tags: Sony Software

Similar Questions

  • jQuery slideshow question

    Hello

    Here is the link to the page with the slider: http://www.juliepb.com

    * Problem: Slideshow keeps returning to the last image (slide 5) between each slide.

    I use simple slideshow of jon raasch and want to display successively the 5 slides. Everyone has an image and a sidebar w/text and a link.

    Source code: lines 50-110

    CSS/general_styles. CSS: lines 174-272

    JS/slideswitch.js

    Any help or advice is appreciated.

    -Julie Barnes

    Hello

    They are many and better stuff jQuery (many have had problems with the simple slide show), try one of them - http://bradblogging.com/jquery/9-jquery-slideshow-applications-you-cannot-miss/.

    The problem with simple slide show is that it stacks up images, and including everything except images can (and often do) launch the slideshow out of sync, but it says for a slide show of pictures 4-8, it works.

    PZ

  • Deploy to the clarification of the web...

    Hi all

    So I am just getting into the catalyst, I love this program but still have a lot to learn. In any case, I am currently working on creating a fairly complex for the company slideshow application, that I work. I started creating a few prototypes using just catalyst (IE vector objects catalysts, text, etc.). I created a really simple application then climbed to something more complex (with a catalyst only for objects).

    After that I felt comfortable with the interface of catalyst, I then created a prototype in Illustrator and the imported file of catalyst. It spent really well so I'm now working on the final application that goes well except that now I'm testing things I go and I noticed deploy it in format SWF Web locally does not work on my PC (running local SWF works fine). Is this normal? I have not yet tried deploy it to the SWF Web format on our Web server so I'm not sure.

    The reason why I ask this is because my first prototypes working locally using the Web swf deployment but my current project does not work. He's going to halfway through the preloader and stops. The only thing I can think is that I used only objects of catalyst in the first prototypes I've done and now in my current project, the work was all created in Illustrator. I'm pretty sure everything is properly optimized... all my vector objects have been converted to symbols in Illustrator before sending the file TO the catalyst.

    In any case, I wonder if it is normal to deploy the file SWF from Web do not run when opened locally on my PC. I think it's normal, but it came at the end of the work today so our web developer was not able to try the files that I did live on our server. I'll have our webdev copy the files on our server tomorrow but I was wondering if there is a quick response to that.

    Thanks in advance for any help you can provide

    The quick answer is how the goods are related or not related to the project. The main difference between the two types is the security settings. That's what the Flash Player (which manages your Flash Catalyst project), may have access (local or network elements). Based on this requirement, your project may fail silently if you run the wrong version in the wrong place.

    Glad you like with Flash Catalyst!

    Chris

  • How can I complete this app?

    Hi all

    Small question, I would like to add something on my page, but unfortunately I do not know what its called im so hard to find.

    Basically, it looks like an application Javascript, has a STEAM, it passes through commercials for their games, she a delay on the 'tick '.

    and if you hover your mouse over a scroll button that it will automatically jump to the next...

    I would like to add something like that on my site for advertising of products that are available... If someone can tell me what her name and let me know if its flash or JS? and easy implementation tips would be great!

    Thank you all

    Martin

    Options with jQuery...

    IALS http://Speckyboy.com/2009/06/03/15-Amazing-jQuery-Image-galleryslideshow-plugins-and-Tutor.

    http://bradblogging.com/jQuery/9-jQuery-slideshow-applications-you-cannot-miss/

  • Pulling data from the class on a MovieClip array

    I am trying to create this slideshow application that displays product information (Tennis rackets) issues of different categories. A great programmer advised me that OOP would be a way to go, however I'm having a difficulty with it.

    I created:

    A document class called CustomClass--> This class downloads all data from the server and pushing the content in the XML based on a category tables. These berries are public, there is also a funciton iterateArray that places the children information somewhere.

    I would like to have 3 different movie clips

    1 screen-> Welcome Message

    2nd screen-> first table

    3rd screen-> second table Dispalyed

    package {
         
         import flash.display.*;
         import fl.transitions.*;
         import fl.transitions.easing.*;
         import flash.net.*;
         import flash.events.*;
         import flash.text.*;
         import flash.text.AntiAliasType;
         import flash.utils.*;
         import bucket_right;
         import bucket_left;
         import firstScreen;
         import secondScreen;
         
         
         public class CustomClass extends MovieClip {
              
              
              [Embed(source="C:/WINDOWS/Fonts/Eurosti.ttf", fontFamily="Euro")]
              public  var EuroEmbedded:Class;
              
              
              //XML responsible variables 
              private var xmlLoader:URLLoader;
              private var xmlContainer:XML;
              private var xmlList:XMLList;
              
              //Array specific variables 
              public var rackUSA:Array;
              public var rackOther:Array;
              public var imagesArray:Array;
              
              //Position Variables 
              public var position:Number;
              
              //Movie Clip Related Data
              public var bucket:MovieClip;
              public var firstScreenShow:MovieClip;
              public var secondScreenShow:MovieClip;
              
              //Text Field Formatting
              private var brandnameTxt:TextFormat;
              private var detailsTxt:TextFormat;
              private var priceTxt:TextFormat;
              public  var euroEmbeddedFont:Font;
              private var fontNeeded:String;
              
              
              //Set up Timer Vars 
              private var applicationStart:Timer;
              private var delay:Number;
              private var repeat:Number;
              
              //Positioning Variable 
              private var positionBuckets:Boolean = true;
              
              //This is the constructor of the application 
              public function CustomClass() {
                   euroEmbeddedFont = new EuroEmbedded();
                   fontNeeded            = euroEmbeddedFont.fontName;
                   position         = 5;
                   rackUSA            = new Array();
                   rackOther            = new Array();
                   imagesArray       = new Array();
                   
                   delay                 = 2000;
                   repeat                = 1;
                   applicationStart = new Timer(delay, repeat);
                   LoadXML();
              }
              
              private function LoadXML() {
                   xmlLoader = new URLLoader();
                   xmlLoader.load(new URLRequest("http://localhost/xml/index.php"));
                   xmlLoader.addEventListener(Event.COMPLETE, populateInfo);
              }
              
              public function populateImages(imgname:String, imgurl:String):* {
                   var imageLoader:Loader = new Loader();
                   //imgname = imgname.split(".gif").join("");
                   //imageLoader.name = imgname;
                   //imagesArray.push(imageLoader);
                  imageLoader.load(new URLRequest(imgurl));
                   return imageLoader;
              }
              
              public function getArray(arrayName:Array) {
                   return arrayName;
              }
              /*public function startApplication() {
                   applicationStart.start();
                   applicationStart.addEventListener(TimerEvent.TIMER_COMPLETE, firstScreen);
              }
              
              public function firstScreen(e:TimerEvent) {
                   removeChild(secondScreenShow);
                   applicationStart.reset();
                   applicationStart.removeEventListener(TimerEvent.TIMER_COMPLETE, firstScreen);
                   firstScreenShow = new firstScreen();
                   addChild(firstScreenShow);
                   //firstScreenShow.iterateArray(rackUSA);
                   applicationStart.start();
                   applicationStart.addEventListener(TimerEvent.TIMER_COMPLETE, secondScreen);
              }
              
              public function secondScreen(e:TimerEvent) {
                   applicationStart.reset();
                   applicationStart.removeEventListener(TimerEvent.TIMER_COMPLETE, secondScreen);
                   removeChild(firstScreenShow);
                   secondScreenShow = new secondScreen();
                   addChild(secondScreenShow);
                   //secondScreenShow.iterateArray(rackOther);
                   applicationStart.start();
                   applicationStart.addEventListener(TimerEvent.TIMER_COMPLETE, firstScreen);
              }*/
              
              public function setFontFormat() {
                   //Text Formatting for Brand Name Field
                   brandnameTxt = new TextFormat();
                   brandnameTxt.font = fontNeeded;
                   brandnameTxt.color = 0x006699;
                   brandnameTxt.size = 20;
                   brandnameTxt.bold = true;
                   //
                   
                   //Text Formatting for Country/Material
                   detailsTxt = new TextFormat();
                   detailsTxt.font = fontNeeded;
                   detailsTxt.color = 0x006699;
                   detailsTxt.size = 10;
                   detailsTxt.bold = false;
                   
                   //Text Formatting for Country/Material
                   priceTxt = new TextFormat();
                   priceTxt.font = fontNeeded;
                   priceTxt.color = 0x9DE36E;
                   priceTxt.size = 20;
                   priceTxt.bold = true;
              }
              
              public function tweenBucket(bucket:MovieClip) {
                        var bucketImgTrans = new TransitionManager(bucket);
                        bucketImgTrans.startTransition({type:Zoom, direction:Transition.IN, duration:3, easing:Strong.easeOut});
              }
              
              private function iterateArray(contentInfo:Array) {
                   this.setFontFormat();
                   
                   for (var c:uint = 0; c < contentInfo.length; c++) {
                             var brand:TextField   = new TextField();
                             var country:TextField = new TextField();
                             var made:TextField    = new TextField();
                             var cost:TextField    = new TextField();
                             var img:Loader;     
                             brand.embedFonts        = true;
                             
                             img            = contentInfo[c].picture;
                             brand.text   = contentInfo[c].brand;
                             country.text = contentInfo[c].country;
                             made.text    = contentInfo[c].made;
                             cost.text    = contentInfo[c].cost;
                             
                             if (positionBuckets) {
                             bucket       = new bucket_left();     
                             //Align Data
                             bucket.y = position;
                             bucket.x = 70;
                             brand.x = -50;
                             brand.y = -35;
                             country.x  = -45;
                             country.y  = -10; 
                             made.x = -45;
                             made.y = 5;
                             cost.x = 45;
                             cost.y = -10;
                             img.x = -105;
                             img.y = -35;
                             brandnameTxt.align = TextFormatAlign.LEFT;
                           priceTxt.align         = TextFormatAlign.LEFT;
                             positionBuckets    = false; 
                             } else {
                             bucket       = new bucket_right();     
                             //Align Data
                             bucket.y = position;
                             bucket.x = 240;
                             brand.x = -50;
                             brand.y = -35;
                             country.x  = -45;
                             country.y  = -10; 
                             made.x = -45;
                             made.y = 5;
                             cost.x = -110;
                             cost.y = -10;
                             img.x = 70;
                             img.y = -35;
                             brandnameTxt.align = TextFormatAlign.RIGHT;
                             positionBuckets    = true;      
                             }
                             brand.setTextFormat(brandnameTxt);
                             country.setTextFormat(detailsTxt);
                             made.setTextFormat(detailsTxt);
                             cost.setTextFormat(priceTxt);
                             //this.tweenBucket(bucket);
                             addChildAt(bucket, 0);
                             bucket.addChild(DisplayObject(img));
                             bucket.addChild(brand);
                             bucket.addChild(country);
                             bucket.addChild(made);
                             bucket.addChild(cost);
                             position += 70;
                   }
              }
              
              private function populateInfo(event:Event) {
                   
                   //Incoming XML Data
                   xmlContainer = new XML(event.target.data);
                   xmlList = xmlContainer.product;
                   //
                   
                   //Variables to hold the string
                   var brandTxt:String;
                   var country:String;
                   var material:String;
                   var price:String;
                   var image:String;
                   
                   for (var i:uint = 0; i < xmlList.length(); i++) {     
                   if (xmlList.country.text()[i] == "USA") {
                   brandTxt = xmlList.brand.text()[i];
                   country = "product of " + xmlList.country.text()[i];
                   material = "made of " + xmlList.material.text()[i];
                   price = "$" + xmlList.price.text()[i];
                   image = xmlList.image.text()[i];
                   rackUSA.name = brandTxt.toLowerCase();
                   var imgVar:* = this.populateImages(image, "http://localhost/rackets/" + image); 
                   rackUSA.push({brand: brandTxt, country: country, made: material, cost: price, pic: image, picture: imgVar});
                   //addChild(DisplayObject(rackUSA[0].picture));
                   } else if (xmlList.country.text()[i] == "Other") {
                   brandTxt = xmlList.brand.text()[i];
                   country = "product of " + xmlList.country.text()[i];
                   material = "made of " + xmlList.material.text()[i];
                   price = "$" + xmlList.price.text()[i];
                   image = xmlList.image.text()[i];
                   var imgVarOther:* = this.populateImages(image, "http://localhost/rackets/" + image); 
                   rackOther.push({brand: brandTxt, country: country, made: material, cost: price, pic: image, picture: imgVarOther});
                   }
                   }
                   //this.startApplication();
              }
              
              
              
              
              
         }
    }
    

    If I clip named firstScreen how to fill with data from the rackUSA of the table, using the presented functions iterateArray

    I tried in a movieClip

    CustomClass.iterateArray (rackUSA); but it does not work

    Any suggestions

    I want to clarify the use cases.

    1 load data into the document class

    2. display a welcome message

    3 allow users to navigate through the products.

    Q1: Do you mean by 'welcome message' a user interface that allows to start navigation?

    Q2: Products appears the same way. I mean, consider that product display will have a uniform provision?

    If the answer to Q2 is Yes, I would:

    1. create a class that features products. Call ProductDisplay

    2 transfer data (subset of XML related to a particular product - in your case, it may be an object in the position of the table) in an instance of ProductDisplay

    I would like you to consider the following.

    It is a good practice to do OBJECT oriented programming class as little as possible each. This means that a class must have a very focused functionality. For example, ProductClass you perform tasks related to laying on the presentation of the product. With this in mind, it is best to delegate, say, loading image to a separate category. Believe me, when you do – your life will be much easier if you do features as granular as possible even if sometimes it feels like an overdose.

    So here's the sketch of your classes. I wrote it just to illustrate the idea. I did not check the code during execution is definitely buggy.

    Read my comments below also.

    It is a class of product image that load the image:

    
    package
    {
         import flash.display.Loader;
         import flash.display.Sprite;
         import flash.events.Event;
         import flash.events.ProgressEvent;
         import flash.net.URLRequest;
    
         public class ProductImage extends Sprite
         {
              // image url
              private var _url:String;
              // loader
              private var _loader:Loader;
              public function ProductImage()
              {
                   if (stage) init();
                   else addEventListener(Event.ADDED_TO_STAGE, init);
              }
    
              private function init(e:Event = null):void
              {
                   removeEventListener(Event.ADDED_TO_STAGE, init);
                   _loader = new Loader();
                   _loader.contentLoaderInfo.addEventListener(Event.COMPLETE, onLoad);
                   _loader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, onProgress);
                   _loader.load(new URLRequest(url));
              }
    
              private function onProgress(e:ProgressEvent):void
              {
                   // display progress if needed
              }
    
              private function onLoad(e:Event):void
              {
                   _loader.contentLoaderInfo.removeEventListener(Event.COMPLETE);
                   _loader.contentLoaderInfo.removeEventListener(ProgressEvent.PROGRESS, onProgress);
                   addChild(_loader);
    
              }
    
              public function get url():String { return _url; }
    
              public function set url(value:String):void
              {
                   _url = value;
              }
    
         }
    
    }
    

    ProdustDisplay class. Note how the product class is instantiated

    
    package
    {
         import flash.display.Sprite;
         import flash.events.Event;
    
         public class ProductDisplay extends Sprite
         {
              // hold the metadata
              private var _metaData:Object;
              // an object that holds the image
              private var _imageDisplay:ProductImage;
              public function ProductDisplay()
              {
                   if (stage) init();
                   else addEventListener(Event.ADDED_TO_STAGE, init);
              }
    
              private function init(e:Event = null):void
              {
                   removeEventListener(Event.ADDED_TO_STAGE, init);
                   // only if metadat is set - build interface
                   if (metaData) {
                        build();
                   }
    
              }
              // build interface
              private function build():void {
                   // place prduct image
                   _imageDisplay = new ProductImage();
                   _imageDisplay.url = metaData.image;
                   addChild(_imageDisplay);
                   // do the rest - like description, etc.
              }
              // function that accepts product metadata
              public function set metaData(metaObject:Object):void {
                   _metaData = metaObject;
              }
              // returns metadata
              public function get metaData():Object {
                   return _metaData;
    
              }
    
         }
    
    }
    

    Now in your document class, you can set an unlimited number of instances of ProductDisplay (as slides) and manipulate them. Again, this is just a sketch. Actual implementation of features and code will be somewhat different:

    var productDisplay:ProductDisplay = new ProductDisplay();
    productDisplay.metaData = rackUSA[2];
    
    

    Note: Your code has several inconsistencies - we need to go through them at another time. For now just digest these ideas. I understand that this will involve a refactoring on your part, but once you are done with it - things will fall in place fast.

  • Cannot get audio on PSE6 slideshow.  Audio available on other applications.

    Cannot get audio on PSE6 slideshow. Audio available on the other app

    The music files that have additional data added to them by a music management software (for example, added by iTunes album art), sometimes does not read. To use these files, create a copy of the audio file, delete the album art data and then use that file in the slide show.

    Thank you

    Catherine

  • Use only a part of a track when adding music to a slideshow

    Is it possible, and if so, what are the steps to add only a part of music followed by a slide show? With the help of photographs. 1,5.

    Thank you!

    Hello mjfriedman,

    Please use the Apple Support communities to post your question. Photo slideshows are a great way to show these great pictures of your collection. To use only a part of the track in your project, you will need to use another application to cut and edit the track first, before add you it to the slide show. GarageBand is an excellent application which can be used to change the part of the track that you want to use with your slide show. Please see the links below for more help.

    GarageBand help

    GarageBand for Mac: divide the regions in the field of securities

    Share the songs on iTunes

    Photos for OS x: creating and working with slideshows

    These links should help you with the sharing and use of this track in your project. The end result is going to be great!

    Have a great day.

  • Apple TV gen 4 slideshow of Mac?

    TThe manual describes iCloud slideshows but not when the photos come from Mac, which is described in the computer, not the Photo section.

    IS this possible?

    What would be the computer to connect the Apple TV to view even as Mac according to pictures?

    Thank you.

    Your Apple TV must be on the same network as your computer and file sharing must be allowed on the Mac.

    If you keep your images in iCloud photo library, you must use the same identifier Apple on your ATV.

    The first option is available on ATV via the computer application; the second through the Photos app.

  • Y at - it app in option for Photos?  This application is the application of most frustrating I've ever used

    Photos app frustrates me.  I can't do simple things such as importing a photo in an email without having to open the Photos app and drag and drop a picture in an open email.  Cannot even name a file.  It only adds a tag.  I want something like the photo app in Windows.

    Many, many, many alternatives - look in the App store on internet or on MacUpdate or other Mac software site

    But since you have not bothered to learn to use pictures, it is likely that any attempt to software to use without worrying to learn yu will also be all or most frustrating

    as two of the questions (sort of) ask you

    attaching photos to send is well documented and trivial - pictures called a pure help in the menu featured bar - open it and check out the Photos

    help on using Apple Mail

    Use e-mail to share photos

    You can use Mail to send photos directly from Photos. When you use E-mail to send pictures in e-mail, Photos sends the first account in your Mail preferences. If you have other e-mail accounts configured in Mail preferences, you can select which e-mail account to send email when you send it.

    Note: When you use E-mail to send a live picture, the Live Photo is transferred as a still image only.

    Tip: If you have a lot of files or files to send, you can use the mailbox to send. You must have an iCloud account to use the mailbox. You can use the mailbox to send attachments up to 5 GB in size directly from Mail on your Mac, or icloud.com/mail on your Mac or PC. All file types are supported and attachments do not count against your storage iCloud.

    Open pictures for me

    1. Select the photos you want to send. You can send photos from your photo library or an album, but not a slideshow or a project (for example, a book, card, or calendar).
    2. Click on the Share button in the toolbar and choose Mail.Mail opens a message with attached photos.
    3. Type the e-mail address of the recipient in the field, and then type a subject line in the subject field.
    4. Type a message if you want, and then click Send.
    5. Or other programs

    Share items with other applications and websites

    You can easily share your photos on a third party Web site by adding an extension for the site to your menu to share.

    When you open the share menu, you see a list of extensions that already uses pictures. To share with other applications, you can download the apps (and their sharing extensions) from the Mac App Store, then activate the extensions in the menu share.

    Open pictures for me

    1. Click on the Share button on the toolbar. The share menu opens and displays the pictures extensions already uses.
    2. Choose, share more in the menu. The Extensions of the system preferences pane opens.
    3. Click the share Menu on the left.
    4. Check the box next to each extension you want to add to the drop action.

    After you add the extension in the menu share, you can select photos and share them with third-party application or website.

  • You can mix an iPad photo slideshow?

    Trying all my pictures in a slide show with shuffle AirPlay

    I seems that the slideshow shuffle option went away with iOS 9 in the native application of Photos. You may be able to find another app on the store which can allow you to do this.

  • Any suggestions for a Mac Pro user when the application Photo falls out before opening?

    Here is the crash log:

    Process: Photos [28749]

    Path: /Applications/Photos.app/Contents/MacOS/Photos

    ID: com.apple.Photos

    Version: 1.5 (370.42.0)

    Generation information: PhotoApp-370042000000000 ~ 1

    Code type: X 86-64 (Native)

    Parent process:? [1]

    Officials: Photos [28749]

    User ID: 501

    Date/time: 2016-05-03 08:22:24.576-0500

    OS version: Mac OS X 10.11.4 (15E65)

    Report Version: 11

    Anonymous UUID: E541F0C0-91E1-8BC7-BEAF-3E0C702F1F72

    Sleep/wake UUID: 39BAC834-F30C-4C43-9638-B80EEB8B94F0

    Time since started awake: 460000 seconds

    Wake time: facts seconds

    Integrity of system protection: enabled

    Crashed thread: sending 5 queue: OpenGL context pool

    Exception type: EXC_CRASH (SIGABRT)

    Exception codes: 0 x 0000000000000000, 0 x 0000000000000000

    Note the exception: EXC_CORPSE_NOTIFY

    Request for clarification:

    Failure of the assertion in + [PAOpenGLDevice _sharedContext], /Library/Caches/com.apple.xbs/Sources/PhotoApp/PhotoApp-370.42/lib/paimaging/Ph otoApps / PAOpenGLDevice.m:220

    Failed to create the shared context: invalid pixel format

    Abort() called

    Thread 0: Dispatch queue: com.apple.main - wire

    0 com.apple.CoreFoundation 0x00007fff932a68d6 DYLD STUB$ $object_getClass + 0

    1 com.apple.CoreFoundation 0x00007fff9316c94c-[__NSCFSet Member:] + 28

    2 com.apple.Foundation 0x00007fff935880ff _NSKeyValueObservationInfoCreateByAdding + 1100

    3 com.apple.Foundation 0x00007fff93587acf-[NSObject (NSKeyValueObserverRegistration) _addObserver:forProperty:options:context:] + 463

    4 com.apple.Foundation 0x00007fff935868f9-[NSObject (NSKeyValueObserverRegistration) addObserver:forKeyPath:options:context:] + 103

    5 com.apple.AppKit 0x00007fff983d1143-[NSBinder _updateObservingRegistration:] + 685

    6 com.apple.AppKit 0x00007fff983d03e6-[NSBinder establishConnection] + 317

    7 com.apple.AppKit 0x00007fff983c9865-[NSObject (NSKeyValueBindingCreation) link: toObject:withKeyPath:options:] + 758

    8 com.apple.AppKit 0x00007fff9833ae98-[NSIBObjectData nibInstantiateWithOwner:options:topLevelObjects:] + 1041

    com.apple.AppKit 0x00007fff98331e91 9 loadNib + 384

    10 com.apple.AppKit 0x00007fff983313b7 + [NSBundle (NSNibLoading) _loadNibFile:nameTable:options:withZone:ownerBundle:] + 300

    11 com.apple.AppKit 0x00007fff98331180-[NSBundle (NSNibLoading) loadNibNamed:owner:topLevelObjects:] + 201

    12 com.apple.AppKit 0x00007fff98330f4c + [NSBundle (NSNibLoading) loadNibNamed:owner:] + 344

    13 com.apple.AppKit 0x00007fff9832c1a6 NSApplicationMain + 466

    14 libdyld.dylib 0x00007fff997525ad start + 1

    Thread 1: dispatch queue: OpenGL context pool

    0 libsystem_kernel.dylib 0x00007fff8c022fae semaphore_wait_trap + 10

    1 libsystem_platform.dylib 0x00007fff90280ce8 _os_semaphore_wait + 16

    2 libdispatch.dylib 0x00007fff8b8213bd dispatch_once_f + 253

    3 com.apple.photo.PAImaging 0x0000000104aee295 + [PAOpenGLDevice sharedContext] + 98

    4 com.apple.photo.PAImaging 0x0000000104aee031-[PAOpenGLContext initWithDevice:] + 146

    5 com.apple.photo.PAImaging 0x0000000104aedf85-[PAOpenGLContextPool _newContext] + 74

    6 com.apple.photo.PAImaging 0x0000000104aede1e __38-[PAOpenGLContextPool checkOutContext] _block_invoke + 358

    7 libdispatch.dylib 0x00007fff8b82140b _dispatch_client_callout + 8

    8 libdispatch.dylib 0x00007fff8b8229f2 _dispatch_barrier_sync_f_invoke + 74

    9 com.apple.photo.PAImaging 0x0000000104aedc76-[PAOpenGLContextPool checkOutContext] + 161

    com.apple.photo.PAImaging 10 0x0000000104aedb84-[PAOpenGLContextPool executeBlockWithContext:] + 52

    11 com.apple.photo.PAImaging 0x0000000104aedb15-[PAOpenGLDevice _openGLProperties] + 162

    12 com.apple.photo.PAImaging 0x0000000104aed6e7-[PAOpenGLDevice _deviceProperties] + 123

    13 com.apple.photo.PAImaging 0x0000000104aed460-[PAOpenGLDevice _lazyInitOnce] + 50

    14 com.apple.photo.PAImaging 0x0000000104aed420 __39-[PAOpenGLDevice _lazyInitOnceIfNeeded] _block_invoke + 41

    15 libdispatch.dylib 0x00007fff8b82140b _dispatch_client_callout + 8

    16 libdispatch.dylib 0x00007fff8b8229f2 _dispatch_barrier_sync_f_invoke + 74

    17 com.apple.photo.PAImaging 0x0000000104aed3e6-[PAOpenGLDevice _lazyInitOnceIfNeeded] + 89

    18 libdispatch.dylib 0x00007fff8b82c93d _dispatch_call_block_and_release + 12

    19 libdispatch.dylib 0x00007fff8b82140b _dispatch_client_callout + 8

    20 libdispatch.dylib 0x00007fff8b82529b _dispatch_root_queue_drain + 1890

    21 0x00007fff8b824b00 _dispatch_worker_thread3 + 91 libdispatch.dylib

    22 libsystem_pthread.dylib 0x00007fff902784de _pthread_wqthread + 1129

    23 libsystem_pthread.dylib 0x00007fff90276341 start_wqthread + 13

    Thread 2: Dispatch queue: com.apple.libdispatch - Manager

    0 libsystem_kernel.dylib 0x00007fff8c029efa kevent_qos + 10

    1 libdispatch.dylib 0x00007fff8b827165 _dispatch_mgr_invoke + 216

    2 libdispatch.dylib 0x00007fff8b826dcd _dispatch_mgr_thread + 52

    Thread 3: Dispatch queue: OpenGL context pool

    0 libsystem_kernel.dylib 0x00007fff8c022fae semaphore_wait_trap + 10

    1 libsystem_platform.dylib 0x00007fff90280ce8 _os_semaphore_wait + 16

    2 libdispatch.dylib 0x00007fff8b8213bd dispatch_once_f + 253

    3 com.apple.photo.PAImaging 0x0000000104aee295 + [PAOpenGLDevice sharedContext] + 98

    4 com.apple.photo.PAImaging 0x0000000104aee031-[PAOpenGLContext initWithDevice:] + 146

    5 com.apple.photo.PAImaging 0x0000000104aedf85-[PAOpenGLContextPool _newContext] + 74

    6 com.apple.photo.PAImaging 0x0000000104aede1e __38-[PAOpenGLContextPool checkOutContext] _block_invoke + 358

    7 libdispatch.dylib 0x00007fff8b82140b _dispatch_client_callout + 8

    8 libdispatch.dylib 0x00007fff8b8229f2 _dispatch_barrier_sync_f_invoke + 74

    9 com.apple.photo.PAImaging 0x0000000104aedc76-[PAOpenGLContextPool checkOutContext] + 161

    com.apple.photo.PAImaging 10 0x0000000104aedb84-[PAOpenGLContextPool executeBlockWithContext:] + 52

    11 com.apple.photo.PAImaging 0x0000000104aedb15-[PAOpenGLDevice _openGLProperties] + 162

    12 com.apple.photo.PAImaging 0x0000000104aed6e7-[PAOpenGLDevice _deviceProperties] + 123

    13 com.apple.photo.PAImaging 0x0000000104aed460-[PAOpenGLDevice _lazyInitOnce] + 50

    14 com.apple.photo.PAImaging 0x0000000104aed420 __39-[PAOpenGLDevice _lazyInitOnceIfNeeded] _block_invoke + 41

    15 libdispatch.dylib 0x00007fff8b82140b _dispatch_client_callout + 8

    16 libdispatch.dylib 0x00007fff8b8229f2 _dispatch_barrier_sync_f_invoke + 74

    17 com.apple.photo.PAImaging 0x0000000104aed3e6-[PAOpenGLDevice _lazyInitOnceIfNeeded] + 89

    18 libdispatch.dylib 0x00007fff8b82c93d _dispatch_call_block_and_release + 12

    19 libdispatch.dylib 0x00007fff8b82140b _dispatch_client_callout + 8

    20 libdispatch.dylib 0x00007fff8b82529b _dispatch_root_queue_drain + 1890

    21 0x00007fff8b824b00 _dispatch_worker_thread3 + 91 libdispatch.dylib

    22 libsystem_pthread.dylib 0x00007fff902784de _pthread_wqthread + 1129

    23 libsystem_pthread.dylib 0x00007fff90276341 start_wqthread + 13

    Thread 4:

    0 libsystem_kernel.dylib 0x00007fff8c0295e2 __workq_kernreturn + 10

    1 libsystem_pthread.dylib 0x00007fff90278578 _pthread_wqthread + 1283

    2 libsystem_pthread.dylib 0x00007fff90276341 start_wqthread + 13

    Thread 5 crashed: dispatch queue: OpenGL context pool

    0 libsystem_kernel.dylib 0x00007fff8c028f06 __pthread_kill + 10

    1 libsystem_pthread.dylib 0x00007fff9027b4ec pthread_kill + 90

    2 libsystem_c.dylib 0x00007fff973136e7 demolition + 129

    3 com.apple.PhotoFoundation 0x000000010475b695-[PFAssertionPolicyAbort notifyAssertion:] + 58

    4 com.apple.PhotoFoundation 0x000000010475af7e-[PFAssertionPolicyComposite notifyAssertion:] + 223

    5 com.apple.PhotoFoundation 0x000000010475b17a-[PFAssertionPolicyUnique notifyAssertion:] + 236

    6 com.apple.PhotoFoundation 0x000000010475a70d-[PFAssertionHandler handleFailureInFunction:file:lineNumber:description:arguments:] + 174

    7 com.apple.PhotoFoundation 0x000000010475a2f5 _PFAssertFailHandler + 282

    8 com.apple.photo.PAImaging 0x0000000104aee321 + [PAOpenGLDevice _sharedContext] + 108

    9 com.apple.photo.PAImaging 0x0000000104aee2ac __31 + [PAOpenGLDevice sharedContext] _block_invoke + 21

    10 libdispatch.dylib 0x00007fff8b82140b _dispatch_client_callout + 8

    11 libdispatch.dylib 0x00007fff8b821303 dispatch_once_f + 67

    12 com.apple.photo.PAImaging 0x0000000104aee295 + [PAOpenGLDevice sharedContext] + 98

    13 com.apple.photo.PAImaging 0x0000000104aee031-[PAOpenGLContext initWithDevice:] + 146

    14 com.apple.photo.PAImaging 0x0000000104aedf85-[PAOpenGLContextPool _newContext] + 74

    15 com.apple.photo.PAImaging 0x0000000104aede1e __38-[PAOpenGLContextPool checkOutContext] _block_invoke + 358

    16 libdispatch.dylib 0x00007fff8b82140b _dispatch_client_callout + 8

    17 libdispatch.dylib 0x00007fff8b8229f2 _dispatch_barrier_sync_f_invoke + 74

    18 com.apple.photo.PAImaging 0x0000000104aedc76-[PAOpenGLContextPool checkOutContext] + 161

    19 com.apple.photo.PAImaging 0x0000000104aedb84-[PAOpenGLContextPool executeBlockWithContext:] + 52

    20 com.apple.photo.PAImaging 0x0000000104aedb15-[PAOpenGLDevice _openGLProperties] + 162

    21 com.apple.photo.PAImaging 0x0000000104aed6e7-[PAOpenGLDevice _deviceProperties] + 123

    22 com.apple.photo.PAImaging 0x0000000104aed460-[PAOpenGLDevice _lazyInitOnce] + 50

    23 com.apple.photo.PAImaging 0x0000000104aed420 __39-[PAOpenGLDevice _lazyInitOnceIfNeeded] _block_invoke + 41

    24 libdispatch.dylib 0x00007fff8b82140b _dispatch_client_callout + 8

    25 libdispatch.dylib 0x00007fff8b8229f2 _dispatch_barrier_sync_f_invoke + 74

    26 com.apple.photo.PAImaging 0x0000000104aed3e6-[PAOpenGLDevice _lazyInitOnceIfNeeded] + 89

    27 libdispatch.dylib 0x00007fff8b82c93d _dispatch_call_block_and_release + 12

    28 libdispatch.dylib 0x00007fff8b82140b _dispatch_client_callout + 8

    29 libdispatch.dylib 0x00007fff8b82529b _dispatch_root_queue_drain + 1890

    30 0x00007fff8b824b00 _dispatch_worker_thread3 + 91 libdispatch.dylib

    31 libsystem_pthread.dylib 0x00007fff902784de _pthread_wqthread + 1129

    32 libsystem_pthread.dylib 0x00007fff90276341 start_wqthread + 13

    Line 6:

    0 libsystem_kernel.dylib 0x00007fff8c0295e2 __workq_kernreturn + 10

    1 libsystem_pthread.dylib 0x00007fff90278578 _pthread_wqthread + 1283

    2 libsystem_pthread.dylib 0x00007fff90276341 start_wqthread + 13

    Line 7:

    0 libsystem_kernel.dylib 0x00007fff8c0295e2 __workq_kernreturn + 10

    1 libsystem_pthread.dylib 0x00007fff90278578 _pthread_wqthread + 1283

    2 libsystem_pthread.dylib 0x00007fff90276341 start_wqthread + 13

    Thread 8: Dispatch queue: com.apple.root.user - Insider-qos

    0 libsystem_malloc.dylib 0x00007fff9cf76bda tiny_malloc_from_free_list + 1310

    1 libsystem_malloc.dylib 0x00007fff9cf75705 szone_malloc_should_clear + 292

    2 libsystem_malloc.dylib 0x00007fff9cf755a1 malloc_zone_malloc + 71

    3 com.apple.CoreFoundation 0x00007fff930d54bd _CFRuntimeCreateInstance + 301

    4 com.apple.CoreFoundation 0x00007fff930d8160 __CFStringCreateImmutableFunnel3 + 2672

    5 com.apple.CoreFoundation 0x00007fff930e792b CFStringCreateWithBytes + 59

    6 com.apple.CoreFoundation 0x00007fff930e7861 CreateStringFromFileSystemRepresentationByAddingPercentEscapes + 673

    7 com.apple.CoreFoundation 0x00007fff930e2e10 _CFURLCreateWithFileSystemPath + 2432

    8 com.apple.ColorSync 0x00007fff8859b5f3 ColorSyncProfileCacheIterateProfiles + 1610

    9 com.apple.PhotosImagingFoundation 0x00000001038f90bb + [IPAColorProfile (Management) loadProfilesWithError:] + 160

    10 com.apple.photo.PAImaging 0x0000000104ae9ed9 __42 + [PAImaging _initializeImaging_earlyTasks] _block_invoke_7 + 40

    11 com.apple.photo.PAImagingCore 0x0000000104f070e6 __32-[PALauncher enqueueTask:block:] + 50 _block_invoke29

    12 libdispatch.dylib 0x00007fff8b82c93d _dispatch_call_block_and_release + 12

    13 libdispatch.dylib 0x00007fff8b82140b _dispatch_client_callout + 8

    14 libdispatch.dylib 0x00007fff8b82529b _dispatch_root_queue_drain + 1890

    15 libdispatch.dylib 0x00007fff8b824b00 _dispatch_worker_thread3 + 91

    16 libsystem_pthread.dylib 0x00007fff902784de _pthread_wqthread + 1129

    17 libsystem_pthread.dylib 0x00007fff90276341 start_wqthread + 13

    Wire 9:

    0 libsystem_kernel.dylib 0x00007fff8c0295e2 __workq_kernreturn + 10

    1 libsystem_pthread.dylib 0x00007fff90278578 _pthread_wqthread + 1283

    2 libsystem_pthread.dylib 0x00007fff90276341 start_wqthread + 13

    Thread 10:

    0 libsystem_kernel.dylib 0x00007fff8c0295e2 __workq_kernreturn + 10

    1 libsystem_pthread.dylib 0x00007fff90278578 _pthread_wqthread + 1283

    2 libsystem_pthread.dylib 0x00007fff90276341 start_wqthread + 13

    Thread 5 crashed with X 86 State of Thread (64-bit):

    Rax: 0 x 0000000000000000 rbx: 0000000000000006 rcx 0 x: 0x000070000021c5f8 rdx: 0 x 0000000000000000

    RDI: 0x0000000000003c13 rsi: 0 x 0000000000000006 PBR: RER 0x000070000021c620: 0x000070000021c5f8

    R8: 0 x 0000000000000017 r9: 0 x 0000000000000005 r10: 0x000000000c000000 r11: 0 x 0000000000000206

    A12: 0 x 0000000000000006 r13: 0x00007fc36c806f10 r14: 0x000070000021d000 r15: 0x00000001047badbb

    RIP: 0x00007fff8c028f06 rfl: 0 x 0000000000000206 cr2: 0x00007fff7a8ca008

    Logical CPU: 0

    Error code: 0 x 02000148

    Trap number: 133

    Binary images:

    0x102f0d000 - 0x103597fff com.apple.Photos (1.5 - 370.42.0) /Applications/Photos.app/Contents/MacOS/Photos < 5C73BADB-E1B5-3993-93DE-835C474AA77C >

    0x10381b000 - 0x10385cffb com.apple.PhotosPlayer (1.0 - 72.1.22) < 3A48BDE2-B851-336B-87FE-738C0818B257 > /System/Library/PrivateFrameworks/PhotosPlayer.framework/Versions/A/PhotosPlaye r

    0x1038ab000 - 0x1038acff7 com.apple.PhotoKit.Photos (1.5 - 370.42.0) /System/Library/Frameworks/Photos.framework/Versions/A/Photos < F31B0BA7-0721-3FD9-AD4B-3F3473530163 >

    0x1038b6000 - 0x1038befff com.apple.PhotosUI (1.5 - 370.42.0) /System/Library/Frameworks/PhotosUI.framework/Versions/A/PhotosUI < 26513FA1-51DA-3CFD-982F-6FB4B3C52C5C >

    0x1038ce000 - 0x1038cefff com.apple.PhotoLibraryServices (1.5 - 370.42.0) eworks/PhotoLibraryServices.framework/Versions/A/PhotoLibraryServices /System/Library/PrivateFrameworks/PhotoLibraryPrivate.framework/Versions/A/Fram < 8B02EA20-AD6C-3CAF-86CE-0318E0E53079 >

    0x1038d4000 - 0x103913fff com.apple.PhotosImagingFoundation (1.5 - 370.42.0) eworks/PhotosImagingFoundation.framework/Versions/A/PhotosImagingFoundation /System/Library/PrivateFrameworks/PhotoLibraryPrivate.framework/Versions/A/Fram < C91F734C-2E49-31E5-A6F4-35BF21283F73 >

    0x10394f000 - 0x103cadfff com.apple.Slideshows (4.4.0 - 1556.17) /System/Library/PrivateFrameworks/Slideshows.framework/Versions/A/Slideshows < C4CBBF38-C0F4-3A27-B534-C679A431EEE7 >

    0x103e8b000 - 0x104198ff7 com.apple.PhotoLibraryPrivate (1.5 - 370.42.0) oLibraryPrivate /System/Library/PrivateFrameworks/PhotoLibraryPrivate.framework/Versions/A/Phot < 1F73A4BA-41D9-3D25-B527-1DE4813F6FA8 >

    0x1043c2000 - 0x104420ff7 com.apple.ShareServicesCore (1.5 - 370.42.0) eworks/ShareServicesCore.framework/Versions/A/ShareServicesCore /System/Library/PrivateFrameworks/PhotoLibraryPrivate.framework/Versions/A/Fram < 6E3114A1-EA8E-3A1F-8187-DF41B4F45A8D >

    0 x 104474000 - 0x10451afff com.apple.swe.UXKit (1.5 - 370.42.0) eworks/UXKit.framework/Versions/A/UXKit /System/Library/PrivateFrameworks/PhotoLibraryPrivate.framework/Versions/A/Fram < F4DED4E8-2489-3A34-B420-E37F7DE77D07 >

    0x1045a6000 - 0x1045c0ff7 com.apple.PMR (1.5 - 370.42.0) eworks/PMR.framework/Versions/A/PMR /System/Library/PrivateFrameworks/PhotoLibraryPrivate.framework/Versions/A/Fram < 6EF318AB-4D37-36B5-9F2A-00F135CA24F3 >

    0x1045e0000 - 0x1046a3ff7 com.apple.photos.mondrian (1.5 - 370.42.0) eworks/Mondrian.framework/Versions/A/Mondrian /System/Library/PrivateFrameworks/PhotoLibraryPrivate.framework/Versions/A/Fram < E206F5FC-E866-36FF-9886-0716A2B5097C >

    0x10472d000 - 0x1047ddff7 com.apple.PhotoFoundation (1.5 - 370.42.0) eworks/PhotoFoundation.framework/Versions/A/PhotoFoundation /System/Library/PrivateFrameworks/PhotoLibraryPrivate.framework/Versions/A/Fram < B18D9A5B-6692-3788-9C22-FA3C2E4A4FFE >

    0 x 104888000 - 0x104a1cff7 com.apple.geode (1.5 - 370.42.0) eworks/Geode.framework/Versions/A/Geode /System/Library/PrivateFrameworks/PhotoLibraryPrivate.framework/Versions/A/Fram < 33C648AF-649B-36F2-A132-356562EABE54 >

    0x104ae7000 - 0x104d15fff com.apple.photo.PAImaging (1.5 - 370.42.0) eworks/PAImaging.framework/Versions/A/PAImaging /System/Library/PrivateFrameworks/PhotoLibraryPrivate.framework/Versions/A/Fram < 7580111B-3E7A-3DE2-9399-2040BB9E8A60 >

    0x104f05000 - 0x104fb0fff com.apple.photo.PAImagingCore (1.5 - 370.42.0) eworks/PAImagingCore.framework/Versions/A/PAImagingCore /System/Library/PrivateFrameworks/PhotoLibraryPrivate.framework/Versions/A/Fram < 8D2010BF-3448-342E-B6F0-BD0BAFE0FE32 >

    0x1050ca000 - 0x1050f8fff com.apple.iLifeKit (1.5 - 370.42.0) eworks/iLifeKit.framework/Versions/A/iLifeKit /System/Library/PrivateFrameworks/PhotoLibraryPrivate.framework/Versions/A/Fram < 56A9C3E1-191C-3C83-8534-C070FEDE77E7 >

    0x10512a000 - 0x105220fff com.apple.RedRock (1.5 - 370.42.0) eworks/RedRock.framework/Versions/A/RedRock /System/Library/PrivateFrameworks/PhotoLibraryPrivate.framework/Versions/A/Fram < C76E79B7-845E-308B-851F-82D7C9E101C6 >

    0 x 105303000 - 0x105700ff7 com.apple.PhotoPrintProduct (1.0 - 625.14) < 4CF51E4B-2404-3146-8EF1-0893D976DF02 > /System/Library/PrivateFrameworks/PhotoLibraryPrivate.framework/Versions/A/Fram eworks/PhotoPrintProduct.framework/Versions/A/PhotoPrintProduct

    0x1059aa000 - 0x105a63ff7 com.apple.PhotoPrintProductStore (1.0 - 127) < 0A8764B8-A3FD-361C-B75E-7F357028A7C4 > /System/Library/PrivateFrameworks/PhotoLibraryPrivate.framework/Versions/A/Fram eworks/PhotoPrintProductStore.framework/Versions/A/PhotoPrintProductStore

    0x105b01000 - 0x105b45fff com.apple.CloudPhotoServices (1.5 - 370.42.0) < B8B98CFD-B587-3490-A8F0-29C6C727DD17 > /System/Library/PrivateFrameworks/CloudPhotoServices.framework/Versions/A/Cloud Photoservice

    0x105b8b000 - 0x105b91fff com.apple.photo.MediaConversionService (1.5 - 370.42.0) eworks/MediaConversionService.framework/Versions/A/MediaConversionService /System/Library/PrivateFrameworks/PhotoLibraryPrivate.framework/Versions/A/Fram < 5790B0B5-B153-3C67-9BC5-42899CC087EC >

    0x105b9e000 - 0x105bcdff7 com.apple.iTunesLibrary (12.3.3 - 12.3.3.17) /Library/Frameworks/iTunesLibrary.framework/Versions/A/iTunesLibrary < 12FA5EF5-7CAA-3EDA-8590-043D8789DB99 >

    0x105be8000 - 0x105c22ff7 com.apple.opusosx.OpusFoundation (1.0 - 1556.17) < CB7C13C3-465B-3DF1-8215-9695BFF5628A > /System/Library/PrivateFrameworks/Slideshows.framework/Versions/A/Frameworks/Op usFoundation.framework/Versions/A/OpusFoundation

    0x105c89000 - 0x105d67fff com.apple.opusosx.OpusKit (1.0 - 1556.17) < E0EAD6E1-684C-34E6-8E92-211FC055FC18 > /System/Library/PrivateFrameworks/Slideshows.framework/Versions/A/Frameworks/Op usKit.framework/Versions/A/OpusKit

    0x105ed9000 - 0x105eeefff com.apple.MediaLibrary (1.2.1 - 721) < 0E4E17C0-2B03-3C6A-AB9A-EA5E11830245 > /System/Library/Frameworks/MediaLibrary.framework/Versions/A/MediaLibrary

    0x105f10000 - 0x1060c0ff7 com.apple.SpriteKit (< B4945592-2BC5-3B1A-9E36-C2EFA14864C2 > /System/Library/Frameworks/SpriteKit.framework/Versions/A/SpriteKit 1.0 - 1.).

    0 x 106182000 - 0x10619efff com.apple.Jet (< 7069AB0A-4000-3D05-A0F1-7781A017B66A > /System/Library/PrivateFrameworks/Jet.framework/Versions/A/Jet 1.0 - 1.).

    0x1061c0000 - 0x106217ff7 com.apple.PhysicsKit (< B6229B9F-2702-393F-B03A-E67A8532867C > /System/Library/PrivateFrameworks/PhysicsKit.framework/Versions/A/PhysicsKit 1.0 - 1.).

    0x10624c000 - 0x106272ff7 com.apple.audio.OpenAL /System/Library/Frameworks/OpenAL.framework/Versions/A/OpenAL < 9C322240-9854-3114-98ED-6CAABD436EEB > (1.8 - 1.8)

    0 x 106285000 - 0x106746fff com.apple.SceneKit /System/Library/Frameworks/SceneKit.framework/Versions/A/SceneKit < E273A577-6E22-3F68-8A03-0B74EF299408 > (5.0 - 293)

    0x106a26000 - 0x106a65ff7 com.apple.MomentsLibrary (1.5 - 370.42.0) eworks/MomentsLibrary.framework/Versions/A/MomentsLibrary /System/Library/PrivateFrameworks/PhotoLibraryPrivate.framework/Versions/A/Fram < 2638840E-B670-3276-AEC6-00E392192F21 >

    0x106a95000 - 0x106abcff7 com.apple.Moments (1.5 - 370.42.0) eworks/Moments.framework/Versions/A/Moments /System/Library/PrivateFrameworks/PhotoLibraryPrivate.framework/Versions/A/Fram < 9723617A-C695-3E1E-B17A-EC62AF5A477A >

    0x106ae4000 - 0x106b42ff7 (4, 5-4, 5) com.apple.vision.Faces < D3DD7E0F-39B2-35FF-B514-DB1701A507D2 > /System/Library/PrivateFrameworks/PhotoLibraryPrivate.framework/Versions/A/Fram eworks/Faces.framework/Versions/A/Faces

    0x106b94000 - 0x106b96fff com.apple.LibraryRepair (1.0-1) < 557B42CA-BB57-3E23-A96D-2A8856CE3B45 > /System/Library/PrivateFrameworks/LibraryRepair.framework/Versions/A/LibraryRep air

    0x106ba0000 - 0x107efbffb com.apple.vision.FaceCoreEmbedded (3.9.10 - 3.9.10) < 66FD7C1F-CB45-30B2-8519-ACA9C9913AA3 > /System/Library/PrivateFrameworks/PhotoLibraryPrivate.framework/Versions/A/Fram eworks/Faces.framework/Versions/A/Frameworks/FaceCoreEmbedded.framework/Versions/A/FaceCoreEmbedded

    0 108163000 - 0x1081a4ff7 com.apple.ist.ds.appleconnect.external x (2.0.2 - 28) < 71602714-9E72-31CD-AA61-4ACF694A2DAF > /System/Library/PrivateFrameworks/ACDEClient.framework/Versions/A/ACDEClient

    0x10ba84000 - 0x10bd14ff7 com.apple.RawCamera.bundle /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera < 96617D7F-437C-31AB-B413-ADC079469054 > (6.19 - 844)

    0x10c4a0000 - 0x10c9f7ff7 com.apple.driver.AppleIntelHD5000GraphicsGLDriver (10.14.58 - 10.1.4) /System/Library/Extensions/AppleIntelHD5000GraphicsGLDriver.bundle/Contents/Mac < 603F465A-DB27-3BDC-A702-9107EA5CF3A4 > OS/AppleIntelHD5000GraphicsGLDriver

    0x7fff6cb4a000 - 0x7fff6cb810d7 dyld (360.21) < D9B236BC-4AC1-325F-B3EF-3F06DBDA7119 >/usr/lib/dyld

    0x7fff872cb000 - 0x7fff87342fff com.apple.ShareKit /System/Library/PrivateFrameworks/ShareKit.framework/Versions/A/ShareKit < 9EB92898-4A5F-3F12-9CCA-A40BBD7F1DD4 > (1.0 - 454.21)

    0x7fff87343000 - 0x7fff8858efeb com.apple.CoreGraphics (1.600.0 - 957) < 8C9F8E1A-274C-36CE-93FB-49906A9B9EE2 > /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics

    0x7fff8858f000 - 0x7fff88625fff com.apple.ColorSync (4.9.0 - 4.9.0) < 8FC37E20-6579-3CB2-9D49-BC39FC38DF87 > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync

    0x7fff88626000 - 0x7fff888c0fff com.apple.security (7.0 - 57337.40.85) /System/Library/Frameworks/Security.framework/Versions/A/Security < 7C5B8DEF-3D02-3410-9BD3-2B1251F84D4B >

    0x7fff888c1000 - 0x7fff888c5ff7 com.apple.icloud.FMCoreUI (< BF81E749-CC8B-3189-81B8-7C8153779ACE > /System/Library/PrivateFrameworks/FMCoreUI.framework/Versions/A/FMCoreUI 1.0 - 1.).

    0x7fff888ea000 - 0x7fff88921fff com.apple.CharacterPicker (1.0-1) < 09CCA7A1-7F19-37D0-A418-10CF40CAC655 > /System/Library/PrivateFrameworks/CharacterPicker.framework/Versions/A/Characte rPicker

    0x7fff88922000 - 0x7fff88931ff7 com.apple.ContactsAutocompleteUI (1.0-1) < E3C1F61B-1AD5-362D-A278-BBBC68D65CC2 > /System/Library/PrivateFrameworks/ContactsAutocompleteUI.framework/Versions/A/C ontactsAutocompleteUI

    0x7fff88958000 - 0x7fff88c3dffb com.apple.CoreServices.CarbonCore (1136.2 - 1136.2) < 2DBAFC9A-6CD6-351D-B1F4-87D81AA6D640 > /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore

    0x7fff88c43000 - 0x7fff88d67fff libsqlite3.dylib (216,4) < 280D67B8-F93D-3587-A146-19F36C817548 > /usr/lib/libsqlite3.dylib

    0x7fff88d68000 - 0x7fff88d97ffb libsystem_m.dylib (3105) < 08E1A4B2-6448-3DFE-A58C-ACC7335BE7E4 > /usr/lib/system/libsystem_m.dylib

    0x7fff88df5000 - 0x7fff88e10ff7 libCRFSuite.dylib (34) < 078B4CD8-6A8C-3067-B2BA-0C2A0BAB8AC3 > /usr/lib/libCRFSuite.dylib

    0x7fff88e11000 - com.apple.DiskManagement (8.1 - 952) < 6E0FBC67-47E0-3669-8065-ECA8C67098A8 > /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManag-0x7fff88e61ff7

    0x7fff88e6a000 - 0x7fff88e75ff7 (60075.40.2) libcommonCrypto.dylib < B9D08EB8-FB35-3F7B-8A1C-6FCE3F07B7E7 > /usr/lib/system/libcommonCrypto.dylib

    0x7fff88e76000 - 0x7fff88e7cfff com.apple.FamilyCircle (1.0?) - e /System/Library/PrivateFrameworks/FamilyCircle.framework/Versions/A/FamilyCircl < A52D160E-4DA5-3778-82D5-79A41483E5F1 >

    0x7fff88e8b000 - 0x7fff88eaeff7 com.apple.Network (< 7BA0CFFD-E22A-3FE0-BF4C-F1947D72466B > /System/Library/PrivateFrameworks/Network.framework/Versions/A/Network 1.0 - 1.).

    0x7fff88eed000 - 0x7fff88f1eff7 libtidy. A.dylib (15,17) < 6859415D-7A43-384E-ABDD-AA6B2AA9FDCD >/usr/lib/libtidy. A.dylib

    0x7fff88f1f000 - 0x7fff88f7dfff com.apple.SystemConfiguration (1, 14 - 1.14) < 10082F58-6190-3A7C-8B6C-C12B16DC793A > /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi setting

    0x7fff88f7e000 - 0x7fff88fd3fff com.apple.AE (701-701) < AD492742-F884-386B-A450-FAC281B9FFA4 > /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE

    0x7fff88fd5000 - 0x7fff88febfff com.apple.CoreMediaAuthoring (2.2 - 953) < 06C2E0E2-BA5C-3BB1-8DD7-55613EDD654D > /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring

    0x7fff8905b000 - 0x7fff89084ffb libRIP.A.dylib (957) < 5F18F20D-5921-3314-A9F8-F1B1CB62C83D > /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A .dylib

    0x7fff89085000 - 0x7fff890bdff7 com.apple.Accounts /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts < 5CB5B8DD-BAC3-3924-8908-AD1DF4F2C6AB > (113-113)

    0x7fff89151000 - 0x7fff892b8fff libBLAS.dylib (1162.2) < A1398FE0-39D2-33EA-9A0F-B2644EEA29A0 > /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib

    0x7fff892b9000 - 0x7fff892bcfff com.apple.IOSurface (108.2.1 - 108.2.1) /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface < A0037B0A-277A-393E-9BF6-688595BD564D >

    0x7fff892bd000 - 0x7fff892c2fff com.apple.ImageCapture /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture < ACECF0B7-7D92-3A22-BF47-E8FADF4C5378 > (9, 0-9, 0). framework/Versions/A/ImageCapture

    0x7fff892c3000 - 0x7fff896bffff libLAPACK.dylib (1162.2) < 987E42B0-5108-3065-87F0-9DF7616A8A06 > /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib

    0x7fff896c0000 - 0x7fff8983efff com.apple.UIFoundation (1.0 - 436.1) < AABB5267-E7B7-3D75-B051-E665BDA8DEF4 > /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundatio n

    0x7fff8983f000 - 0x7fff89edeff7 com.apple.JavaScriptCore (11601 - 11601.5.17) /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore < E12A9CB4-C807-3602-8357-6037579F6A13 >

    0x7fff89edf000 - 0x7fff89eedfff com.apple.ToneLibrary (< AF05AF34-9BC4-3BA6-81C1-7420F22C9D7D > /System/Library/PrivateFrameworks/ToneLibrary.framework/Versions/A/ToneLibrary 1.0 - 1.).

    0x7fff89eee000 - 0x7fff89f06fef libcompression.dylib (28) < E7601B62-1053-369D-8A9E-91CF86239220 > /usr/lib/libcompression.dylib

    0x7fff89f07000 - 0x7fff89f0ffff com.apple.CoreServices.FSEvents (1223.10.1 - 1223.10.1) s.framework/Versions/A/FSEvents /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvent < 7F5B7A23-BC1D-3FA9-A9B8-D534F1E1979A >

    0x7fff89f10000 - 0x7fff89f15ff3 libunwind.dylib (35.3) < F6EB48E5-4D12-359A-AB54-C937FBBE9043 > /usr/lib/system/libunwind.dylib

    0x7fff8a1fd000 - 0x7fff8a32efff com.apple.syncservices /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices < 3FF7FE43-2822-3E59-A687-D74E4B0ACD0A > (8.1 - 724)

    0x7fff8a32f000 - 0x7fff8a41effb libxml2.2.dylib (29.5) < 4096C2EA-6659-3F22-AC60-1E2F30BDD2B7 > /usr/lib/libxml2.2.dylib

    0x7fff8a41f000 - 0x7fff8a422fff (460.40.33) libsystem_sandbox.dylib < 30671DCC-265F-325A-B33D-11CD336B3DA3 > /usr/lib/system/libsystem_sandbox.dylib

    0x7fff8a423000 - 0x7fff8a44dff7 (12.0.40.6) GLRendererFloat < 4063015F-BC8F-308D-9065-685F89659F2C > /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat

    0x7fff8a44e000 - 0x7fff8a539ff7 com.apple.QuickLookUIFramework (5.0 - 696.7) < 5A4AAFEC-D38C-3DA0-9361-CBF1D4C6B376 > /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f EPI/Versions/A/QuickLookUI

    0x7fff8a540000 - com.apple.DistributionKit (700-1000) < 4E57473B-3B6C-35E8-8D25-592EA1CACF2A > System/Library/PrivateFrameworks/Install.framework/Frameworks/DistributionKit 0x7fff8a55dfff. framework/Versions/A/DistributionKit

    0x7fff8a565000 - 0x7fff8a587ff7 com.apple.Sharing (442.13.6 - 442.13.6) /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing < DDD2811C-6ECB-32F2-8EE1-69BF9657B4A8 >

    0x7fff8a5f5000 - 0x7fff8a606fff libcmph.dylib (6) < BA4BF2C6-7F4E-33B8-9DD7-619C9EB83ECF > /usr/lib/libcmph.dylib

    0x7fff8a607000 - 0x7fff8a6c1fff com.apple.DiscRecording (9.0.1 - 9010.4.3) /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording < 540853B2-B123-3560-8023-C92EE229051A >

    0x7fff8a6c2000 - 0x7fff8a6ffff3 (14, 0-193, 7) com.apple.bom < 9B8AE30B-24A3-37AB-B04E-4CE67AED4775 > /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom

    0x7fff8a700000 - 0x7fff8a701ffb libsysmon.dylib (85) < B4DA61BB-07A0-3CFB-9EBD-33121FC4BEA4 > /usr/lib/libsysmon.dylib

    0x7fff8af11000 - 0x7fff8af22ff7 libz.1.dylib (61.20.1) < B3EBB42F-48E3-3287-9F0D-308E04D407AC > /usr/lib/libz.1.dylib

    0x7fff8af27000 - 0x7fff8af3cfff com.apple.AppContainer (4.0 - 261.40.2) < F220E702-1C00-3BD2-9943-C7E75C3B4418 > /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContaine r

    0x7fff8af3d000 - 0x7fff8af48fff (12.0.40.6) libGPUSupportMercury.dylib < CC8F3ED8-72FE-3041-A0F2-D8F17DBE2347 > /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupportMercury.dylib

    0x7fff8af49000 - 0x7fff8af53fff com.apple.NetAuth /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth < D692B1EF-534F-3892-8E2F-2BBA7C8AFD74 > (6.0 - 6.0)

    0x7fff8af54000 - 0x7fff8aff8fff com.apple.Bluetooth (4.4.4 - 4.4.4f4) /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth < BCF89EFE-853D-3AEA-AE31-DC8293C7284F >

    0x7fff8b045000 - 0x7fff8b047fff com.apple.CoreDuetDebugLogging (1.0-1) < 7659CACF-3B08-3AF3-8FAC-24FAF18EF114 > /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/Versions/A/Cor eDuetDebugLogging

    0x7fff8b048000 - 0x7fff8b056fff com.apple.IntlPreferences (2.0 - 192) < 61F62126-0902-3324-BB1D-8B93297ED899 > /System/Library/PrivateFrameworks/IntlPreferences.framework/Versions/A/IntlPref erences

    0x7fff8b057000 - 0x7fff8b05affb libScreenReader.dylib (426.42) < 16FC79D1-4573-3E90-945F-CBA22D5185FD > /usr/lib/libScreenReader.dylib

    0x7fff8b08d000 - 0x7fff8b08dfff com.apple.quartzframework /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz < 5DC3D0D9-9E3F-3AA5-92F1-F229907A49B9 > (1, 5-21)

    0x7fff8b08e000 - 0x7fff8b097ff7 com.apple.CommonAuth /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth < 4B8673E1-3697-3FE2-8D30-AC7AC5D4F8BF > (4.0 - 2.0)

    0x7fff8b098000 - 0x7fff8b09dff7 com.apple.NetFSServer (< A233387F-2626-334C-8CA6-E947B56E1654 > /System/Library/PrivateFrameworks/NetFSServer.framework/Versions/A/NetFSServer 2.0 - 1).

    0x7fff8b681000 - 0x7fff8b80dff7 (12.0.40.6) libGLProgrammability.dylib < F5AE40EB-A28B-3F3B-8E4C-0C0D73E47EDB > /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib

    0x7fff8b81f000 - 0x7fff8b84cfff (501.40.12) libdispatch.dylib < C7499857-61A5-3D7D-A5EA-65DCC8C3DF92 > /usr/lib/system/libdispatch.dylib

    0x7fff8b84d000 - 0x7fff8b850ff7 com.apple.AppleSystemInfo (3.1.5 - 3.1.5) < 6932B5EC-0EA9-333D-BF7E-665047392FEC > /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo

    0x7fff8b851000 - 0x7fff8b9fcffb (12.0.40.6) GLEngine < 32029589-A64E-3E6B-A024-F985765766A2 > /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLEngine.bundl e/GLEngine

    0x7fff8ba09000 - 0x7fff8bab9fff com.apple.backup.framework (1.7.4 - 1.7.4) < F304E9D1-991A-379E-9659-BF85C35B4808 > /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup

    0x7fff8baba000 - 0x7fff8bbacff7 libiconv.2.dylib (44) < F05A0A5A-92A9-3668-8F20-F27CBDA26BE9 > /usr/lib/libiconv.2.dylib

    0x7fff8bbad000 - 0x7fff8bbaffff com.apple.xpc.ServiceManagement (1.0-1) < F3E14561-5DF4-3429-98ED-8F27A87A343A > /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage lie

    0x7fff8bbb0000 - 0x7fff8be4bfff com.apple.AOSKit /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/AOSKit < 301C9141-CD8E-3AEC-95AE-36E70F7CB880 > (1.07 - 233)

    0x7fff8be74000 - 0x7fff8be93ff7 com.apple.framework.Apple80211 /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211 < AE7795B8-4590-3714-999D-3FBFF6BF5D93 > (11, 0 - 1121.34)

    0x7fff8be94000 - 0x7fff8be94ff7 (765.40.36) liblaunch.dylib < 1CD7619D-AF2E-34D1-8EC6-8021CF473D9B > /usr/lib/system/liblaunch.dylib

    0x7fff8be99000 - 0x7fff8beb9ff7 com.apple.IASUtilities (1.0 - 229, 3) < 73F73F02-C7EE-3643-9349-7ECED6DD72CA > /System/Library/PrivateFrameworks/IASUtilities.framework/Versions/A/IASUtilitie s

    0x7fff8beba000 - 0x7fff8bf65fff com.apple.PDFKit (3.1 - 3.1) < 27AF3C85-1C0B-389C-856C-2E527620C195 > /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit

    0x7fff8bf66000 - 0x7fff8c006fff com.apple.Metadata (10.7.0 - 972.29.1) a.framework/Versions/A/Metadata /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat < F19E0200-6937-3799-9C67-D26C2CE5AA5F >

    0x7fff8c009000 - 0x7fff8c00fff7 com.apple.speech.recognition.framework (5.1.1 - 5.1.1) < 9E5A980A-F455-32D5-BBEE-3BD6018CC45E > /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition

    0x7fff8c010000 - 0x7fff8c011ff7 libodfde.dylib (23) < F84CB160-D638-3190-B6F5-A262E9AF09F6 > /usr/lib/libodfde.dylib

    0x7fff8c012000 - 0x7fff8c030ff7 (3248.40.184) libsystem_kernel.dylib < 88C17B7F-1CD8-3979-A1A9-F7BDB4FCE789 > /usr/lib/system/libsystem_kernel.dylib

    0x7fff8c031000 - 0x7fff8c27dff7 com.apple.AddressBook.framework /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook < 8879002B-C87B-3595-9CD2-B672F10DD156 > (9.0 - 1679.9)

    0x7fff8c27e000 - 0x7fff8c2adffb com.apple.datadetectors (5.0 - 308) < 1949868C-BDCD-3772-BDBD-D7E9F2CC1451 > t /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetect

    0x7fff8c2c0000 - 0x7fff8c344ffb com.apple.AVKit /System/Library/Frameworks/AVKit.framework/Versions/A/AVKit < 4C174B0F-43FF-3F41-8687-EA9C71EF1C18 > (1.1 - 285.10)

    0x7fff8c3c3000 - 0x7fff8c40eff7 com.apple.CoreMediaIO /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO < B974A225-61C6-34DD-AC2A-495BD6A393B3 > (703, 0-4791)

    0x7fff8c40f000 - 0x7fff8c460ff7 com.apple.audio.CoreAudio (4.3.0 - 4.3.0) < 3D62A9B3-67A8-3F8A-A102-05E310249075 > /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio

    0x7fff8c461000 - 0x7fff8c48eff7 com.apple.PassKit (1.0 - 55.1) < D31E95EB-BC60-3A35-B9AB-4FE531A60400 > /System/Library/PrivateFrameworks/PassKit.framework/Versions/A/PassKit

    0x7fff8c48f000 - 0x7fff8c4f6fff com.apple.framework.CoreWiFi /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi < 993592F1-B3F1-3FAD-87BD-EA83C361BCCF > (11, 0 - 1101.20)

    0x7fff8c4f7000 - 0x7fff8c4f7fff (600.0.44.1) libmetal_timestamp.dylib < 6576F284-BACA-332A-A6E7-FA1C347636E3 > /System/Library/PrivateFrameworks/GPUCompiler.framework/libmetal_timestamp.dyli b

    0x7fff8c4f8000 - 0x7fff8c50bfff com.apple.CoreBluetooth (< E54CA9A2-A5C6-30C5-9D6E-8472DBA9371E > /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth 1.0 - 1.).

    0x7fff8c8f8000 - 0x7fff8c8f9ffb libSystem.B.dylib (1226.10.1) < CD307E99-FC5C-3575-BCCE-0C861AA63124 > /usr/lib/libSystem.B.dylib

    0x7fff8c8fa000 - 0x7fff8c8fafff com.apple.Accelerate (1.10 - 1.10 accelerate) < 185EC96A-5AF0-3620-A4ED-4D3654D25B39 > /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate

    0x7fff8c913000 - 0x7fff8c976ff7 com.apple.WhitePagesFramework (10.7.0 - 141.0) < 876DF49A-E015-3E20-8C61-214EF07F51A4 > /System/Library/PrivateFrameworks/WhitePages.framework/Versions/A/WhitePages

    0x7fff8c97e000 - 0x7fff8c982fff com.apple.LoginUICore (3.2 - 3.2) < 5524E4BC-4700-39F4-AF06-E53322712EE0 > /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/Lo ginUICore.framework/Versions/A/LoginUICore

    0x7fff8c983000 - 0x7fff8c98afff com.apple.AskPermission (1.0-1) < 39C91592-D49B-344E-9E0F-A952E82D4045 > /System/Library/PrivateFrameworks/AskPermission.framework/Versions/A/AskPermiss ion

    0x7fff8c98b000 - 0x7fff8c9d1ff7 libauto.dylib (186) < 999E610F-41FC-32A3-ADCA-5EC049B65DFB > /usr/lib/libauto.dylib

    0x7fff8ca03000 - 0x7fff8cb30ff3 com.apple.CoreText /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText < 08E8640E-6602-3A00-BC28-94235FD311B4 > (352.0 - 494.11)

    0x7fff8cb31000 - 0x7fff8cb76ff7 (24, 4-24, 5) com.apple.coreservices.SharedFileList < 1D2AD77B-778F-3253-A295-3D0A32A8121C > /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedF ileList.framework/Versions/A/SharedFileList

    0x7fff8cb77000 - 0x7fff8cbfffff com.apple.CoreSymbolication (3.1 - 58048.1) < 4730422E-4178-34F9-8550-BB92F2A4F44B > /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication

    0x7fff8cc00000 - 0x7fff8cc6ffff com.apple.datadetectorscore (7.0 - 460) < 8EF4EECC-4FF1-36DF-84CF-65545555A225 > /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore

    0x7fff8cc70000 - 0x7fff8cc72fff com.apple.OAuth /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth < B147CF79-A687-3466-BCAE-F05243DE71F7 > (25-25)

    0x7fff8cc73000 - 0x7fff8cca6fff com.apple.framework.accountsui (1.0 - 33.1) < 2679CC21-0C98-3340-9C42-780B11A70226 > /System/Library/PrivateFrameworks/AccountsUI.framework/Versions/A/AccountsUI

    0x7fff8cee6000 - 0x7fff8cf19ff7 com.apple.MediaKit (16-809) < BF8032FE-6645-37F6-A622-BC7EEE3EAABF > /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit

    0x7fff8cf1a000 - 0x7fff8cf23ff7 com.apple.DisplayServicesFW (3.0 - 378) < 45BE1B99-8E10-32F0-A180-A6B6CB5883AE > /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices

    0x7fff8cf96000 - 0x7fff8d2d6fff com.apple.WebKit (11601 - 11601.5.17.1) /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit < 6FA46AD7-3DF1-3654-A642-D9C5BE613ED7 >

    0x7fff8d373000 - 0x7fff8d3e7ff7 com.apple.Heimdal /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal < 5D365381-8B5E-3259-8867-FC4A7D307BDE > (4.0 - 2.0)

    0x7fff8d3e8000 - 0x7fff8d3e8fff com.apple.audio.units.AudioUnit /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit < 93C1D642-37D4-3692-AD35-DCAD04F9610B > (1.13 - 1.13)

    0x7fff8d41c000 - com.apple.DictionaryServices (1.2 - 250, 3) < 30250542-CBAA-39C1-91AA-B57A5DE17594 > 0x7fff8d44bff7 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices

    0x7fff8d44c000 - com.apple.ProtocolBuffer (1-243) 0x7fff8d45cff3 < BAE5E5C9-DD59-3BB8-9741-EEFC5E3046EE > /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer

    0x7fff8d45d000 - 0x7fff8d4affff com.apple.CalDAV /System/Library/PrivateFrameworks/CalDAV.framework/Versions/A/CalDAV < 78741BC8-D22E-33D1-86FD-F88F05952D38 > (8.0 - 234)

    0x7fff8d5d3000 - 0x7fff8d625fff com.apple.AppleVAFramework (5.0.32 - 5.0.32) < FC1AED2C-B3E2-31D9-B163-37989CD8A073 > /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA

    0x7fff8d629000 - 0x7fff8d67dfff com.apple.TelephonyUtilities (1.0 - 1.0) < 9131CBDA-A44A-3575-93D2-D650FCD1E91B > /System/Library/PrivateFrameworks/TelephonyUtilities.framework/Versions/A/Telep honyUtilities

    0x7fff8d6ac000 - 0x7fff8d6c8ff7 libextension.dylib (78) < FD952DA6-BBEC-3CB6-98B3-E1D111C5C54E > /usr/lib/libextension.dylib

    0x7fff8d744000 - 0x7fff8d746ff7 com.apple.securityhi (9.0 - 55006) < A4CEFD45-C51C-381C-A57B-FF75D90C680F > /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI

    0x7fff8d752000 - 0x7fff8d7adfff com.apple.coredav (1.0.1 - 307) < D1BDC4FC-44F8-31F7-9C8D-4422A1641BF6 > /System/Library/PrivateFrameworks/CoreDAV.framework/Versions/A/CoreDAV

    0x7fff8d7ae000 - 0x7fff8d90aff3 com.apple.WebKitLegacy (11601 - 11601.5.17.1) /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebKitLegacy < BEF2ACE7-5D6F-32A2-93BA-BF78D126465F >. framework/Versions/A/WebKitLegacy

    0x7fff8d90d000 - 0x7fff8d92aff7 com.apple.pluginkit.framework (< 0BA96479-0451-3DA9-A2AC-FE1D86D383AB > /System/Library/PrivateFrameworks/PlugInKit.framework/Versions/A/PlugInKit 1.0 - 1.).

    0x7fff8d936000 - 0x7fff8d9c5ff7 (517.20.1) libCoreStorage.dylib < EC540EAA-089C-36D9-BBAA-0684EDE098AB > /usr/lib/libCoreStorage.dylib

    0x7fff8da55000 - 0x7fff8da5ffff com.apple.corerecents (< 38A216F0-6C91-3CA3-94D5-B6242B1F90D0 > /System/Library/PrivateFrameworks/CoreRecents.framework/Versions/A/CoreRecents 1.0 - 1.).

    0x7fff8da89000 - 0x7fff8da94fff com.apple.DirectoryService.Framework /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi < 6F827D0E-0F02-3B09-B2A8-252865EECA7F > (10.11 - 194) this

    0x7fff8dbfc000 - 0x7fff8dcf4fff com.apple.coretelephony /System/Library/Frameworks/CoreTelephony.framework/Versions/A/CoreTelephony < 544916C7-6F30-340D-A2A8-D56BB8D669CD > (113 - 3675.1)

    0x7fff8dd52000 - 0x7fff8dd7bfff (477.40.5) libsystem_info.dylib < 6B01C09E-A3E5-3C71-B370-D0CABD11A436 > /usr/lib/system/libsystem_info.dylib

    0x7fff8ddce000 - 0x7fff8de3cff7 com.apple.ApplicationServices.ATS (377-394, 3) < 847DBFBA-8D6B-367B-99FD-C6CAA8C05C65 > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS

    0x7fff8de3d000 - 0x7fff8dedafff (6-795) com.apple.SoftwareUpdate.framework < D63E8FC9-DECB-3FA3-8C2B-4116BF46733B > /System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/SoftwareU updated

    0x7fff8dedb000 - 0x7fff8df0dff7 com.apple.iCalendar /System/Library/PrivateFrameworks/iCalendar.framework/Versions/A/iCalendar < 2D12DD0E-D062-3D75-A86D-543F73A5BD72 > (7.0 - 240)

    0x7fff8df0e000 - 0x7fff8df1aff7 com.apple.OpenDirectory /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory < 31A67AD5-5CC2-350A-96D7-821DF4BC4196 > (10.11 - 194)

    0x7fff8df1b000 - 0x7fff8df26fff (517.20.1) libcsfde.dylib < 6FFC376E-E141-37EE-800A-004080A50091 > /usr/lib/libcsfde.dylib

    0x7fff8e0cd000 - 0x7fff8e136fff com.apple.framework.internetaccounts (2.1 - 210) < 063FF467-215F-3E81-B02B-02E8B9750F24 > /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts

    0x7fff8e14f000 - 0x7fff8e151fff com.apple.SecCodeWrapper (4.0 - 261.40.2) < 1F832591-59A8-3B3F-943F-D6D827463782 > /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper

    0x7fff8e152000 - 0x7fff8e15dfff com.apple.AppSandbox (4.0 - 261.40.2) /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox < 52766210-B6EB-3B73-AB1B-42E0A9AD2EE8 >

    0x7fff8e15e000 - 0x7fff8e172fff com.apple.CoreDuetDaemonProtocol (1.0-1) < D0A5B9A7-A247-37CD-A8F7-64DC635F9C9B > /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/Versions/A/C oreDuetDaemonProtocol

    0x7fff8e173000 - 0x7fff8e19effb (33.20.2) libarchive.2.dylib < 6C370A21-63FD-3A68-B4B3-5333F24B770B > /usr/lib/libarchive.2.dylib

    0x7fff8e1ab000 - 0x7fff8e238dd7 com.apple.AppleJPEG (< 558ACADA-C41F-3EEF-82A0-C2D7B13C5428 > /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG 1.0 - 1.).

    0x7fff8e239000 - 0x7fff8e241fff libcopyfile.dylib (127) < A48637BC-F3F2-34F2-BB68-4C65FD012832 > /usr/lib/system/libcopyfile.dylib

    0x7fff8e242000 - 0x7fff8e244ff7 com.apple.SafariServices.framework (11601 - 11601.5.17.1) vices /System/Library/PrivateFrameworks/SafariServices.framework/Versions/A/SafariSer < 396E2233-E2DC-391C-84D2-991F636A941B >

    0x7fff8e245000 - 0x7fff8e27dff7 com.apple.RemoteViewServices (2.0 - 101) < B2881449-8CFE-3D1C-B4BF-155640392533 > /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices

    0x7fff8e27e000 - 0x7fff8e2b8fff com.apple.QD (3.12 - 302) < 0FE53180-2895-3D14-A1E7-F82DE1D106E1 > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD

    0x7fff8e2b9000 - 0x7fff8e3deff7 (728, 8-728, 8) com.apple.LaunchServices < FDA38B17-82E2-322F-A008-B9207A6EA668 > /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices

    0x7fff8e3df000 - 0x7fff8e3e3fff libGIF.dylib (1444) < D3F44A33-355E-3154-A465-1C732AAC5F75 > /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib

    0x7fff8e3e4000 - 0x7fff8e3f5fff (1162.2) libSparseBLAS.dylib < EBEB3848-3468-342A-91A6-5C47F2369CD9 > /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libSparseBLAS.dylib

    0x7fff8e3f8000 - 0x7fff8e40cfe3 libCGInterfaces.dylib (317.9) < 5079DE4F-3717-32FF-B76A-77F53236D17D > /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/Libraries/libCGInterfaces.dylib

    0x7fff8e40d000 - 0x7fff8e416ff3 (150.40.1) libsystem_notify.dylib < D48BDE34-0F7E-34CA-A0FF-C578E39987CC > /usr/lib/system/libsystem_notify.dylib

    0x7fff8e417000 - 0x7fff8e419fff com.apple.marco /System/Library/PrivateFrameworks/Marco.framework/Versions/A/Marco < F766F4BF-BAE9-3ADD-B54B-16934231F155 > (10.0 - 1000)

    0x7fff8e443000 - 0x7fff8e4b8fff com.apple.framework.IOKit (2.0.2 - 1179.40.20) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit < FB2AD43B-905D-3BD0-BE17-ACE7D4D13E24 >

    0x7fff8e520000 - 0x7fff8e528fff (385.40.36) libsystem_networkextension.dylib < 66095DC7-6539-38F2-95EE-458F15F6D014 > /usr/lib/system/libsystem_networkextension.dylib

    0x7fff8e529000 - 0x7fff8e5ecff7 com.apple.imcore /System/Library/PrivateFrameworks/IMCore.framework/Versions/A/IMCore < CA7E9036-F455-3726-8F6D-BC5FD4773808 > (10.0 - 1000)

    0x7fff8e5ed000 - 0x7fff8e5f1fff com.apple.ServerInformation (2.0-1) /System/Library/PrivateFrameworks/ServerInformation.framework/Versions/A/Server < EE3E3BF1-46F4-33ED-9D03-875A8618421A > information

    0x7fff8e5f2000 - 0x7fff8e5fefff com.apple.speech.synthesis.framework (5.4.12 - 5.4.12) < 71DA00B8-5EA2-326B-8814-59DB25512F65 > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis

    0x7fff8e5ff000 - 0x7fff8e605fff com.apple.XPCService (< 5E2122D6-FFA2-3552-BF16-9FD3F36B40DB > /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService 2.0 - 1).

    0x7fff8e616000 - 0x7fff8e631fff com.apple.aps.framework (4.0 - 4.0) < CAD47B6E-A581-3B35-885B-67B206F41D5E > /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService

    0x7fff8e632000 - 0x7fff8e635ff7 libCoreFSCache.dylib (119.5) < 2389D7DA-B8EF-3EB4-AAAF-FBEDE01CDECA > /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache .dylib

    0x7fff8e63f000 - 0x7fff8e64effb com.apple.LangAnalysis (1.7.0 - 1.7.0) < 18D21123-A3E7-3851-974A-08E5D4540475 > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis

    0x7fff8e762000 - 0x7fff8e79cff7 (132-132) com.apple.DebugSymbols < 23A42C53-B941-3871-9EE2-4C87A46005B5 > /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s

    0x7fff8e79d000 - 0x7fff8e7beff7 com.apple.persistentconnection (1.0 - 1.0) < 00A24D59-1664-3F2C-8272-85B877EA7821 > /System/Library/PrivateFrameworks/PersistentConnection.framework/Versions/A/Per sistentConnection

    0x7fff8e7ce000 - 0x7fff8e901fff com.apple.ical.EventKit (3.0 - 487, 4) < B71B80DB-1D9D-38FB-9467-8ED5CE1E804C > /System/Library/Frameworks/EventKit.framework/Versions/A/EventKit

    0x7fff8e93a000 - 0x7fff8ecb5ffb com.apple.VideoToolbox (1.0 - 1731.15.202) /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox < B839BE14-9503-3B5E-A54A-C7FCEED34EA3 >

    0x7fff8ecc7000 - 0x7fff8ecd5fff com.apple.opengl (12.0.40 - 12.0.40) /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL < AEA28993-BA3E-3E0F-A2F5-88C312ABB634 >

    0x7fff8ecd6000 - 0x7fff8ecf5ff7 com.apple.contacts.vCard /System/Library/PrivateFrameworks/vCard.framework/Versions/A/vCard < 41529BD9-1BCC-3A62-92BA-2A7110867355 > (1.0 - 2137.1)

    0x7fff8ecf6000 - 0x7fff8eec4ff3 com.apple.QuartzCore /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore < 0283748A-8318-36AC-8B30-8A951FEB305A > (1.11 - 410.14)

    0x7fff8eec5000 - 0x7fff8eec5fff com.apple.Accelerate.vecLib (vecLib - 3.10 3.10) < 054DFE32-737D-3211-9A14-0FC5E1A880E3 > /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib

    0x7fff8eec6000 - 0x7fff8eeccfff com.apple.BezelServicesFW (255.10 - 255.10) < B11C9FC3-7007-3DE3-A5FC-352B821B629B > /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServi CES

    0x7fff8f246000 - 0x7fff8f24bff7 com.apple.AssetCacheServices (14.1 - 14.1) < 5F249F84-660A-3E94-B073-6729E7ED56D9 > /System/Library/PrivateFrameworks/AssetCacheServices.framework/Versions/A/Asset CacheServices

    0x7fff8f24c000 - 0x7fff8f254ff7 com.apple.CloudServices (1.0 - 154.40.15) these /System/Library/PrivateFrameworks/CloudServices.framework/Versions/A/CloudServi < 3611A68C-B34A-3379-94A9-2BA08FC6A3E6 >

    0x7fff8f255000 - 0x7fff8f683fff com.apple.vision.FaceCore (3.3.1 - 3.3.1) < E54028EA-4217-3078-A2B1-C52E4214D59E > /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore

    0x7fff8f915000 - 0x7fff8f920fff (3248.40.184) libkxld.dylib < 6F776D34-D06C-3C48-B753-D0FB375A4A8A > /usr/lib/system/libkxld.dylib

    0x7fff8f921000 - 0x7fff8f98eff7 com.apple.imfoundation (10.0 - 1000) < 82820E4B-0F23-3048-9F4F-C216A9D87190 > /System/Library/PrivateFrameworks/IMFoundation.framework/Versions/A/IMFoundatio n

    0x7fff8f98f000 - 0x7fff900c1ff7 com.apple.VectorKit (1.0 - 1156.38.0.1) /System/Library/PrivateFrameworks/VectorKit.framework/Versions/A/VectorKit < 39206074-C49E-3C6C-8C3D-98CB9F9B8961 >

    0x7fff900c2000 - 0x7fff900c9ff7 libcompiler_rt.dylib (62) < A13ECF69-F59F-38AE-8609-7B731450FBCD > /usr/lib/system/libcompiler_rt.dylib

    0x7fff9026c000 - 0x7fff90274fff com.apple.xpcobjects /System/Library/PrivateFrameworks/XPCObjects.framework/Versions/A/XPCObjects < 820D71C8-B9DB-3214-97CD-204A2FE6CD6E > (103-103)

    0x7fff90275000 - 0x7fff9027eff7 (138.10.4) libsystem_pthread.dylib < 3DD1EF4C-1D1B-3ABF-8CC6-B3B1CEEE9559 > /usr/lib/system/libsystem_pthread.dylib

    0x7fff9027f000 - 0x7fff90287fef libsystem_platform.dylib (74.40.2) < 29A905EF-6777-3C33-82B0-6C3A88C4BA15 > /usr/lib/system/libsystem_platform.dylib

    0x7fff902bf000 - 0x7fff902eaff7 com.apple.SocialAppsCore sCore /System/Library/PrivateFrameworks/SocialAppsCore.framework/Versions/A/SocialApp < 7EEE5E38-7A42-35F4-AADD-32BA49DC3D93 > (8.0 - 5100)

    0x7fff902eb000 - 0x7fff90318fff com.apple.facetimeservices /System/Library/PrivateFrameworks/FTServices.framework/Versions/A/FTServices < 9F5E1C9A-A3BA-35FE-A75E-C58CD1150A4F > (10.0 - 1000)

    0x7fff90319000 - 0x7fff90367fff libcurl.4.dylib (90) < 12E01E4B-24C9-394C-9D2C-85CF85D5F459 > /usr/lib/libcurl.4.dylib

    0x7fff90368000 - 0x7fff90386ff7 com.apple.frameworks.preferencepanes /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes < 6D9A4009-DCE8-3FC5-91E4-01433C63E4A6 > (16, 0-16, 0)

    0x7fff90387000 - 0x7fff903a9ff7 com.apple.framework.familycontrols (4.1 - 410) < 36DCC2B7-4FDF-397D-BB14-36CACED9E946 > /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon three

    0x7fff903aa000 - 0x7fff903c1ff7 (323.40.3) libsystem_asl.dylib < 007F9094-317A-33EA-AF62-BAEAAB48C0F7 > /usr/lib/system/libsystem_asl.dylib

    0x7fff903c2000 - 0x7fff903d4fff libsasl2.2.dylib (209) < 2F81C8C9-11A3-3581-B2C1-D8C03AB7D39C > /usr/lib/libsasl2.2.dylib

    0x7fff904bc000 - 0x7fff904bcff7 libunc.dylib (29) < DDB1E947-C775-33B8-B461-63E5EB698F0E > /usr/lib/system/libunc.dylib

    0x7fff904bd000 - 0x7fff904c9fff libexslt.0.dylib (14.1) < D2D356A3-364D-3277-928D-3B8DBE5B99E8 > /usr/lib/libexslt.0.dylib

    0x7fff9066c000 - 0x7fff906bfff7 libc ++.1.dylib (120,1) < 8FC3D139-8055-3498-9AC5-6467CB7F4D14 > /usr/lib/libc++.1.dylib

    0x7fff906c0000 - 0x7fff906f1fff com.apple.GSS /System/Library/Frameworks/GSS.framework/Versions/A/GSS < B490333A-3B3E-397A-AD75-68846E9A9140 > (4.0 - 2.0)

    0x7fff906f2000 - 0x7fff90739ff7 com.apple.AOSAccounts (1.3.1 - 1.10.02) /System/Library/PrivateFrameworks/AOSAccounts.framework/Versions/A/AOSAccounts < FFD13410-D077-3EAF-8EFB-5A4F99AE2113 >

    0x7fff908b8000 - 0x7fff908efff7 com.apple.LDAPFramework (2.4.28 - 194,5) < 9AE33BF2-FB17-342D-8F1E-5F83C6E6EB69 > /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP

    0x7fff90923000 - 0x7fff90a1fff7 libFontParser.dylib (158,5) < 62796E99-36B7-36B6-8D33-5349F88014C3 > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib

    0x7fff90a20000 - 0x7fff90bc6ff7 com.apple.audio.toolbox.AudioToolbox /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox < 082319FC-59F2-3D36-AC9B-94759724E302 > (1.13 - 1.13)

    0x7fff90bc7000 - 0x7fff90bf5ff7 (460.40.33) libsandbox.1.dylib < 26158471-870A-3269-9E2B-7D7963B8E9F3 > /usr/lib/libsandbox.1.dylib

    0x7fff90bf8000 - 0x7fff90bfbff7 com.apple.iChat.InstantMessage (8.0 - 5017) < 989738B4-0269-3DD6-AAEC-2B712FB765D5 > /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage

    0x7fff90bfc000 - 0x7fff90c6bfff com.apple.SearchKit (1.4.0 - 1.4.0) < F159A888-34CA-36F1-AC8E-EB1B38C9DFB3 > /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit

    0x7fff90c6c000 - 0x7fff90caaff7 libGLImage.dylib (12.0.40.6) < 734B133F-E789-3A25-9DE6-1CCBA4896D4D > /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib

    0x7fff90cab000 - 0x7fff90cabfff libOpenScriptingUtil.dylib (169,1) < AD0DAC8A-9849-3077-999F-9AEC6112BDAB > /usr/lib/libOpenScriptingUtil.dylib

    0x7fff90cac000 - 0x7fff90cadfff com.apple.TrustEvaluationAgent (2.0 - 25) < 0239494E-FEFE-39BC-9FC7-E251BA5128F1 > /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent

    0x7fff90cc0000 - 0x7fff90cc8fff com.apple.AppleSRP (< 840A5C20-6452-36BB-ACF7-29BA6CBF7C48 > /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP 5.0 - 1).

    0x7fff90cc9000 - 0x7fff90cd1ffb (625.40.20) libsystem_dnssd.dylib < 86A05653-DCA0-3345-B29F-F320029AA05E > /usr/lib/system/libsystem_dnssd.dylib

    0x7fff90cd5000 - 0x7fff90cddfff com.apple.icloud.FMCoreLite (< 74E4FF49-B38D-31CC-845B-7AE2635401DD > /System/Library/PrivateFrameworks/FMCoreLite.framework/Versions/A/FMCoreLite 1.0 - 1.).

    0x7fff90d48000 - 0x7fff9126afff com.apple.QuartzComposer (5.1 - 334) < 80235264-CA1B-3E3F-96F7-5F6F52FDC5B6 > /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer

    0x7fff91343000 - 0x7fff913bafeb (335.40.8) libcorecrypto.dylib < 9D300121-CAF8-3894-8774-DF38FA65F238 > /usr/lib/system/libcorecrypto.dylib

    0x7fff913bb000 - 0x7fff91432ff7 com.apple.MMCS (1.3 - 357, 1) < 549FBEFC-55F7-3101-BF51-A0B1F7CF2B46 > /System/Library/PrivateFrameworks/MMCS.framework/Versions/A/MMCS

    0x7fff914da000 - 0x7fff91904fff com.apple.ModelIO (< 8838E0E1-ACB3-3CE8-ABDC-C787D8B3F247 > /System/Library/Frameworks/ModelIO.framework/Versions/A/ModelIO 1.0 - 1.).

    0x7fff91a0d000 - 0x7fff91d02fff com.apple.HIToolbox (2.1.1 - 807.2) < 871E5223-5D03-3649-98AF-9CCA3B41E307 > /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra framework/Versions/A/HIToolbox

    0x7fff91d03000 - 0x7fff91d03fff libenergytrace.dylib (10.40.1) < 0A491CA7-3451-3FD5-999A-58AB4362682B > /usr/lib/libenergytrace.dylib

    0x7fff91d2b000 - 0x7fff91e01ff7 com.apple.AOSUI /System/Library/PrivateFrameworks/AOSUI.framework/Versions/A/AOSUI < D5F5C0D0-9C45-3A33-B670-3F75BFCF0932 > (1.2 - 421)

    0x7fff91e02000 - 0x7fff9229dff3 com.apple.GeoServices (1.0 - 1151.47.0.1) /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices < 928294E7-6897-3D5B-9D2E-BC092B6C25DE >

    0x7fff9229e000 - 0x7fff922eaffb com.apple.HIServices (1.22 - 549) < E4E1BD10-F475-3E19-9E0B-A5071D158F47 > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices

    0x7fff922eb000 - 0x7fff922ebfff com.apple.IOPlatformPluginFamily (1.0-1) < 61D1D438-9DE8-34A0-ADC0-9789517515E8 > /System/Library/PrivateFrameworks/IOPlatformPluginFamily.framework/Versions/A/I OPlatformPluginFamily

    0x7fff922ef000 - 0x7fff922f3fff com.apple.FindMyMac /System/Library/PrivateFrameworks/FindMyMac.framework/Versions/A/FindMyMac < 73E9EE14-0390-33E6-ABD1-F99CD1C786AA > (3.1 - 53)

    0x7fff922f4000 - 0x7fff922fcff7 (583.40.20) libnetwork.dylib < 3C4C9968-C6A7-3D3D-98EE-125045999E01 > /usr/lib/libnetwork.dylib

    0x7fff92371000 - 0x7fff9257cfff libFosl_dynamic.dylib (16.24) < 5F9DB82D-FD4B-3952-8531-CE020F93ED49 > /usr/lib/libFosl_dynamic.dylib

    0x7fff92583000 - 0x7fff9259ffff com.apple.icloud.FMF (< 10057D50-E515-3604-97CA-395A7AC8948A > /System/Library/PrivateFrameworks/FMF.framework/Versions/A/FMF 1.0 - 1.).

    0x7fff925a0000 - 0x7fff9265dfd7 com.apple.PackageKit /System/Library/PrivateFrameworks/PackageKit.framework/Versions/A/PackageKit < C257D310-4642-3F16-A747-EED63B08EB6D > (3.0 - 546)

    0x7fff92688000 - 0x7fff92702fff com.apple.accounts.AccountsDaemon (113-113) < 3423EB41-2D59-30CC-9158-24BCA2E294FA > /System/Library/PrivateFrameworks/AccountsDaemon.framework/Versions/A/AccountsD Nicolas

    0x7fff92703000 - 0x7fff92709fff com.apple.IOAccelerator (205, 3 - 205.3) < 851B6BF8-5B7F-3FB5-9E45-10AAE3BF7438 > /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelera tor

    0x7fff9270a000 - 0x7fff9279ffff (10, 9-214) com.apple.ink.framework < 1F76CF36-3F79-36B8-BC37-C540AF34B338 > /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink

    0x7fff927a0000 - 0x7fff927aafff com.apple.CoreCDP - OSX (< 3F137206-17BD-396C-B50C-DDDA635D19DD > /System/Library/PrivateFrameworks/CoreCDP.framework/Versions/A/CoreCDP 1.0 - 1.).

    0x7fff927ab000 - 0x7fff927c4fff com.apple.CFOpenDirectory (10.11 - 194) < 11F95672-55E0-3F9D-9171-5E8C56AEE948 > /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory

    0x7fff927c5000 - 0x7fff927c5fff com.apple.Carbon /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon < 8F6ED602-5943-3E29-A793-BC331E2C183D > (154 to 157)

    0x7fff9283d000 - 0x7fff930cdff7 libclh.dylib (4.0.3 - 4.0.3) < 1E01D7A3-33E4-3A79-9C89-24254CE48D4A > /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib

    0x7fff930ce000 - 0x7fff930ceff7 libkeymgr.dylib (28) < 8371CE54-5FDD-3CE9-B3DF-E98C761B6FE0 > /usr/lib/system/libkeymgr.dylib

    0x7fff930cf000 - 0x7fff930d1ff7 libRadiance.dylib (1444) < A5EFA292-AFD4-3FCE-8802-958AD60F75DA > /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib

    0x7fff930d2000 - 0x7fff93548fff com.apple.CoreFoundation /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation < 943A1383-DA6A-3DC0-ABCD-D9AEB3D0D34D > (6: 9 - 1258.1)

    0x7fff93558000 - 0x7fff93558fff com.apple.ApplicationServices (48-48) < ADD57D3A-142F-3EF5-BFD8-EACD82164884 > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services

    0x7fff93569000 - 0x7fff938bdfff com.apple.Foundation (6, 1258-9) < 51833143-6CAE-3E1C-9FBA-BCDEB48D4ADF > /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation

    0x7fff938be000 - 0x7fff938c6fff libMatch.1.dylib (27) < 3AC0BFB8-7E69-3DBE-A175-7F3946FC4554 > /usr/lib/libMatch.1.dylib

    0x7fff938c7000 - 0x7fff938cbfff libpam.2.dylib (20) < CFCD19BD-87BC-3F2B-BB1C-4C23E8E55F1A > /usr/lib/libpam.2.dylib

    0x7fff938cc000 - 0x7fff938ccfff com.apple.SafariDAVNotifier (1.1.1 - 1) < 4AE03738-AAC2-365E-80DA-6FB78903E508 > /System/Library/PrivateFrameworks/BookmarkDAV.framework/Versions/A/Frameworks/S afariDAVNotifier.framework/Versions/A/SafariDAVNotifier

    0x7fff938cd000 - 0x7fff93908ff7 com.apple.AuthKitUI (< EC5CFA90-A461-30BD-BE65-52D45F005951 > /System/Library/PrivateFrameworks/AuthKitUI.framework/Versions/A/AuthKitUI 1.0 - 1.).

    0x7fff93909000 - 0x7fff93911fef libcldcpuengine.dylib (2.7.3) < B385841A-B573-3A91-9BEB-CC89CB2716B3 > /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib

    0x7fff9392c000 - 0x7fff93949ff7 com.apple.AppleVPAFramework (2.1.2 - 2.1.2) < F4AF2363-B28E-3097-AB1E-FDA1C92F8F56 > /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA

    0x7fff93950000 - 0x7fff93951fff libsystem_blocks.dylib (65) < 1244D9D5-F6AA-35BB-B307-86851C24B8E5 > /usr/lib/system/libsystem_blocks.dylib

    0x7fff93952000 - 0x7fff93965fff com.apple.contacts.ContactsPersistence (1.0 - 2137.1) < 71232F20-11BD-370D-9F43-F262BFE46C93 > /System/Library/PrivateFrameworks/ContactsPersistence.framework/Versions/A/Cont actsPersistence

    0x7fff93966000 - 0x7fff9398afff com.apple.MultitouchSupport.framework (304.10.2 - 304.10.2) ouchSupport /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit < CE75EDA3-2B22-3968-834E-550EA870ECC8 >

    0x7fff9398f000 - 0x7fff93994fff com.apple.incomingcallfilter (10.0 - 1000) < D45EB9DE-069A-3831-B3C1-55A363CDC636 > /System/Library/PrivateFrameworks/IncomingCallFilter.framework/Versions/A/Incom ingCallFilter

    0x7fff9399a000 - 0x7fff939c6fff com.apple.framework.SystemAdministration (1.0 - 1.0) < 1318B6A5-FFC3-3615-914D-95CBFE5BA727 > /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/Sys temAdministration

    0x7fff939c7000 - 0x7fff939cffff (12.0.40.6) libGFXShared.dylib < 1CDE5AEF-3E44-3547-879E-BB490EE7702C > /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib

    0x7fff93a19000 - 0x7fff93aa8fff com.apple.CorePDF /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF < 849BBFF6-0700-3ED1-98DF-A6E93B9B707F > (4.0 - 4)

    0x7fff93b08000 - 0x7fff93d77fff com.apple.AuthKit (< 376E7446-9F68-3188-B4D3-DA06925DC535 > /System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/AuthKit 1.0 - 1.).

    0x7fff93d7e000 - 0x7fff93d80fff libsystem_coreservices.dylib (19.2) < 1B3F5AFC-FFCD-3ECB-8B9A-5538366FB20D > /usr/lib/system/libsystem_coreservices.dylib

    0x7fff93d81000 - 0x7fff93d89fff com.apple.NetFS /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS < 842A5346-24C3-3F22-9ECF-E586A10EA1F2 > (6.0 - 4.0)

    0x7fff93d8d000 - 0x7fff93d9cfe7 com.apple.AppleFSCompression (81.20.2 - 1.0) < 2FE122A9-5265-320A-9600-FFC5CE4DE197 > /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression

    0x7fff93d9d000 - 0x7fff93dadfff libbsm.0.dylib (34) < 7E14504C-A8B0-3574-B6EB-5D5FABC72926 > /usr/lib/libbsm.0.dylib

    0x7fff93dae000 - 0x7fff93dcafff com.apple.GenerationalStorage (2.0 - 239, 1) < 8C821448-4294-3736-9CEF-467C93785CB9 > /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage

    0x7fff93dcb000 - 0x7fff93dfcfff com.apple.contacts.ContactsAutocomplete (1.0 - 57: 3) < B39C9840-8EE6-3B42-AD6A-B4506AB98641 > /System/Library/PrivateFrameworks/ContactsAutocomplete.framework/Versions/A/Con tactsAutocomplete

    0x7fff93dfd000 - 0x7fff93e14fff libmarisa.dylib (4) < E4919B03-D9BD-3AF8-B436-C415C98E3F0A > /usr/lib/libmarisa.dylib

    0x7fff93e42000 - 0x7fff93e45fff com.apple.Mangrove (< 2D86B3AD-64C3-3BB4-BC66-1CFD0C90E844 > /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove 1.0 - 1.).

    0x7fff93e46000 - 0x7fff93e6ffff libc ++ abi.dylib (125) < DCCC8177-3D09-35BC-9784-2A04FEC4C71B > /usr/lib/libc++abi.dylib

    0x7fff93e70000 - 0x7fff93e99ff7 (765.40.36) libxpc.dylib < 2CC7CF36-66D4-301B-A6D8-EBAE7405B008 > /usr/lib/system/libxpc.dylib

    0x7fff93e9a000 - 0x7fff93ec8ff7 com.apple.CoreServicesInternal (248, 2-248, 2) < 6E111F0A-D7F1-3738-ADE7-CF983BD4EC8B > /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal

    0x7fff93ecc000 - 0x7fff942a4fef com.apple.CoreAUC (214.0.0 - 214.0.0) /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC < F80C19CA-6CD0-3052-9C22-0288A257CCC8 >

    0x7fff942a5000 - 0x7fff94355fe7 libvMisc.dylib (563.5) < 6D73C20D-D1C4-3BA5-809B-4B597C15AA86 > /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib

    0x7fff943ce000 - 0x7fff943fdfff com.apple.securityinterface (10.0 - 55065.40.1) < 1BB39B19-DD74-347E-A344-0E6781773577 > /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face

    0x7fff94411000 - 0x7fff94415fff com.apple.communicationsfilter (10.0 - 1000) < 7B1D1036-D97D-3EC5-9E7F-331B8667F5D5 > /System/Library/PrivateFrameworks/CommunicationsFilter.framework/Versions/A/Com municationsFilter

    0x7fff9446b000 - 0x7fff94477fff com.apple.SpeechRecognitionCore (2.2.7 - 2.2.7) < 6BA06290-D4A3-351C-87F9-B61EF61FF055 > /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/Sp eechRecognitionCore

    0x7fff944bc000 - 0x7fff944beff7 com.apple.diagnosticlogcollection (10.0 - 1000) < 5EF4A0E7-59A0-3710-B7D6-33663D59D022 > /System/Library/PrivateFrameworks/DiagnosticLogCollection.framework/Versions/A/ DiagnosticLogCollection

    0x7fff944bf000 - 0x7fff944c9fff com.apple.KerberosHelper (4.0 - 1.0) < 67D88B2C-A54B-34FF-ABF3-2D3736879730 > /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper

    0x7fff944df000 - 0x7fff944f5ff7 com.apple.geokit /System/Library/PrivateFrameworks/GeoKit.framework/Versions/A/GeoKit < BC60A03D-8720-3C88-9642-4B84CE9A3ED2 > (2.2 - 2.2)

    0x7fff9452f000 - 0x7fff9457fff7 com.apple.Symbolication (1.4 - 58044) < F70BF765-FBE9-3F1E-85CA-BB2F8E53E8C2 > /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion

    0x7fff94586000 - 0x7fff94587fff libDiagnosticMessagesClient.dylib (100) < 4243B6B4-21E9-355B-9C5A-95A216233B96 > /usr/lib/libDiagnosticMessagesClient.dylib

    0x7fff94588000 - 0x7fff945cdff3 libFontRegistry.dylib (155,1) < F3355C6E-ED33-3506-B10E-2F6995D34BC1 > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib

    0x7fff945ce000 - 0x7fff94620fff com.apple.ImageCaptureCore /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo < 9F3123D8-29D2-332F-AD6B-AB9BF1A58022 > (7.0 to 7.0) re

    0x7fff94621000 - 0x7fff9462ffff libIASAuthReboot.dylib (1010) < 5CDC581B-B0C6-3166-AD79-1D7EA890D748 > /usr/lib/libIASAuthReboot.dylib

    0x7fff94630000 - 0x7fff9467fff7 com.apple.opencl (2.7.0 - 2.7.0) < 307263BA-0368-38C9-A7FB-25920343D0DF > /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL

    0x7fff94680000 - 0x7fff94685fff com.apple.MediaAccessibility (1.0 - 79) < C5E61B45-1967-3602-A48C-31E132B998B2 > /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessi responsibility

    0x7fff94686000 - 0x7fff946adfff com.apple.ChunkingLibrary (167-167) < AD7F285C-005E-36BB-98A3-5826413533BE > /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking library

    0x7fff946bb000 - 0x7fff946bbfff com.apple.Cocoa /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa < 807787AB-D231-3F51-A99B-A9314623C571 > (6.11 - 22)

    0x7fff946bc000 - 0x7fff946bdffb libremovefile.dylib (41) < 552EF39E-14D7-363E-9059-4565AC2F894E > /usr/lib/system/libremovefile.dylib

    0x7fff946be000 - 0x7fff946ddff7 com.apple.ContactsUI /System/Library/Frameworks/ContactsUI.framework/Versions/A/ContactsUI < 23570405-ECA4-3E2E-8B29-998DB956BF47 > (9.0 - 1679.9)

    0x7fff946de000 - 0x7fff946f4ff7 (1162.2) libLinearAlgebra.dylib < FFE54EDF-F06F-3C0A-864A-4CA7BBFD4B2D > /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLinearAlgebra.dylib

    0x7fff946f5000 - 0x7fff9470cff7 (83.40.5) libsystem_coretls.dylib < C90DAE38-4082-381C-A185-2A6A8B677628 > /usr/lib/system/libsystem_coretls.dylib

    0x7fff9470d000 - 0x7fff9470ffff (12.0.40.6) libCVMSPluginSupport.dylib < 4AA6710A-6267-3062-BFF2-27DB5E6B5892 > /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib

    0x7fff94710000 - 0x7fff94751ff7 libGLU.dylib (12.0.40.6) < C56DDF90-CF6D-30D2-A3E6-89288BE69DCB > /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib

    0x7fff94752000 - 0x7fff9479efff com.apple.print.framework.PrintCore (11, 2 - 472.2) < 5AE8AA6B-CE09-397D-B0D4-0F9CCBF1F77D > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore

    0x7fff9479f000 - 0x7fff947a0ff3 com.apple.print.framework.Print (10.0 - 266) < 3E85F70C-D7D4-34E1-B88A-C1F503F99CDA > /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print

    0x7fff947a3000 - 0x7fff947a5ffb libutil.dylib (43) < 4C9BFE8B-563B-3EEA-A323-8F4F14E0A46C > /usr/lib/libutil.dylib

    0x7fff947a6000 - 0x7fff947b1fff libGL.dylib (12.0.40.6) < 4FC6D3F9-6582-3E7D-A7D1-E035F0E26697 > /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib

    0x7fff947b2000 - 0x7fff947ddff7 com.apple.AddressBook.ContactsFoundation (8.0 - 2137.1) < BAE70E9D-BCC8-3650-B554-6D646388EDEF > /System/Library/PrivateFrameworks/ContactsFoundation.framework/Versions/A/Conta ctsFoundation

    0x7fff947de000 - 0x7fff949ffff7 com.apple.CoreImage (11.4.0 - 366.4.19) /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage < 6EE4A686-50C8-3D77-A036-BE8AA0F8A2FD >

    0x7fff94a00000 - 0x7fff94c6dfff (2: 6-932) com.apple.imageKit < FAE317B8-DF15-3096-AFAC-464913BF2F3B > /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit

    0x7fff94c6e000 - com.apple.CalendarPersistence (8.0 - 378, 5) < BDEE7522-C15E-3957-BE87-6B2EF79A38B6 > 0x7fff94ec4fff /System/Library/PrivateFrameworks/CalendarPersistence.framework/Versions/A/Cale ndarPersistence

    0x7fff94ec5000 - 0x7fff94ec5fff com.apple.CoreServices /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices < 78CB3EAC-A66E-3FD9-A1DF-A9CF227ED3C3 > (728.9 - 728.9)

    0x7fff95015000 - 0x7fff9505ffff com.apple.sociald.Social (?) < 41CC80D4-F4FE-3DBC-9546-62D7BDF59C69 > /System/Library/Frameworks/Social.framework/Versions/A/Social

    0x7fff95060000 - 0x7fff9614eff7 com.apple.WebCore (11601 - 11601.5.17) < 01B1DEA6-A07A-367B-84C0-E264EEFBBA1F > /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore

    0x7fff9614f000 - 0x7fff96161fff com.apple.AppleIDSSOAuthentication (1.0-1) < 7DA43C1A-8340-3A4E-BCAF-FD036B95D418 > /System/Library/PrivateFrameworks/AppleIDSSOAuthentication.framework/Versions/A /AppleIDSSOAuthentication

    0x7fff96162000 - 0x7fff961c3ff7 libTelephonyUtilDynamic.dylib (1207) < 15B546CD-1883-33AC-8EC9-7718043A927B > /usr/lib/libTelephonyUtilDynamic.dylib

    0x7fff961c8000 - 0x7fff961e0ff7 com.apple.CalendarStore (8.0 - 1479) < 4B38242B-8D2F-3130-97F7-3F4BAA69FAEC > /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore

    0x7fff961e1000 - 0x7fff96326fff com.apple.QTKit (7.7.3 - 2943.3) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit < 88AA19A7-7170-3798-8CBA-B1B8D4763ADB >

    0x7fff96327000 - 0x7fff964d3fff com.apple.avfoundation (2.0 - 1046.9.11) /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation < DE524245-B7EF-3E9D-8AA1-3D99A3304EF4 >

    0x7fff9652b000 - 0x7fff9653efff com.apple.MessagesKit (1.0 - 5100) < 26556CF2-1776-333B-A705-9055B401B513 > /System/Library/PrivateFrameworks/MessagesKit.framework/Versions/A/MessagesKit

    0x7fff9653f000 - 0x7fff96544fff com.apple.TCC (< 50F7EC60-5B21-3B9B-BF2F-F037EA7B12FB > /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC 1.0 - 1.).

    0x7fff96545000 - 0x7fff96da3fff com.apple.GeForceGLDriver (10.10.5.2 - 10.1.0) < 0206BA56-8CA6-33DD-B67D-48E5B0AD1CD5 > /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDrive r

    0x7fff96da4000 - 0x7fff96dccfff com.apple.GLKit /System/Library/Frameworks/GLKit.framework/Versions/A/GLKit < E5E5A6F0-E6FC-3D40-81E4-A3E627929FD0 > (1.0 - 56)

    0x7fff96dcd000 - 0x7fff96df6ff7 libxslt.1.dylib (14.1) < 27DE3F2E-CE96-3327-A563-788EE3E2775B > /usr/lib/libxslt.1.dylib

    0x7fff96e33000 - 0x7fff96e85fff com.apple.CloudDocs /System/Library/PrivateFrameworks/CloudDocs.framework/Versions/A/CloudDocs < 1388C0E5-9B2F-372B-A005-043EB049AAA3 > (1.0 - 383.12)

    0x7fff96e86000 - 0x7fff96ef1ff7 com.apple.framework.CoreWLAN /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN < 3B35C543-7FCE-333F-80C1-432FA41DDCDE > (11, 0 - 1101.20)

    0x7fff970b3000 - 0x7fff970b6ff7 com.apple.help (1.3.3 - 46) < 35DA4D48-0BC2-35A1-8D7C-40905CDF4F64 > /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/help

    0x7fff970ba000 - 0x7fff970bcfff com.apple.EFILogin /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin < 38150198-DD7F-3C73-BCAA-C74BB376393A > (2.0 - 2)

    0x7fff970bd000 - 0x7fff97120fff libAVFAudio.dylib (161,2) < 1A98DBF3-490B-37FB-928A-AB1E36E6E5DD > /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAu dio.dylib

    0x7fff97121000 - 0x7fff97195ff3 com.apple.securityfoundation (6.0 - 55126) < 1F6BDF18-3CF0-3E85-8D9B-0663599B9949 > /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun Foundation

    0x7fff97196000 - 0x7fff971f3fff (728, 8-728, 8) com.apple.CoreServices.OSServices < 4CE49D8A-8304-3347-9379-6075CB906419 > /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices

    0x7fff971f4000 - 0x7fff97250fff libTIFF.dylib (1444) < 2A22E6B7-213B-3253-838F-C3EC3C8F2727 > /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib

    0x7fff97251000 - 0x7fff97253ff7 libquarantine.dylib (80) < 0F4169F0-0C84-3A25-B3AE-E47B3586D908 > /usr/lib/system/libquarantine.dylib

    0x7fff97254000 - 0x7fff972b4fff com.apple.QuickLookFramework /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook < ECD33169-5EB1-3783-AF9E-1AB9240F8358 > (5.0 - 696.7)

    0x7fff972b5000 - 0x7fff97342fff (1082.20.4) libsystem_c.dylib < CDEBF2BB-A578-30F5-846F-96274951C3C5 > /usr/lib/system/libsystem_c.dylib

    0x7fff97343000 - 0x7fff97344fff liblangid.dylib (122) < 9CC4F0D1-5C51-3B69-BC8F-EE3A51FD0822 > /usr/lib/liblangid.dylib

    0x7fff97385000 - 0x7fff973a0fff com.apple.PackageKit.PackageUIKit /System/Library/PrivateFrameworks/PackageKit.framework/Frameworks/PackageUIKit < C4FD3F06-3FE4-37BC-BD5F-1C67F66746AD > (3.0 - 546). framework/Versions/A/PackageUIKit

    0x7fff973a3000 - 0x7fff974b1ff3 com.apple.desktopservices (1.10.3 - 1.10.3) < 3A6906D4-C0B8-30D1-B589-0466E5E42B69 > /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv

    0x7fff974b2000 - com.apple.StoreFoundation (1.0 - 462, 9) < 229E4B41-4926-38AD-A897-73EBE446511C > 0x7fff97519ff7 thing /System/Library/PrivateFrameworks/StoreFoundation.framework/Versions/A/StoreFou

    0x7fff9751a000 - com.apple.CalendarAgentLink (8.0 - 250) < EA60A52B-6005-312B-99E0-0DD4F479EF8A > /System/Library/PrivateFrameworks/CalendarAgentLink.framework/Versions/A/Calend arAgentLink 0x7fff97533fff

    0x7fff97541000 - 0x7fff97571ff3 com.apple.CoreAVCHD (5.8.0 - 5800.4.2) /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD < 4AAFB1C4-3708-30F9-ACFA-90564347204C >

    0x7fff97572000 - 0x7fff9757efff com.apple.CommerceCore (1.0 - 462, 9) < FC172F15-E030-3437-BCFF-8D4F1570A8E1 > /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore

    0x7fff9757f000 - 0x7fff97597fff com.apple.login /System/Library/PrivateFrameworks/login.framework/Versions/A/login < E02F6100-10F5-3574-9F9F-11709CC4D1C8 > (3.0 - 3.0)

    0x7fff97598000 - 0x7fff97598ff7 com.apple.CloudPhotosConfigurationXPC (1.5 - 370.42.0) < E1825828-6544-3C11-BDF8-0AF1791D6FB8 > /System/Library/PrivateFrameworks/CloudPhotoServices.framework/Versions/A/Frame works/CloudPhotosConfigurationXPC.framework/Versions/A/CloudPhotosConfigurationX PC

    0x7fff97599000 - 0x7fff9759afff libsystem_secinit.dylib (20) < 32B1A8C6-DC84-3F4F-B8CE-9A52B47C3E6B > /usr/lib/system/libsystem_secinit.dylib

    0x7fff9759b000 - 0x7fff97642fff com.apple.LanguageModeling (1.0-1) < 58C18A47-BDE7-3CBE-81C0-797029D170A1 > /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/Languag eModeling

    0x7fff9764c000 - 0x7fff97655fff com.apple.icloud.FindMyDevice (1.0-1) < B9C741F2-6FAC-3BA7-B6E0-9A910C6E8D4E > e /System/Library/PrivateFrameworks/FindMyDevice.framework/Versions/A/FindMyDevic

    0x7fff97656000 - 0x7fff9766ffff com.apple.openscripting (1.7.1 - 169.1) < 36EBF6A7-334A-3197-838F-E8C7B27FCDBB > /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting

    0x7fff97670000 - 0x7fff976d6ff7 (583.40.20) libsystem_network.dylib < 269E5ADD-6922-31E2-8D55-7B777263AC0D > /usr/lib/system/libsystem_network.dylib

    0x7fff976d7000 - 0x7fff97709fff com.apple.CommerceKit (1.2.0 - 462,9) < EB0D0092-CA00-38B4-802B-5D62F2CA7260 > /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/CommerceKit

    0x7fff9770a000 - 0x7fff9775bff7 libcups.2.dylib (435.1) < 4198A94D-A46C-39AA-92B6-83D0BA507D6C > /usr/lib/libcups.2.dylib

    0x7fff9775c000 - 0x7fff97760fff com.apple.CommonPanels (1.2.6 - 96) < 4AE7E5AE-55B3-37FA-9BDE-B23147ADA2E9 > System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels

    0x7fff97761000 - 0x7fff97795ff7 com.apple.CoreVideo (1, 8-191, 3) < 1AA24A1B-CB84-3F6B-B6DE-11494542649C > /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo

    0x7fff97822000 - 0x7fff9782eff7 com.apple.commonutilities (8.0 - 900) < 18D60822-654D-3532-A47E-A2239EF4E301 > /System/Library/PrivateFrameworks/CommonUtilities.framework/Versions/A/CommonUt ite

    0x7fff9782f000 - 0x7fff97834fff com.apple.DiskArbitration /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration < F55902AA-5316-3255-A701-FDED5B553065 > (2.7 - 2.7)

    0x7fff97835000 - 0x7fff9783cff7 com.apple.phonenumbers (1.1.1 - 105) < A616AFB5-2336-385A-B058-16A423D2B21B > /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s

    0x7fff9783d000 - 0x7fff9784ffff com.apple.icloud.FMFUI (< C3631A6F-65FF-39A9-AA4A-68A82D54C546 > /System/Library/PrivateFrameworks/FMFUI.framework/Versions/A/FMFUI 1.0 - 1.).

    0x7fff97b18000 - 0x7fff97b5aff7 com.apple.Metal /System/Library/Frameworks/Metal.framework/Versions/A/Metal < 7DCBE573-B713-3C50-A16E-2F33A84C3CFB > (56, 6-56, 6)

    0x7fff97b5b000 - 0x7fff97bfbfff com.apple.ViewBridge /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge < D8131B7E-DFC9-3FDD-9D56-49821C1D1521 > (159-159)

    0x7fff97bfc000 - 0x7fff98154ff7 com.apple.MediaToolbox (1.0 - 1731.15.202) /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox < A19F9D25-5333-3AA0-90FB-97F3F420A7EA >

    0x7fff98155000 - 0x7fff98180fff com.apple.idsfoundation (10.0 - 1000) < D6207A3B-2716-31F8-B216-85E43472D5CC > /System/Library/PrivateFrameworks/IDSFoundation.framework/Versions/A/IDSFoundat ion

    0x7fff98222000 - 0x7fff98230ff7 libbz2.1.0.dylib (38) < 28E54258-C0FE-38D4-AB76-1734CACCB344 > /usr/lib/libbz2.1.0.dylib

    0x7fff98231000 - 0x7fff9826dff7 com.apple.OSAKit /System/Library/Frameworks/OSAKit.framework/Versions/A/OSAKit < 8AE3C204-09F1-321A-B007-14D217F9EC59 > (1, 5-104)

    0x7fff9826e000 - 0x7fff982f7ff7 com.apple.PerformanceAnalysis (1.0-1) < 608E8C50-6F59-3FEB-B822-D9B02F328716 > /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis

    0x7fff98326000 - 0x7fff98f4ffff com.apple.AppKit /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit < 2492D315-76B6-320B-B542-231FCA44CA48 > (6, 9 - 1404.46)

    0x7fff9947d000 - 0x7fff99482ff7 libmacho.dylib (875.1) < 318264FA-58F1-39D8-8285-1F6254EE410E > /usr/lib/system/libmacho.dylib

    0x7fff99541000 - 0x7fff9974efff libicucore. A.dylib (551.51) < 35315A29-E21C-3CC5-8BD6-E07A3AE8FC0D >/usr/lib/libicucore. A.dylib

    0x7fff9974f000 - 0x7fff99752ffb libdyld.dylib (360.21) < 8390E026-F7DE-3C32-9486-3DFF6BD131B0 > /usr/lib/system/libdyld.dylib

    0x7fff99753000 - 0x7fff9989dff7 com.apple.coreui (2.1 - 366.1) < A3868F31-ACF4-3EA5-9E75-79ED44FA7F06 > /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI

    0x7fff998c5000 - 0x7fff998d4fff com.apple.PhotosFormats (1.5 - 370.42.0) < 9B1A1205-29E3-3A33-A41A-747FF6336E24 > /System/Library/PrivateFrameworks/PhotoLibrary.framework/Versions/A/Frameworks/ PhotosFormats.framework/Versions/A/PhotosFormats

    0x7fff998d5000 - 0x7fff998faff7 libPng.dylib (1444) < 47ACF98D-B5F1-3A03-B6FD-4107D5FAE5E9 > /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib

    0x7fff998fb000 - 0x7fff99915fff com.apple.Kerberos (< 1B4744BF-E5AE-38E2-AA56-E22D3270F2E8 > /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos 3.0 - 1).

    0x7fff99916000 - 0x7fff99cabfdb com.apple.vImage (8.0 - 8, 0) < 4BAC9B6F-7482-3580-8787-AB0A5B4D331B > /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework, Versions, A, vImage

    0x7fff99cac000 - 0x7fff99dbbfe7 libvDSP.dylib (563.5) < 9AB6CA3C-4F0E-35E6-9184-9DF86E7C3DAD > /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib

    0x7fff99e49000 - 0x7fff99e99ff7 com.apple.ExchangeWebServices (6.0 - 243) < 2F2827B5-9884-3593-9AD8-CB1B3C5FE83D > /System/Library/PrivateFrameworks/ExchangeWebServices.framework/Versions/A/Exch angeWebServices

    0x7fff99e9a000 - 0x7fff99f0afff com.apple.ids /System/Library/PrivateFrameworks/IDS.framework/Versions/A/IDS < ADE6E30D-F1DE-3D9E-BF1D-C32BA1B3FFA8 > (10.0 - 1000)

    0x7fff9a5e6000 - 0x7fff9a5e8ff7 (802.40.13) libsystem_configuration.dylib < 3DEB7DF9-6804-37E1-BC83-0166882FF0FF > /usr/lib/system/libsystem_configuration.dylib

    0x7fff9a5e9000 - 0x7fff9a88fff7 com.apple.CoreData (120-641, 3) < A29A5491-6169-372B-828F-84EE0CFD4BC4 > /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData

    0x7fff9a8ad000 - 0x7fff9a8beff7 (201.10.3) libsystem_trace.dylib < 25104542-5251-3E8D-B14A-9E37207218BC > /usr/lib/system/libsystem_trace.dylib

    0x7fff9a8bf000 - 0x7fff9a8e8fff com.apple.ProtectedCloudStorage (1.0-1) < 4850F751-E61B-30C0-B89A-B313601D3DB5 > /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/Pr otectedCloudStorage

    0x7fff9a8f8000 - 0x7fff9a903ff7 libChineseTokenizer.dylib (16) < 79B8C67A-3061-3C78-92CD-4650719E68D4 > /usr/lib/libChineseTokenizer.dylib

    0x7fff9a938000 - 0x7fff9a9f1ff7 com.apple.cloudkit.CloudKit /System/Library/Frameworks/CloudKit.framework/Versions/A/CloudKit < E235B37E-1491-3857-BDE8-38450D4FE8D0 > (482.29 - 482.29)

    0x7fff9a9f2000 - 0x7fff9aa04fff com.apple.CloudPhotoServicesConfiguration (1.5 - 370.42.0) < CDD720AF-F4C0-31CE-91DD-D2F4E0DEC109 > /System/Library/PrivateFrameworks/CloudPhotoServices.framework/Versions/A/Frame works/CloudPhotoServicesConfiguration.framework/Versions/A/CloudPhotoServicesCon figuration

    0x7fff9aa05000 - com.apple.CalendarFoundation (8.0 - 406, 1) < 3CC88B32-3EC8-3D7F-BDB0-663F5D691CC0 > 0x7fff9aa55ff7 /System/Library/PrivateFrameworks/CalendarFoundation.framework/Versions/A/Calen darFoundation

    0x7fff9aa56000 - 0x7fff9aa6bfff com.apple.ToneKit (< 6D5AD263-308F-3F70-8D86-7027569D2694 > /System/Library/PrivateFrameworks/ToneKit.framework/Versions/A/ToneKit 1.0 - 1.).

    0x7fff9aa6c000 - 0x7fff9aa88ff3 libresolv.9.dylib (60) < A650B5C8-1950-36A0-86D1-0B2465318BFA > /usr/lib/libresolv.9.dylib

    0x7fff9aa9a000 - 0x7fff9ab73fff com.apple.CoreMedia (1.0 - 1731.15.202) /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia < D2A49E52-9D26-35A8-BDDC-3BCDBEC5A19E >

    0x7fff9b4a9000 - 0x7fff9b561ff7 com.apple.CoreDuet (< 058EAEDE-156F-309C-AB61-34C61B93D967 > /System/Library/PrivateFrameworks/CoreDuet.framework/Versions/A/CoreDuet 1.0 - 1.).

    0x7fff9b562000 - 0x7fff9b586fff com.apple.quartzfilters (1.10.0 - 1.10.0) < F5C482E2-5AFB-3959-8C01-C149D48E7583 > /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters

    0x7fff9b587000 - 0x7fff9b74dfe7 com.apple.ImageIO.framework (3.3.0 - 1444) < 54F18254-F31B-3464-BB51-BAF9E9620419 > /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO

    0x7fff9b7c4000 - 0x7fff9b7c6fff com.apple.loginsupport (1.0-1) < 9B2F5F9B-ED38-313F-B798-D2B667BCD6B5 > /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsu pport.framework/Versions/A/loginsupport

    0x7fff9b7c7000 - 0x7fff9ba4eff7 com.apple.CFNetwork (760.4.2 - 760.4.2) /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork < 24C4A390-3079-358A-8D51-75A3E818A6DF >

    0x7fff9ba4f000 - 0x7fff9bb14ff7 com.apple.iChat.SocialUI (8.0 - 5100) < C1AB9CF9-01BC-33E2-87B6-54B801AC5FD6 > /System/Library/PrivateFrameworks/SocialUI.framework/Versions/A/SocialUI

    0x7fff9bb15000 - 0x7fff9bb18fff libspindump.dylib (197,1) < 48F4C673-9F0C-38BE-B550-88241E812518 > /usr/lib/libspindump.dylib

    0x7fff9bc06000 - 0x7fff9bc09fff libCoreVMClient.dylib (119.5) < 560D70FB-709F-3030-96C9-F249FCB7DA6D > /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib

    0x7fff9cb1c000 - 0x7fff9cb4dffb com.apple.avfoundationcf (2.0 - 211, 11) < 9E213C89-5840-39A2-9E64-EBAB4B8E8895 > /System/Library/PrivateFrameworks/AVFoundationCF.framework/Versions/A/AVFoundat ionCF

    0x7fff9cb4e000 - 0x7fff9cb72fff libJPEG.dylib (1444) < AECB826C-8B14-3D04-8DEC-33EE85F5150D > /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib

    0x7fff9cb73000 - 0x7fff9ccd9fff com.apple.MapKit /System/Library/Frameworks/MapKit.framework/Versions/A/MapKit < 2E289A8D-5629-3A9B-93F3-E439747C3A09 > (1.0 - 1620.41)

    0x7fff9ccdc000 - 0x7fff9cf72fff libmecabra.dylib (696.5) < EF6C0BD4-5FE8-34FB-8ADF-69A53CEC97A9 > /usr/lib/libmecabra.dylib

    0x7fff9cf73000 - 0x7fff9cf8fff7 (67.40.1) libsystem_malloc.dylib < 5748E8B2-F81C-34C6-8B13-456213127678 > /usr/lib/system/libsystem_malloc.dylib

    0x7fff9cf90000 - 0x7fff9cfb2fff com.apple.IconServices (68, 1-68, 1) < CDEEDBE6-F53B-3BA1-82D4-23BCA3DD8949 > /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s

    0x7fff9cfb3000 - 0x7fff9cfb3fff com.apple.AOSMigrate (< 17A49E04-567B-3B4F-9975-E8F83AE8357D > /System/Library/PrivateFrameworks/AOSMigrate.framework/Versions/A/AOSMigrate 1.0 - 1.).

    0x7fff9d0fe000 - 0x7fff9d460f3f libobjc. A.dylib (680) < 7489D2D6-1EFD-3414-B18D-2AECCCC90286 >/usr/lib/libobjc. A.dylib

    0x7fff9d461000 - 0x7fff9d46ffff libxar.1.dylib (302) < 03207F66-2C4A-3DBD-8D81-70F4C85903C4 > /usr/lib/libxar.1.dylib

    0x7fff9d470000 - 0x7fff9d560fff libJP2.dylib (1444) < 27371567-A122-3217-ADA0-3A446EF6A3E9 > /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib

    0x7fff9d573000 - 0x7fff9d5dfff7 com.apple.contacts.Contacts /System/Library/Frameworks/Contacts.framework/Versions/A/Contacts < 2726B3FB-7A00-34E0-8BBF-7E5395C35527 > (1.0 - 2137.1)

    0x7fff9d5e0000 - 0x7fff9d5fbff7 com.apple.icloud.FMCore (< D7630506-FB79-33EC-95A0-9FB71ED38EB3 > /System/Library/PrivateFrameworks/FMCore.framework/Versions/A/FMCore 1.0 - 1.).

    0x7fff9d5fc000 - 0x7fff9d604fff com.apple.frameworks.CoreDaemon /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon < CC53DC12-9231-3C4F-921B-9A770D463323 > (1.3 - 1.3)

    0x7fff9d605000 - 0x7fff9d610fff com.apple.CrashReporterSupport (10.11 - 717) < 474544AD-1199-3ECC-90E5-071847BA72C6 > /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport

    0x7fff9d617000 - 0x7fff9d61cff7 libheimdal - asn1.dylib (453.40.10) < 981DE40B-FA16-36F7-BE92-8C8A115D6CD9 > /usr/lib/libheimdal-asn1.dylib

    0x7fff9d61d000 - 0x7fff9d621fff libcache.dylib (75) < 9548AAE9-2AB7-3525-9ECE-A2A7C4688447 > /usr/lib/system/libcache.dylib

    0x7fff9d622000 - 0x7fff9d708ff7 (59.40.2) libcrypto.0.9.8.dylib < 2486D801-C756-3488-B519-1AA6807E8948 > /usr/lib/libcrypto.0.9.8.dylib

    0x7fff9d709000 - 0x7fff9d723ff3 liblzma.5.dylib (10) < CC03591B-FA57-3CA5-AC81-0D76033AC0CE > /usr/lib/liblzma.5.dylib

    0x7fff9d921000 - 0x7fff9d96dff7 com.apple.corelocation /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation < 6336CFC5-9D7D-3B76-B263-56DD6EBD0B8D > (1486.17 - 1615.38)

    0x7fff9d9bd000 - 0x7fff9da93ffb com.apple.DiskImagesFramework (10.11.3 - 417.2) < 7412BC0B-A895-350D-B829-1E3A6FF5EC3F > /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages

    Summary of the external change:

    Calls made by other processes for this process:

    task_for_pid: 1

    thread_create: 0

    thread_set_state: 0

    Calls made by this process:

    task_for_pid: 0

    thread_create: 0

    thread_set_state: 0

    Calls made by all processes on this machine:

    task_for_pid: 891067

    thread_create: 0

    thread_set_state: 0

    Summary region VM:

    ReadOnly part of libraries: Total = 424.0 M resident = 0 K (0%) swapped_out_or_unallocated=424.0M(100%)

    Regions in writing: Total = 138.4 M written = 0 K (0%) resident = 0 K (0%) swapped_out = 0 K (0%) unallocated=138.4M(100%)

    VIRTUAL REGION

    The NUMBER of DIMENSIONS of TYPE REGION (not melted)

    ===========                     =======  =======

    2048K 2 follow-up activity

    CG shared images 144K 5

    CoreUI image file 160K 3

    Ship continuations 16.0 M 2

    Foundation 4K 2

    Kernel Alloc once 8 K 3

    MALLOC 104.4 M 24

    MALLOC 32K 7 cover page

    Corpse process Info 2048 K 2

    BATTERY GUARD 56.0 M 12

    Stack of 12.6 M 12

    VM_ALLOCATE 44K 7

    __DATA 57.9 M 419

    2588 K 2 __GLSLBUILTINS

    __IMAGE 528K 2

    __LINKEDIT 108.3 M 58

    __TEXT 315,9 411 M

    __UNICODE 552K 2

    mapped file 41.7 M 8

    shared memory 324K 9

    ===========                     =======  =======

    TOTAL M 721,2 972

    Model: MacBookPro11, 3, MBP112.0138.B17 of BootROM, 4 processors, Intel Core i7, 2.5 GHz, 16 GB, MSC 2.19f12

    Graphics card: Intel integrated Iris Pro, Intel Iris Pro,

    Graphics card: NVIDIA GeForce GT 750 M, NVIDIA GeForce GT 750 M, PCIe, 2048 MB

    Memory module: BANK 0/DIMM0, 8 GB, DDR3, 1600 MHz, 0x80AD, 0x484D54343147533641465238412D50422020

    Memory module: BANK 1/DIMM0, 8 GB, DDR3, 1600 MHz, 0x80AD, 0x484D54343147533641465238412D50422020

    Airport: spairport_wireless_card_type_airport_extreme (0x14E4, 0 x 134), Broadcom BCM43xx 1.0 (7.21.95.175.1a6)

    Bluetooth: Version 4.4.4f4 17685, 3 services, 27 aircraft, 1 incoming serial ports

    Network service: Wi - Fi, AirPort, en0

    Serial ATA Device: APPLE SM0512F, GB 500,28 SSD

    USB device: USB 3.0 Bus

    USB device: Apple keyboard / Trackpad

    USB device: Hub BRCM20702

    USB Device: USB Bluetooth host controller

    Bus crush: MacBook Pro, Apple Inc., 17.1

    Save your photo library and then press the command and option keys while launching Photos and repair database

    LN

  • Cannot find slideshow on iPad Pro settings

    I have a new iPad Pro, fully updated to the latest version of iOS and all applications. I tried to find the parameters of the slideshow for pictures. The manual said to go to settings > Photos & camera and lists the different settings, I should find there, including the slide show. Here's what I see.

    There is no place to go from here. So, how to change my settings for slide show?

    The settings are in the photos app itself. Select the album that you want to use in the photos app. You can see the slideshow at the top right. Tap that. When the slide show begins, press on the picture on the screen and word Options will appear at the bottom right. Tap on that and you can change the music, style, speed, etc.

  • Apple TV 4 photo slideshow setting

    Can someone tell me why the Apple TV 4 64 GB gen continually crashes when you try to play photo slideshows?

    The gen 3 worked a treat (AND ALLOWED YOU to CHOOSE MUSIC PLAYLIST TO GO WITH THE slide show ON) but I digress...

    When you attempt to start a slide show in 'classic' or 'Effect Ken Burns' during 5 seconds per photo, I get about three or photos before the slideshow crashes and return to the menu.

    I did something wrong in the settings or parameters, or is a pretty big problem with generation 4?

    The slide show feature is pretty poor in the last gen Apple TV. You will need to use a 3rd party application like Slidez if you want something decent, or return to the Gen 3, while you wait for a newer version.

  • stops unexpectedly when I try to run an iPhoto slideshow

    Having worked perfectly for the last 3 years of iPhoto stops whenever I'm trying to make a slide show. Advice please?

    Use a theme places your slideshow?

    iPhoto 9.4.3 in crashing a few days ago for several people, probably crashing because Google Maps servers are no longer available.

    Watch a bug in Huxly in this discussion:

    There is a problem with the functionality of the site, because Google maps will no longer be supported.

    See the solution of Huxly647:

    Huxly647 , November 20, 2015 12:05 AM
    Re: iPhoto crashes after opening several times in reply to carvermon Useful

    I found a solution that works for me...

    1 goto /Applications/iPhoto.app/Contents/Resources

    2 delete the files 'googlemap.html' and googlesearch.html

    IPhoto no longer crashes, site does not work, but it doesn't bother me too much.

    Let me know if it works for you guys...

    Deletes two files "googlemap.html" and the googlesearch.html of iPhoto application bundle prevents the JavaScript running inside and causing the accident.  To access the files inside the iPhoto application select it in the Finder and ctrl-click on it. Then use the command "Show Package Contents" from the menu.  Open the content subfolder and then resources.

    Do not try this fix without making a copy of the iPhoto application before trying to delete the two files of the entire application.

    To access the files inside the iPhoto application select it in the Finder and ctrl-click on it. Then use the command "Show Package Contents" from the menu.  Open the content subfolder and then resources.

  • View as a slideshow on the secondary screen

    My computer is equipped with a projector connected via a graphics card and the office is extended. The primary monitor is the computer desktop. This feature is required for an application called EasyWorship which displays songs and readings from the bible to a Congregation of the Church.

    Sometimes someone wants a collection of photos to display as a slideshow wheelchair. It's difficult to achieve with EW but easy in Windows XP using the slideshow feature like in the Explorer. But this display on the primary monitor. Even if I drag the window of the Explorer on the secondary monitor and view as a slide show, the sequence appears only on the primary monitor.

    The current workaround is to create a photobook fast using Microsoft PowerPoint, where one or more folders of photos can be inserted in slides with a few clicks. The presentation can then be imported in EW and shown on the projector ewasily. If the presentation is recorded as a continuous loop, it will loop in EW.

    How can I get the Explorer to display slideshows on the secondary monitor?

    Richard

    Windows XP Pro

    I tried this but I couldn't do what I wanted. It is my conclusion - because my main monitor screen is my secondary monitor resolution, not all pixels may be displayed on the secondary, and the rest appeared on the primary.

    I ran a search and found Multishow (http://www.mediachance.com/free/multishow.htm). What I'll use.

Maybe you are looking for

  • Load fast iPhone 5s?

    Can you iPhone 5s fast recharge?  If so, how?

  • I think I uninstalled my sound how do I get it back

    I think I uninstalled my sound how do I get it back

  • G430 4152 2008

    I installed Windows xp sp3 on my Lenovo 3000 G430 - 4152 20008 my problem is that the drivers are ok in DEVICE Manager, but impossible to activate the Wi - Fi and Bluetooth. I followed the following instructions in the manual too... like 1. Turn on t

  • How can I transfer photos or data on a USB

    I have a few movies and photos that I want to transfer on a usb key, how do I

  • Saving image with data in QVariant

    JPEG image is converted to QVariant (with bb::cascades:Image) by using the following code m_image is bb::cascades:Image m_image = bb::cascades:Image (imageData); Converted to QVariant using QVariant::fromValue (m_image) The image is displayed in qml.