Problem with the help of DLL functions

Hello.

I'm writing a DLL that calls the functions of a DLL camera and them ends and passes of LabView. I wrote some code of practice and the dll of passage of functions and events with Labview and LabWindows/CVI DLLs, so I like to think I have a reasonable understanding on what I'm trying to do. However I keep getting errors in calling the functions of DLL functions camera I want to use in my DLL.

I have two functions in the camera DLL, XC_AddImageFilter, and XC_RemImageFilter, I would like to wrap and put at disposal in my DLL. When I compile I get the following errors:

2 link project errors, Undefined symbol '_XC_AddImageFilter' referenced in "ImageFilter.c". Undefined symbol '_XC_RemImageFilter' referenced in "ImageFilter.c".

I tried to tweak the prototypes in my header file and the change in functions but nothing I try seems to work. I connected the camera DLL in my project in a way that was previously successful with another practice DLLs and I browsed this forum for similar problems, but I can't seem to find a soloution.

Thank you for taking the time to read this. I hope that you will be able to help me with my problem.

PS I had problems to join my code so I put an extension .txt at the end and apparently has worked so please forgive the suspicious file extensions.

Sorry!

I do not understand the Labview.lib file which is why Labview functions weren't working! Duh!

#begginer errors!

Tags: NI Software

Similar Questions

  • 7 error "Paris 7.2.241.1enRegInstaller.exe of work and has been closed." A problem with the application to stop functioning properly. Windows will notify you if a solution is available.

    Original title - 7.2.241.1enRegInstaller.exe

    Hello.

    Today, JUST after I "Set Windows to update," twice, I got the disconcerting message:

    "Paris 7.2.241.1enRegInstaller.exe of working and was closed".

    A problem with the application to stop functioning properly.  Windows will notify you if a solution is available. »

    Any wisdom or experience with this?  I'm on a 64-bit HP Pavilion older (dv7-1245dx) with this OS JUST-update Windows (Vista Home Premium).

    Thank you.

    GIES W

    The solution has been found just uninstall bing bar, restart the computer, and if you want just bing toolbar to reinstall. This easy solution my system fixed.  Bing has again reminded all my points that I have amassed

  • Problems with the help of web camera, it shows it programs and on the desktop. But when I double click on it. It will go to the program do not know what to do. Help, please. Thank you.

    Having problems with the help of web camera program does not work when I click it. don't know what to do. Please help thanks.

    Hello

    Right click on the shortcut tab icon - properties - look on the target line to see where and what type of program
    is supposed to work.

    You will probably need to reload the drivers of the device and any camera control software.

    Login as an administrator.

    Double-click Control Panel / Device Manager - Imaging - writing down of the brand and model of camera.
    on this subject and on the tab of the driver is version. Now, click on update drivers (who are unable to do anything as MS
    is far behind the pilots of certification). RIGHT click on the camera - UNINSTALL - REBOOT - it
    will update the driver stack.

    Now, go to the system manufacturer's website and download the latest driver for the camera and the other related camera
    software (if not more recent get the same).

    Download - SAVE - go to them and RIGHT CLICK - RUN AS ADMIN - reboot after each driver.

    Look at the sites of the manufacturer for drivers - and the manufacturer of the device manually.
    http://pcsupport.about.com/od/driverssupport/HT/driverdlmfgr.htm

    How to install a device driver in Vista Device Manager
    http://www.Vistax64.com/tutorials/193584-Device-Manager-install-driver.html

    Then let windows updates on however prevent loading of drivers who are often older than the
    those that you have installed. If updates suggests a pilot and then HIDE it and watch manually to see if their
    really is a more recent version (at the time system manufacturer and the sites of the manufacturer of the device).

    How to disable automatic driver Installation in Windows Vista - drivers
    http://www.AddictiveTips.com/Windows-Tips/how-to-disable-automatic-driver-installation-in-Windows-Vista/
    http://TechNet.Microsoft.com/en-us/library/cc730606 (WS.10) .aspx

    I hope this helps.
    Rob - bicycle - Mark Twain said it is good.

  • problem with the help of the conditional formatting on a cell that is defined as the percentage

    Hi all

    I am facing a problem with the help of the conditional formatting on a cell that is defined as the percentage.

    I am using beaches for example:

    is equal to or greater than 10% - green color

    5%-10%-yellow

    less than or equal to 5%-color red


    the problem is that keeps the value 10% get yellow color when it should get green.


    i thought that is a rounding issue but when I change the definitions of the cell to learn more decimal places I see this part of the percentage 9.65% and some of them are 10.00% and they are both colored in yellow.

    I also tried to change the way range of 6 to 9%, but values between 9.65% or 5.5% are not colored.


    I really enjoy your help!

    You know the reason and the solution.

    change the format of the column and go or add a column more with decimal and opt for conditional and hide report.

    Thank you

    http://cool-bi.com

  • Problem with the help of oraext: query-database in the transformation (XSLT 2.0)

    Hello!
    I m facing a problem with the help of oraext: query-database.

    In my transformation im try the following (Simplified):
    <xsl:template match="*">
      <xsl:variable sqlQuery="select ....."/>
      <xsl:variable name="storeSec" select="oraext:query-database($sqlQuery,true(),true(),'jdbc/xref')/>               
        <xsl:choose>
         <xsl:when test="string-length($storeSec/ROWSET/ROW[1]/STORE_PART_SECTION) > 0">
              <xsl:value-of select="$storeSec/ROWSET/ROW[1]/STORE_PART_SECTION"/>
         </xsl:when>
           <xsl:otherwise>
                <xsl:value-of select"some other val"/>
           </xsl:otherwise>
        </xsl:choose>
    </xsl:template>
    {code}
    
    This always results in +some+ +other+ +val+ !!
    I´v checked the output from oraext:query-database by using getcontentAsString and if I instead test putting the expected output from oraext:queryDatabase in my variable it gives me A100 which is what i expected.
    
    {code}
    <xsl:template match="*">
      <xsl:variable sqlQuery=select ....."/>
      <xsl:variable name="storeSec">
        <ROWSET>
         <ROW num="1">
           <STORE_PART_SECTION>A100</STORE_PART_SECTION>
         </ROW>
         <ROW num="2">
           <STORE_PART_SECTION>XXm</STORE_PART_SECTION>
         </ROW>
        </ROWSET>
      </xsl:variable>               
        <xsl:choose>
         <xsl:when test="string-length($storeSec/ROWSET/ROW[1]/STORE_PART_SECTION) > 0">
              <xsl:value-of select="$storeSec/ROWSET/ROW[1]/STORE_PART_SECTION"/>
         </xsl:when>
           <xsl:otherwise>
                <xsl:value-of select"some other val"/>
           </xsl:otherwise>
        </xsl:choose>
    </xsl:template>
    How to get the correct value when you use oraext:query - database?

    How should you exit? Several item ID with each having a value of the result set?
    If Yes, then you can try following:

     
                        
                            
                        
                             
                                  
                             
                        
                            
    
  • Problem with the arguments of a function

    I'm having a problem with the arguments of a function does not. In the attached example, the values passed to the function never appear within the function.

    Can someone tell me what I am doing wrong?

    Thank you
    David

    * the params in your displayPic function should be only by var, not their names name var and their data types *.

    Copy and paste the code I wrote below in a new flash on chassis of the _root document, follow the code, test the movie and check your output window. you will see how to pass arguments to a function is as simple as 1, 2, 3.

  • Known problems with the help of 64 bit Essbase with version 11 planning?

    Hello Experts,


    One of my clients is considering moving to the 64-bit Essbase. Are there known issues with the help of 64 bit Essbase (11.1.1.0.00) with the version 11 planning?


    Thank you

    Jingle

    I tested and there is no problem at all, if your planning server is 32-bit, you just install the 32-bit Essbase client that can communicate with the 64-bit server.

  • Problem with the help of the $s javascript function to fill a page element

    Hello Oracle APEX community,

    I work on a page dashboard of exploration down and have been a problem when I try to fill a Page of text (hidden or not) element using javascript built in function $s.
    The feature works very well when the data is a number such as dept_id (even if the field type is varchar type). However, trying to pass what is a text the process fails, unless a value is hardcoded as parameter to the function. So, for example, I have a table with constituents by State counties. I would like to fill out (filter) a table based on when you click a bar for a State without having to submit the page. I use dynamic actions and built in javascript function in the SQL code for the graph to achieve; But even once, it works fine when I use a field varchar as the FIPS code (FIPS for Texas is "48"), but when I try to fill the page element by using the abbreviation of the State "TX" (new varchar), it fails.

    Here is an example of code that works:
    SELECT 'javascript:$s("P1_DEPTNO",'||d.deptno||')' LINK,
    d.dname LABEL,
    sum(e.SAL) sal
    FROM emp e, dept d
    where e.deptno = d.deptno
    group by 'javascript:$s("P1_DEPTNO",'||d.deptno||')', d.dname 
    And here is an example of code that does not work:
    SELECT 'javascript:$s("P1_DEPTNO",'||d.loc||')' LINK,
    d.dname LABEL,
    sum(e.SAL) sal
    FROM emp e, dept d
    where e.deptno = d.deptno
    group by 'javascript:$s("P1_DEPTNO",'||d.loc||')', d.dname 
    However, when I hard code a value the script text works:
    SELECT 'javascript:$s("P1_DEPTNO","BOSTON")' LINK,
    d.dname LABEL,
    sum(e.SAL) sal
    FROM emp e, dept d
    where e.deptno = d.deptno
    group by 'javascript:$s("P1_DEPTNO","BOSTON")', d.dname
    ORDER BY d.dname 
    I encounter this problem on several versions of the APEX: (4.0.2.00.07 - local installation) and (4.1.0.00.28 - apex.oracle.com)

    Does anyone know of this problem and how to solve? I have looked for the parameters of the element of the page itself and can not understand.
    I rewrote my sql to use the fields of value of my tables instead, but I have a few objects on the page that will really depend on the data of base characters instead.

    Thank you
    Wayne

    In your javascript that you generate, surround your value with quotes and it will then should always work with the numbers and strings (your channels are probably interpreted as variable names and that they do not exist when running, so slip out).

    Example:

    SELECT 'javascript:$s("P1_DEPTNO","'||d.loc||'")' LINK,
    

    Published by: gti_matt on August 16, 2011 09:50

  • Problems with the help of the keyboard of the computer.

    Hi all

    Before anyone asks, I checked on several threadS already existing and followed the advice here, and nothing has worked. I'll briefly explain what these were, but first, let me describe the problem. NB. my knowledge of the correct computer terminology is limited, but I tried to explain it all my best.

    S key

    AS you can probably until my S button works, but unless shift caps lock is enabled it will profit from "95% of the time. Surprisingly, it didn't when I typed in ' then comes. After restarting my computer, it won't happen because on the first 2 - 5 times, I press the of ', and then stops, past at random during anything I type. Also, if I'm holding down SHIFT and pressing on the ' key, nothing will come on the screen. Finally, sometimes by pressing on the ' key will lead to nothing on the screen.

    NumLock key

    Another problem is that whenever I have a browser open and press the NumLock key, it works as if I am pressing F11 and makes the screen go full-size.

    SHIFT key

    When I go to capitalize some letters - including, possibly not exhaustive w, z and x - by holding down the SHIFT key, nothing letter will appear on the screen.

    Keys combined

    A number of keys, for example 0 key, hyphen, equalS, hooks and back SlaSh is combined to make the following respectively:

    • 0 (zero)
    • ---] (dash)
    • 0 = (equal)
    • [------(Hook)]
    • ---] (Crochet)
    • # (back SlaSh)

    It of extremely frustrating and makes extremely tedious typing assignments.

    No secondary function for key 2

    If I want to use a double apostrophe or the at sign, I have to change the input language to either Americans or the British, press SHIFT and use the apostrophe key. Pressing SHIFT and 2 key results in nothing.

    Attempted SolutionS

    These problems have persisted for about a week now, and I've tried a number of things, such as MS FixIt (which found no errors) running, run a clean boot and uninstall a reinstallation of the keyboard. I use a laptop Acer ASpire 5253 G model and have Norton 360 installed, active and ran several ScanS. So far, nothing has worked, and I'm not sure what to do. I doubt also that it is a material also issues, as all affected keys work though having some with impaired or deffective operation or the problem is not present all the time (as with the s key).

    If someone could offer some SolutionS, that would be greatly appreciated.

    Kind regards

    Joe

    Hello

    It is a hardware problem.

    Suggest that to contact Acer Support for help.

    Acer Product Support select your location:

    http://Acer.com/us/en/product/default.aspx

    Acer | Support:

    http://us.Acer.com/AC/en/us/content/service

    Acer Support - answers, E-Mail, Chat - find answers:

    http://Acer.custhelp.com/app/answers/list

    Acer Support community forums:

    http://community.Acer.com/

    Concerning

  • Problems with the help of Windows 8 Mail

    Hello.

    I encountered some problems with Windows 8 Mail that I hope you can help:

    I configured the other IMAP email accounts on my Windows 8 Mail. But facing problems with it;

    (1) emails took very long to cool. Also I'm unable to delete e-mails. As soon as I delete a message, it appears again and gives an error - Email is not available

    (2) cannot create new folders. Gives an error - the action I'm doing may not be completed.

    (3) I am also unable to save an Email Signature with links. It won't let me save a plain text signature.

    Y at - it a setting that I missed? I thought that the option of e-mail with Windows 8 has been very effective, that's why I chose to merge my other accounts work for this.

    Help, please. Thank you

    The Mail app can not handle the mail POP and is limited to Basic for IMAP mail functions. Use the post office to work. You'll have more control and features.

  • Photos 1.5 crashes every time open, recently tried to synchronize the photos from the iphone, a video seems to have caused the problem, with the help of el Capitan, earlier rebuilt old iphones library, no problems until today process: Photos [695] path:

    Process: Photos [695]

    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 [695]

    User ID: 504

    Date/time: 2016-05-28 20:06:04.500-0700

    OS version: Mac OS X 10.11.5 (15F34)

    Report Version: 11

    Anonymous UUID: EBE5C459-BADA-975A-F499-8AE88DE0F021

    Time since started awake: 2400 seconds

    Integrity of system protection: enabled

    Crashed Thread: the queue on the expedition 11: video PAPreviewWriter queue

    Exception type: EXC_BREAKPOINT (SIGTRAP)

    Exception codes: 0 x 0000000000000002, 0 x 0000000000000000

    Note the exception: EXC_CORPSE_NOTIFY

    Request for clarification:

    CFEqual() called with the second argument NULL *.

    Global tracking buffer (second chronological reverse):

    0.515657 PAImaging 0x000000010d8f660d previewMaker - versionId (reduced) image load = 16338, type = 8, subtype = 4, specialType = 0

    0.516697 AppleJPEG 0x00007fff8840ea11 [0x7fa1031f2800] release session

    0.518502 AppleJPEG 0x00007fff8841111c [0x7fa1031f2800] decoding completed without errors

    0.524127 AppleJPEG 0x00007fff8840f0fc [0x7fa1031f2800] Options: 1182 x 665 [FFFFFFFF, FFFFFFFF] 00025060

    0.524127 AppleJPEG 0x00007fff8840efae [0x7fa1031f2800] decoding: C0 0x049E0299 0x004A304A 0 x 22111100 256455 0x00000000

    0.524682 AppleJPEG 0x00007fff8840e05e [0x7fa1031f2800] created session

    0.715213 AppleJPEG 0x00007fff8840ea11 [0x7fa103971000] release session

    0.715284 AppleJPEG 0x00007fff8841111c [0x7fa103971000] decoding completed without errors

    0.715456 AppleJPEG 0x00007fff8840f0fc [0x7fa103971000] Options: 128 x 96 [FFFFFFFF, FFFFFFFF] 00025060

    0.715456 AppleJPEG 0x00007fff8840efae [0x7fa103971000] decoding: C0 0 00800060 0x0008304A x 22111100 x 0 0 x 00000000 8159

    0.715857 AppleJPEG 0x00007fff8840e05e [0x7fa103971000] created session

    0.725932 AppleJPEG 0x00007fff8840ea11 [0x7fa103244000] release session

    0.726917 AppleJPEG 0x00007fff8841111c [0x7fa103244000] decoding completed without errors

    0.726917 AppleJPEG 0x00007fff8840f0fc [0x7fa103244000] Options: 128 x 96 [FFFFFFFF, FFFFFFFF] 00025060

    0.726917 AppleJPEG 0x00007fff8840efae [0x7fa103244000] decoding: C0 0 00800060 0x0008304A x 22111100 x 0 0 x 00000000 8159

    0.726917 AppleJPEG 0x00007fff8840e05e [0x7fa103244000] created session

    0.736929 AppleJPEG 0x00007fff8840ea11 [0x7fa103247e00] release session

    0.737008 AppleJPEG 0x00007fff8841111c [0x7fa103247e00] decoding completed without errors

    0.737182 AppleJPEG 0x00007fff8840f0fc [0x7fa103247e00] Options: 128 x 107 [FFFFFFFF, FFFFFFFF] 00025060

    0.737182 AppleJPEG 0x00007fff8840efae [0x7fa103247e00] decoding: C0 0x0080006B 0x0008304A 0 22111100 x 0 x 00000000 6937

    0.737651 AppleJPEG 0x00007fff8840e05e [0x7fa103247e00] created session

    0.756242 AppleJPEG 0x00007fff8840ea11 [0x7fa103244200] release session

    0.758635 AppleJPEG 0x00007fff8841111c [0x7fa103244200] decoding completed without errors

    0.758635 AppleJPEG 0x00007fff8840f0fc [0x7fa103244200] Options: x - 1 2 [FFFFFFFF, FFFFFFFF] 0001D 060

    0.758635 AppleJPEG 0x00007fff8840efae [0x7fa103244200] decoding: C0 0x0168010D 0x0017304A 0 22111100 x 0 x 00000000 43773

    0.758635 AppleJPEG 0x00007fff8840e05e [0x7fa103244200] created session

    0.765184 AppleJPEG 0x00007fff8840ea11 [0x7fa10324a600] release session

    0.766592 AppleJPEG 0x00007fff8841111c [0x7fa10324a600] decoding completed without errors

    0.766592 AppleJPEG 0x00007fff8840f0fc [0x7fa10324a600] Options: x - 1 2 [FFFFFFFF, FFFFFFFF] 0001D 060

    0.766592 AppleJPEG 0x00007fff8840efae [0x7fa10324a600] decoding: C0 0x00E30168 0x000F304A 0 22111100 x 0 x 00000000 33702

    0.766592 AppleJPEG 0x00007fff8840e05e [0x7fa10324a600] created session

    0.774327 AppleJPEG 0x00007fff8840ea11 [0x7fa1031d3800] release session

    0.774327 AppleJPEG 0x00007fff8841111c [0x7fa1031d3800] decoding completed without errors

    0.774327 AppleJPEG 0x00007fff8840f0fc [0x7fa1031d3800] Options: x - 1 2 [FFFFFFFF, FFFFFFFF] 0001D 060

    0.774327 AppleJPEG 0x00007fff8840efae [0x7fa1031d3800] decoding: C0 0x0168012A 0x0017304A 0 22111100 x 0 x 00000000 50428

    0.774327 AppleJPEG 0x00007fff8840e05e [0x7fa1031d3800] created session

    0.780782 AppleJPEG 0x00007fff8840ea11 [0x7fa10397a200] release session

    0.781832 AppleJPEG 0x00007fff8841111c [0x7fa10397a200] decoding completed without errors

    0.783074 AppleJPEG 0x00007fff8840f0fc [0x7fa10397a200] Options: x - 1 2 [FFFFFFFF, FFFFFFFF] 0001D 060

    0.783074 AppleJPEG 0x00007fff8840efae [0x7fa10397a200] decoding: C0 0 01130168 0x0012304A x 22111100 x 0 0 x 00000000 61605

    0.783326 AppleJPEG 0x00007fff8840e05e [0x7fa10397a200] created session

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

    0 libsystem_kernel.dylib 0x00007fff8a0a7fae semaphore_wait_trap + 10

    1 libsystem_platform.dylib 0x00007fff92ee4ce8 _os_semaphore_wait + 16

    2 libdispatch.dylib 0x00007fff89cdf994 _dispatch_barrier_sync_f_slow + 594

    3 com.apple.PhotoFoundation 0x000000010d533d68-[_PFFastDispatchQueue dispatchSync:] + 139

    4 com.apple.Photos 0x000000010bd4a632 0x10bd06000 + 280114

    5 com.apple.Photos 0x000000010c23deb3 0x10bd06000 + 5471923

    6 com.apple.Photos 0x000000010bd5357a 0x10bd06000 + 316794

    7 com.apple.Photos 0x000000010bd531ec 0x10bd06000 + 315884

    8 com.apple.Photos 0x000000010bd473fb 0x10bd06000 + 267259

    com.apple.Photos 9 0x000000010bd52fa7 0x10bd06000 + 315303

    10 com.apple.Photos 0x000000010bd412c6 0x10bd06000 + 242374

    11 com.apple.swe.UXKit 0x000000010d26c549-[UXViewController _prepareForAnimationInContext:completion:] + 50

    12 com.apple.swe.UXKit 0x000000010d2d7211-[UXNavigationController _prepareForAnimationInContext:completion:] + 139

    13 com.apple.swe.UXKit 0x000000010d2c60de-[UXSourceController _prepareViewController:forAnimationInContext:completion:] + 69

    14 com.apple.swe.UXKit 0x000000010d2c715a __60-[UXSourceController _beginTransitionWithContext:operation:] + 396 _block_invoke831

    15 com.apple.swe.UXKit 0x000000010d2c7310 __60-[UXSourceController _beginTransitionWithContext:operation:] + 32 _block_invoke853

    16 com.apple.swe.UXKit 0x000000010d2c60e7-[UXSourceController _prepareViewController:forAnimationInContext:completion:] + 78

    17 com.apple.swe.UXKit 0x000000010d2c68f7-[UXSourceController _beginTransitionWithContext:operation:] + 2035

    18 com.apple.swe.UXKit 0x000000010d2c0fa3-[UXSourceController _setSelectedViewController: animation: sender:] + 1184

    19 com.apple.swe.UXKit 0x000000010d2c129e-[UXSourceController _setSelectedIndex: animation: sender:] + 268

    20 com.apple.swe.UXKit 0x000000010d2c3372 __68-[UXSourceController setRootViewControllers:destination:completion:] + 66 _block_invoke_2621

    21 com.apple.swe.UXKit 0x000000010d2c3309 __68-[UXSourceController setRootViewControllers:destination:completion:] + 326 _block_invoke620

    22 libdispatch.dylib 0x00007fff89cdc93d _dispatch_call_block_and_release + 12

    23 libdispatch.dylib 0x00007fff89cd140b _dispatch_client_callout + 8

    24 libdispatch.dylib 0x00007fff89ce4c1c _dispatch_main_queue_callback_4CF + 1685

    25 com.apple.CoreFoundation 0x00007fff973799e9 __CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE__ + 9

    26 com.apple.CoreFoundation 0x00007fff973388dd __CFRunLoopRun + 1949

    27 com.apple.CoreFoundation 0x00007fff97337ed8 CFRunLoopRunSpecific + 296

    28 com.apple.HIToolbox 0x00007fff97f71935 RunCurrentEventLoopInMode + 235

    29 com.apple.HIToolbox 0x00007fff97f7176f ReceiveNextEventCommon + 432

    30 com.apple.HIToolbox 0x00007fff97f715af _BlockUntilNextEventMatchingListInModeWithFilter + 71

    31 com.apple.AppKit 0x00007fff8f154df6 _DPSNextEvent + 1067

    32 com.apple.AppKit 0x00007fff8f154226-[NSApplication _nextEventMatchingEventMask:untilDate:inMode: dequeue:] + 454

    33 com.apple.AppKit 0x00007fff8f148d80-[NSApplication run] + 682

    34 com.apple.AppKit 0x00007fff8f112368 NSApplicationMain + 1176

    35 libdyld.dylib 0x00007fff8c0235ad start + 1

    Thread 1:

    0 libsystem_kernel.dylib 0x00007fff8a0ae5e2 __workq_kernreturn + 10

    1 libsystem_pthread.dylib 0x00007fff8d326578 _pthread_wqthread + 1283

    2 libsystem_pthread.dylib 0x00007fff8d324341 start_wqthread + 13

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

    0 libsystem_kernel.dylib 0x00007fff8a0aeefa kevent_qos + 10

    1 libdispatch.dylib 0x00007fff89cd7165 _dispatch_mgr_invoke + 216

    2 libdispatch.dylib 0x00007fff89cd6dcd _dispatch_mgr_thread + 52

    3 wire:

    0 libsystem_kernel.dylib 0x00007fff8a0ae5e2 __workq_kernreturn + 10

    1 libsystem_pthread.dylib 0x00007fff8d326578 _pthread_wqthread + 1283

    2 libsystem_pthread.dylib 0x00007fff8d324341 start_wqthread + 13

    Thread 4:

    0 libsystem_kernel.dylib 0x00007fff8a0ae5e2 __workq_kernreturn + 10

    1 libsystem_pthread.dylib 0x00007fff8d326578 _pthread_wqthread + 1283

    2 libsystem_pthread.dylib 0x00007fff8d324341 start_wqthread + 13

    Wire 5:

    0 libsystem_kernel.dylib 0x00007fff8a0ae5e2 __workq_kernreturn + 10

    1 libsystem_pthread.dylib 0x00007fff8d326578 _pthread_wqthread + 1283

    2 libsystem_pthread.dylib 0x00007fff8d324341 start_wqthread + 13

    Line 6:

    0 libsystem_kernel.dylib 0x00007fff8a0ae5e2 __workq_kernreturn + 10

    1 libsystem_pthread.dylib 0x00007fff8d326578 _pthread_wqthread + 1283

    2 libsystem_pthread.dylib 0x00007fff8d324341 start_wqthread + 13

    Line 7:

    0 libsystem_kernel.dylib 0x00007fff8a0ae5e2 __workq_kernreturn + 10

    1 libsystem_pthread.dylib 0x00007fff8d326578 _pthread_wqthread + 1283

    2 libsystem_pthread.dylib 0x00007fff8d324341 start_wqthread + 13

    Thread 8: Dispatch queue: IPXDatabaseObjectsControllerProcessingQueue

    __CFNumberHash com.apple.CoreFoundation 0 0x00007fff972bce90 + 0

    1 com.apple.CoreFoundation 0x00007fff972fb12d-[__NSDictionaryM objectForKey:] + 77

    2 com.apple.PhotoLibraryPrivate 0x000000010ccd22cd-[LiModel propertyForIndex:] + 366

    3 com.apple.PhotoLibraryPrivate 0x000000010ccd1a24-[LiModel propertyForKeyPath:] + 365

    4 com.apple.PhotoLibraryPrivate 0x000000010cd636c7-[RDMomentModel primaryPlaceData] + 82

    5 com.apple.PhotoLibraryPrivate 0x000000010cd65b57-[RDMoment Integer] + 30

    6 com.apple.Photos 0x000000010c0da97c 0x10bd06000 + 4016508

    7 com.apple.Photos 0x000000010bd66572 0x10bd06000 + 394610

    8 com.apple.Photos 0x000000010bd48ae7 0x10bd06000 + 273127

    com.apple.Photos 9 0x000000010bd6628a 0x10bd06000 + 393866

    10 com.apple.Photos 0x000000010bd65bc2 0x10bd06000 + 392130

    11 com.apple.Photos 0x000000010bd65a41 0x10bd06000 + 391745

    12 com.apple.PhotoFoundation 0x000000010d52e293-[PFDispatchQueue _invoke:] + 93

    13 com.apple.PhotoFoundation 0x000000010d52e449-[PFDispatchQueue runBlock:] + 61

    14 com.apple.Photos 0x000000010bd659a6 0x10bd06000 + 391590

    15 com.apple.Photos 0x000000010bd657df 0x10bd06000 + 391135

    16 com.apple.PhotoFoundation 0x000000010d52e293-[PFDispatchQueue _invoke:] + 93

    17 libdispatch.dylib 0x00007fff89cdc93d _dispatch_call_block_and_release + 12

    18 libdispatch.dylib 0x00007fff89cd140b _dispatch_client_callout + 8

    19 libdispatch.dylib 0x00007fff89cd603b _dispatch_queue_drain + 754

    20 libdispatch.dylib 0x00007fff89cdc707 _dispatch_queue_invoke + 549

    21 libdispatch.dylib 0x00007fff89cd6200 _dispatch_queue_drain + 1207

    22 libdispatch.dylib 0x00007fff89cdc707 _dispatch_queue_invoke + 549

    23 libdispatch.dylib 0x00007fff89cd140b _dispatch_client_callout + 8

    24 libdispatch.dylib 0x00007fff89cd529b _dispatch_root_queue_drain + 1890

    25 0x00007fff89cd4b00 _dispatch_worker_thread3 + 91 libdispatch.dylib

    26 libsystem_pthread.dylib 0x00007fff8d3264de _pthread_wqthread + 1129

    27 libsystem_pthread.dylib 0x00007fff8d324341 start_wqthread + 13

    Wire 9:

    0 libsystem_kernel.dylib 0x00007fff8a0ae5e2 __workq_kernreturn + 10

    1 libsystem_pthread.dylib 0x00007fff8d326578 _pthread_wqthread + 1283

    2 libsystem_pthread.dylib 0x00007fff8d324341 start_wqthread + 13

    Thread 10:

    0 libsystem_kernel.dylib 0x00007fff8a0ae5e2 __workq_kernreturn + 10

    1 libsystem_pthread.dylib 0x00007fff8d326578 _pthread_wqthread + 1283

    2 libsystem_pthread.dylib 0x00007fff8d324341 start_wqthread + 13

    Thread 11 crashed: Dispatch queue: queue PAPreviewWriter video

    0 com.apple.CoreFoundation 0x00007fff972cd141 CFEqual + 497

    1 com.apple.photo.PAImaging 0x000000010d9071a9-[PAPreviewMaker _writeImageDataForTinyToSegmentFile:orientationToWriteToDisk:] + 255

    2 com.apple.photo.PAImaging 0x000000010d8f6923-[PAPreviewMaker _writePreviewImageToSegmentFile:imageStyle:outputSize:] + 79

    3 com.apple.photo.PAImaging 0x000000010da35e51-[PAPreviewMaker makePreviewForImageStyle:inputImage:orientation:outputSize:doRender:largePrevie wIsEmbedded:addMetadata:canceler:completion:] + 556

    4 com.apple.photo.PAImaging 0x000000010d9fb0e8-[PAPreviewWriter _imageForImageStyle:version:imageProxyState:inputImage:inputImageSize:inputMake rNote:description:render:largePreviewIsEmbedded:canceler:previewMaker:] + 2337

    5 com.apple.photo.PAImaging 0x000000010d9fce4a-[PAPreviewWriter _inputImageForPreviews:imageProxyState:renderDescription:editStatus:force:outpu tImageStyle:canceler:previewMaker:] + 1507

    6 com.apple.photo.PAImaging 0x000000010da0037b-[PAPreviewWriter _renderPreviewForMovieVersion:imageProxyState:force:highPriority:canceler:] + 352

    7 com.apple.photo.PAImaging 0x000000010d90c6fb __74-[PAPreviewWriter renderThumbnailsForVersion:force:canceler:highPriority:] + 2692 _block_invoke

    8 com.apple.PhotoFoundation 0x000000010d52e293-[PFDispatchQueue _invoke:] + 93

    libdispatch.dylib 9 0x00007fff89ce9324 _dispatch_block_async_invoke_and_release + 610

    10 libdispatch.dylib 0x00007fff89cd140b _dispatch_client_callout + 8

    11 libdispatch.dylib 0x00007fff89cd603b _dispatch_queue_drain + 754

    12 libdispatch.dylib 0x00007fff89cdc707 _dispatch_queue_invoke + 549

    13 libdispatch.dylib 0x00007fff89cd6200 _dispatch_queue_drain + 1207

    14 libdispatch.dylib 0x00007fff89cdc707 _dispatch_queue_invoke + 549

    15 libdispatch.dylib 0x00007fff89cd4d53 _dispatch_root_queue_drain + 538

    16 0x00007fff89cd4b00 _dispatch_worker_thread3 + 91 libdispatch.dylib

    17 libsystem_pthread.dylib 0x00007fff8d3264de _pthread_wqthread + 1129

    18 libsystem_pthread.dylib 0x00007fff8d324341 start_wqthread + 13

    12 wire:

    0 libsystem_kernel.dylib 0x00007fff8a0ae5e2 __workq_kernreturn + 10

    1 libsystem_pthread.dylib 0x00007fff8d326578 _pthread_wqthread + 1283

    2 libsystem_pthread.dylib 0x00007fff8d324341 start_wqthread + 13

    Line 13:

    0 libsystem_kernel.dylib 0x00007fff8a0ae5e2 __workq_kernreturn + 10

    1 libsystem_pthread.dylib 0x00007fff8d326578 _pthread_wqthread + 1283

    2 libsystem_pthread.dylib 0x00007fff8d324341 start_wqthread + 13

    Thread 14:

    0 libsystem_kernel.dylib 0x00007fff8a0ae5e2 __workq_kernreturn + 10

    1 libsystem_pthread.dylib 0x00007fff8d326578 _pthread_wqthread + 1283

    2 libsystem_pthread.dylib 0x00007fff8d324341 start_wqthread + 13

    Line 15:

    0 libsystem_kernel.dylib 0x00007fff8a0ae5e2 __workq_kernreturn + 10

    1 libsystem_pthread.dylib 0x00007fff8d326578 _pthread_wqthread + 1283

    2 libsystem_pthread.dylib 0x00007fff8d324341 start_wqthread + 13

    16 wire:

    0 libsystem_kernel.dylib 0x00007fff8a0ae5e2 __workq_kernreturn + 10

    1 libsystem_pthread.dylib 0x00007fff8d326578 _pthread_wqthread + 1283

    2 libsystem_pthread.dylib 0x00007fff8d324341 start_wqthread + 13

    Thread 17: Dispatch queue: NSOperationQueue 0x7fa106cf99d0: NSOperation 0x7fa106f75630 (QOS: initiated)

    0 libsystem_kernel.dylib 0x00007fff8a0a7fae semaphore_wait_trap + 10

    1 libdispatch.dylib 0x00007fff89cdccb2 _dispatch_semaphore_wait_slow + 224

    2 com.apple.swe.UXKit 0x000000010d2c2541 __68-[UXSourceController setRootViewControllers:destination:completion:] + 266 _block_invoke

    3 com.apple.Foundation 0x00007fff9c1998d7 __NSBLOCKOPERATION_IS_CALLING_OUT_TO_A_BLOCK__ + 7

    4 com.apple.Foundation 0x00007fff9c199595-[major NSBlockOperation] + 100

    5 com.apple.Foundation 0x00007fff9c197c7a-[__NSOperationInternal _start:] + 654

    6 com.apple.Foundation 0x00007fff9c193c64 __NSOQSchedule_f + 194

    7 libdispatch.dylib 0x00007fff89cd140b _dispatch_client_callout + 8

    8 libdispatch.dylib 0x00007fff89cd603b _dispatch_queue_drain + 754

    libdispatch.dylib 9 0x00007fff89cdc707 _dispatch_queue_invoke + 549

    10 libdispatch.dylib 0x00007fff89cd4d53 _dispatch_root_queue_drain + 538

    11 0x00007fff89cd4b00 _dispatch_worker_thread3 + 91 libdispatch.dylib

    12 libsystem_pthread.dylib 0x00007fff8d3264de _pthread_wqthread + 1129

    13 libsystem_pthread.dylib 0x00007fff8d324341 start_wqthread + 13

    18 wire:

    0 libsystem_kernel.dylib 0x00007fff8a0ae5e2 __workq_kernreturn + 10

    1 libsystem_pthread.dylib 0x00007fff8d326578 _pthread_wqthread + 1283

    2 libsystem_pthread.dylib 0x00007fff8d324341 start_wqthread + 13

    19 phone: com.apple.NSEventThread

    0 libsystem_kernel.dylib 0x00007fff8a0a7f72 mach_msg_trap + 10

    1 libsystem_kernel.dylib 0x00007fff8a0a73b3 mach_msg + 55

    2 com.apple.CoreFoundation 0x00007fff973391c4 __CFRunLoopServiceMachPort + 212

    3 com.apple.CoreFoundation 0x00007fff9733868c __CFRunLoopRun + 1356

    4 com.apple.CoreFoundation 0x00007fff97337ed8 CFRunLoopRunSpecific + 296

    5 com.apple.AppKit 0x00007fff8f2aad95 _NSEventThread + 149

    6 libsystem_pthread.dylib 0x00007fff8d32699d _pthread_body + 131

    7 libsystem_pthread.dylib 0x00007fff8d32691a _pthread_start + 168

    8 libsystem_pthread.dylib 0x00007fff8d324351 thread_start + 13

    Line 20:

    0 libsystem_kernel.dylib 0x00007fff8a0ae5e2 __workq_kernreturn + 10

    1 libsystem_pthread.dylib 0x00007fff8d326578 _pthread_wqthread + 1283

    2 libsystem_pthread.dylib 0x00007fff8d324341 start_wqthread + 13

    Line 21:

    0 libsystem_kernel.dylib 0x00007fff8a0ae5e2 __workq_kernreturn + 10

    1 libsystem_pthread.dylib 0x00007fff8d326578 _pthread_wqthread + 1283

    2 libsystem_pthread.dylib 0x00007fff8d324341 start_wqthread + 13

    Thread 22: Dispatch queue: Background Image processing

    0 libsystem_kernel.dylib 0x00007fff8a0a7fae semaphore_wait_trap + 10

    1 libdispatch.dylib 0x00007fff89cdccb2 _dispatch_semaphore_wait_slow + 224

    2 com.apple.photo.PAImaging 0x000000010d90b8b9-[PAPreviewWriter renderThumbnailsForVersion:force:canceler:highPriority:] + 921

    3 com.apple.photo.PAImagingCore 0x000000010dd1200d-[PAPreviewWriterService renderThumbnailsForVersion:force:canceler:highPriority:] + 99

    4 com.apple.RedRock 0x000000010df5556f-[RKBackgroundImageProcessor performJob:context:] + 686

    5 com.apple.PhotoFoundation 0x000000010d53d721 __46-[PFWorkContext dispatchPerformJob:withReply:] + 72 _block_invoke442

    6 com.apple.PhotoFoundation 0x000000010d52e293-[PFDispatchQueue _invoke:] + 93

    7 libdispatch.dylib 0x00007fff89cdc93d _dispatch_call_block_and_release + 12

    8 libdispatch.dylib 0x00007fff89cd140b _dispatch_client_callout + 8

    libdispatch.dylib 9 0x00007fff89cd603b _dispatch_queue_drain + 754

    10 libdispatch.dylib 0x00007fff89cdc707 _dispatch_queue_invoke + 549

    11 libdispatch.dylib 0x00007fff89cd6200 _dispatch_queue_drain + 1207

    12 libdispatch.dylib 0x00007fff89cdc707 _dispatch_queue_invoke + 549

    13 libdispatch.dylib 0x00007fff89cd4d53 _dispatch_root_queue_drain + 538

    14 0x00007fff89cd4b00 _dispatch_worker_thread3 + 91 libdispatch.dylib

    15 libsystem_pthread.dylib 0x00007fff8d3264de _pthread_wqthread + 1129

    16 libsystem_pthread.dylib 0x00007fff8d324341 start_wqthread + 13

    Line 23:

    0 libsystem_kernel.dylib 0x00007fff8a0ae5e2 __workq_kernreturn + 10

    1 libsystem_pthread.dylib 0x00007fff8d326578 _pthread_wqthread + 1283

    2 libsystem_pthread.dylib 0x00007fff8d324341 start_wqthread + 13

    Line 24:

    0 libsystem_kernel.dylib 0x00007fff8a0ae5e2 __workq_kernreturn + 10

    1 libsystem_pthread.dylib 0x00007fff8d326578 _pthread_wqthread + 1283

    2 libsystem_pthread.dylib 0x00007fff8d324341 start_wqthread + 13

    Line 25: com.apple.appkit - heartbeat

    0 libsystem_kernel.dylib 0x00007fff8a0ae10a __semwait_signal + 10

    1 libsystem_c.dylib 0x00007fff8e09bd17 nanosleep + 199

    usleep libsystem_c.dylib 2 0x00007fff8e09bc0a + 54

    3 com.apple.AppKit 0x00007fff8f43d3e4-[NSUIHeartBeat _heartBeatThread:] + 2181

    4 com.apple.Foundation 0x00007fff9c187e64 __NSThread__start__ + 1351

    5 libsystem_pthread.dylib 0x00007fff8d32699d _pthread_body + 131

    6 libsystem_pthread.dylib 0x00007fff8d32691a _pthread_start + 168

    7 libsystem_pthread.dylib 0x00007fff8d324351 thread_start + 13

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

    Rax: 0x00007fff9766134c rbx: 0x00007fa101e244f0 rcx: 0x00007fa1031f3090 rdx: 0x00000000000e3e80

    RDI: IHR 0x00007fa101e244f0: 0 x 0000000000000000 PBR: RER 0x000070000052e5d0: 0x000070000052e5b0

    R8: 0 x 0000000000000006 r9: 0 x 0000000000000002 r10: 0x00007fa101f9dc90 r11: 0x00007fff7b277fa0

    R12: 0x00007fff97b280e0 r13: 0x00007fff97b214c0 r14: 0 x 0000000000000000 r15: 0x00007fa101e244f0

    RIP: 0x00007fff972cd141 rfl: 0 x 0000000000000246 cr2: 0x000000011a687000

    Logical CPU: 1

    Error code: 0x00000000

    Trap number: 3

    Binary images:

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

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

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

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

    0x10c6c5000 - 0x10c6c5fff 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 >

    0x10c6c9000 - 0x10c708fff 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 >

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

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

    0x10d1b1000 - 0x10d20fff7 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 >

    0x10d263000 - 0x10d309fff 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 >

    0x10d399000 - 0x10d3b3ff7 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 >

    0x10d3d7000 - 0x10d49aff7 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 >

    0x10d524000 - 0x10d5d4ff7 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 >

    0x10d686000 - 0x10d81aff7 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 >

    0x10d8e1000 - 0x10db0ffff 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 >

    0x10dcff000 - 0x10ddaafff 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 >

    0x10dec2000 - 0x10def0fff 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 >

    0x10df24000 - 0x10e01afff 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 >

    0x10e0fa000 - 0x10e4f7ff7 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

    0x10e7a0000 - 0x10e859ff7 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

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

    0x10e981000 - 0x10e981fe7 + cl_kernels (?) < 693F7D4D-4D51-4D4D-ACCE-A944F3D10746 > cl_kernels

    0x10e986000 - 0x10e98cfff 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 >

    0x10e998000 - 0x10e9c5fff com.apple.iTunesLibrary (12.4 - 12.4.0) < 9BCAE8DA-F815-3C0B-864C-05653465AA9B > /Library/Frameworks/iTunesLibrary.framework/Versions/A/iTunesLibrary

    0x10e9e1000 - 0x10ea1bff7 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

    0x10ea87000 - 0x10eb65fff 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

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

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

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

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

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

    0x10f07c000 - 0x10f53dfff com.apple.SceneKit /System/Library/Frameworks/SceneKit.framework/Versions/A/SceneKit < 8F9C0727-18FF-3D16-826F-7341E1D17750 > (5.0 - 293)

    0x10f821000 - 0x10f860ff7 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 >

    0x10f891000 - 0x10f8b8ff7 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 >

    0x10f8e2000 - 0x10f940ff7 (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

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

    0x10f99d000 - 0x110cf8ffb 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

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

    0 x 114716000 - 0x114c6dff7 com.apple.driver.AppleIntelHD5000GraphicsGLDriver (10.14.66 - 10.1.4) /System/Library/Extensions/AppleIntelHD5000GraphicsGLDriver.bundle/Contents/Mac < 3219B2C9-C3ED-3044-A27F-58B5C2C8991F > OS/AppleIntelHD5000GraphicsGLDriver

    0 x 119065000 - 0x1190cbff7 com.apple.driver.AppleIntelHD5000GraphicsMTLDriver (10.14.66 - 10.1.4) < 48A178A3-AA09-3B6C-AA4F-5BFA4145DE58 > /System/Library/Extensions/AppleIntelHD5000GraphicsMTLDriver.bundle/Contents/Ma cOS / AppleIntelHD5000GraphicsMTLDriver

    0 x 119285000 - 0x119285ff4 + cl_kernels (?) < 920DF5EB-E22A-4FFC-8C9F-2D5EFFAB5712 > cl_kernels

    0 x 119289000 - 0x119289ff4 + cl_kernels (?) < 920DF5EB-E22A-4FFC-8C9F-2D5EFFAB5712 > cl_kernels

    0x7fff62ecc000 - 0x7fff62f0325f dyld (360.22) < A468D85E-D8D6-3461-8C99-49D3B9ACFC63 >/usr/lib/dyld

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

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

    0x7fff88443000 - 0x7fff8858dff7 com.apple.coreui (2.1 - 366.1) < 8138636F-A0A7-31C7-896C-5F5747FA1B2A > /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI

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

    0x7fff885ac000 - 0x7fff88833ff3 com.apple.CFNetwork (760.5.1 - 760.5.1) /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork < EE9426D1-F11C-3DD4-AE08-EA29AEB27177 >

    0x7fff889cd000 - 0x7fff889f1fff com.apple.MultitouchSupport.framework (304.12 - 304.12) < 65CB7653-EACD-3ADB-ABB6-2E0671708301 > /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport

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

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

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

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

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

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

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

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

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

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

    0x7fff88c01000 - 0x7fff88c0cfff com.apple.CrashReporterSupport (10.11 - 718) < 05892B57-F2CD-3C84-B984-0417F6B361DB > /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport

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

    0x7fff88c15000 - 0x7fff88c73fff com.apple.CoreServices.OSServices (728.12 - 728.12) < 776EBD4F-7052-377F-A70D-E2FDBD465A5E > /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices

    0x7fff88e89000 - 0x7fff88f1ffff 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

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

    0x7fff88f5e000 - 0x7fff88f5efff com.apple.CoreServices /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices < A4FFF004-53B0-3EAC-A13F-5416BFFD8886 > (728.12 - 728.12)

    0x7fff88f5f000 - 0x7fff88f5fff7 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

    0x7fff88f60000 - 0x7fff890ecff7 libGLProgrammability.dylib (12.1) < BCFFBF6B-9717-3456-B6F9-6AE46644B076 > /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib

    0x7fff890ed000 - 0x7fff890fcffb 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

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

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

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

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

    0x7fff89186000 - 0x7fff891aafff 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

    0x7fff891ab000 - 0x7fff89418fff (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

    0x7fff89419000 - 0x7fff898b4ffb com.apple.GeoServices (1.0 - 1151.49.1) /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices < 2D887517-B73D-30FF-91DC-AF6AD91F96B9 >

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

    0x7fff899d5000 - 0x7fff899ffff7 GLRendererFloat (12.1) < BE957AC5-82C2-3620-A625-56C9BE7B853F > /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat

    0x7fff89a00000 - 0x7fff89c4cff7 com.apple.AddressBook.framework /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook < 24F823D3-C3FC-3AF9-B8B3-C166539DBD11 > (9.0 - 1679.10)

    0x7fff89c4d000 - 0x7fff89cbbff7 com.apple.ApplicationServices.ATS (377-394, 4) < 9779E916-0788-3CAC-B1EC-F68BCB12A2B6 > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS

    0x7fff89cbc000 - 0x7fff89ccefff 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

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

    0x7fff89cfd000 - 0x7fff89d09fff libexslt.0.dylib (14.2) < 2E4F7D44-E668-322B-B25B-3900C09CE17E > /usr/lib/libexslt.0.dylib

    0x7fff89d0a000 - 0x7fff89d2dff7 com.apple.Network (< F3CC7116-3969-31E1-8A8E-0CD4A1FE3837 > /System/Library/PrivateFrameworks/Network.framework/Versions/A/Network 1.0 - 1.).

    0x7fff89ff6000 - 0x7fff8a001fff (517.50.1) libcsfde.dylib < 52F0DB6A-13B8-355E-ADFD-72834D3CA183 > /usr/lib/libcsfde.dylib

    0x7fff8a002000 - 0x7fff8a053fff com.apple.audio.CoreAudio (4.3.0 - 4.3.0) < EA7D4F3B-062B-3C81-A98C-C89264D00D48 > /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio

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

    0x7fff8a06a000 - 0x7fff8a06cfff com.apple.marco /System/Library/PrivateFrameworks/Marco.framework/Versions/A/Marco < FA3176F5-4C71-3CB7-B384-9662513E9B4B > (10.0 - 1000)

    0x7fff8a06d000 - 0x7fff8a096ff7 libxslt.1.dylib (14.2) < 6E8D0F06-9086-32D3-9D87-3870A1CE9E99 > /usr/lib/libxslt.1.dylib

    0x7fff8a097000 - 0x7fff8a0b5ff7 (3248.50.21) libsystem_kernel.dylib < 78E54D59-D2B0-3F54-9A4A-0A68D671F253 > /usr/lib/system/libsystem_kernel.dylib

    0x7fff8a136000 - 0x7fff8a1adfeb (335.50.1) libcorecrypto.dylib < B5C05FD7-A540-345A-87BF-8E41848A3C17 > /usr/lib/system/libcorecrypto.dylib

    0x7fff8a1ae000 - 0x7fff8a1b4ff7 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

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

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

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

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

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

    0x7fff8a272000 - 0x7fff8a361fff libxml2.2.dylib (29.7) < 32BBF51E-B084-3FC2-AE9C-C008BE84102B > /usr/lib/libxml2.2.dylib

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

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

    0x7fff8a562000 - 0x7fff8a562fff 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

    0x7fff8a563000 - 0x7fff8a56eff7 (60075.50.1) libcommonCrypto.dylib < 93732261-34B4-3914-B7A2-90A81A182DBA > /usr/lib/system/libcommonCrypto.dylib

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

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

    0x7fff8aea6000 - 0x7fff8aec1fff com.apple.PackageKit.PackageUIKit (3.0 - 546.1) < 65C4DEAF-58D6-3E01-84F0-D10A811BF9D8 > System/Library/PrivateFrameworks/PackageKit.framework/Frameworks/PackageUIKit. framework/Versions/A/PackageUIKit

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

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

    0x7fff8af26000 - 0x7fff8af39fff com.apple.MessagesKit (1.0 - 5100) < 225E7AB2-5178-39EF-AE9A-D33151CB7879 > /System/Library/PrivateFrameworks/MessagesKit.framework/Versions/A/MessagesKit

    0x7fff8af3a000 - 0x7fff8af72ff7 com.apple.Accounts /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts < 8A356D32-2E81-3470-AFA2-8C4FA7F1DA0C > (113-113)

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

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

    0x7fff8afb6000 - 0x7fff8afd5ff7 com.apple.ContactsUI /System/Library/Frameworks/ContactsUI.framework/Versions/A/ContactsUI < 445945EB-D7FC-38BA-8A67-5ABB44EF9987 > (9.0 - 1679.10)

    0x7fff8afd6000 - 0x7fff8afdeffb (625.50.5) libsystem_dnssd.dylib < 4D10E12B-59B5-386F-82DA-326F18028F0A > /usr/lib/system/libsystem_dnssd.dylib

    0x7fff8b3a3000 - 0x7fff8b5c4ff7 com.apple.CoreImage (11.4.0 - 366.4.19) /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage < F5B7B115-E43A-3C61-A6AD-EFCDE7FC43A1 >

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

    0x7fff8b60b000 - 0x7fff8b60dff7 com.apple.securityhi (9.0 - 55006) < 1E7BE52B-97EA-371A-AECA-1EE2AD246D8A > /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI

    0x7fff8b60e000 - com.apple.StoreFoundation (1.0 - 463, 9) < E4A83F77-88D1-307A-B137-23CFCF0AB249 > 0x7fff8b675ff7 thing /System/Library/PrivateFrameworks/StoreFoundation.framework/Versions/A/StoreFou

    0x7fff8b676000 - 0x7fff8b9f1ffb com.apple.VideoToolbox (1.0 - 1731.15.204) /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox < 2B21F9B2-66A2-3900-84A5-0AB66F8056E4 >

    0x7fff8b9f2000 - 0x7fff8bb4eff3 com.apple.WebKitLegacy (11601 - 11601.6.17) /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebKitLegacy < 3F9A3DDF-AA37-388E-8C96-CFF86DB0D16E >. framework/Versions/A/WebKitLegacy

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

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

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

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

    0x7fff8bbf2000 - 0x7fff8bcddff7 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

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

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

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

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

    0x7fff8bec1000 - 0x7fff8bf2eff7 com.apple.imfoundation (10.0 - 1000) < 5C61D95A-BE77-3D37-AA64-9944B791826E > /System/Library/PrivateFrameworks/IMFoundation.framework/Versions/A/IMFoundatio n

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

    0x7fff8c011000 - 0x7fff8c01dfff com.apple.CommerceCore (1.0 - 463, 9) < 92A641CE-2740-3B7A-B69D-E5CE1426B7DE > /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore

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

    0x7fff8c020000 - 0x7fff8c023ffb libdyld.dylib (360.22) < CC088C2A-D407-33E7-A6B6-B06E0D4AD999 > /usr/lib/system/libdyld.dylib

    0x7fff8c024000 - 0x7fff8c02cfff 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 >

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

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

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

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

    0x7fff8c239000 - 0x7fff8c2feff7 com.apple.iChat.SocialUI (8.0 - 5100) < B1D820BC-3C20-3C74-9D15-D8941B89B272 > /System/Library/PrivateFrameworks/SocialUI.framework/Versions/A/SocialUI

    0x7fff8d208000 - 0x7fff8d20cfff libGIF.dylib (1450) < DDEA46A2-85B7-32D7-8CC2-8F4C10AA12D5 > /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib

    0x7fff8d20d000 - 0x7fff8d252ff7 (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

    0x7fff8d297000 - 0x7fff8d2bcff7 libPng.dylib (1450) < F7944170-4854-3CA5-B66F-7A6CA2292DF2 > /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib

    0x7fff8d2bd000 - 0x7fff8d309ffb com.apple.HIServices (1.22 - 550) < 6B76B41C-CF5A-34C4-89F4-EFD7CA3D1C9D > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices

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

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

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

    0x7fff8d5e1000 - 0x7fff8d5ecfff libGPUSupportMercury.dylib (12.1) < 9D35C668-4F21-31C8-890C-CC1F45905194 > /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupportMercury.dylib

    0x7fff8d600000 - 0x7fff8d631ffb com.apple.avfoundationcf (2.0 - 211, 11) < 81757846-2F78-3814-85DD-57337F77120B > /System/Library/PrivateFrameworks/AVFoundationCF.framework/Versions/A/AVFoundat ionCF

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

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

    0x7fff8d688000 - 0x7fff8d6b0fff com.apple.GLKit /System/Library/Frameworks/GLKit.framework/Versions/A/GLKit < 6D10E27F-7175-36D2-8770-F7789F2EACBD > (1.0 - 56)

    0x7fff8d6c5000 - 0x7fff8d6defff 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

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

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

    0x7fff8db0c000 - 0x7fff8db1afff com.apple.IntlPreferences (2.0 - 192) < A170BA4F-D39C-378C-99B5-CCB7C4F154C1 > /System/Library/PrivateFrameworks/IntlPreferences.framework/Versions/A/IntlPref erences

    0x7fff8db1b000 - 0x7fff8db20fff 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

    0x7fff8db66000 - 0x7fff8db71fff libGL.dylib (12.1) < 70D51643-04AC-3400-8F11-A6FC25985289 > /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib

    0x7fff8db72000 - 0x7fff8db83ff7 (201.10.3) libsystem_trace.dylib < F00E92E4-DBDA-3749-B5B3-0C3FBBABA1CB > /usr/lib/system/libsystem_trace.dylib

    0x7fff8db8d000 - 0x7fff8dc89ff7 libFontParser.dylib (158.6) < 267A9AE4-4138-3112-8D73-BDFDC96568FF > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib

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

    0x7fff8dc9e000 - 0x7fff8dd0efff com.apple.ids /System/Library/PrivateFrameworks/IDS.framework/Versions/A/IDS < 12F08B55-D23E-351A-BB2C-B9D691D4044F > (10.0 - 1000)

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

    0x7fff8dfa6000 - 0x7fff8e01bfff com.apple.framework.IOKit (2.0.2 - 1179.50.2) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit < A509D3AE-9D48-31B7-89C7-326A7A2007B2 >

    0x7fff8e01c000 - 0x7fff8e0a9fff (1082.50.1) libsystem_c.dylib < B552D565-B798-3B9B-AE63-F623B42A5F01 > /usr/lib/system/libsystem_c.dylib

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

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

    0x7fff8ea21000 - 0x7fff8ea62ff7 libGLU.dylib (12.1) < CD7A5916-3E3C-3EF3-A275-B281016B99CB > /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib

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

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

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

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

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

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

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

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

    0x7fff8ee68000 - 0x7fff8ee8cfff libJPEG.dylib (1450) < 1775E59E-D82C-3F7A-8E4F-B0C13F88F691 > /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib

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

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

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

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

    0x7fff8ef5d000 - 0x7fff8ef5ffff libCVMSPluginSupport.dylib (12.1) < D81B3D8D-B83F-3918-BD4B-6C794A30AF9F > /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib

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

    0x7fff8ef73000 - 0x7fff8ef79fff com.apple.IOAccelerator (205, 10-205, 10) < E46ED853-C2CC-3F29-A7DD-5E9351A2E754 > /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelera tor

    0x7fff8ef7a000 - 0x7fff8f050ffb com.apple.DiskImagesFramework (10.11.4 - 417,4) < 6D26E255-D7BB-3A9D-8B6F-E07D2DBB68AE > /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages

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

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

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

    0x7fff8f103000 - 0x7fff8f10bfff libGFXShared.dylib (12.1) < 5A0C2493-200C-30BE-97D5-8E8C0B8E604D > /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib

    0x7fff8f10c000 - 0x7fff8fd35ff7 com.apple.AppKit /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit < F3411F6E-DD87-34D0-8C68-C69B2205E41D > (6, 9 - 1404.47)

    0x7fff8fd36000 - 0x7fff8fd63fff com.apple.facetimeservices /System/Library/PrivateFrameworks/FTServices.framework/Versions/A/FTServices < 4CA7BA98-BECA-3062-BADC-3BEEAAF66D3B > (10.0 - 1000)

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

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

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

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

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

    0x7fff907f5000 - 0x7fff90870fff com.apple.accounts.AccountsDaemon (113-113) < 75054597-D576-3830-A731-82F04184172A > /System/Library/PrivateFrameworks/AccountsDaemon.framework/Versions/A/AccountsD Nicolas

    0x7fff908b6000 - 0x7fff90a62fff com.apple.avfoundation (2.0 - 1046.9.11) /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation < 399D8273-E3CD-3358-9B80-64E6A5CBE278 >

    0x7fff90a63000 - 0x7fff90a6ffff 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

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

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

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

    0x7fff90cf3000 - 0x7fff90d21ff7 (460.50.4) libsandbox.1.dylib < C6797DA3-DF51-3774-9D02-31670A820D18 > /usr/lib/libsandbox.1.dylib

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

    0x7fff90e15000 - 0x7fff910faffb 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

    0x7fff9116a000 - 0x7fff9116efff 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

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

    0x7fff91278000 - 0x7fff91286fff com.apple.opengl (12.1.0 - 12.1.0) < BBC4458E-12FC-3C9B-BF7E-6985D61C7A67 > /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL

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

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

    0x7fff914d6000 - 0x7fff9156bfff (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

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

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

    0x7fff91613000 - 0x7fff91758fff com.apple.QTKit (7.7.3 - 2943.10) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit < 9D0EA81D-7BDE-3B47-B300-5C53C5EE4846 >

    0x7fff9175c000 - 0x7fff9179eff7 com.apple.Metal /System/Library/Frameworks/Metal.framework/Versions/A/Metal < 2B2C0F78-20B8-3878-B9B1-DE18BB92919D > (56, 6-56, 6)

    0x7fff9179f000 - 0x7fff917daff7 com.apple.AuthKitUI (< E4792D6A-590C-326E-8CC7-2EB5843C51C6 > /System/Library/PrivateFrameworks/AuthKitUI.framework/Versions/A/AuthKitUI 1.0 - 1.).

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

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

    0x7fff91ed7000 - 0x7fff9226cfdb 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

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

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

    0x7fff9228b000 - 0x7fff923b0fff com.apple.LaunchServices (728.12 - 728.12) < F5AB56CD-CF33-33F0-A48D-372551714E77 > /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices

    0x7fff923b5000 - 0x7fff92495ff7 unorm8_rgba.dylib (2.7.3) < 9EB6C346-CFF6-32D7-B4A1-2409DFBCB216 > /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_rgba.dylib

    0x7fff92496000 - 0x7fff92730ff3 com.apple.security (7.0 - 57337.50.23) /System/Library/Frameworks/Security.framework/Versions/A/Security < 8B6CF71D-A63E-34C9-9227-0AACAB643584 >

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

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

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

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

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

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

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

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

    0x7fff927e5000 - 0x7fff927e7ff7 com.apple.xpc.ServiceManagement (1.0-1) < D96D7A6D-EDEB-35EE-B5D9-E33A3BF011B5 > /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage lie

    0x7fff927e8000 - 0x7fff92a78ff7 com.apple.RawCamera.bundle /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera < F14992BD-D9D8-36EE-8A51-989A220E1846 > (6.19 - 844)

    0x7fff92a79000 - 0x7fff92b19fff com.apple.Metadata (10.7.0 - 972.34) a.framework/Versions/A/Metadata /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat < A93B485D-094C-3024-8CBB-D9E035FB83C4 >

    0x7fff92b1a000 - com.apple.SoftwareUpdate.framework (6-797) 0x7fff92bb7ff7 < 695E4BEA-DE14-3AB7-B5D3-0E4C8F7CC5F0 > /System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/SoftwareU updated

    0x7fff92bb8000 - 0x7fff92bbbfff (460.50.4) libsystem_sandbox.dylib < 150A9D3D-F69E-32F7-8C7B-8E72CAAFF7E4 > /usr/lib/system/libsystem_sandbox.dylib

    0x7fff92bbc000 - 0x7fff92bd0fe3 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

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

    0x7fff92cea000 - 0x7fff92ceefff 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

    0x7fff92cef000 - 0x7fff92ceffff 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

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

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

    0x7fff92d75000 - 0x7fff92e20fff 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

    0x7fff92eab000 - 0x7fff92ebffff com.apple.CoreDuetDaemonProtocol (1.0-1) < 1D60D60C-914A-3BAB-8607-79F68F4C712E > /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/Versions/A/C oreDuetDaemonProtocol

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

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

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

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

    0x7fff92f33000 - 0x7fff93140fff libicucore. A.dylib (551.51.3) < 5BC80F94-C90D-3175-BD96-FF1DC222EC9C >/usr/lib/libicucore. A.dylib

    0x7fff9330b000 - 0x7fff93357fff 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

    0x7fff93358000 - 0x7fff9336efff com.apple.CoreMediaAuthoring (2.2 - 953) < DAC012D0-276D-3AF6-A6E9-EA32E692B923 > /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring

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

    0x7fff9357e000 - 0x7fff9374cff3 com.apple.QuartzCore /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore < 076BDE58-8AED-3D47-84FD-548CF8E8EDB9 > (1.11 - 410.14)

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

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

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

    0x7fff93ea4000 - 0x7fff93eeefff com.apple.sociald.Social (?) < 48CEAEF0-38F3-3736-A504-64A59C101FE6 > /System/Library/Frameworks/Social.framework/Versions/A/Social

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

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

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

    0x7fff947a4000 - 0x7fff947a7ff7 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

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

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

    0x7fff94c11000 - 0x7fff94cc9ff7 com.apple.CoreDuet (< FC1EAEE1-73A4-3B13-A634-1D2A94D0C0B7 > /System/Library/PrivateFrameworks/CoreDuet.framework/Versions/A/CoreDuet 1.0 - 1.).

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

    0x7fff94cce000 - 0x7fff94ccfffb libSystem.B.dylib (1226.10.1) < C5D09FE1-CC70-383E-AC27-18602F2EDEC4 > /usr/lib/libSystem.B.dylib

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

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

    0x7fff94ddf000 - 0x7fff94e0afff com.apple.idsfoundation (10.0 - 1000) < 4735029B-DAE5-31E4-AD40-C5C52E328B31 > /System/Library/PrivateFrameworks/IDSFoundation.framework/Versions/A/IDSFoundat ion

    0x7fff94e38000 - 0x7fff94e8afff com.apple.AppleVAFramework (5.0.32 - 5.0.32) < 271ED7A9-73E5-3595-A8D6-28594C9F3C9D > /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA

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

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

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

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

    0x7fff94fa7000 - 0x7fff9510dfff com.apple.MapKit (1.0 - 1651.44.2) /System/Library/Frameworks/MapKit.framework/Versions/A/MapKit < 1D96793D-AB70-326E-85EA-65DE75973623 >

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

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

    0x7fff9523c000 - 0x7fff95322fef unorm8_bgra.dylib (2.7.3) < B315AE9C-9E09-3D9F-9513-EC2195908516 > /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib

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

    0x7fff95353000 - 0x7fff953a5fff com.apple.CloudDocs /System/Library/PrivateFrameworks/CloudDocs.framework/Versions/A/CloudDocs < 5FD9138D-09D9-3B97-BBAD-5692E1687F30 > (1.0 - 383.13)

    0x7fff954f8000 - 0x7fff954f8ff7 (765.50.8) liblaunch.dylib < 834ED605-5114-3641-AA4D-ECF31B801C50 > /usr/lib/system/liblaunch.dylib

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

    0x7fff95576000 - 0x7fff95578fff 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

    0x7fff955bd000 - 0x7fff95b15ff7 com.apple.MediaToolbox (1.0 - 1731.15.204) /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox < BD296DBD-BEC9-3B25-B859-E88A009BB879 >

    0x7fff95b16000 - 0x7fff95b33ff7 com.apple.AppleVPAFramework (2.1.2 - 2.1.2) < 41378C0B-B56A-3A73-9BD0-E06FA1F87B8C > /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA

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

    0x7fff95b4b000 - 0x7fff95beffff com.apple.Bluetooth (4.4.5 - 4.4.5f3) /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth < 141F2C36-70B6-32D3-A556-7A605832CDB3 >

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

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

    0x7fff95c3d000 - 0x7fff95cc1ffb com.apple.AVKit /System/Library/Frameworks/AVKit.framework/Versions/A/AVKit < D6B7FD05-C729-3E84-A2F3-84DDAA268B3E > (1.1 - 285.10)

    0x7fff95cc2000 - 0x7fff95cd4fff libsasl2.2.dylib (209) < 11C7D200-0CA5-30F4-A19A-178CA81D48FE > /usr/lib/libsasl2.2.dylib

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

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

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

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

    0x7fff95eb0000 - 0x7fff96076fe7 com.apple.ImageIO.framework (3.3.0 - 1450) < 18ABA1F4-43EC-3990-9777-C91FD3D6AF71 > /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO

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

    0x7fff96161000 - 0x7fff96163ff7 com.apple.SafariServices.framework (11601 - 11601.6.17) vices /System/Library/PrivateFrameworks/SafariServices.framework/Versions/A/SafariSer < 98035563-BCB5-3BCA-A519-FB27B4F02998 >

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

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

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

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

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

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

    0x7fff965d9000 - 0x7fff9660bfff com.apple.CommerceKit (1.2.0 - 463,9) < A74B7ABC-5B01-3C09-AF3C-6951B11D230A > /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/CommerceKit

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

    0x7fff966bd000 - 0x7fff966bffff com.apple.CoreDuetDebugLogging (1.0-1) < 7C932160-AC9C-3173-900F-98138E829CB3 > /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/Versions/A/Cor eDuetDebugLogging

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

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

    0x7fff96791000 - 0x7fff96ec3ff7 com.apple.VectorKit (1.0 - 1156.38.0.1) /System/Library/PrivateFrameworks/VectorKit.framework/Versions/A/VectorKit < 622EC7F5-118E-3F16-BD3D-137BA85BABD9 >

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

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

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

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

    0x7fff9772b000 - 0x7fff9774aff7 com.apple.framework.Apple80211 (11.0 - 1121.34.2) /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211 < 90477FAE-B835-3931-80FB-FDFF02B21D9D >

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

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

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

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

    0x7fff977fa000 - 0x7fff978bdfff com.apple.imcore /System/Library/PrivateFrameworks/IMCore.framework/Versions/A/IMCore < C3F22E18-ECB0-32B7-A596-A5EFCF84B192 > (10.0 - 1000)

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

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

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

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

    0x7fff97b0d000 - 0x7fff97b15fef libcldcpuengine.dylib (2.7.3) < 511DF05F-B3A1-3810-9901-1F5C1EA278C4 > /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib

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

    0x7fff97e83000 - 0x7fff97e9cfff 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

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

    0x7fff97ed1000 - 0x7fff97f40fff 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

    0x7fff97f41000 - 0x7fff98236fff com.apple.HIToolbox (2.1.1 - 807.2) < 36413C45-36AF-34EF-9C0E-F18B31D1E565 > /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra framework/Versions/A/HIToolbox

    0x7fff98237000 - 0x7fff98239fff libCGXType.A.dylib (957) < B901C222-E779-32EB-96C2-5A707A09FC5B > /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXTy EP. A.dylib

    0x7fff9823a000 - 0x7fff982a0ff7 (583.50.1) libsystem_network.dylib < B52DAB73-92DC-3DA7-B9F4-B899D66445C1 > /usr/lib/system/libsystem_network.dylib

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

    0x7fff982ee000 - 0x7fff982f9fff (3248.50.21) libkxld.dylib < 99195052-038E-3490-ACF8-76F9AC43897E > /usr/lib/system/libkxld.dylib

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

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

    0x7fff98548000 - 0x7fff985bcff3 com.apple.securityfoundation (6.0 - 55126) < 130656AE-2711-3914-8736-D8B021C93FE0 > /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun Foundation

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

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

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

    0x7fff98604000 - 0x7fff98660fff libTIFF.dylib (1450) < 14EB7C03-7DDA-3276-BAC5-D597913AC9C4 > /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib

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

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

    0x7fff98ae9000 - 0x7fff99d37fe7 com.apple.CoreGraphics (1.600.0 - 957) < B5D82A82-EDF9-34D5-A8C5-7F25B80985EE > /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics

    0x7fff99d38000 - 0x7fff99dc7ff7 (517.50.1) libCoreStorage.dylib < E6283FE9-B5AC-3110-8D4C-8E2BF185983E > /usr/lib/libCoreStorage.dylib

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

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

    0x7fff99e86000 - 0x7fff99f76fff libJP2.dylib (1450) < FAFF00CD-1CF6-34DE-A06F-31D4BB9C8BA9 > /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib

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

    0x7fff9a059000 - 0x7fff9a05efff com.apple.TCC (< F5EEB2D3-9517-3975-97BE-22CB8E11B8A3 > /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC 1.0 - 1.).

    0x7fff9a05f000 - 0x7fff9a0aeff7 com.apple.opencl (2.7.0 - 2.7.0) < C3AFF6D2-90FE-3108-A2D5-A1EBCFC5D627 > /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL

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

    0x7fff9a0be000 - 0x7fff9a0c0ff7 com.apple.diagnosticlogcollection (10.0 - 1000) < 80160173-9F22-300C-BD1A-1CDBB1C39FC6 > /System/Library/PrivateFrameworks/DiagnosticLogCollection.framework/Versions/A/ DiagnosticLogCollection

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

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

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

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

    0x7fff9a354000 - 0x7fff9a36bff7 (323.50.1) libsystem_asl.dylib < 41F8E11F-1BD0-3F1D-BA3A-AA1577ED98A9 > /usr/lib/system/libsystem_asl.dylib

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

    0x7fff9a392000 - 0x7fff9a3ddff7 com.apple.CoreMediaIO /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO < 2FAE3CC1-145C-37AB-A836-E5D93A02BA23 > (703, 0-4791)

    0x7fff9a3de000 - 0x7fff9a4b7fff com.apple.CoreMedia (1.0 - 1731.15.204) /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia < 4BFDD68E-9411-3358-8679-BB3EDA94F9A2 >

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

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

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

    0x7fff9a50b000 - 0x7fff9a536ff7 com.apple.SocialAppsCore sCore /System/Library/PrivateFrameworks/SocialAppsCore.framework/Versions/A/SocialApp < 0CCBDAB5-CF21-388A-83CC-B921779E690F > (8.0 - 5100)

    0x7fff9a695000 - 0x7fff9a6beff7 (765.50.8) libxpc.dylib < 54D1328E-054E-3DAA-89E2-375722F9D18F > /usr/lib/system/libxpc.dylib

    0x7fff9a705000 - 0x7fff9a763fff com.apple.SystemConfiguration (1, 14 - 1.14) < D801FAD7-5A2D-3E5E-9F44-B6C9B8BEA747 > /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi setting

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

    0x7fff9a76b000 - 0x7fff9a794fff com.apple.ProtectedCloudStorage (1.0-1) < 7436B2B3-943A-3500-B099-80F133B3E002 > /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/Pr otectedCloudStorage

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

    0x7fff9a7ca000 - 0x7fff9acecfff 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

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

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

    0x7fff9b005000 - 0x7fff9b074fff com.apple.datadetectorscore (7.0 - 460) < FA46DEE8-B25B-3E84-B067-6A31193A0885 > /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore

    0x7fff9b075000 - 0x7fff9b077ff7 libRadiance.dylib (1450) < BE9E0EBE-C589-3684-B4AE-04F95C8D410A > /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib

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

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

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

    0x7fff9b15b000 - 0x7fff9b1a0ff3 libFontRegistry.dylib (155,2) < A70DD497-35F3-34DA-9C19-F4B90080E961 > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib

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

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

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

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

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

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

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

    0x7fff9b4a2000 - 0x7fff9b711fff com.apple.AuthKit (< E32E0955-FE8D-3215-9349-C34BEE4AA550 > /System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/AuthKit 1.0 - 1.).

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

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

    0x7fff9b90b000 - 0x7fff9bfaaff7 com.apple.JavaScriptCore (11601 - 11601.6.13) /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore < 93B52DD9-7810-3562-8605-B97965F6DB94 >

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

    0x7fff9c024000 - 0x7fff9c0e1fd7 com.apple.PackageKit (3.0 - 546.1) < 619A0B33-B0A5-39F4-98E1-BB61700AA2E3 > /System/Library/PrivateFrameworks/PackageKit.framework/Versions/A/PackageKit

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

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

    0x7fff9c152000 - 0x7fff9c4a6fff com.apple.Foundation (6: 9-1259) < 71A9D3A0-0B1F-3E3A-86F3-1486365A6EF2 > /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation

    0x7fff9c4c6000 - 0x7fff9c671ffb GLEngine (12.1) < 299D9296-2984-3967-9049-A842B99E5D43 > /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLEngine.bundl e/GLEngine

    0x7fff9c6dc000 - 0x7fff9ca1cfff com.apple.WebKit (11601 - 11601.6.17) /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit < F54752A4-B5AA-3993-BA9A-83F4B3AA176E >

    0x7fff9ca4c000 - 0x7fff9cad5ff7 com.apple.PerformanceAnalysis (1.0-1) < 2064F7E8-5C3D-3E18-8029-2D832D13E2A2 > /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis

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

    0x7fff9ce5c000 - 0x7fff9ce5dff3 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

    0x7fff9ce5e000 - 0x7fff9ce87fff (477.50.4) libsystem_info.dylib < FAA9226D-64DE-3769-A6D8-6CABA4B7FF4D > /usr/lib/system/libsystem_info.dylib

    0x7fff9ce90000 - 0x7fff9ce98ff7 (583.50.1) libnetwork.dylib < EFED972E-5555-30C0-AFC7-7790F20B494D > /usr/lib/libnetwork.dylib

    0x7fff9ce9c000 - 0x7fff9ceabfff 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

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

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

    0x7fff9cf50000 - 0x7fff9e03dffb com.apple.WebCore (11601 - 11601.6.17) < A715DA96-B504-36A3-88DD-13485DE8BA2D > /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore

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

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

    0x7fff9e063000 - 0x7fff9e0a1ff7 libGLImage.dylib (12.1) < BB1F1A93-5101-3906-AB17-8D83FCB200F9 > /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib

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

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

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

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

    0x7fff9ea10000 - 0x7fff9ea18ff7 com.apple.CloudServices (1.0 - 154.50.9) these /System/Library/PrivateFrameworks/CloudServices.framework/Versions/A/CloudServi < CA10E6A3-36AA-3513-90AE-B71B6B1C0094 >

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

    0x7fff9eb25000 - 0x7fff9eb76ff7 libcups.2.dylib (435.2) < 91584A40-214D-33E8-A613-CE22289037C8 > /usr/lib/libcups.2.dylib

    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: 1812

    thread_create: 0

    thread_set_state: 0

    Summary region VM:

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

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

    VIRTUAL REGION

    The NUMBER of DIMENSIONS of TYPE REGION (not melted)

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

    384K 3 Accelerate.Framework

    2048K 2 follow-up activity

    CG backup stores 284K 4

    CG image 200 K 44

    CG 304 K 15 raster data

    CG shared images 272K 9

    CoreAnimation 800K 70

    CoreUI 944 K 11 image data

    CoreUI image file 352K 6

    Ship 8192 K 2 continuations

    Foundation 4K 2

    IO image 104K 27

    Kernel Alloc once 8 K 3

    MALLOC 96.9 M 51

    MALLOC 32K 7 cover page

    Tag memory 242 12K 2

    Memory 247 400 K 2 tag

    Tag memory 248 10.3 M 2

    Memory Tag 249 3580 K 9

    OpenCL 24K 4

    Corpse process Info 2048 K 2

    BATTERY GUARD 56.1 M 27

    Stack the 20.3 M 27

    VM_ALLOCATE 148K 22

    __DATA 48.2 M 416

    2588 K 2 __GLSLBUILTINS

    __IMAGE 528K 2

    __LINKEDIT 108.4 M 61

    __TEXT 301,2 416 M

    __UNICODE 552K 2

    mapped file 53.5 M 23

    16.3 shared memory M 10

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

    TOTAL 734,4 1253 M

    Model: Macmini7, 1, MM71.0220.B07 BootROM, 2 processors, Intel Core i5, clocked at 2.6 GHz, 8 GB, MSC 2.24f32

    Graphics card: Intel Iris, Iris Intel integrated

    Memory module: DIMM0/0 BANK, 4 GB DDR3, 1600 MHz, 0x80AD, 0x483943434E4E4E424C54414C41522D4E5444

    Memory module: DIMM0/1 BANK, 4 GB DDR3, 1600 MHz, 0x80AD, 0x483943434E4E4E424C54414C41522D4E5444

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

    Bluetooth: Version 4.4.5f3 17904, 3 services, 27 aircraft, 1 incoming serial ports

    Network service: Wi - Fi, AirPort, en1

    Serial ATA Device: APPLE HDD, 1 TB HTS541010A9E662

    USB device: USB 3.0 Bus

    USB device: C-Media USB Headphone Set

    USB device: USB 2.0 Hub

    USB device: MFC-J475DW

    USB Device: IR receiver

    USB device: Hub BRCM20702

    USB Device: USB Bluetooth host controller

    USB device: My book 111 d

    USB device: Keyboard Hub

    USB Device: Apple keyboard

    Bus crush: Mac mini, Apple Inc., 26.1

    If possible, please restore the library of Photos of a backup prior to the problem. Ask if you need advice.

  • Problem with the help of Dynadock with Internet Explorer

    I don't know if cela the right forum, but I have a problem I'm trying to understand. Here are the basics:

    Toshiba Satellite L750 laptop with Windows 7 64 bit OS
    Dynadock U with software version 2.4.0.13 (for the monitor, printer, keyboard and mouse, Ethernet)
    Internet Explorer version 9.0.6

    Here's my problem:

    The installer works well for a few months. Last week, I bought a digital camcorder from Panasonic, and when I tried to watch the video on my laptop it is very jerky etc. I looked at the Panasonic troubleshooting guide and he was told to change my background theme of 'Aero' to one 'basic and high contrast themes' that I made and the video was perfect.

    When I got back to my office and hung the Dynadock everything worked fine except IE which essentially froze and I couldn't close, so I had to restart. Google Chrome worked fine however. When I'm past my background back to IE "Aero" started to work again.

    I don't want to switch to Google Chrome, that many of the tools that I use for my work only work with IE.
    I don't want to change the settings back when I use my video camera.
    Any ideas on why this is happening and if something can be done?

    Thanks for your help!

    Dennis

    Hello

    I think I found something interesting for you:
    + Disabled on any platform Aero themes Windows 7 causes a delay when you use Windows Photo to display on an external monitor connected to a Toshiba dynadock +.
    http://APS2.toshiba-tro.de/KB0/OPT17036Q0000R01.htm

    It looks like the update to at least displaylink driver V5.6.x would help solve this problem.

    Feedback would be appreciated.

  • Problems with the help of control Edit Expression with tab control

    Hi all

    I am facing a strange problem when using Expression Edit Control with a tab control.

    When I put the Expression of the RichEdit controls on several tabs in a tab control, and when I run the application, the Expression Edit controls in a single tab are visible, others get invisible! I do NOTHING with them, but they do not simply show upward!

    I first faced this problem using Expr editing controls in Visual Studio c#. NET - with tab controls. For verification, I created a simple VI is LabVIEW to see if the problem is with my request / problem with Expression Edit controls in c#, etc. But voila!  A similar behavior in LabVIEW too! 

    I'm doing something wrong? OR do not do something right? Ask someone for help please ASAP!

    Thanks a ton in advance!

    DASI

    PS: Attached the VI here (LabVIEW 8.5) just download and run it, and you will see probably what I'm talking about!


  • Problem with the help of Word 2000 with Vista computer

    I installed MS Office 2000 Pro on my Vista platform.  Everything works EXCEPT the word.  When I start word
    I get the Basic with no toolbar window, a blank page and nothing else.  I get the following message when I close it (using the Task Manager, as the program is not responding).  I've seen this problem on the forums, but nobody seems to have an answer, and I tried to do it intelligently as to what is causing the problem by searching for each of the
    hang the signatures, but can't seem to find, so I can't say if there is a conflict or what.  I uninstalled and cleaned the registry, files and such usually left over after uninstall, but have still not luck with Word, well that whenever that everything else works.  If I could give a meaning to the coding in signatures hang I would try but I'm not a programmer and outside to recognize that part of the encoding is hexadecimal, I am operated by.  Any help would be appreciated!

    Problem event name: AppHangB1
    Application name: WINWORD. EXE
    Application version: 9.0.0.6926
    Application timestamp: 3d97fbe5
    Hang Signature: c816
    Hanging Type: 2048
    The system version: 6.0.6001.2.1.0.768.3
    Locale ID: 1033
    Signing of additional blocking 1: 2caec44e7e7e8dfd8bdd5135c9f2c06f
    Signature of blocking additional 2:3836
    Signing of additional blocking 3: 73e71ef1bba65b88e350215256a221ae
    Signing of additional blocking 4: c816
    Signing of additional blocking 5: 2caec44e7e7e8dfd8bdd5135c9f2c06f
    Signature of blocking additional 6:3836
    Signing of additional blocking 7: 73e71ef1bba65b88e350215256a221ae

    To the best of my knowledge of the version of Office Pro that I use is 9.00.9327 with Windows Vista Home Premium OS.  All the MS current updates are installed with the exception of. The PS Office since I couldn't get the program to run right, that I thought I'd add Ms could make the problems worse.  The computer is a Toshiba Satellite with processors Dual Core Intel, 4 GB of Ram and 230 GB HD

    Hello

    Welcome to the responses of the Forums.

    For assistance, you try the Groups of Discussion Office rather (look for the Word Newsgroups):
    http://www.Microsoft.com/Office/Community/en-us/flyoutoverview.mspx

    Thanks and good luck! Vincenzo Di Russo - Microsoft MVP Windows Internet Explorer, Windows Desktop Experience & security - since 2003. ~ ~ ~ My MVP profile: https://mvp.support.microsoft.com/profile/Vincenzo

  • My facebook does not work on my laptop. theres a delay of 10 to 20 sec and it freezes.it works on my phone and kindle fine.and fair facebook is the only site that I have a problem with the help!

    My facebook is not loading properly it freezes and theres a delay.it of 10-20 sec worked very well for any other device.and that my laptop works properly on another site

    Hi Bobbi,

    The issue can be caused if the date and time is not properly defined.

    1. what browser do you use on your computer?

    2. you receive an error code or message?

    3. have you checked the issue with a different browser?

    First of all, let us try to launch the tool Internet and network by right clicking on the network in the notification area icon, click on solveand click Internet Connections. This utility can you ask questions or reset common settings as he tries to solve the problem. If running the tool network and Internet did not resolve this problem, follow the steps described in the following link and check if you are using Internet Explorer.

    Can't access some Web sites in Internet Explorer:

    http://support.Microsoft.com/kb/967897

    Note: Reset the Internet Explorer settings can reset security settings or privacy settings that you have added to the list of Trusted Sites. Reset the Internet Explorer settings can also reset parental control settings. We recommend that you note these sites before you use the reset Internet Explorer settings.

    If you need further assistance on this topic, let know us and we will be happy to help you.

Maybe you are looking for

  • error message: This lifeboat of adobe acrobat/reader to view PDF files in a browser

    Problem is in Firefox 18.0.2 when a 'sign' ID was created in Acrobat 9.5.3 (Win XP). When sign ID has been removed, now redirected to a file PDF has been activated, but when printing PDFS consulted has been attempted, once again had the same error me

  • Selection of the range of Gain on the acquisition continues

    I develop on the OEM version of 6211.  We use all 16 channels to HAVE it. Is there a way to change the gain of a channel range without having to stop and restart the task because this causes a discontiuity in the data? In the case where there is perh

  • Impossible to update Windows XP using Auto-Update

    None of the updates downloaded by the Auto-Updater Windows XP SP3 install.  If I check the installer actively (by clicking on the yellow "shield of exclamation point" icon), I am advised that "The component you are trying to use is on a network that

  • Problems of the uninstalling programs

    I downloaded applications/programs on my laptop and I would like to uninstall some but they are not appearing in my list of uninstallers, why is this and how do I uninstall them?

  • Download blackBerry Smartphones Blackberry Bold 9900 problems

    I have a Blackberry Bold 9900, & I'm unable to download files from the internet. My BIS is enabled. If I download a file, it downloads very slowly & always get an error message. Whenever I have download. Is there a problem with my phone, or is the pr