Indesign indexing automation

I am doing a book layout in Indesign CS6. I've imported my index list from Word and it is now in Topics. I would like each item to now be in the reference section and include all instances it is found in the book. How can I do this automatically, not one by one?

Hello,
We have QuickIndex which is free. We are still sort of working on it, ironing out bugs and adding new stuff.
http://www.kerntiff.co.uk/products-4-indesign/indexers-corner/kps-inde x-utilities/quickindex
QuickIndex has a search feature, which might be what you are looking for.
P.

Similar Messages

  • How to - Indesign index - 3 different ways?

    Any insight on how to tackle building an index for a 96-page document in InDesign?  I have tried to read various posts on this, but I'm still in the dark.
    INFO:
    My file is not set up as a "book", it's just a 96-facing pages document
    I need to build 3 indexes in the document, so readers can search by "Index by Title", "Index by Location", "Index by Author"  
    Is there step by step instructions anywhere on how to approach this - I'm very confused at this point and sit here with a blank index in my document. I don't even know how I should approach the layout of it yet, OR if I'm supposed to build a file in excel and then import the info? 
    Blank slate at this point ~ can anyone help?
    Thanks kindly in advance!

    Chemol wrote:
    Hi Peter, thanks for that link, I actually saw that website prior to posting.  It doesn't really answer my "how to" question, other than teling me that apparently InDesign "does not support multiple indexing" ...correct?  If that's the case, then how do people accomplish this task?
    You may have missed this note in the InDesignSecrets information:
    "Another method is to use prefixes in your index entries. For example, put an ! (exclamation point) at the beginning of all your “author” index entries. Then, when you generate the index, those will all be gathered together in one group. You can then remove the special character at the beginning of each paragraph easily with Find/Change."
    It's terse, but the idea is that you add a special character to each index entry - say an ! for author, a ~ for subject, etc. Just as all entries that begin with "a" or "b" etc. are gathered together under the initial letter in the generated index, so, too, the "!" and "~" entries are gathered under these symbols. When the document is finalized and the final index is generated, you can remove the special characters with Find/Change.
    When you get the hang of creating index entries (by viewing a tutorial and doing some experiments, as Jongware suggests) this will make more sense.
    And what the heck is a grep - I don't know anything about codes..?
    GREP is a smarter kind of Find. You shouldn't need it for this task.
    Anywho, and was hoping someone could give me a play-by-play on how to tackle this index.
    Any further insgiht would be very much appreciated.
    Thx!
    HTH
    Regards,
    Peter
    Peter Gold
    KnowHow ProServices

  • InDesign Index - Indexing a book and having page links in PDF

    I am creating an index on a book made up from 30 indesign documents.  When I export the book to a PDF I want to be able to click on the index page numbers and have it go to that page.  The problem is that I can only get the index links in a PDF to work on the document that I have the index.  If I have my index in the last document and I create a index entry to the second page it creates it fine but once exported into a PDF the link doesn't work.  In CS4 I created small books like this with no problems.
    Any sugestions?
    Thanks,
    Josh

    Joshmon2003 wrote:
    Peter,
    The links that work look like this:
    The links that are not working look like this:
    for some reason indesign CS5 created the link differently when it is in a different document but in the same book.  Any ideas on how to fix this??  In CS4 this worked fine.
    Thanks,
    Josh
    Hi, Josh:
    You didn't mention the Tagged PDF and Buttons and Media settings. Not sure if they make a difference, but it helps to know as much as possible, sometimes.
    The failing link is looking for a PDF file on the H: drive, while the successful link doesn't specify a directory path. I haven't done much specifically in InDesign with exported multi-file books. However, from my Acrobat experience, I can see that the individual files of your InDesign multi-file book are being converted to individual PDF files, and their original paths are retained in the exported links.
    I don't know if the link paths are different if you export the book to PDF by deselecting all the individual InDesign book files by clicking in the blank area below the last title in the Book panel, and choose Export Book to PDF from the Book panel menu, or if you select all the titles and choose Export Selected Documents to PDF.
    As far as I know, there's no way to create a single PDF from a multi-file InDesign book document, though it's likely that the links would work because no pathname would be involved, as with your successful link.
    Are all the individual book files in a single folder (a single path), or scattered across multiple folders (multiple paths)?
    If you want your PDF book to be a collection of individual files, on thing you can try is to use Package Book for Print from the Book panel's menu. This copies everything that comprises all the individual book files, and their linked content, into one folder, with a single pathname. Exporting the book file created by the package should make all the link paths the same, so there's a good chance you'll get what you want.
    When you say that this worked in an earlier InDesign release, do you mean that the same set of project files worked in the past and are failing now in CS5? Or, is your current project a new one, with assets in multiple folders? Were all the component files and the linked stuff in your old successful project, all in one folder? 
    HTH
    Regards,
    Peter
    Peter Gold
    KnowHow ProServices

  • InDesign Server Automation

    I'm looking into purchasing InDesign Server for the document automation features. One feature, Data Merge, would be a tremendous help for our company.
    I'm having some trouble setting it up with a script.
    Here's what I have running, just a basic test.
    var myDocument = app.open(File("C:\\inetpub\\wwwroot\\indesign\\test.indd"));
    with (app.dataMergeOptions) {
    linkImages = true;
    removeBlankLines = false;
    createNewDocument = true;
    documentSize = 100;
    } // (end of dataMergeOptions)
    myDocument.dataMergeProperties.mergeRecords();
    myDocument.exportFile(ExportFormat.PDF_TYPE, File ("c:\\inetpub\\wwwroot\\indesign\\merged.pdf"));
    myDocument.close ();
    In the file I had it linked to a csv that pulled data but it seems the link has been broken (or out of date according to the error).
    Can anyone help me with what I am doing wrong or even provide a better method?
    I am running the script through PHP via SOAP in IIS running on Windows 2008 R2
    InDesign Server CC 2014

    Thank you for your post Loic.Aigon.
    After I stumbled upon this post javascript - InDesign Script: export to IDML - Stack Overflow I found the option dataMergeProperties.selectDataSource(csv file).
    Here's my updated code, sorry for the missing formatting.
    var myDocument = app.open(File("C:\\inetpub\\wwwroot\\indesign\\test.indd"));
    var myDataSource = File("C:\\inetpub\\wwwroot\\indesign\\test.csv");
    with (app.dataMergeOptions) {
    linkImages = true; 
    removeBlankLines = false;
    createNewDocument = true;
    documentSize = 100;
    } // (end of dataMergeOptions)
    myDocument.dataMergeProperties.selectDataSource(myDataSource);
    myDocument.dataMergeProperties.mergeRecords();
    app.activeDocument.exportFile(ExportFormat.PDF_TYPE, File ("/c/inetpub/wwwroot/indesign/merged2.pdf"));
    //myDocument.save(new File("C:\\inetpub\\wwwroot\\indesign\\mergedOutput.idml"));
    myDocument.close ();
    if I run myDocument.exportFile(ExportFormat.PDF_TYPE, File ("/c/inetpub/wwwroot/indesign/merged2.pdf")); then it tries to merge but throws a warning [link manager Link out of date: file: and links the original csv file it was created with (not my referenced data source file).
    I believe I should merge on the active document and not the original document.
    But if I run app.activeDocument.exportFile(ExportFormat.PDF_TYPE, File ("/c/inetpub/wwwroot/indesign/merged2.pdf")); it throws a javascript error, app.activeDocument is undefined.

  • Indesign Index busted

    Need help getting Index to work in Indesign Book. Comes up empty, except for index title. Using Indesign CC 2014, Mac OS. It worked first time then Indesign crashed. Tried reinstalling indesign, creating new versions of Index file and book.No Luck
    Any Suggestions?

    Nop, no perfect solution to the perfect question yet.
    Perfection of course would be for Adobe to add this option to the index menu.
    IndexMaticPro does the trick, I guess. You can insert a query list and then either export the index to an InDesign snippet.
    But it's a rather extensive script and thus more complicated then the easy to use Ctrl+7 and CTRL+SHFT+ALT+[ options.
    We just upgraded to CS5.5 and  the script still works - which I can't say for some other scripts and plug-ins that I bought - so that's a plus.

  • TDM Importer Excel start index automation

    I am trying to create a macro within excel to import and format data from a .tdm file.
    The files to be imported sometimes exceed the 1M row limit in Excel, so when this happens, I want to generate two workbooks. One of these workbooks should be generated from a start index of 1 and the other should be generated from a start index of 1048576. Right now I use the silent mode to give a start index of 1 and then rerun the importer and enter 1048576 manually for the second workbook.
    My question is: is there any way to set the start index through a macro?
    I have considered using the sendkey command to generate the "tab tab 1048576 enter" keystrokes required, but excel cannot interrupt the call object command in order to do this.
    Many thanks,
    Alex
    Solved!
    Go to Solution.

    Alex
    I have done quite complex processing with DIAdem.  Your request is not a big deal to do in DIAdem.
    For max flexibilty, you can take out references to the channel. Like shown below in oChan01.  This will allow you to handle a channel like an array. The limitations on this approach is speed,  The built in functions are faster than this approach, and should be used as much as possible.   The chnfind command is one examle that is much faster to find a specific value in a channel.
    OptionExplicit'Forces the explicit declaration of all the variables in a script.
    dim oChan01,i,oGrp,dVal
    set oGrp = data.Root.ChannelGroups("EXAMPLE")
    set oChan01 = oGrp.Channels("Time")
    for i = 1to oChan01.Size
       dVal = oChan01(2)
    next
    Paul

  • Site Search Index Automation

    Is there a way to schedule site search to re-index the site on a given frequency, such as once a day at 12 AM PST?
    I assume not.  Is this feature in the roadmap for future development?

    I'm pretty sure the system does not automatically reiindex products and web app items...  If I add products to the system they do not show up in the site search results until 20-60 min after I manually push the button to re-index the site.

  • Developer Update for InDesign Server Developers

    Hello all,
    If you are creating plug-ins for the Creative Suite of Adobe applications, you'll want to attend this ninety minute session for an update on developing plug-ins for Photoshop, Illustrator, InDesign, Bridge, Version Cue, and XMP.
    Topics include the C and C++ APIs, Extendscript and other developer details. Dan Brotsky, Chief Architect for the Creative Suite, will discuss highlights of the Version Cue SDK, and the Creative Suite Activation Software. This presentation is not for the technically faint of heart expect high technology at high speed!
    This session will be recorded for later review, and a summary document made available for reference.
    Who should attend? Any developer that is interested in creating plug-ins for any products in the Creative Suite.
    May 3rd. 9:00 am to 10:30 am PST
    Free
    Online via Acrobat Connect - watch from your desktop - no special software require to participate.
    Register at:
    http://www.adobe.com/cfusion/event/index.cfm?event=detail&id=883099&loc=en_us
    MNR

    I have spent some time geting Java automation to work with InDesign, it's not my favorite language but I learned some things that may help and put them into some course content that Adobe should put out shortly; will post here when it is available online.
    Our company, Silicon Publishing, provides general InDesign Server automation training, though we don't have a current offering that specifically targets Java we teach some of the basics of working with Java (many unique techniques!) and could arrange a limited form of training.
    The documentation and samples with the SDK should take you part of the way there: for specific scripts, it has been helpful to us to get things working in an easier-to-write (i.e. JavaScript) script first, then translate such a script to Java, taking into account the unique characteristics of the language and various tactics (outlined in the SDK documentation) to address these.
    Max
    Max Dunn
    Silicon Publishing
    www.siliconpublishing.com
    [email protected]

  • My Indesign CC crashes every time I open a CS6 file on it!!!

    My Indesign CC crashes every time I open a CS6 file on it. I have tried everything, a clean install using the clean tool on my system, saving the CS6 file as an .idml on CS6---but whenever I try to open files on Indesign CC, the program crashes!
    I am using a Mac OSX Lion on 2010 Macbook Pro 15in. with 8gb RAM.
    My Indesign CC is completely useless without being able to open my CS6 files, please help!
    Crash report below:
    Process:         Adobe InDesign CC [15107]
    Path:            /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Adobe InDesign CC
    Identifier:      com.adobe.InDesign
    Version:         9.0.0.244 (9000)
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [197]
    User ID:         501
    Date/Time:       2013-10-12 07:10:05.364 +0800
    OS Version:      Mac OS X 10.8.5 (12F45)
    Report Version:  10
    Interval Since Last Report:          34505 sec
    Crashes Since Last Report:           11398
    Per-App Interval Since Last Report:  170 sec
    Per-App Crashes Since Last Report:   2
    Anonymous UUID:                      D4831B50-9C57-8265-8CED-515C2F837F9C
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x000000032d143b6c
    VM Regions Near 0x32d143b6c:
        __LINKEDIT             0000000201b74000-0000000201be3000 [  444K] r--/rwx SM=COW  /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDriver
    -->
        STACK GUARD            00007fff5bc00000-00007fff5f400000 [ 56.0M] ---/rwx SM=NUL  stack guard for thread 0
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.adobe.AGM                           0x0000000101e9c2ae 0x101b6a000 + 3351214
    1   com.adobe.AGM                           0x0000000101e9ce4f 0x101b6a000 + 3354191
    2   com.adobe.AGM                           0x0000000101ef8ceb 0x101b6a000 + 3730667
    3   com.adobe.AGM                           0x0000000101f0a627 0x101b6a000 + 3802663
    4   com.adobe.AGM                           0x0000000101f0b6ef 0x101b6a000 + 3806959
    5   com.adobe.AGM                           0x0000000101f0e111 0x101b6a000 + 3817745
    6   com.adobe.AGM                           0x0000000101b9ff6b 0x101b6a000 + 221035
    7   com.adobe.AGM                           0x0000000101b9ff6b 0x101b6a000 + 221035
    8   com.adobe.AGM                           0x0000000101db70dc 0x101b6a000 + 2412764
    9   com.adobe.AGM                           0x0000000101b9ff6b 0x101b6a000 + 221035
    10  com.adobe.AGM                           0x0000000101db70dc 0x101b6a000 + 2412764
    11  com.adobe.AGM                           0x0000000101d848e9 0x101b6a000 + 2205929
    12  com.adobe.AGM                           0x0000000101d614af 0x101b6a000 + 2061487
    13  com.adobe.InDesign.AppFramework          0x000000010ed0dbf5 0x10ece2000 + 179189
    14  PublicLib.dylib                         0x0000000101153456 PathPageItem::Fill(IGraphicsPort*) + 406
    15  PublicLib.dylib                         0x000000010119ea80 CGraphicFrameShape::DrawShape_Fill(GraphicsData*, int) + 320
    16  PublicLib.dylib                         0x000000010119e87c CGraphicFrameShape::DrawShape(GraphicsData*, int) + 76
    17  PublicLib.dylib                         0x00000001011a1991 CShape::ProcessDrawShape(GraphicsData*, int) + 273
    18  PublicLib.dylib                         0x00000001011a284c CShape::DrawHierarchy(GraphicsData*, int) + 396
    19  PublicLib.dylib                         0x000000010119f2c0 CGraphicFrameShape::DrawShape_Hierarchy(GraphicsData*, int) + 1920
    20  PublicLib.dylib                         0x000000010119e8b3 CGraphicFrameShape::DrawShape(GraphicsData*, int) + 131
    21  PublicLib.dylib                         0x00000001011a1991 CShape::ProcessDrawShape(GraphicsData*, int) + 273
    22  com.adobe.InDesign.Group                0x000000011191dade 0x11191a000 + 15070
    23  com.adobe.InDesign.Generic Page Item          0x00000001114c4798 0x111495000 + 194456
    24  com.adobe.InDesign.Group                0x000000011191d994 0x11191a000 + 14740
    25  com.adobe.InDesign.Group                0x000000011191d014 0x11191a000 + 12308
    26  PublicLib.dylib                         0x00000001011a1991 CShape::ProcessDrawShape(GraphicsData*, int) + 273
    27  com.adobe.InDesign.Layer                0x0000000112374cf1 0x11236f000 + 23793
    28  com.adobe.InDesign.Generic Page Item          0x00000001114c4798 0x111495000 + 194456
    29  com.adobe.InDesign.Layer                0x0000000112374ba9 0x11236f000 + 23465
    30  com.adobe.InDesign.Layer                0x000000011237454c 0x11236f000 + 21836
    31  com.adobe.InDesign.Spread               0x00000001149236a9 0x11491b000 + 34473
    32  com.adobe.InDesign.Spread               0x000000011492173d 0x11491b000 + 26429
    33  com.adobe.InDesign.Spread               0x000000011491ede9 0x11491b000 + 15849
    34  com.adobe.InDesign.AppFramework          0x000000010ed11edf 0x10ece2000 + 196319
    35  com.adobe.InDesign.Layout UI            0x0000000112505e9f 0x1123af000 + 1404575
    36  com.adobe.InDesign.Layout UI            0x0000000112503a2b 0x1123af000 + 1395243
    37  com.adobe.InDesign.Layout UI            0x000000011250249a 0x1123af000 + 1389722
    38  com.adobe.InDesign.Layout UI            0x0000000112502046 0x1123af000 + 1388614
    39  com.adobe.InDesign.Layout UI            0x00000001125070ad 0x1123af000 + 1409197
    40  DV_WidgetBinLib.dylib                   0x000000010004097f 0x100037000 + 39295
    41  com.adobe.dvaui.framework               0x0000000100bb380c dvaui::ui::UI_Node::UI_DrawSelf(dvaui::drawbot::Drawbot*, bool, dvaui::drawbot::ColorRGBA const*) const + 332
    42  com.adobe.dvaui.framework               0x0000000100bb3c15 dvaui::ui::UI_Node::UI_DrawAndCache(dvaui::drawbot::Drawbot*, bool, dvaui::drawbot::ColorRGBA const*) const + 901
    43  com.adobe.dvaui.framework               0x0000000100bb3f38 dvaui::ui::UI_Node::UI_DispatchDrawToChild(dvaui::ui::UI_Node const*, dvaui::drawbot::Drawbot*) + 296
    44  com.adobe.dvaui.framework               0x0000000100bb26cb dvaui::ui::UI_Node::UI_Draw(dvaui::drawbot::Drawbot*) const + 43
    45  com.adobe.dvaui.framework               0x0000000100bb380c dvaui::ui::UI_Node::UI_DrawSelf(dvaui::drawbot::Drawbot*, bool, dvaui::drawbot::ColorRGBA const*) const + 332
    46  com.adobe.dvaui.framework               0x0000000100bb3c15 dvaui::ui::UI_Node::UI_DrawAndCache(dvaui::drawbot::Drawbot*, bool, dvaui::drawbot::ColorRGBA const*) const + 901
    47  com.adobe.dvaui.framework               0x0000000100bb3f38 dvaui::ui::UI_Node::UI_DispatchDrawToChild(dvaui::ui::UI_Node const*, dvaui::drawbot::Drawbot*) + 296
    48  com.adobe.dvaui.framework               0x0000000100bb26cb dvaui::ui::UI_Node::UI_Draw(dvaui::drawbot::Drawbot*) const + 43
    49  com.adobe.dvaui.framework               0x0000000100bb380c dvaui::ui::UI_Node::UI_DrawSelf(dvaui::drawbot::Drawbot*, bool, dvaui::drawbot::ColorRGBA const*) const + 332
    50  com.adobe.dvaui.framework               0x0000000100bb3c15 dvaui::ui::UI_Node::UI_DrawAndCache(dvaui::drawbot::Drawbot*, bool, dvaui::drawbot::ColorRGBA const*) const + 901
    51  com.adobe.dvaui.framework               0x0000000100bb3f38 dvaui::ui::UI_Node::UI_DispatchDrawToChild(dvaui::ui::UI_Node const*, dvaui::drawbot::Drawbot*) + 296
    52  com.adobe.dvaui.framework               0x0000000100bb26cb dvaui::ui::UI_Node::UI_Draw(dvaui::drawbot::Drawbot*) const + 43
    53  com.adobe.dvaui.framework               0x0000000100bb380c dvaui::ui::UI_Node::UI_DrawSelf(dvaui::drawbot::Drawbot*, bool, dvaui::drawbot::ColorRGBA const*) const + 332
    54  com.adobe.dvaui.framework               0x0000000100bb3c15 dvaui::ui::UI_Node::UI_DrawAndCache(dvaui::drawbot::Drawbot*, bool, dvaui::drawbot::ColorRGBA const*) const + 901
    55  com.adobe.dvaui.framework               0x0000000100bb3f38 dvaui::ui::UI_Node::UI_DispatchDrawToChild(dvaui::ui::UI_Node const*, dvaui::drawbot::Drawbot*) + 296
    56  com.adobe.dvaui.framework               0x0000000100bb37c4 dvaui::ui::UI_Node::UI_DrawSelf(dvaui::drawbot::Drawbot*, bool, dvaui::drawbot::ColorRGBA const*) const + 260
    57  com.adobe.dvaui.framework               0x0000000100bb3c15 dvaui::ui::UI_Node::UI_DrawAndCache(dvaui::drawbot::Drawbot*, bool, dvaui::drawbot::ColorRGBA const*) const + 901
    58  com.adobe.dvaui.framework               0x0000000100bb432c dvaui::ui::UI_Node::UI_DispatchDrawFromRoot(dvaui::drawbot::ColorRGBA const&, dvaui::drawbot::Drawbot*, bool) const + 348
    59  com.adobe.InDesign.Application UI          0x000000010f0294b2 0x10eefa000 + 1242290
    60  com.adobe.dvaui.framework               0x0000000100c42586 void dvaui::drawbot::InvokeDrawbotFromRegionT<dvaui::ui::OS_View, std::const_mem_fun1_ref_t<void, dvaui::ui::OS_View, dvaui::drawbot::Drawbot*>, NSView*>(dvaui::ui::OS_View const&, std::const_mem_fun1_ref_t<void, dvaui::ui::OS_View, dvaui::drawbot::Drawbot*> const&, dvaui::drawbot::SupplierInterface const&, NSView*, __HIShape const*, dvaui::drawbot::SurfaceInterface*, bool) + 198
    61  com.adobe.dvaui.framework               0x0000000100c3ef6c void dvaui::drawbot::InvokeDrawbot<dvaui::ui::OS_View, std::const_mem_fun1_ref_t<void, dvaui::ui::OS_View, dvaui::drawbot::Drawbot*>, NSView*>(dvaui::ui::OS_View const&, std::const_mem_fun1_ref_t<void, dvaui::ui::OS_View, dvaui::drawbot::Drawbot*> const&, dvaui::drawbot::SupplierInterface const&, NSView*, __HIShape const*, dvaui::drawbot::SurfaceInterface*, std::vector<dvacore::geom::RectT<int>, std::allocator<dvacore::geom::RectT<int> > >*, bool) + 364
    62  com.adobe.dvaui.framework               0x0000000100c2ed42 dvaui::ui::OS_View::UI_HandlePlatformDrawEvent(dvaui::drawbot::SurfaceInterface*) + 402
    63  com.adobe.dvacore.framework             0x000000010065f3e4 int dvacore::config::ErrorManager::ExecuteFunction<void>(boost::function0<void>*, void*) + 68
    64  com.adobe.InDesign.Application UI          0x000000010f027872 0x10eefa000 + 1235058
    65  com.adobe.dvacore.framework             0x000000010065f47c void dvacore::config::ErrorManager::ExecuteFunctionWithTopLevelExceptionHandler<void>(boost::f unction0<void>, bool*) + 140
    66  com.adobe.dvacore.framework             0x0000000100660fed void dvacore::config::ExecuteTopLevelFunction<void>(boost::function0<void>, bool*) + 125
    67  com.adobe.dvaui.framework               0x0000000100c39176 dvaui::ui::OS_NodeTimerData::RemoveTimer() + 25926
    68  com.apple.AppKit                        0x00007fff886bf064 -[NSView _drawRect:clip:] + 4217
    69  com.apple.AppKit                        0x00007fff886bd6c1 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1656
    70  com.apple.AppKit                        0x00007fff886bdad9 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2704
    71  com.apple.AppKit                        0x00007fff886bdad9 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2704
    72  com.apple.AppKit                        0x00007fff886bdad9 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2704
    73  com.apple.AppKit                        0x00007fff886bdad9 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2704
    74  com.apple.AppKit                        0x00007fff886bdad9 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2704
    75  com.apple.AppKit                        0x00007fff886bdad9 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2704
    76  com.apple.AppKit                        0x00007fff886bb6f2 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topVi ew:] + 817
    77  com.apple.AppKit                        0x00007fff886bb143 -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topVi ew:] + 314
    78  com.apple.AppKit                        0x00007fff886b6d6d -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 4675
    79  com.apple.AppKit                        0x00007fff88680c93 -[NSView displayIfNeeded] + 1830
    80  com.apple.AppKit                        0x00007fff8873da18 -[NSWindow _reallyDoOrderWindow:relativeTo:findKey:forCounter:force:isModal:] + 1377
    81  com.apple.AppKit                        0x00007fff8873d038 -[NSWindow _doOrderWindow:relativeTo:findKey:forCounter:force:isModal:] + 940
    82  com.apple.AppKit                        0x00007fff8873cc1f -[NSWindow orderWindow:relativeTo:] + 159
    83  com.apple.AppKit                        0x00007fff887356dc -[NSWindow makeKeyAndOrderFront:] + 48
    84  com.adobe.owl                           0x0000000100477c50 0x100433000 + 281680
    85  com.adobe.owl                           0x00000001004c248b 0x100433000 + 586891
    86  com.adobe.owl                           0x0000000100484131 0x100433000 + 332081
    87  com.adobe.owl                           0x0000000100483b1a 0x100433000 + 330522
    88  com.adobe.owl                           0x0000000100484b70 0x100433000 + 334704
    89  com.adobe.owl                           0x000000010045a6e2 0x100433000 + 161506
    90  com.adobe.owl                           0x0000000100471ac6 0x100433000 + 256710
    91  com.adobe.owl                           0x000000010047e6c3 0x100433000 + 308931
    92  com.adobe.owl                           0x000000010047dc99 OWLWidgetShow + 491
    93  WidgetBinLib.dylib                      0x00000001002f32ac DocumentPresentation::MakeActive() + 76
    94  com.adobe.InDesign.Layout UI            0x00000001124bc753 0x1123af000 + 1103699
    95  com.adobe.InDesign.Layout UI            0x00000001124bbfd4 0x1123af000 + 1101780
    96  PublicLib.dylib                         0x00000001010d4481 Command::DoImmediate(short) + 33
    97  com.adobe.InDesign.Utilities            0x0000000115d8b47c 0x115d8a000 + 5244
    98  com.adobe.InDesign.Utilities            0x0000000115d8b605 0x115d8a000 + 5637
    99  com.adobe.InDesign.AppFramework          0x000000010eced26f 0x10ece2000 + 45679
    100 PublicLib.dylib                         0x00000001010d3740 CmdUtils::ProcessCommand(ICommand*) + 64
    101 com.adobe.InDesign.Import Export UI          0x0000000111ea7dae 0x111ea0000 + 32174
    102 PublicLib.dylib                         0x00000001010d4481 Command::DoImmediate(short) + 33
    103 com.adobe.InDesign.Utilities            0x0000000115d8b47c 0x115d8a000 + 5244
    104 com.adobe.InDesign.Utilities            0x0000000115d8b605 0x115d8a000 + 5637
    105 com.adobe.InDesign.AppFramework          0x000000010eced26f 0x10ece2000 + 45679
    106 PublicLib.dylib                         0x00000001010d3740 CmdUtils::ProcessCommand(ICommand*) + 64
    107 com.adobe.InDesign.Document Actions          0x000000011057ffb9 0x11056b000 + 85945
    108 com.adobe.InDesign.Document Framework          0x00000001106c8f43 0x11059e000 + 1224515
    109 com.adobe.InDesign.AppFramework          0x000000010ed3ba2a 0x10ece2000 + 367146
    110 com.adobe.InDesign.AppFramework          0x000000010ed3633e 0x10ece2000 + 344894
    111 com.adobe.InDesign.AppFramework          0x000000010ed358e5 0x10ece2000 + 342245
    112 PublicLib.dylib                         0x00000001011cc69a CScriptProvider::HandleMethodOnObjects(IDType<ScriptID_tag>, IScriptRequestData*, adobe::version_1::vector<InterfacePtr<IScript>, adobe::version_1::capture_allocator<InterfacePtr<IScript> > > const&) + 458
    113 com.adobe.InDesign.Scripting            0x0000000114616724 0x1145eb000 + 177956
    114 com.adobe.InDesign.Scripting            0x0000000114613738 0x1145eb000 + 165688
    115 com.adobe.InDesign.Scripting            0x0000000114613d50 0x1145eb000 + 167248
    116 com.adobe.InDesign.Support for AppleScript          0x0000000114b30063 0x114b00000 + 196707
    117 com.adobe.InDesign.Support for AppleScript          0x0000000114b2d75a 0x114b00000 + 186202
    118 com.adobe.InDesign.Support for AppleScript          0x0000000114b2cae2 0x114b00000 + 183010
    119 com.adobe.InDesign.Support for AppleScript          0x0000000114b0151c 0x114b00000 + 5404
    120 com.apple.AE                            0x00007fff8b482078 aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned int, unsigned char*) + 307
    121 com.apple.AE                            0x00007fff8b481ed9 dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 37
    122 com.apple.AE                            0x00007fff8b481d99 aeProcessAppleEvent + 318
    123 com.apple.HIToolbox                     0x00007fff850ad709 AEProcessAppleEvent + 100
    124 com.apple.AppKit                        0x00007fff8867d836 _DPSNextEvent + 1456
    125 com.apple.AppKit                        0x00007fff8867cdf2 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    126 com.apple.AppKit                        0x00007fff886741a3 -[NSApplication run] + 517
    127 com.adobe.exo.framework                 0x00000001028a7e98 exo::app::OS_AppBase::RunEventLoop() + 56
    128 com.adobe.InDesign.AppFramework          0x000000010edefff3 0x10ece2000 + 1105907
    129 com.adobe.InDesign.AppFramework          0x000000010edef182 0x10ece2000 + 1102210
    130 com.adobe.InDesign                      0x0000000100001dbc main + 412
    131 com.adobe.InDesign                      0x0000000100001bb4 start + 52
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff8bef4d16 kevent + 10
    1   libdispatch.dylib                       0x00007fff8c024dea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib                       0x00007fff8c0249ee _dispatch_mgr_thread + 54
    Thread 2:
    0   libsystem_kernel.dylib                  0x00007fff8bef40fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff86168ff3 _pthread_cond_wait + 927
    2   com.apple.CoreServices.CarbonCore          0x00007fff8c0e3406 TSWaitOnConditionTimedRelative + 163
    3   com.apple.CoreServices.CarbonCore          0x00007fff8c045a98 MPWaitOnQueue + 252
    4   PMRuntime.dylib                         0x000000010165ebe1 0x10165d000 + 7137
    5   com.apple.CoreServices.CarbonCore          0x00007fff8c0ba7e0 PrivateMPEntryPoint + 58
    6   libsystem_c.dylib                       0x00007fff86164772 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff861511a1 thread_start + 13
    Thread 3:
    0   libsystem_kernel.dylib                  0x00007fff8bef2686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8bef1c42 mach_msg + 70
    2   com.apple.CoreServices.CarbonCore          0x00007fff8c0e03dd TS_exception_listener_thread + 67
    3   libsystem_c.dylib                       0x00007fff86164772 _pthread_start + 327
    4   libsystem_c.dylib                       0x00007fff861511a1 thread_start + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00007fff8bef40fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff86168fb9 _pthread_cond_wait + 869
    2   com.adobe.InDesign.AppFramework          0x000000010eddaf22 0x10ece2000 + 1019682
    3   com.adobe.InDesign.AppFramework          0x000000010edda517 0x10ece2000 + 1017111
    4   com.adobe.InDesign.AppFramework          0x000000010edd7a97 0x10ece2000 + 1006231
    5   com.adobe.InDesign.AppFramework          0x000000010eddbabd 0x10ece2000 + 1022653
    6   com.adobe.InDesign.AppFramework          0x000000010eddba43 0x10ece2000 + 1022531
    7   com.adobe.InDesign.AppFramework          0x000000010eddba02 0x10ece2000 + 1022466
    8   com.adobe.boost_threads.framework          0x00000001010736d4 boost::thread::start_thread() + 436
    9   libsystem_c.dylib                       0x00007fff86164772 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff861511a1 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff8bef40fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff86168fb9 _pthread_cond_wait + 869
    2   com.adobe.InDesign.AppFramework          0x000000010eddaf22 0x10ece2000 + 1019682
    3   com.adobe.InDesign.AppFramework          0x000000010edda38d 0x10ece2000 + 1016717
    4   com.adobe.InDesign.AppFramework          0x000000010edd7a97 0x10ece2000 + 1006231
    5   com.adobe.InDesign.AppFramework          0x000000010eddbabd 0x10ece2000 + 1022653
    6   com.adobe.InDesign.AppFramework          0x000000010eddba43 0x10ece2000 + 1022531
    7   com.adobe.InDesign.AppFramework          0x000000010eddba02 0x10ece2000 + 1022466
    8   com.adobe.boost_threads.framework          0x00000001010736d4 boost::thread::start_thread() + 436
    9   libsystem_c.dylib                       0x00007fff86164772 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff861511a1 thread_start + 13
    Thread 6:
    0   libsystem_kernel.dylib                  0x00007fff8bef4386 __semwait_signal + 10
    1   libsystem_c.dylib                       0x00007fff861ee7c8 nanosleep + 163
    2   com.adobe.InDesign.Support for JavaScript          0x0000000114bc0818 0x114b6d000 + 342040
    3   com.adobe.InDesign.Support for JavaScript          0x0000000114ba7a3e 0x114b6d000 + 240190
    4   com.adobe.InDesign.Support for JavaScript          0x0000000114bc03d5 0x114b6d000 + 340949
    5   libsystem_c.dylib                       0x00007fff86164772 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff861511a1 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff8bef42aa __recvfrom + 10
    1   ServiceManager-Launcher.dylib           0x000000010a37f231 0x10a367000 + 98865
    2   ServiceManager-Launcher.dylib           0x000000010a37e5d6 0x10a367000 + 95702
    3   ServiceManager-Launcher.dylib           0x000000010a37d678 0x10a367000 + 91768
    4   ServiceManager-Launcher.dylib           0x000000010a37d6e6 0x10a367000 + 91878
    5   ServiceManager-Launcher.dylib           0x000000010a3782e4 0x10a367000 + 70372
    6   ServiceManager-Launcher.dylib           0x000000010a378cfe 0x10a367000 + 72958
    7   ServiceManager-Launcher.dylib           0x000000010a378c0b 0x10a367000 + 72715
    8   ServiceManager-Launcher.dylib           0x000000010a37c36e 0x10a367000 + 86894
    9   ServiceManager-Launcher.dylib           0x000000010a37c4b2 0x10a367000 + 87218
    10  ServiceManager-Launcher.dylib           0x000000010a37c26d 0x10a367000 + 86637
    11  ServiceManager-Launcher.dylib           0x000000010a37c1e6 0x10a367000 + 86502
    12  ServiceManager-Launcher.dylib           0x000000010a36a916 0x10a367000 + 14614
    13  ServiceManager-Launcher.dylib           0x000000010a36eb05 0x10a367000 + 31493
    14  ServiceManager-Launcher.dylib           0x000000010a37ce46 0x10a367000 + 89670
    15  ServiceManager-Launcher.dylib           0x000000010a37eef3 0x10a367000 + 98035
    16  libsystem_c.dylib                       0x00007fff86164772 _pthread_start + 327
    17  libsystem_c.dylib                       0x00007fff861511a1 thread_start + 13
    Thread 8:: MPSupport Worker
    0   libsystem_kernel.dylib                  0x00007fff8bef40fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff86168fb9 _pthread_cond_wait + 869
    2   MultiProcessor Support                  0x000000012275144b 0x12270c000 + 283723
    3   MultiProcessor Support                  0x0000000122751303 0x12270c000 + 283395
    4   MultiProcessor Support                  0x0000000122771394 0x12270c000 + 414612
    5   libsystem_c.dylib                       0x00007fff86164772 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff861511a1 thread_start + 13
    Thread 9:: MPSupport Worker
    0   libsystem_kernel.dylib                  0x00007fff8bef40fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff86168fb9 _pthread_cond_wait + 869
    2   MultiProcessor Support                  0x000000012275144b 0x12270c000 + 283723
    3   MultiProcessor Support                  0x0000000122751303 0x12270c000 + 283395
    4   MultiProcessor Support                  0x0000000122771394 0x12270c000 + 414612
    5   libsystem_c.dylib                       0x00007fff86164772 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff861511a1 thread_start + 13
    Thread 10:: MPSupport Worker
    0   libsystem_kernel.dylib                  0x00007fff8bef40fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff86168fb9 _pthread_cond_wait + 869
    2   MultiProcessor Support                  0x000000012275144b 0x12270c000 + 283723
    3   MultiProcessor Support                  0x0000000122751303 0x12270c000 + 283395
    4   MultiProcessor Support                  0x0000000122771394 0x12270c000 + 414612
    5   libsystem_c.dylib                       0x00007fff86164772 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff861511a1 thread_start + 13
    Thread 11:
    0   libsystem_kernel.dylib                  0x00007fff8bef40fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff86168fb9 _pthread_cond_wait + 869
    2   com.adobe.InDesign.AppFramework          0x000000010eddaf22 0x10ece2000 + 1019682
    3   com.adobe.InDesign.AppFramework          0x000000010edda5c8 0x10ece2000 + 1017288
    4   com.adobe.InDesign.AppFramework          0x000000010edd7a97 0x10ece2000 + 1006231
    5   com.adobe.InDesign.AppFramework          0x000000010eddbabd 0x10ece2000 + 1022653
    6   com.adobe.InDesign.AppFramework          0x000000010eddba43 0x10ece2000 + 1022531
    7   com.adobe.InDesign.AppFramework          0x000000010eddba02 0x10ece2000 + 1022466
    8   com.adobe.boost_threads.framework          0x00000001010736d4 boost::thread::start_thread() + 436
    9   libsystem_c.dylib                       0x00007fff86164772 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff861511a1 thread_start + 13
    Thread 12:
    0   libsystem_kernel.dylib                  0x00007fff8bef46d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff86166f1c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff86166ce3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff86151191 start_wqthread + 13
    Thread 13:
    0   libsystem_kernel.dylib                  0x00007fff8bef4386 __semwait_signal + 10
    1   libsystem_c.dylib                       0x00007fff861ee7c8 nanosleep + 163
    2   PMRuntime.dylib                         0x0000000101662856 IDThreading::Sleep(unsigned int) + 54
    3   com.adobe.InDesign.Application UI          0x000000010ef07fe8 0x10eefa000 + 57320
    4   com.adobe.boost_threads.framework          0x00000001010736d4 boost::thread::start_thread() + 436
    5   libsystem_c.dylib                       0x00007fff86164772 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff861511a1 thread_start + 13
    Thread 14:
    0   libsystem_kernel.dylib                  0x00007fff8bef46d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff86166f1c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff86166ce3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff86151191 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x000000007fffffff  rbx: 0x000000012a986500  rcx: 0x000000012d143b70  rdx: 0x0000000000000000
      rdi: 0x000000012a986540  rsi: 0x0000000000000000  rbp: 0x00007fff5fbf4a30  rsp: 0x00007fff5fbf4980
       r8: 0x000000012a986540   r9: 0x0000000000000000  r10: 0x000000012a986660  r11: 0x0000000000000000
      r12: 0x0000000000000000  r13: 0x000000012216c2d4  r14: 0x0000000101e9c524  r15: 0x0000000000000000
      rip: 0x0000000101e9c2ae  rfl: 0x0000000000010247  cr2: 0x000000032d143b6c
    Logical CPU: 0
    Binary Images:
           0x100000000 -        0x100005fff +com.adobe.InDesign (9.0.0.244 - 9000) <2F683D4B-A144-3E91-A0CA-3F9B6B1DA676> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Adobe InDesign CC
           0x10000c000 -        0x10000eff7 +com.adobe.InDesign.InDesignModelAndUI (9.0 - 0) <7EAF82B5-D2A0-3E46-96B1-61E4A9D819C9> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/InDesignModelAndUI.framework/Versions/A/InDesignModelAndUI
           0x100014000 -        0x10001cfff +com.adobe.coretech.adobesplashkit (AdobeSplashKit Version 1.0 - 1.0) <65BFDA83-4121-3D12-9BBE-9F4FF1DB3D6A> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeSplashKit.framework/Versions/A/AdobeSplashKit
           0x100025000 -        0x10002ffff +ASLSupportLib.dylib (1) <37C5A821-5118-3BCF-AC5E-F9C4FAE123A8> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/ASLSupportLib.dylib
           0x100037000 -        0x10012bff7 +DV_WidgetBinLib.dylib (1) <6A40E798-D47A-3959-A04E-9361B010FAE3> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/DV_WidgetBinLib.dylib
           0x1001bf000 -        0x100204ff7 +TextPanelLib.dylib (1) <F06B61DF-F7D5-37AA-B1F5-BB5FA3737E62> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/TextPanelLib.dylib
           0x100221000 -        0x100382fff +WidgetBinLib.dylib (1) <7D51BAC1-7061-36C1-8C0E-CBF411371A56> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/WidgetBinLib.dylib
           0x100433000 -        0x1005fcff7 +com.adobe.owl (AdobeOwl version 5.0.13 - 5.0.13) <E9BEFE93-8AB5-3EF9-B59E-69208015C7FA> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
           0x10063f000 -        0x100883ff7 +com.adobe.dvacore.framework (7.0.849323 - 7.0.849323.0) <63BF29D6-62ED-3026-B93D-96CC42F4CF9E> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/dvacore.framework/Versions/A/dvacore
           0x10094a000 -        0x100dd7ff7 +com.adobe.dvaui.framework (7.0.849323 - 7.0.849323.0) <6C4C227F-A5D6-3B4D-AD39-4B3C97D32440> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/dvaui.framework/Versions/A/dvaui
           0x10106d000 -        0x10106dfff +com.adobe.InDesign.InDesignModel (9.0 - 0) <5A3F239E-E40A-3876-8DD9-0E5AEDB58098> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/InDesignModel.framework/Versions/A/InDesignModel
           0x101072000 -        0x101080fff +com.adobe.boost_threads.framework (7.0.847203 - 7.0.847203.0) <A0AE19A9-2B8E-310A-8AC1-0E2E026E7A40> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/boost_threads.framework/Versions/A/boost_threads
           0x101096000 -        0x10109cff7 +com.adobe.boost_date_time.framework (7.0.847203 - 7.0.847203.0) <F30F59C3-41C0-3DB1-899A-E2491EA25263> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/boost_date_time.framework/Versions/A/boost_date_time
           0x1010ab000 -        0x101513fff +PublicLib.dylib (1) <9C2969EC-46E7-3AC9-ADDE-45951D87A220> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/PublicLib.dylib
           0x10165d000 -        0x101667fff +PMRuntime.dylib (1) <E2DF4211-4A31-32BB-87F5-F0ADFFBFACE8> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/PMRuntime.dylib
           0x101670000 -        0x101687ff7 +com.adobe.AFL (AdobeAFL 1.5.0 - 1.5) <1C46F2BE-2E4D-3E25-ACDF-85E2962B92DF> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeAFL.framework/Versions/A/AdobeAFL
           0x101696000 -        0x1019a6ff7 +com.adobe.CoolType (AdobeCoolType 5.13.00.30830 - 5.13.00.30830) <BBF1FCF6-523A-3E24-967A-10EA909DF89B> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
           0x1019ee000 -        0x101a0bfff +com.adobe.BIB (AdobeBIB 1.2.03.30830 - 1.2.03.30830) <A69D3AA0-9248-3B77-991B-89B2B7FE46BB> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
           0x101a13000 -        0x101b57fff +com.adobe.ACE (AdobeACE 2.20.02.30830 - 2.20.02.30830) <73C9699B-5EDC-3FDC-82FF-738C99AA840F> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
           0x101b6a000 -        0x10213bfff +com.adobe.AGM (AdobeAGM 4.30.19.30830 - 4.30.19.30830) <9062D763-4040-3F8C-8FF3-23876F112FB8> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
           0x1021d8000 -        0x102215fff +com.adobe.ARE (AdobeARE 1.5.02.30830 - 1.5.02.30830) <73174C59-1DDC-3416-A0AD-4D70930ABA60> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeARE.framework/Versions/A/AdobeARE
           0x10221d000 -        0x102243fff +com.adobe.BIBUtils (AdobeBIBUtils 1.1.01 - 1.1.01) <FA20BCA0-05BF-35ED-95B7-5775B8310D12> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
           0x10224b000 -        0x1027e4fff +com.adobe.MPS (AdobeMPS 5.8.1.30604 - 5.8.1.30604) <70CBC6A8-2740-37AB-964E-484096A1BF8A> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
           0x102861000 -        0x10287eff7 +com.adobe.dvaflashview.framework (7.0.849323 - 7.0.849323.0) <727F09EC-0D75-3C41-8553-54585B9408BB> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/dvaflashview.framework/Versions/A/dvaflashview
           0x102895000 -        0x102899ff7 +com.adobe.ape.shim (3.4.0.29366 - 3.4.0.29366) <B9447EE8-6F91-9E85-C163-96600BF70764> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/adbeape.framework/Versions/A/adbeape
           0x1028a0000 -        0x102962fff +com.adobe.exo.framework (7.0.849323 - 7.0.849323.0) <60261EFB-3EF3-3201-9BE7-3CC7235B523B> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/exo.framework/Versions/A/exo
           0x1029ff000 -        0x102aadfff +com.adobe.dvaworkspace.framework (7.0.849323 - 7.0.849323.0) <412D9508-51FD-34D9-8B3E-FE9BD1EAC107> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/dvaworkspace.framework/Versions/A/dvaworkspace
           0x102b30000 -        0x1031adfcf +com.adobe.PlugPlug (4.0.0.172 - 4.0.0.172) <1B15941F-D885-3AC5-880F-D513DA868B00> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/PlugPlug.framework/Versions/A/PlugPlug
           0x103494000 -        0x1034c0ff7 +libtbb.dylib (0) <64B7013E-D548-3F7B-A2FB-28B7B932275C> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/libtbb.dylib
           0x1034db000 -        0x1034fafe7 +libtbbmalloc.dylib (0) <6887ED68-67ED-3748-82DA-B39A3EB210BB> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/libtbbmalloc.dylib
           0x10351f000 -        0x104264fff +com.adobe.ICUData (4.0 - 3.61) <01D90725-4B10-312C-9546-9C0CCCA1B7BB> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/ICUData.framework/Versions/4.0/libicudata.40.0.dylib
           0x104278000 -        0x1043a9ff7 +com.adobe.ICUInternationalization (4.0 - 3.61) <CD4AD967-00CD-3979-8F82-1166E2058FA6> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/ICUInternationalization.framework/Versions/4.0/libicui18n.40.0 .dylib
           0x1043fd000 -        0x1044f3ff7 +com.adobe.ICUUnicode (4.0 - 3.61) <2352E6C8-3431-3A99-92B9-382E85A018AC> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/ICUUnicode.framework/Versions/4.0/libicuuc.40.0.dylib
           0x10452b000 -        0x104659fff +com.winsoft.wrservices (WRServices 7.0.0 - 7.0.0) <0853A41B-A14A-37B7-B27F-457F87865EAD> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
           0x1046b4000 -        0x1047a3fff +com.adobe.amtlib (7.0.0.169 - 7.0.0.169) <A9A9F814-FF1F-3182-992C-395E5BC52481> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
           0x1047b6000 -        0x1047b8fff +com.adobe.AdobeCrashReporter (7.0 - 7.0.1) <B68D0D42-8DEB-3F22-BD17-981AC060E9D7> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashReporter
           0x1047be000 -        0x104875ff7 +com.adobe.boost_regex.framework (7.0.847203 - 7.0.847203.0) <F1C659D9-D3E8-3ACE-8368-9161529A6A66> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/boost_regex.framework/Versions/A/boost_regex
           0x1048df000 -        0x10494eff7 +com.adobe.adobe_caps (adobe_caps 7.0.0.21 - 7.0.0.21) <CE3C6356-9EE2-3B88-8261-8612A0743F56> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
           0x104959000 -        0x104964fff +com.adobe.boost_signals.framework (7.0.847203 - 7.0.847203.0) <E0B3BB47-4294-3D65-8979-29B2D6C5DD2E> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/boost_signals.framework/Versions/A/boost_signals
           0x104973000 -        0x104977fff +com.adobe.boost_system.framework (7.0.847203 - 7.0.847203.0) <70F73B9F-8416-37BF-9294-086AE475B743> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/boost_system.framework/Versions/A/boost_system
           0x10497d000 -        0x104a1efff +com.adobe.ICUConverter (4.0 - 3.61) <46764474-111C-3B13-AF62-002B71877405> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/ICUConverter.framework/Versions/4.0/libicucnv.40.0.dylib
           0x104a3e000 -        0x104aa0ff7 +DataBaseLib.dylib (1) <F2D6864D-0813-3833-96A5-9D256A00375D> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/DataBaseLib.dylib
           0x104ab4000 -        0x104b20fff +ObjectModelLib.dylib (1) <FDA08F73-D9C2-303E-AB18-564E50554517> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/ObjectModelLib.dylib
           0x104b3d000 -        0x104b61fff +com.adobe.AXE8SharedExpat (AdobeAXE8SharedExpat 3.8.0.30807 - 3.8.0.30807) <16FF5E16-19E0-3CE1-A68E-27567234429F> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedExpat
           0x10737e000 -        0x10737efff +DTraceSupport.dylib (1) <E54DF20B-C169-68CF-A3F5-0470DEFF1C8A> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/DTraceSupport.dylib
           0x1073a3000 -        0x1073a5ff7  com.apple.textencoding.unicode (2.5 - 2.5) <0518078E-C652-3CFC-A3FB-903C600CE831> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
           0x1073aa000 -        0x1073e9ff7 +com.adobe.InDesign.PNG Import Filter (9.0.0.244 - 0) <FDD9A76B-D1C7-3C19-A4D6-0C470B8F9F3D> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/PNG Import Filter.InDesignPlugin/PNG Import Filter
           0x1077d3000 -        0x1077dbfff +com.adobe.InDesign.Data Services UI (9.0.0.244 - 0) <7B0D3F37-5CB3-3C80-8C71-6EE35DAF0F57> /Applications/Adobe InDesign CC/*/Data Services UI
           0x1077e5000 -        0x1077edfff +com.adobe.InDesign.Data Services (9.0.0.244 - 0) <FF804F79-F26A-32FD-9ABB-EE71673EF180> /Applications/Adobe InDesign CC/*/Data Services
           0x1077f3000 -        0x1077f5fff +com.adobe.InDesign.SimpleTextImportFilter (9.0.0.244 - 0) <A4823CC0-085B-3106-9A20-6D23E2591F03> /Applications/Adobe InDesign CC/*/SimpleTextImportFilter
           0x108366000 -        0x108375ff7 +com.adobe.InDesign.DTTransform (9.0.0.244 - 0) <C9DD2FAF-BABE-3B7E-AEBA-00306E030DEE> /Applications/Adobe InDesign CC/*/DTTransform
           0x1087b3000 -        0x1087f1fff +com.adobe.AAM.AdobeUpdaterNotificationFramework (UpdaterNotifications 7.0.1.102 - 7.0.1.102) <75ADE364-1107-3DA7-84A2-26C6874EB881> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/UpdaterNotifications.framework/Versions/A/UpdaterNotifications
           0x10a367000 -        0x10a393fff +ServiceManager-Launcher.dylib (55) <D5A4D905-A054-3E22-A284-3519895C201B> /Library/Application Support/Adobe/*/ServiceManager-Launcher.dylib
           0x10a4a9000 -        0x10a4cfff7 +com.adobe.InDesign.LILO (9.0.0.244 - 0) <9EBF6F94-9C67-38CE-8498-35AAB356F2B5> /Applications/Adobe InDesign CC/*/LILO
           0x10a4dd000 -        0x10a4e6ff7 +com.adobe.InDesign.PNG Import Filter UI (9.0.0.244 - 0) <3FAFE9A4-D233-3288-8686-515229F7EEB1> /Applications/Adobe InDesign CC/*/PNG Import Filter UI
           0x10a4f1000 -        0x10a4f9ff7 +com.adobe.InDesign.JPEG Export UI (9.0.0.244 - 0) <2F81D85C-3AFC-3BB4-B60F-3B3E3CB5B6FA> /Applications/Adobe InDesign CC/*/JPEG Export UI
           0x10afa1000 -        0x10afdffff +com.adobe.InDesign.Dictionary Editor Dialog (9.0.0.244 - 0) <0D0DD4DC-6894-32DF-B96A-558862891888> /Applications/Adobe InDesign CC/*/Dictionary Editor Dialog
           0x10b420000 -        0x10b47dfff +com.adobe.InDesign.Media Import Filter (9.0.0.244 - 0) <EF3386C3-F980-34EA-9EFF-64910373496F> /Applications/Adobe InDesign CC/*/Media Import Filter
           0x10b490000 -        0x10b4baff7 +com.adobe.InDesign.Sangam Preferences UI (9.0.0.244 - 0) <2C6C6B32-5C33-300A-8AF1-AF545F1C0BD9> /Applications/Adobe InDesign CC/*/Sangam Preferences UI
           0x10b4cd000 -        0x10b4e3ff7 +com.adobe.InDesign.SaveBack (9.0.0.244 - 0) <C839FA45-F1DD-333E-B8FF-5E3CA5B24364> /Applications/Adobe InDesign CC/*/SaveBack
           0x10b4f1000 -        0x10b4f8fff +com.adobe.InDesign.InCopyImport (9.0.0.244 - 0) <DC5E347C-82A8-3A05-B233-E0CBC1CD5C67> /Applications/Adobe InDesign CC/*/InCopyImport
           0x10b840000 -        0x10b91bfff +com.adobe.linguistic.LinguisticManager (7.0.0 - 19061) <FDBCF369-5EFE-33BB-893A-2136EF8D0D6E> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic
           0x10b937000 -        0x10ba4cfff +com.adobe.InDesign.EBookExport (9.0.0.244 - 0) <86F6CE82-3182-32F0-A2EC-167B4F7862D6> /Applications/Adobe InDesign CC/*/EBookExport
           0x10ba74000 -        0x10baddfff +com.adobe.AdobeSangam (AdobeSangam 5.65.0.30369 - 5.65.0.30369) <BCD8B3F6-970F-3DEA-A583-7473FDDCA067> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeSangam.framework/Versions/A/AdobeSangam
           0x10bb2b000 -        0x10bb7cfff +com.adobe.InDesign.SangamExport (9.0.0.244 - 0) <0574175B-890E-36BC-B223-32EBEFB50B2F> /Applications/Adobe InDesign CC/*/SangamExport
           0x10bb93000 -        0x10bcd4ff7 +com.adobe.InDesign.SangamServicer-Mapper (9.0.0.244 - 0) <4BAB90F5-52B7-374A-B9B6-7429C66EF9A4> /Applications/Adobe InDesign CC/*/SangamServicer-Mapper
           0x10bcf8000 -        0x10bdcbff7 +com.adobe.InDesign.Tagged Text Attributes (9.0.0.244 - 0) <3A0D3BCF-DDB7-3ECA-8148-C693809B9BC8> /Applications/Adobe InDesign CC/*/Tagged Text Attributes
           0x10bdfa000 -        0x10be06fff +com.adobe.InDesign.Tagged Text Filters UI (9.0.0.244 - 0) <034B439C-F4BF-36D8-8FE5-DEE1807DDBA7> /Applications/Adobe InDesign CC/*/Tagged Text Filters UI
           0x10be11000 -        0x10beb6fff +com.adobe.InDesign.Tagged Text Filters (9.0.0.244 - 0) <A34A0B6C-7D62-31F1-93B9-D1765CBEC93D> /Applications/Adobe InDesign CC/*/Tagged Text Filters
           0x10becb000 -        0x10bed8fff +com.adobe.InDesign.Clipping Path Dialog (9.0.0.244 - 0) <16C1A307-2161-3A90-953D-F321E748615B> /Applications/Adobe InDesign CC/*/Clipping Path Dialog
           0x10beea000 -        0x10bf2eff7 +com.adobe.InDesign.Color Management UI (9.0.0.244 - 0) <D804A9E1-A2B6-37AD-B684-43C8E3CE4936> /Applications/Adobe InDesign CC/*/Color Management UI
           0x10bf3e000 -        0x10bfbaff7 +com.adobe.InDesign.Color Picker Panel (9.0.0.244 - 0) <B90A4418-E4D5-3D38-A487-4DEE7FF39A12> /Applications/Adobe InDesign CC/*/Color Picker Panel
           0x10bfe2000 -        0x10c062ff7 +com.adobe.InDesign.DynamicDocumentsUI (9.0.0.244 - 0) <1BCEA1A3-0146-32B2-8BF7-8ABA0A5CAAEE> /Applications/Adobe InDesign CC/*/DynamicDocumentsUI
           0x10c089000 -        0x10c0a5fff +com.adobe.InDesign.EPS UI (9.0.0.244 - 0) <605EEF62-9504-3D17-944E-C46531B8AE9F> /Applications/Adobe InDesign CC/*/EPS UI
           0x10c0b6000 -        0x10c0c2ff7 +com.adobe.InDesign.Generic Style Editor (9.0.0.244 - 0) <E3407643-34D1-351D-AD4A-FC83D64F1D94> /Applications/Adobe InDesign CC/*/Generic Style Editor
           0x10c0d1000 -        0x10c107fff +com.adobe.InDesign.Gradient Panel (9.0.0.244 - 0) <FEB32D3E-A743-37D7-AD55-0C7BE4C3A7F9> /Applications/Adobe InDesign CC/*/Gradient Panel
           0x10c11e000 -        0x10c1c0fff +com.adobe.InDesign.Graphic Panels (9.0.0.244 - 0) <21F96085-EB7B-3120-8A14-0878423CE0EB> /Applications/Adobe InDesign CC/*/Graphic Panels
           0x10c1e9000 -        0x10c204fff +com.adobe.InDesign.JPEG Export (9.0.0.244 - 0) <388494FD-CC7B-3DE7-95E0-168DB055E05B> /Applications/Adobe InDesign CC/*/JPEG Export
           0x10c216000 -        0x10c267ff7 +com.adobe.InDesign.Output Preview (9.0.0.244 - 0) <95F41A2C-23A1-35E3-997C-AC3E54B8122B> /Applications/Adobe InDesign CC/*/Output Preview
           0x10c281000 -        0x10c298ff7 +com.adobe.InDesign.OutputMiscUI (9.0.0.244 - 0) <BA2B462B-F51B-3F6A-9784-C7E1A829521A> /Applications/Adobe InDesign CC/*/OutputMiscUI
           0x10c2ab000 -        0x10c32cfff +com.adobe.InDesign.PDF UI (9.0.0.244 - 0) <174E4555-5A58-3C01-8ACB-B3EB40200850> /Applications/Adobe InDesign CC/*/PDF UI
           0x10c350000 -        0x10c3bdfff +com.adobe.AdobeXMPCore (Adobe XMP Core 5.5 -c 14 - 79.151481) <BCDB9366-EDB3-3FEA-854D-3D2C72D48781> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
           0x10c3c8000 -        0x10c3dfff7 +com.adobe.InDesign.Printer Styles (9.0.0.244 - 0) <487F7052-DB11-3A2A-BE31-201DEC20FCEB> /Applications/Adobe InDesign CC/*/Printer Styles
           0x10c3ee000 -        0x10c4d0fff +com.adobe.InDesign.PrintUI (9.0.0.244 - 0) <F827F8F9-91CD-3A6A-836B-A674CA53B9FA> /Applications/Adobe InDesign CC/*/PrintUI
           0x10c4fc000 -        0x10c50eff7 +com.adobe.InDesign.PS Import UI (9.0.0.244 - 0) <0280417C-5563-3598-AA00-684D11F291D2> /Applications/Adobe InDesign CC/*/PS Import UI
           0x10c51d000 -        0x10c540fff +com.adobe.InDesign.Swatch Library Panel (9.0.0.244 - 0) <20A34F07-0480-302C-8438-F356D7451012> /Applications/Adobe InDesign CC/*/Swatch Library Panel
           0x10c54f000 -        0x10c60cff7 +com.adobe.InDesign.Swatches Panel (9.0.0.244 - 0) <E9653217-9232-31D7-8B55-7460A27289E3> /Applications/Adobe InDesign CC/*/Swatches Panel
           0x10c642000 -        0x10c6f1ff7 +com.adobe.InDesign.Transparency UI (9.0.0.244 - 0) <03830CAC-DF7D-3605-9963-4DA645248281> /Applications/Adobe InDesign CC/*/Transparency UI
           0x10c724000 -        0x10c788fff +com.adobe.InDesign.Assignment UI (9.0.0.244 - 0) <C4DC67CA-6464-361D-8F96-AC7383158809> /Applications/Adobe InDesign CC/*/Assignment UI
           0x10c7aa000 -        0x10c7cdfff +com.adobe.InDesign.InCopy Bridge UI (9.0.0.244 - 0) <FA141EE1-E99A-3D03-BE6C-A2E545821E8C> /Applications/Adobe InDesign CC/*/InCopy Bridge UI
           0x10c7db000 -        0x10c81aff7 +com.adobe.InDesign.InCopy Bridge (9.0.0.244 - 0) <D5E4E3B1-A43B-3417-AF70-78C223C798A0> /Applications/Adobe InDesign CC/*/InCopy Bridge
           0x10c82a000 -        0x10c832fff +com.adobe.InDesign.InCopyExport (9.0.0.244 - 0) <81D645C8-B39C-3FFE-9A1D-55D7E7D8F46E> /Applications/Adobe InDesign CC/*/InCopyExport
           0x10c83c000 -        0x10c843ff7 +com.adobe.InDesign.InCopyExportUI (9.0.0.244 - 0) <713F0E2D-1802-36CA-8E10-FF322C3E2259> /Applications/Adobe InDesign CC/*/InCopyExportUI
           0x10c84c000 -        0x10c854fff +com.adobe.InDesign.InCopyWorkflow UI (9.0.0.244 - 0) <B5F00DC3-482D-3FCA-BD7E-67CF432C75A8> /Applications/Adobe InDesign CC/*/InCopyWorkflow UI
           0x10c85f000 -        0x10c8b6ff7 +com.adobe.InDesign.Note (9.0.0.244 - 0) <39574DCB-0795-3067-84CF-0FB12B9E4881> /Applications/Adobe InDesign CC/*/Note
           0x10c8d6000 -        0x10c8e1ff7 +com.adobe.InDesign.NotePref (9.0.0.244 - 0) <95C54A58-F9FD-3374-B600-705525389FF3> /Applications/Adobe InDesign CC/*/NotePref
           0x10c8ef000 -        0x10c8f4ff7 +com.adobe.InDesign.Username UI (9.0.0.244 - 0) <85772C26-BB2E-34BB-B733-E08E4966949A> /Applications/Adobe InDesign CC/*/Username UI
           0x10c8fe000 -        0x10c99fff7 +com.adobe.InDesign.ButtonUI (9.0.0.244 - 0) <E55C1B03-3F82-3971-841B-56EB21F8ED20> /Applications/Adobe InDesign CC/*/ButtonUI
           0x10c9ce000 -        0x10c9f6ff7 +com.adobe.InDesign.MediaUI (9.0.0.244 - 0) <C42F3AD6-9E13-3C9A-BC49-A93F440751C0> /Applications/Adobe InDesign CC/*/MediaUI
           0x10ca0b000 -        0x10ca1bfff +com.adobe.InDesign.Alignment Panel (9.0.0.244 - 0) <4801B0C6-C22C-3384-AB5E-5FCF75DD308D> /Applications/Adobe InDesign CC/*/Alignment Panel
           0x10ca24000 -        0x10ca6bfff +com.adobe.InDesign.Asset Library Panel (9.0.0.244 - 0) <DFD7A06A-9BE0-3FA3-AA41-66A68C0A0957> /Applications/Adobe InDesign CC/*/Asset Library Panel
           0x10ca8f000 -        0x10cafcff7 +com.adobe.InDesign.Asset PubLibrary (9.0.0.244 - 0) <1FB73D92-A75B-39B0-91F8-02AB32E6D0E3> /Applications/Adobe InDesign CC/*/Asset PubLibrary
           0x10cb1a000 -        0x10cb67ff7 +com.adobe.InDesign.Book Panel (9.0.0.244 - 0) <0306739B-78D6-30D6-9705-6DFE711C8EE7> /Applications/Adobe InDesign CC/*/Book Panel
           0x10cb8a000 -        0x10cba6fff +com.adobe.InDesign.Bookmark Panel (9.0.0.244 - 0) <19756A8B-1C5A-320E-A6D2-3D763B15947F> /Applications/Adobe InDesign CC/*/Bookmark Panel
           0x10cbbd000 -        0x10cbf6fff +com.adobe.InDesign.ContentDropper Tool (9.0.0.244 - 0) <DB93021C-DD9A-3CA4-AF06-CC3ECEFA946B> /Applications/Adobe InDesign CC/*/ContentDropper Tool
           0x10cc14000 -        0x10cc5aff7 +com.adobe.InDesign.Control Panel (9.0.0.244 - 0) <AF496EDF-D413-3344-8805-7D9F1DB11DC7> /Applications/Adobe InDesign CC/*/Control Panel
           0x10cc77000 -        0x10cc81fff +com.adobe.InDesign.Create Guides Dialog (9.0.0.244 - 0) <7F35F38E-FA21-3692-82C1-BCE747EE3CEB> /Applications/Adobe InDesign CC/*/Create Guides Dialog
           0x10cc8c000 -        0x10ccc6fff +com.adobe.InDesign.Eyedropper Tool (9.0.0.244 - 0) <A8E7360A-E42A-3790-B998-83398E336316> /Applications/Adobe InDesign CC/*/Eyedropper Tool
           0x10ccdb000 -        0x10cd68fff +com.adobe.InDesign.Hyperlinks Panel (9.0.0.244 - 0) <72C51910-CC5C-3B7D-8331-70195952E7A5> /Applications/Adobe InDesign CC/*/Hyperlinks Panel
           0x10cd8d000 -        0x10ce1dfff +com.adobe.InDesign.Index Panel (9.0.0.244 - 0) <EC33F8C3-4233-3790-B4AF-5AB31B6956FC> /Applications/Adobe InDesign CC/*/Index Panel
           0x10ce3d000 -        0x10ce49ff7  com.apple.carbonframeworktemplate (1.0 - 1.0) <E859A35E-8EC1-3CA9-9758-95EC69D4EC5D> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/unihan.framework/Versions/A/unihan
           0x10ce54000 -        0x10cebcfff +com.adobe.InDesign.Info Panel (9.0.0.244 - 0) <0BDD7C10-8F5D-3507-B772-EFCBE4AE1ED0> /Applications/Adobe InDesign CC/*/Info Panel
           0x10ced4000 -        0x10cf98fff +com.adobe.InDesign.Knowledge Base (9.0.0.244 - 0) <C979FEE9-EB01-3B48-AC45-EABE15DAF596> /Applications/Adobe InDesign CC/*/Knowledge Base
           0x10cfa2000 -        0x10cff5ff7 +com.adobe.InDesign.Layers Panel (9.0.0.244 - 0) <4BD4C9F5-7EF5-387C-AC72-40014E19D7F5> /Applications/Adobe InDesign CC/*/Layers Panel
           0x10d017000 -        0x10d01cfff +com.adobe.InDesign.Layout Adjustment Panel (9.0.0.244 - 0) <27CE7F02-93CA-348D-BC67-1571721BC4BF> /Applications/Adobe InDesign CC/*/Layout Adjustment Panel
           0x10d025000 -        0x10d044fff +com.adobe.InDesign.Layout Adjustment (9.0.0.244 - 0) <D4DAC346-AE89-3BBE-BF0C-E449E34B4121> /Applications/Adobe InDesign CC/*/Layout Adjustment
           0x10d053000 -        0x10d09fff7 +com.adobe.InDesign.Links UI (9.0.0.244 - 0) <D2BA3E6B-66B8-36BB-B28F-FB41EAC0C74D> /Applications/Adobe InDesign CC/*/Links UI
           0x10d0c1000 -        0x10d166ff7 +com.adobe.InDesign.ObjectStylesUI (9.0.0.244 - 0) <8805D797-3D6A-3231-9E5A-3954B2BC30FD> /Applications/Adobe InDesign CC/*/ObjectStylesUI
           0x10d196000 -        0x10d1bcfff +com.adobe.InDesign.Page Setup Dialog (9.0.0.244 - 0) <4F0302C1-D70D-3B22-AFD6-EA32AE0D393A> /Applications/Adobe InDesign CC/*/Page Setup Dialog
           0x10d1c9000 -        0x10d28dfff +com.adobe.InDesign.Pages Panel (9.0.0.244 - 0) <DE2D5A98-5F85-3311-B09E-9391CE0AFA73> /Applications/Adobe InDesign CC/*/Pages Panel
           0x10d2be000 -        0x10d2cdfff +com.adobe.InDesign.Sections UI (9.0.0.244 - 0) <B7BE35B6-9BA8-33B7-88E1-9CD7E49745C3> /Applications/Adobe InDesign CC/*/Sections UI
           0x10d2d8000 -        0x10d2e2fff +com.adobe.InDesign.StepRepeat (9.0.0.244 - 0) <28502BE1-9A2D-338D-AC27-5CFFC9FC4DD8> /Applications/Adobe InDesign CC/*/StepRepeat
           0x10d2ee000 -        0x10d32dff7 +com.adobe.InDesign.Text Wrap Panel (9.0.0.244 - 0) <3197CB4D-952F-3BF9-A91C-F1490A2BA0A2> /Applications/Adobe InDesign CC/*/Text Wrap Panel
           0x10d346000 -        0x10d388fff +com.adobe.InDesign.TOC UI Dialog (9.0.0.244 - 0) <B330AAE5-4ECF-3687-B25B-A7E1087287EB> /Applications/Adobe InDesign CC/*/TOC UI Dialog
           0x10d3a2000 -        0x10d3deff7 +com.adobe.InDesign.Transform Panel (9.0.0.244 - 0) <916C8883-536E-3E8C-B321-DB90DDC4C072> /Applications/Adobe InDesign CC/*/Transform Panel
           0x10d3f4000 -        0x10d40ffff +com.adobe.InDesign.Image Import UI (9.0.0.244 - 0) <314ED635-384F-3699-8494-A9713519B2E0> /Applications/Adobe InDesign CC/*/Image Import UI
           0x10d421000 -        0x10d437fff +com.adobe.InDesign.Scotch Rules (9.0.0.244 - 0) <67B1F4A9-CAF9-34E0-9C2F-70B47C09A2FB> /Applications/Adobe InDesign CC/*/Scotch Rules
          

    Chris, OK the complete crash log is at http://pastebin.com/tZ7wummp
    Thanks.

  • Why does InDesign CC crash every time I open an InDesign CS6 file?

    Every time I try to open one of my Indesign CS6 files, Indesign CC crashes. Shouldn't these two be compatible?
    It opens it for a second, and the program crashes immediately. I thought paying for Adobe CC monthly meant that these obvious problems would be patched quickly.
    I've submitted at least 10 crash reports to Adobe, I'm sure I'm not the only one.
    I'm on a mid-2010 Macbook Pro i5 2.4 Ghz, 8gb RAM. Please see the crash report below.
    Process:         Adobe InDesign CC [34118]
    Path:            /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Adobe InDesign CC
    Identifier:      com.adobe.InDesign
    Version:         9.0.0.244 (9000)
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [283]
    User ID:         501
    Date/Time:       2013-07-23 01:21:12.523 +0800
    OS Version:      Mac OS X 10.8.4 (12E55)
    Report Version:  10
    Interval Since Last Report:          25532 sec
    Crashes Since Last Report:           48319
    Per-App Interval Since Last Report:  194 sec
    Per-App Crashes Since Last Report:   2
    Anonymous UUID:                      D4831B50-9C57-8265-8CED-515C2F837F9C
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x000000032b065a7c
    VM Regions Near 0x32b065a7c:
        __LINKEDIT             0000000201b74000-0000000201be3000 [  444K] r--/rwx SM=COW  /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDriver
    -->
        STACK GUARD            00007fff5bc00000-00007fff5f400000 [ 56.0M] ---/rwx SM=NUL  stack guard for thread 0
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.adobe.AGM                           0x0000000101e9c2ae 0x101b6a000 + 3351214
    1   com.adobe.AGM                           0x0000000101e9ce4f 0x101b6a000 + 3354191
    2   com.adobe.AGM                           0x0000000101ef8ceb 0x101b6a000 + 3730667
    3   com.adobe.AGM                           0x0000000101f0a627 0x101b6a000 + 3802663
    4   com.adobe.AGM                           0x0000000101f0b6ef 0x101b6a000 + 3806959
    5   com.adobe.AGM                           0x0000000101f0e111 0x101b6a000 + 3817745
    6   com.adobe.AGM                           0x0000000101b9ff6b 0x101b6a000 + 221035
    7   com.adobe.InDesign.AppFramework          0x000000010f233bf5 0x10f208000 + 179189
    8   PublicLib.dylib                         0x0000000101153456 PathPageItem::Fill(IGraphicsPort*) + 406
    9   PublicLib.dylib                         0x000000010119ea80 CGraphicFrameShape::DrawShape_Fill(GraphicsData*, int) + 320
    10  PublicLib.dylib                         0x000000010119e87c CGraphicFrameShape::DrawShape(GraphicsData*, int) + 76
    11  PublicLib.dylib                         0x00000001011a1991 CShape::ProcessDrawShape(GraphicsData*, int) + 273
    12  PublicLib.dylib                         0x00000001011a284c CShape::DrawHierarchy(GraphicsData*, int) + 396
    13  PublicLib.dylib                         0x000000010119f2c0 CGraphicFrameShape::DrawShape_Hierarchy(GraphicsData*, int) + 1920
    14  PublicLib.dylib                         0x000000010119e8b3 CGraphicFrameShape::DrawShape(GraphicsData*, int) + 131
    15  PublicLib.dylib                         0x00000001011a1991 CShape::ProcessDrawShape(GraphicsData*, int) + 273
    16  com.adobe.InDesign.Group                0x000000011122cade 0x111229000 + 15070
    17  com.adobe.InDesign.Generic Page Item          0x0000000111a16798 0x1119e7000 + 194456
    18  com.adobe.InDesign.Group                0x000000011122c994 0x111229000 + 14740
    19  com.adobe.InDesign.Group                0x000000011122c014 0x111229000 + 12308
    20  PublicLib.dylib                         0x00000001011a1991 CShape::ProcessDrawShape(GraphicsData*, int) + 273
    21  com.adobe.InDesign.Layer                0x0000000112787cf1 0x112782000 + 23793
    22  com.adobe.InDesign.Generic Page Item          0x0000000111a16798 0x1119e7000 + 194456
    23  com.adobe.InDesign.Layer                0x0000000112787ba9 0x112782000 + 23465
    24  com.adobe.InDesign.Layer                0x000000011278754c 0x112782000 + 21836
    25  com.adobe.InDesign.Spread               0x0000000114d936a9 0x114d8b000 + 34473
    26  com.adobe.InDesign.Spread               0x0000000114d9173d 0x114d8b000 + 26429
    27  com.adobe.InDesign.Spread               0x0000000114d8ede9 0x114d8b000 + 15849
    28  com.adobe.InDesign.AppFramework          0x000000010f237b84 0x10f208000 + 195460
    29  PublicLib.dylib                         0x000000010129dc5f 0x1010ab000 + 2042975
    30  PublicLib.dylib                         0x000000010129d607 SnapshotUtilsEx::Draw(int, unsigned int, PMReal const&, unsigned int, SnapshotUtils::Transparencies, IdleTimer*, std::map<IDType<ClassID_tag>, PMReal, std::less<IDType<ClassID_tag> >, std::allocator<std::pair<IDType<ClassID_tag> const, PMReal> > >*, unsigned int) + 87
    31  com.adobe.InDesign.Layout               0x0000000112a3e75a 0x112a2c000 + 75610
    32  com.adobe.InDesign.Layout               0x0000000112a3de14 0x112a2c000 + 73236
    33  com.adobe.InDesign.AppFramework          0x000000010f25324f 0x10f208000 + 307791
    34  com.adobe.InDesign.AppFramework          0x000000010f252c8b 0x10f208000 + 306315
    35  com.adobe.InDesign.Application UI          0x000000010f552f4d 0x10f420000 + 1257293
    36  com.apple.AppKit                        0x00007fff8f27621a -[NSApplication run] + 636
    37  com.adobe.exo.framework                 0x00000001028a7e98 exo::app::OS_AppBase::RunEventLoop() + 56
    38  com.adobe.InDesign.AppFramework          0x000000010f315ff3 0x10f208000 + 1105907
    39  com.adobe.InDesign.AppFramework          0x000000010f315182 0x10f208000 + 1102210
    40  com.adobe.InDesign                      0x0000000100001dbc main + 412
    41  com.adobe.InDesign                      0x0000000100001bb4 start + 52
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff92fb8d16 kevent + 10
    1   libdispatch.dylib                       0x00007fff8b784dea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib                       0x00007fff8b7849ee _dispatch_mgr_thread + 54
    Thread 2:
    0   libsystem_kernel.dylib                  0x00007fff92fb80fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff9012a023 _pthread_cond_wait + 927
    2   com.apple.CoreServices.CarbonCore          0x00007fff89e1e406 TSWaitOnConditionTimedRelative + 163
    3   com.apple.CoreServices.CarbonCore          0x00007fff89d80a98 MPWaitOnQueue + 252
    4   PMRuntime.dylib                         0x000000010165ebe1 0x10165d000 + 7137
    5   com.apple.CoreServices.CarbonCore          0x00007fff89df57e0 PrivateMPEntryPoint + 58
    6   libsystem_c.dylib                       0x00007fff901257a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff901121e1 thread_start + 13
    Thread 3:
    0   libsystem_kernel.dylib                  0x00007fff92fb6686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff92fb5c42 mach_msg + 70
    2   com.apple.CoreServices.CarbonCore          0x00007fff89e1b3dd TS_exception_listener_thread + 67
    3   libsystem_c.dylib                       0x00007fff901257a2 _pthread_start + 327
    4   libsystem_c.dylib                       0x00007fff901121e1 thread_start + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00007fff92fb80fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff90129fe9 _pthread_cond_wait + 869
    2   com.adobe.InDesign.AppFramework          0x000000010f300f22 0x10f208000 + 1019682
    3   com.adobe.InDesign.AppFramework          0x000000010f300517 0x10f208000 + 1017111
    4   com.adobe.InDesign.AppFramework          0x000000010f2fda97 0x10f208000 + 1006231
    5   com.adobe.InDesign.AppFramework          0x000000010f301abd 0x10f208000 + 1022653
    6   com.adobe.InDesign.AppFramework          0x000000010f301a43 0x10f208000 + 1022531
    7   com.adobe.InDesign.AppFramework          0x000000010f301a02 0x10f208000 + 1022466
    8   com.adobe.boost_threads.framework          0x00000001010736d4 boost::thread::start_thread() + 436
    9   libsystem_c.dylib                       0x00007fff901257a2 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff901121e1 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff92fb80fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff90129fe9 _pthread_cond_wait + 869
    2   com.adobe.InDesign.AppFramework          0x000000010f300f22 0x10f208000 + 1019682
    3   com.adobe.InDesign.AppFramework          0x000000010f300517 0x10f208000 + 1017111
    4   com.adobe.InDesign.AppFramework          0x000000010f2fda97 0x10f208000 + 1006231
    5   com.adobe.InDesign.AppFramework          0x000000010f301abd 0x10f208000 + 1022653
    6   com.adobe.InDesign.AppFramework          0x000000010f301a43 0x10f208000 + 1022531
    7   com.adobe.InDesign.AppFramework          0x000000010f301a02 0x10f208000 + 1022466
    8   com.adobe.boost_threads.framework          0x00000001010736d4 boost::thread::start_thread() + 436
    9   libsystem_c.dylib                       0x00007fff901257a2 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff901121e1 thread_start + 13
    Thread 6:
    0   libsystem_kernel.dylib                  0x00007fff92fb8386 __semwait_signal + 10
    1   libsystem_c.dylib                       0x00007fff901af800 nanosleep + 163
    2   com.adobe.InDesign.Support for JavaScript          0x0000000115030818 0x114fdd000 + 342040
    3   com.adobe.InDesign.Support for JavaScript          0x0000000115017a3e 0x114fdd000 + 240190
    4   com.adobe.InDesign.Support for JavaScript          0x00000001150303d5 0x114fdd000 + 340949
    5   libsystem_c.dylib                       0x00007fff901257a2 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff901121e1 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff92fb82aa __recvfrom + 10
    1   ServiceManager-Launcher.dylib           0x0000000117a9e231 0x117a86000 + 98865
    2   ServiceManager-Launcher.dylib           0x0000000117a9d5d6 0x117a86000 + 95702
    3   ServiceManager-Launcher.dylib           0x0000000117a9c678 0x117a86000 + 91768
    4   ServiceManager-Launcher.dylib           0x0000000117a9c6e6 0x117a86000 + 91878
    5   ServiceManager-Launcher.dylib           0x0000000117a972e4 0x117a86000 + 70372
    6   ServiceManager-Launcher.dylib           0x0000000117a97cfe 0x117a86000 + 72958
    7   ServiceManager-Launcher.dylib           0x0000000117a97c0b 0x117a86000 + 72715
    8   ServiceManager-Launcher.dylib           0x0000000117a9b36e 0x117a86000 + 86894
    9   ServiceManager-Launcher.dylib           0x0000000117a9b4b2 0x117a86000 + 87218
    10  ServiceManager-Launcher.dylib           0x0000000117a9b26d 0x117a86000 + 86637
    11  ServiceManager-Launcher.dylib           0x0000000117a9b1e6 0x117a86000 + 86502
    12  ServiceManager-Launcher.dylib           0x0000000117a89916 0x117a86000 + 14614
    13  ServiceManager-Launcher.dylib           0x0000000117a8db05 0x117a86000 + 31493
    14  ServiceManager-Launcher.dylib           0x0000000117a9be46 0x117a86000 + 89670
    15  ServiceManager-Launcher.dylib           0x0000000117a9def3 0x117a86000 + 98035
    16  libsystem_c.dylib                       0x00007fff901257a2 _pthread_start + 327
    17  libsystem_c.dylib                       0x00007fff901121e1 thread_start + 13
    Thread 8:
    0   libsystem_kernel.dylib                  0x00007fff92fb80fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff90129fe9 _pthread_cond_wait + 869
    2   com.adobe.InDesign.AppFramework          0x000000010f300f22 0x10f208000 + 1019682
    3   com.adobe.InDesign.AppFramework          0x000000010f3005c8 0x10f208000 + 1017288
    4   com.adobe.InDesign.AppFramework          0x000000010f2fda97 0x10f208000 + 1006231
    5   com.adobe.InDesign.AppFramework          0x000000010f301abd 0x10f208000 + 1022653
    6   com.adobe.InDesign.AppFramework          0x000000010f301a43 0x10f208000 + 1022531
    7   com.adobe.InDesign.AppFramework          0x000000010f301a02 0x10f208000 + 1022466
    8   com.adobe.boost_threads.framework          0x00000001010736d4 boost::thread::start_thread() + 436
    9   libsystem_c.dylib                       0x00007fff901257a2 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff901121e1 thread_start + 13
    Thread 9:: MPSupport Worker
    0   libsystem_kernel.dylib                  0x00007fff92fb80fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff90129fe9 _pthread_cond_wait + 869
    2   MultiProcessor Support                  0x000000011ea7e44b 0x11ea39000 + 283723
    3   MultiProcessor Support                  0x000000011ea7e303 0x11ea39000 + 283395
    4   MultiProcessor Support                  0x000000011ea9e394 0x11ea39000 + 414612
    5   libsystem_c.dylib                       0x00007fff901257a2 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff901121e1 thread_start + 13
    Thread 10:: MPSupport Worker
    0   libsystem_kernel.dylib                  0x00007fff92fb80fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff90129fe9 _pthread_cond_wait + 869
    2   MultiProcessor Support                  0x000000011ea7e44b 0x11ea39000 + 283723
    3   MultiProcessor Support                  0x000000011ea7e303 0x11ea39000 + 283395
    4   MultiProcessor Support                  0x000000011ea9e394 0x11ea39000 + 414612
    5   libsystem_c.dylib                       0x00007fff901257a2 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff901121e1 thread_start + 13
    Thread 11:: MPSupport Worker
    0   libsystem_kernel.dylib                  0x00007fff92fb80fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff90129fe9 _pthread_cond_wait + 869
    2   MultiProcessor Support                  0x000000011ea7e44b 0x11ea39000 + 283723
    3   MultiProcessor Support                  0x000000011ea7e303 0x11ea39000 + 283395
    4   MultiProcessor Support                  0x000000011ea9e394 0x11ea39000 + 414612
    5   libsystem_c.dylib                       0x00007fff901257a2 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff901121e1 thread_start + 13
    Thread 12:
    0   libsystem_kernel.dylib                  0x00007fff92fb86d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff90127f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff90127d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff901121d1 start_wqthread + 13
    Thread 13:
    0   libsystem_kernel.dylib                  0x00007fff92fb86d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff90127f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff90127d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff901121d1 start_wqthread + 13
    Thread 14:
    0   libsystem_kernel.dylib                  0x00007fff92fb86d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff90127f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff90127d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff901121d1 start_wqthread + 13
    Thread 15:
    0   libsystem_kernel.dylib                  0x00007fff92fb66c2 semaphore_wait_trap + 10
    1   com.adobe.ACE                           0x0000000101affa38 ACEHasFeature + 527320
    2   com.adobe.ACE                           0x0000000101aff10e ACEHasFeature + 524974
    3   libsystem_c.dylib                       0x00007fff901257a2 _pthread_start + 327
    4   libsystem_c.dylib                       0x00007fff901121e1 thread_start + 13
    Thread 16:
    0   libsystem_kernel.dylib                  0x00007fff92fb66c2 semaphore_wait_trap + 10
    1   com.adobe.ACE                           0x0000000101affa38 ACEHasFeature + 527320
    2   com.adobe.ACE                           0x0000000101aff10e ACEHasFeature + 524974
    3   libsystem_c.dylib                       0x00007fff901257a2 _pthread_start + 327
    4   libsystem_c.dylib                       0x00007fff901121e1 thread_start + 13
    Thread 17:
    0   libsystem_kernel.dylib                  0x00007fff92fb66c2 semaphore_wait_trap + 10
    1   com.adobe.ACE                           0x0000000101affa38 ACEHasFeature + 527320
    2   com.adobe.ACE                           0x0000000101aff10e ACEHasFeature + 524974
    3   libsystem_c.dylib                       0x00007fff901257a2 _pthread_start + 327
    4   libsystem_c.dylib                       0x00007fff901121e1 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x000000007fffffff  rbx: 0x0000000122b3c100  rcx: 0x000000012b065a80  rdx: 0x0000000000000000
      rdi: 0x0000000122b3c130  rsi: 0x0000000000000000  rbp: 0x00007fff5fbfadd0  rsp: 0x00007fff5fbfad20
       r8: 0x0000000122b3c130   r9: 0x0000000000000000  r10: 0x0000000122b3c250  r11: 0x0000000000000000
      r12: 0x0000000000000000  r13: 0x000000012b0144d4  r14: 0x0000000101e9c524  r15: 0x0000000000000000
      rip: 0x0000000101e9c2ae  rfl: 0x0000000000010247  cr2: 0x000000032b065a7c
    Logical CPU: 1
    Binary Images:
           0x100000000 -        0x100005fff +com.adobe.InDesign (9.0.0.244 - 9000) <2F683D4B-A144-3E91-A0CA-3F9B6B1DA676> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Adobe InDesign CC
           0x10000c000 -        0x10000eff7 +com.adobe.InDesign.InDesignModelAndUI (9.0 - 0) <7EAF82B5-D2A0-3E46-96B1-61E4A9D819C9> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/InDesignModelAndUI.framework/Versions/A/InDesignModelAndUI
           0x100014000 -        0x10001cfff +com.adobe.coretech.adobesplashkit (AdobeSplashKit Version 1.0 - 1.0) <65BFDA83-4121-3D12-9BBE-9F4FF1DB3D6A> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeSplashKit.framework/Versions/A/AdobeSplashKit
           0x100025000 -        0x10002ffff +ASLSupportLib.dylib (1) <37C5A821-5118-3BCF-AC5E-F9C4FAE123A8> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/ASLSupportLib.dylib
           0x100037000 -        0x10012bff7 +DV_WidgetBinLib.dylib (1) <6A40E798-D47A-3959-A04E-9361B010FAE3> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/DV_WidgetBinLib.dylib
           0x1001bf000 -        0x100204ff7 +TextPanelLib.dylib (1) <F06B61DF-F7D5-37AA-B1F5-BB5FA3737E62> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/TextPanelLib.dylib
           0x100221000 -        0x100382fff +WidgetBinLib.dylib (1) <7D51BAC1-7061-36C1-8C0E-CBF411371A56> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/WidgetBinLib.dylib
           0x100433000 -        0x1005fcff7 +com.adobe.owl (AdobeOwl version 5.0.13 - 5.0.13) <E9BEFE93-8AB5-3EF9-B59E-69208015C7FA> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
           0x10063f000 -        0x100883ff7 +com.adobe.dvacore.framework (7.0.849323 - 7.0.849323.0) <63BF29D6-62ED-3026-B93D-96CC42F4CF9E> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/dvacore.framework/Versions/A/dvacore
           0x10094a000 -        0x100dd7ff7 +com.adobe.dvaui.framework (7.0.849323 - 7.0.849323.0) <6C4C227F-A5D6-3B4D-AD39-4B3C97D32440> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/dvaui.framework/Versions/A/dvaui
           0x10106d000 -        0x10106dfff +com.adobe.InDesign.InDesignModel (9.0 - 0) <5A3F239E-E40A-3876-8DD9-0E5AEDB58098> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/InDesignModel.framework/Versions/A/InDesignModel
           0x101072000 -        0x101080fff +com.adobe.boost_threads.framework (7.0.847203 - 7.0.847203.0) <A0AE19A9-2B8E-310A-8AC1-0E2E026E7A40> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/boost_threads.framework/Versions/A/boost_threads
           0x101096000 -        0x10109cff7 +com.adobe.boost_date_time.framework (7.0.847203 - 7.0.847203.0) <F30F59C3-41C0-3DB1-899A-E2491EA25263> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/boost_date_time.framework/Versions/A/boost_date_time
           0x1010ab000 -        0x101513fff +PublicLib.dylib (1) <9C2969EC-46E7-3AC9-ADDE-45951D87A220> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/PublicLib.dylib
           0x10165d000 -        0x101667fff +PMRuntime.dylib (1) <E2DF4211-4A31-32BB-87F5-F0ADFFBFACE8> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/PMRuntime.dylib
           0x101670000 -        0x101687ff7 +com.adobe.AFL (AdobeAFL 1.5.0 - 1.5) <1C46F2BE-2E4D-3E25-ACDF-85E2962B92DF> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeAFL.framework/Versions/A/AdobeAFL
           0x101696000 -        0x1019a6ff7 +com.adobe.CoolType (AdobeCoolType 5.13.00.30830 - 5.13.00.30830) <BBF1FCF6-523A-3E24-967A-10EA909DF89B> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
           0x1019ee000 -        0x101a0bfff +com.adobe.BIB (AdobeBIB 1.2.03.30830 - 1.2.03.30830) <A69D3AA0-9248-3B77-991B-89B2B7FE46BB> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
           0x101a13000 -        0x101b57fff +com.adobe.ACE (AdobeACE 2.20.02.30830 - 2.20.02.30830) <73C9699B-5EDC-3FDC-82FF-738C99AA840F> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
           0x101b6a000 -        0x10213bfff +com.adobe.AGM (AdobeAGM 4.30.19.30830 - 4.30.19.30830) <9062D763-4040-3F8C-8FF3-23876F112FB8> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
           0x1021d8000 -        0x102215fff +com.adobe.ARE (AdobeARE 1.5.02.30830 - 1.5.02.30830) <73174C59-1DDC-3416-A0AD-4D70930ABA60> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeARE.framework/Versions/A/AdobeARE
           0x10221d000 -        0x102243fff +com.adobe.BIBUtils (AdobeBIBUtils 1.1.01 - 1.1.01) <FA20BCA0-05BF-35ED-95B7-5775B8310D12> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
           0x10224b000 -        0x1027e4fff +com.adobe.MPS (AdobeMPS 5.8.1.30604 - 5.8.1.30604) <70CBC6A8-2740-37AB-964E-484096A1BF8A> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
           0x102861000 -        0x10287eff7 +com.adobe.dvaflashview.framework (7.0.849323 - 7.0.849323.0) <727F09EC-0D75-3C41-8553-54585B9408BB> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/dvaflashview.framework/Versions/A/dvaflashview
           0x102895000 -        0x102899ff7 +com.adobe.ape.shim (3.4.0.29366 - 3.4.0.29366) <B9447EE8-6F91-9E85-C163-96600BF70764> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/adbeape.framework/Versions/A/adbeape
           0x1028a0000 -        0x102962fff +com.adobe.exo.framework (7.0.849323 - 7.0.849323.0) <60261EFB-3EF3-3201-9BE7-3CC7235B523B> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/exo.framework/Versions/A/exo
           0x1029ff000 -        0x102aadfff +com.adobe.dvaworkspace.framework (7.0.849323 - 7.0.849323.0) <412D9508-51FD-34D9-8B3E-FE9BD1EAC107> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/dvaworkspace.framework/Versions/A/dvaworkspace
           0x102b30000 -        0x1031adfcf +com.adobe.PlugPlug (4.0.0.172 - 4.0.0.172) <1B15941F-D885-3AC5-880F-D513DA868B00> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/PlugPlug.framework/Versions/A/PlugPlug
           0x103494000 -        0x1034c0ff7 +libtbb.dylib (0) <64B7013E-D548-3F7B-A2FB-28B7B932275C> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/libtbb.dylib
           0x1034db000 -        0x1034fafe7 +libtbbmalloc.dylib (0) <6887ED68-67ED-3748-82DA-B39A3EB210BB> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/libtbbmalloc.dylib
           0x10351f000 -        0x104264fff +com.adobe.ICUData (4.0 - 3.61) <01D90725-4B10-312C-9546-9C0CCCA1B7BB> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/ICUData.framework/Versions/4.0/libicudata.40.0.dylib
           0x104278000 -        0x1043a9ff7 +com.adobe.ICUInternationalization (4.0 - 3.61) <CD4AD967-00CD-3979-8F82-1166E2058FA6> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/ICUInternationalization.framework/Versions/4.0/libicui18n.40.0 .dylib
           0x1043fd000 -        0x1044f3ff7 +com.adobe.ICUUnicode (4.0 - 3.61) <2352E6C8-3431-3A99-92B9-382E85A018AC> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/ICUUnicode.framework/Versions/4.0/libicuuc.40.0.dylib
           0x10452b000 -        0x104659fff +com.winsoft.wrservices (WRServices 7.0.0 - 7.0.0) <0853A41B-A14A-37B7-B27F-457F87865EAD> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
           0x1046b4000 -        0x1047a3fff +com.adobe.amtlib (7.0.0.169 - 7.0.0.169) <A9A9F814-FF1F-3182-992C-395E5BC52481> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
           0x1047b6000 -        0x1047b8fff +com.adobe.AdobeCrashReporter (7.0 - 7.0.1) <B68D0D42-8DEB-3F22-BD17-981AC060E9D7> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashReporter
           0x1047be000 -        0x104875ff7 +com.adobe.boost_regex.framework (7.0.847203 - 7.0.847203.0) <F1C659D9-D3E8-3ACE-8368-9161529A6A66> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/boost_regex.framework/Versions/A/boost_regex
           0x1048df000 -        0x10494eff7 +com.adobe.adobe_caps (adobe_caps 7.0.0.21 - 7.0.0.21) <CE3C6356-9EE2-3B88-8261-8612A0743F56> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
           0x104959000 -        0x104964fff +com.adobe.boost_signals.framework (7.0.847203 - 7.0.847203.0) <E0B3BB47-4294-3D65-8979-29B2D6C5DD2E> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/boost_signals.framework/Versions/A/boost_signals
           0x104973000 -        0x104977fff +com.adobe.boost_system.framework (7.0.847203 - 7.0.847203.0) <70F73B9F-8416-37BF-9294-086AE475B743> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/boost_system.framework/Versions/A/boost_system
           0x10497d000 -        0x104a1efff +com.adobe.ICUConverter (4.0 - 3.61) <46764474-111C-3B13-AF62-002B71877405> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/ICUConverter.framework/Versions/4.0/libicucnv.40.0.dylib
           0x104a3e000 -        0x104aa0ff7 +DataBaseLib.dylib (1) <F2D6864D-0813-3833-96A5-9D256A00375D> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/DataBaseLib.dylib
           0x104ab4000 -        0x104b20fff +ObjectModelLib.dylib (1) <FDA08F73-D9C2-303E-AB18-564E50554517> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/ObjectModelLib.dylib
           0x104b3d000 -        0x104b61fff +com.adobe.AXE8SharedExpat (AdobeAXE8SharedExpat 3.8.0.30807 - 3.8.0.30807) <16FF5E16-19E0-3CE1-A68E-27567234429F> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedExpat
           0x105af8000 -        0x105afafff +com.adobe.InDesign.SimpleTextImportFilter (9.0.0.244 - 0) <A4823CC0-085B-3106-9A20-6D23E2591F03> /Applications/Adobe InDesign CC/*/SimpleTextImportFilter
           0x105e42000 -        0x105e80fff +com.adobe.AAM.AdobeUpdaterNotificationFramework (UpdaterNotifications 7.0.1.102 - 7.0.1.102) <75ADE364-1107-3DA7-84A2-26C6874EB881> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/UpdaterNotifications.framework/Versions/A/UpdaterNotifications
           0x105e8c000 -        0x105e92fff +com.adobe.InDesign.Script Label Panel (9.0.0.244 - 0) <E1CE9519-9B72-327A-A350-94DECC74020A> /Applications/Adobe InDesign CC/*/Script Label Panel
           0x105e9e000 -        0x105eacff7 +com.adobe.InDesign.Scripts Panel (9.0.0.244 - 0) <A807C3AB-930E-3A5D-9228-77CE07DAC921> /Applications/Adobe InDesign CC/*/Scripts Panel
           0x105ebb000 -        0x105eedfff +com.adobe.InDesign.Conditional Text UI (9.0.0.244 - 0) <C5EB0EA6-A522-37B8-AD88-5100F0460946> /Applications/Adobe InDesign CC/*/Conditional Text UI
           0x105f08000 -        0x105f25ff7 +com.adobe.InDesign.Create Outlines (9.0.0.244 - 0) <D0C6613F-44D6-3889-8515-039A91A33FBD> /Applications/Adobe InDesign CC/*/Create Outlines
           0x105f32000 -        0x105f3cfff +com.adobe.InDesign.Justification Panel (9.0.0.244 - 0) <1E88B355-C440-3D79-B042-BC0B20008701> /Applications/Adobe InDesign CC/*/Justification Panel
           0x105fe4000 -        0x105fecfff +com.adobe.InDesign.Data Services UI (9.0.0.244 - 0) <7B0D3F37-5CB3-3C80-8C71-6EE35DAF0F57> /Applications/Adobe InDesign CC/*/Data Services UI
           0x105ff8000 -        0x105ff9ff7 +com.adobe.InDesign.Metadata Database Filter (9.0.0.244 - 0) <B6CEE02B-979B-385E-A393-FF3D08525330> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Metadata Database Filter.InDesignPlugin/Metadata Database Filter
           0x107a83000 -        0x107aa8ff7 +com.adobe.InDesign.Text Style Panel (9.0.0.244 - 0) <D4CC3047-F140-3B8A-B4C9-43C251DFCDBA> /Applications/Adobe InDesign CC/*/Text Style Panel
           0x107ab9000 -        0x107ae5fff +com.adobe.InDesign.Article Panel (9.0.0.244 - 0) <B27AF2DC-262C-3CBF-9B05-63BD5D1D308F> /Applications/Adobe InDesign CC/*/Article Panel
           0x107afe000 -        0x107b00ff7  com.apple.textencoding.unicode (2.5 - 2.5) <0518078E-C652-3CFC-A3FB-903C600CE831> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
           0x107f44000 -        0x107f70ff7 +com.adobe.InDesign.Find Change Format Panel (9.0.0.244 - 0) <06D18AEC-4C5D-3224-81AD-E3B2DA457E3C> /Applications/Adobe InDesign CC/*/Find Change Format Panel
           0x107f84000 -        0x107faefff +com.adobe.InDesign.Font Usage Dialog (9.0.0.244 - 0) <AB628101-A591-38EF-8BB2-84A8795C2746> /Applications/Adobe InDesign CC/*/Font Usage Dialog
           0x107fbe000 -        0x107fc1fff +com.adobe.InDesign.Global Preferences Panel (9.0.0.244 - 0) <41190407-7FB7-3A06-BE40-5A815559E124> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Global Preferences Panel.InDesignPlugin/Global Preferences Panel
           0x107feb000 -        0x107ff3fff +com.adobe.InDesign.Data Services (9.0.0.244 - 0) <FF804F79-F26A-32FD-9ABB-EE71673EF180> /Applications/Adobe InDesign CC/*/Data Services
           0x10ae89000 -        0x10ae98ff7 +com.adobe.InDesign.DTTransform (9.0.0.244 - 0) <C9DD2FAF-BABE-3B7E-AEBA-00306E030DEE> /Applications/Adobe InDesign CC/*/DTTransform
           0x10aea1000 -        0x10aedffff +com.adobe.InDesign.Dictionary Editor Dialog (9.0.0.244 - 0) <0D0DD4DC-6894-32DF-B96A-558862891888> /Applications/Adobe InDesign CC/*/Dictionary Editor Dialog
           0x10b2b0000 -        0x10b2d6ff7 +com.adobe.InDesign.LILO (9.0.0.244 - 0) <9EBF6F94-9C67-38CE-8498-35AAB356F2B5> /Applications/Adobe InDesign CC/*/LILO
           0x10b2e4000 -        0x10b2edff7 +com.adobe.InDesign.PNG Import Filter UI (9.0.0.244 - 0) <3FAFE9A4-D233-3288-8686-515229F7EEB1> /Applications/Adobe InDesign CC/*/PNG Import Filter UI
           0x10b640000 -        0x10b69dfff +com.adobe.InDesign.Media Import Filter (9.0.0.244 - 0) <EF3386C3-F980-34EA-9EFF-64910373496F> /Applications/Adobe InDesign CC/*/Media Import Filter
           0x10b6b0000 -        0x10b6daff7 +com.adobe.InDesign.Sangam Preferences UI (9.0.0.244 - 0) <2C6C6B32-5C33-300A-8AF1-AF545F1C0BD9> /Applications/Adobe InDesign CC/*/Sangam Preferences UI
           0x10b6ed000 -        0x10b6f5ff7 +com.adobe.InDesign.JPEG Export UI (9.0.0.244 - 0) <2F81D85C-3AFC-3BB4-B60F-3B3E3CB5B6FA> /Applications/Adobe InDesign CC/*/JPEG Export UI
           0x10b800000 -        0x10b8dbfff +com.adobe.linguistic.LinguisticManager (7.0.0 - 19061) <FDBCF369-5EFE-33BB-893A-2136EF8D0D6E> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic
           0x10b8f7000 -        0x10ba0cfff +com.adobe.InDesign.EBookExport (9.0.0.244 - 0) <86F6CE82-3182-32F0-A2EC-167B4F7862D6> /Applications/Adobe InDesign CC/*/EBookExport
           0x10ba34000 -        0x10ba9dfff +com.adobe.AdobeSangam (AdobeSangam 5.65.0.30369 - 5.65.0.30369) <BCD8B3F6-970F-3DEA-A583-7473FDDCA067> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeSangam.framework/Versions/A/AdobeSangam
           0x10baeb000 -        0x10bb3cfff +com.adobe.InDesign.SangamExport (9.0.0.244 - 0) <0574175B-890E-36BC-B223-32EBEFB50B2F> /Applications/Adobe InDesign CC/*/SangamExport
           0x10bb53000 -        0x10bc94ff7 +com.adobe.InDesign.SangamServicer-Mapper (9.0.0.244 - 0) <4BAB90F5-52B7-374A-B9B6-7429C66EF9A4> /Applications/Adobe InDesign CC/*/SangamServicer-Mapper
           0x10bcb8000 -        0x10bcceff7 +com.adobe.InDesign.SaveBack (9.0.0.244 - 0) <C839FA45-F1DD-333E-B8FF-5E3CA5B24364> /Applications/Adobe InDesign CC/*/SaveBack
           0x10bcdc000 -        0x10bdafff7 +com.adobe.InDesign.Tagged Text Attributes (9.0.0.244 - 0) <3A0D3BCF-DDB7-3ECA-8148-C693809B9BC8> /Applications/Adobe InDesign CC/*/Tagged Text Attributes
           0x10bdde000 -        0x10bdeafff +com.adobe.InDesign.Tagged Text Filters UI (9.0.0.244 - 0) <034B439C-F4BF-36D8-8FE5-DEE1807DDBA7> /Applications/Adobe InDesign CC/*/Tagged Text Filters UI
           0x10bdf5000 -        0x10be9afff +com.adobe.InDesign.Tagged Text Filters (9.0.0.244 - 0) <A34A0B6C-7D62-31F1-93B9-D1765CBEC93D> /Applications/Adobe InDesign CC/*/Tagged Text Filters
           0x10beaf000 -        0x10bebcfff +com.adobe.InDesign.Clipping Path Dialog (9.0.0.244 - 0) <16C1A307-2161-3A90-953D-F321E748615B> /Applications/Adobe InDesign CC/*/Clipping Path Dialog
           0x10bece000 -        0x10bf12ff7 +com.adobe.InDesign.Color Management UI (9.0.0.244 - 0) <D804A9E1-A2B6-37AD-B684-43C8E3CE4936> /Applications/Adobe InDesign CC/*/Color Management UI
           0x10bf22000 -        0x10bf9eff7 +com.adobe.InDesign.Color Picker Panel (9.0.0.244 - 0) <B90A4418-E4D5-3D38-A487-4DEE7FF39A12> /Applications/Adobe InDesign CC/*/Color Picker Panel
           0x10bfc6000 -        0x10c1dbff7 +com.adobe.InDesign.Digital Publishing (9.0.10.27 - 0) <2A91322D-7665-3F7F-A31B-C851BF548230> /Applications/Adobe InDesign CC/*/Digital Publishing
           0x10c35a000 -        0x10c36cfff +com.adobe.boost_filesystem.framework (7.0.847203 - 7.0.847203.0) <B0F56E9F-BAAB-34C5-93C4-C713203AB0DF> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/boost_filesystem.framework/Versions/A/boost_filesystem
           0x10c37d000 -        0x10c3b5fef +libcurl.4.dylib (7) <FA1D87DC-8CBC-3645-8ADA-D974B6EDED53> /Applications/Adobe InDesign CC/*/libcurl.4.dylib
           0x10c3c0000 -        0x10c3e5fff  libssl.0.9.7.dylib (106) <F18836AF-72C8-36AA-9DAB-8286AFC46239> /usr/lib/libssl.0.9.7.dylib
           0x10c3f6000 -        0x10c4cfff7  libcrypto.0.9.7.dylib (106) <3E1B14DE-342B-318C-8F22-7B9CD88EE760> /usr/lib/libcrypto.0.9.7.dylib
           0x10c526000 -        0x10c5a6ff7 +com.adobe.InDesign.DynamicDocumentsUI (9.0.0.244 - 0) <1BCEA1A3-0146-32B2-8BF7-8ABA0A5CAAEE> /Applications/Adobe InDesign CC/*/DynamicDocumentsUI
           0x10c5cd000 -        0x10c5e9fff +com.adobe.InDesign.EPS UI (9.0.0.244 - 0) <605EEF62-9504-3D17-944E-C46531B8AE9F> /Applications/Adobe InDesign CC/*/EPS UI
           0x10c5fa000 -        0x10c606ff7 +com.adobe.InDesign.Generic Style Editor (9.0.0.244 - 0) <E3407643-34D1-351D-AD4A-FC83D64F1D94> /Applications/Adobe InDesign CC/*/Generic Style Editor
           0x10c615000 -        0x10c64bfff +com.adobe.InDesign.Gradient Panel (9.0.0.244 - 0) <FEB32D3E-A743-37D7-AD55-0C7BE4C3A7F9> /Applications/Adobe InDesign CC/*/Gradient Panel
           0x10c662000 -        0x10c704fff +com.adobe.InDesign.Graphic Panels (9.0.0.244 - 0) <21F96085-EB7B-3120-8A14-0878423CE0EB> /Applications/Adobe InDesign CC/*/Graphic Panels
           0x10c72d000 -        0x10c748fff +com.adobe.InDesign.JPEG Export (9.0.0.244 - 0) <388494FD-CC7B-3DE7-95E0-168DB055E05B> /Applications/Adobe InDesign CC/*/JPEG Export
           0x10c75a000 -        0x10c7abff7 +com.adobe.InDesign.Output Preview (9.0.0.244 - 0) <95F41A2C-23A1-35E3-997C-AC3E54B8122B> /Applications/Adobe InDesign CC/*/Output Preview
           0x10c7c5000 -        0x10c7dcff7 +com.adobe.InDesign.OutputMiscUI (9.0.0.244 - 0) <BA2B462B-F51B-3F6A-9784-C7E1A829521A> /Applications/Adobe InDesign CC/*/OutputMiscUI
           0x10c7ef000 -        0x10c870fff +com.adobe.InDesign.PDF UI (9.0.0.244 - 0) <174E4555-5A58-3C01-8ACB-B3EB40200850> /Applications/Adobe InDesign CC/*/PDF UI
           0x10c894000 -        0x10c901fff +com.adobe.AdobeXMPCore (Adobe XMP Core 5.5 -c 14 - 79.151481) <BCDB9366-EDB3-3FEA-854D-3D2C72D48781> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
           0x10c90c000 -        0x10c923ff7 +com.adobe.InDesign.Printer Styles (9.0.0.244 - 0) <487F7052-DB11-3A2A-BE31-201DEC20FCEB> /Applications/Adobe InDesign CC/*/Printer Styles
           0x10c932000 -        0x10ca14fff +com.adobe.InDesign.PrintUI (9.0.0.244 - 0) <F827F8F9-91CD-3A6A-836B-A674CA53B9FA> /Applications/Adobe InDesign CC/*/PrintUI
           0x10ca40000 -        0x10ca52ff7 +com.adobe.InDesign.PS Import UI (9.0.0.244 - 0) <0280417C-5563-3598-AA00-684D11F291D2> /Applications/Adobe InDesign CC/*/PS Import UI
           0x10ca61000 -        0x10ca84fff +com.adobe.InDesign.Swatch Library Panel (9.0.0.244 - 0) <20A34F07-0480-302C-8438-F356D7451012> /Applications/Adobe InDesign CC/*/Swatch Library Panel
           0x10ca93000 -        0x10cb50ff7 +com.adobe.InDesign.Swatches Panel (9.0.0.244 - 0) <E9653217-9232-31D7-8B55-7460A27289E3> /Applications/Adobe InDesign CC/*/Swatches Panel
           0x10cb86000 -        0x10cc35ff7 +com.adobe.InDesign.Transparency UI (9.0.0.244 - 0) <03830CAC-DF7D-3605-9963-4DA645248281> /Applications/Adobe InDesign CC/*/Transparency UI
           0x10cc68000 -        0x10ccccfff +com.adobe.InDesign.Assignment UI (9.0.0.244 - 0) <C4DC67CA-6464-361D-8F96-AC7383158809> /Applications/Adobe InDesign CC/*/Assignment UI
           0x10ccee000 -        0x10cd11fff +com.adobe.InDesign.InCopy Bridge UI (9.0.0.244 - 0) <FA141EE1-E99A-3D03-BE6C-A2E545821E8C> /Applications/Adobe InDesign CC/*/InCopy Bridge UI
           0x10cd1f000 -        0x10cd5eff7 +com.adobe.InDesign.InCopy Bridge (9.0.0.244 - 0) <D5E4E3B1-A43B-3417-AF70-78C223C798A0> /Applications/Adobe InDesign CC/*/InCopy Bridge
           0x10cd6e000 -        0x10cd76fff +com.adobe.InDesign.InCopyExport (9.0.0.244 - 0) <81D645C8-B39C-3FFE-9A1D-55D7E7D8F46E> /Applications/Adobe InDesign CC/*/InCopyExport
           0x10cd80000 -        0x10cd87ff7 +com.adobe.InDesign.InCopyExportUI (9.0.0.244 - 0) <713F0E2D-1802-36CA-8E10-FF322C3E2259> /Applications/Adobe InDesign CC/*/InCopyExportUI
           0x10cd90000 -        0x10cd97fff +com.adobe.InDesign.InCopyImport (9.0.0.244 - 0) <DC5E347C-82A8-3A05-B233-E0CBC1CD5C67> /Applications/Adobe InDesign CC/*/InCopyImport
           0x10cd9e000 -        0x10cda6fff +com.adobe.InDesign.InCopyWorkflow UI (9.0.0.244 - 0) <B5F00DC3-482D-3FCA-BD7E-67CF432C75A8> /Applications/Adobe InDesign CC/*/InCopyWorkflow UI
           0x10cdb1000 -        0x10ce08ff7 +com.adobe.InDesign.Note (9.0.0.244 - 0) <39574DCB-0795-3067-84CF-0FB12B9E4881> /Applications/Adobe InDesign CC/*/Note
           0x10ce28000 -        0x10ce33ff7 +com.adobe.InDesign.NotePref (9.0.0.244 - 0) <95C54A58-F9FD-3374-B600-705525389FF3> /Applications/Adobe InDesign CC/*/NotePref
           0x10ce41000 -        0x10ce46ff7 +com.adobe.InDesign.Username UI (9.0.0.244 - 0) <85772C26-BB2E-34BB-B733-E08E4966949A> /Applications/Adobe InDesign CC/*/Username UI
           0x10ce50000 -        0x10cef1ff7 +com.adobe.InDesign.ButtonUI (9.0.0.244 - 0) <E55C1B03-3F82-3971-841B-56EB21F8ED20> /Applications/Adobe InDesign CC/*/ButtonUI
           0x10cf20000 -        0x10cf48ff7 +com.adobe.InDesign.MediaUI (9.0.0.244 - 0) <C42F3AD6-9E13-3C9A-BC49-A93F440751C0> /Applications/Adobe InDesign CC/*/MediaUI
           0x10cf5d000 -        0x10cf6dfff +com.adobe.InDesign.Alignment Panel (9.0.0.244 - 0) <4801B0C6-C22C-3384-AB5E-5FCF75DD308D> /Applications/Adobe InDesign CC/*/Alignment Panel
           0x10cf76000 -        0x10cfbdfff +com.adobe.InDesign.Asset Library Panel (9.0.0.244 - 0) <DFD7A06A-9BE0-3FA3-AA41-66A68C0A0957> /Applications/Adobe InDesign CC/*/Asset Library Panel
           0x10cfe1000 -        0x10d04eff7 +com.adobe.InDesign.Asset PubLibrary (9.0.0.244 - 0) <1FB73D92-A75B-39B0-91F8-02AB32E6D0E3> /Applications/Adobe InDesign CC/*/Asset PubLibrary
           0x10d06c000 -        0x10d0b9ff7 +com.adobe.InDesign.Book Panel (9.0.0.244 - 0) <0306739B-78D6-30D6-9705-6DFE711C8EE7> /Applications/Adobe InDesign CC/*/Book Panel
           0x10d0dc000 -        0x10d0f8fff +com.adobe.InDesign.Bookmark Panel (9.0.0.244 - 0) <19756A8B-1C5A-320E-A6D2-3D763B15947F> /Applications/Adobe InDesign CC/*/Bookmark Panel
           0x10d10f000 -        0x10d148fff +com.adobe.InDesign.ContentDropper Tool (9.0.0.244 - 0) <DB93021C-DD9A-3CA4-AF06-CC3ECEFA946B> /Applications/Adobe InDesign CC/*/ContentDropper Tool
           0x10d166000 -        0x10d1acff7 +com.adobe.InDesign.Control Panel (9.0.0.244 - 0) <AF496EDF-D413-3344-8805-7D9F1DB11DC7> /Applications/Adobe InDesign CC/*/Control Panel
           0x10d1c9000 -        0x10d1d3fff +com.adobe.InDesign.Create Guides Dialog (9.0.0.244 - 0) <7F35F38E-FA21-3692-82C1-BCE747EE3CEB> /Applications/Adobe InDesign CC/*/Create Guides Dialog
           0x10d1de000 -        0x10d218fff +com.adobe.InDesign.Eyedropper Tool (9.0.0.244 - 0) <A8E7360A-E42A-3790-B998-83398E336316> /Applications/Adobe InDesign CC/*/Eyedropper Tool
           0x10d22d000 -        0x10d2bafff +com.adobe.InDesign.Hyperlinks Panel (9.0.0.244 - 0) <72C51910-CC5C-3B7D-8331-70195952E7A5> /Applications/Adobe InDesign CC/*/Hyperlinks Panel
           0x10d2df000 -        0x10d36ffff +com.adobe.InDesign.Index Panel (9.0.0.244 - 0) <EC33F8C3-4233-3790-B4AF-5AB31B6956FC> /Applications/Adobe InDesign CC/*/Index Panel
           0x10d38f000 -        0x10d39bff7  com.apple.carbonframeworktemplate (1.0 - 1.0) <E859A35E-8EC1-3CA9-9758-95EC69D4EC5D> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/unihan.framework/Versions/A/unihan
           0x10d3a6000 -        0x10d40efff +com.adobe.InDesign.Info Panel (9.0.0.244 - 0) <0BDD7C10-8F5D-3507-B772-EFCBE4AE1ED0> /Applications/Adobe InDesign CC/*/Info Panel
           0x10d426000 -        0x10d4eafff +com.adobe.InDesign.Knowledge Base (9.0.0.244 - 0) <C979FEE9-EB01-3B48-AC45-EABE15DAF596> /Applications/Adobe InDesign CC/*/Knowledge Base
           0x10d4f4000 -        0x10d4f8fff +com.adobe.InDesign.Help (9.0.0.244 - 0) <63BF8C3C-9981-3B8C-A893-FFBA4AF1DE76> /Applications/Adobe InDesign CC/*/Help
           0x10d600000 -        0x10d653ff7 +com.adobe.InDesign.Layers Panel (9.0.0.244 - 0) <4BD4C9F5-7EF5-387C-AC72-40014E19D7F5> /Applications/Adobe InDesign CC/*/Layers Panel
           0x10d675000 -        0x10d67afff +com.adobe.InDesign.Layout Adjustment Panel (9.0.0.244 - 0) <27CE7F02-93CA-348D-BC67-1571721BC4BF> /Applications/Adobe InDesign CC/*/Layout Adjustment Panel
           0x10d683000 -        0x10d6a2fff +com.adobe.InDesign.Layout Adjustment (9.0.0.244 - 0) <D4DAC346-AE89-3BBE-BF0C-E449E34B4121> /Applications/Adobe InDesign CC/*/Layout Adjustment
           0x10d6b1000 -        0x10d6fdff7 +com.adobe.InDesign.Links UI (9.0.0.244 - 0) <D2BA3E6B-66B8-36BB-B28F-FB41EAC0C74D> /Applications/Adobe InDesign CC/*/Links UI
           0x10d71f000 -        0x10d7c4ff7 +com.adobe.InDesign.ObjectStylesUI (9.0.0.244 - 0) <8805D797-3D6A-3231-9E5A-3954B2BC30FD> /Applications/Adobe InDesign CC/*/ObjectStylesUI
           0x10d7f4000 -        0x10d81afff +com.adobe.InDesign.Page Setup Dialog (9.0.0.244 - 0) <4F0302C1-D70D-3B22-AFD6-EA32AE0D393A> /Applications/Adobe InDesign CC/*/Page Setup Dialog
           0x10d827000 -        0x10d8ebfff +com.adobe.InDesign.Pages Panel (9.0.0.244 - 0) <DE2D5A98-5F85-3311-B09E-9391CE0AFA73> /Applications/Adobe InDesign CC/*/Pages Panel
           0x10d91c000 -        0x10d92bfff +com.adobe.InDesign.Sections UI (9.0.0.244 - 0) <B7BE35B6-9BA8-33B7-88E1-9CD7E49745C3> /Applications/Adobe InDesign CC/*/Sections UI
           0x10d936000 -        0x10d940fff +com.adobe.InDesign.StepRepeat (9.0.0.244 - 0) <28502BE1-9A2D-338D-AC27-5CFFC9FC4DD8> /Applications/Adobe InDesign CC/*/StepRepeat
           0x10d94c000 -        0x10d98bff7 +com.adobe.InDesign.Text Wrap Panel (9.0.0.244 - 0) <3197CB4D-952F-3BF9-A91C-F1490A2BA0A2> /Applications/Adobe InDesign CC/*/Text Wrap Panel
           0x10d9a4000 -        0x10d9e6fff +com.adobe.InDesign.TOC UI Dialog (9.0.0.244 - 0) <B330AAE5-4ECF-3687-B25B-A7E1087287EB> /Applications/Adobe InDesign CC/*/TOC UI Dialog
           0x10da00000 -        0x10da3cff7 +com.adobe.InDesign.Transform Panel (9.0.0.244 - 0) <916C8883-536E-3E8C-B321-DB90DDC4C072> /Applications/Adobe InDesign CC/*/Transform Panel
           0x10da52000 -        0x10da6dfff +com.adobe.InDesign.Image Import UI (9.0.0.244 - 0) <314ED635-384F-3699-8494-A9713519B2E0> /Applications/Adobe InDesign CC/*/Image Import UI
           0x10da7f000 -        0x10da95fff +com.adobe.InDesign.Scotch Rules (9.0.0.244 - 0) <67B1F4A9-CAF9-34E0-9C2F-70B47C09A2FB> /Applications/Adobe InDesign CC/*/Scotch Rules
           0x10daa0000 -        0x10db04ff7 +com.adobe.InDesign.BNUI (9.0.0.244 - 0) <5B87D18C-2A25-3037-B3CD-1EAA8B094D96> /Applications/Adobe InDesign CC/*/BNUI
           0x10db24000 -        0x10dbc5ff7 +com.adobe.InDesign.DataMerge (9.0.0.244 - 0) <E3EACAC8-853B-31BF-B69F-53A440363465> /Applications/Adobe InDesign CC/*/DataMerge
           0x10dbe5000 -        0x10dc19fff +com.adobe.InDesign.DataMergeUI (9.0.0.244 - 0) <CA9B9CCF-B643-3142-A15D-615DFA863E40> /Applications/Adobe InDesign CC/*/DataMergeUI
           0x10dc34000 -        0x10dd3cfff +com.adobe.InDesign.Package and Preflight UI (9.0.0.244 - 0) <DDE8D6F2-3604-3802-B177-5EA59BAEF0FF> /Applications/Adobe InDesign CC/*/Package and Preflight UI
           0x10dd7b000 -        0x10dfdefff +com.adobe.InDesign.Package and Preflight (9.0.0.244 - 0) <056ABF0A-3875-30B9-8D40-0491E8E75708> /Applications/Adobe InDesign CC/*/Package and Preflight
           0x10e024000 -        0x10e112fff +com.adobe.InDesign.JBX (9.0.0.244 - 0) <7E93A162-4087-3E56-92BB-558019173520> /Applications/Adobe InDesign CC/*/JBX
           0x10e13c000 -        0x10e2c3ff7 +com.adobe.InDesign.SettingsInCloud (9.0.0.244 - 0) <2E718598-B183-3EB6-88BF-516A57533D99> /Applications/Adobe InDesign CC/*/SettingsInCloud
           0x10e351000 -        0x10e436fff +com.adobe.InDesign.Tables UI (9.0.0.244 - 0) <8423E141-41C2-3801-81ED-A63CB05944BA> /Applications/Adobe InDesign CC/*/Tables UI
           0x10e465000 -        0x10e509ff7 +com.adobe.InDesign.TableStylesUI (9.0.0.244 - 0) <85361E78-9B46-3C59-B300-BB4438C5E484> /Applications/Adobe InDesign CC/*/TableStylesUI
           0x10e535000 -        0x10e5c1ff7 +com.adobe.InDesign.Character Panel (9.0.0.244 - 0) <36A39281-11AF-3906-9704-AD62934A4381> /Applications/Adobe InDesign CC/*/Character Panel
           0x10e5fd000 -        0x10e722ff7 +com.adobe.InDesign.Find and Change Panel (9.0.0.244 - 0) <5E843CB3-3F2C-320E-99F1-EFE36E0BEB66> /Applications/Adobe InDesign CC/*/Find and Change Panel
           0x10e75f000 -        0x10e82ffff +com.adobe.InDesign.Glyphs Panel (9.0.0.244 - 0) <C2DCCEFD-568E-338A-8062-C597FCD7DED5> /Applications/Adobe InDesign CC/*/Glyphs Panel
           0x10e853000 -        0x10e85dfff +com.adobe.InDesign.Hyphenation Panel (9.0.0.244 - 0) <8D94B764-6772-37E0-894F-015DA432C5A3> /Applications/Adobe InDesign CC/*/Hyphenation Panel
           0x10e86a000 -        0x10e87dff7 +com.adobe.InDesign.Indents and Tabs (9.0.0.244 - 0) <6BEEEACB-1746-3C07-8FD9-6F9FA8B3F94E> /Applications/Adobe InDesign CC/*/Indents and Tabs
           0x10e88c000 -        0x10e894ff7 +com.adobe.InDesign.Keeps Panel (9.0.0.244 - 0) <9098A274-E93C-34AA-96D8-915D9E4F8628> /Applications/Adobe InDesign CC/*/Keeps Panel
           0x10e89c000 -        0x10e8bcff7 +com.adobe.InDesign.Optical Kerning (9.0.0.244 - 0) <BA5A40EB-931E-37DC-997F-234F354CBD7A> /Applications/Adobe InDesign CC/*/Optical Kerning
           0x10e8c7000 -        0x10e8fbff7 +com.adobe.InDesign.Paragraph Panel (9.0.0.244 - 0) <F6D20772-BAB5-3C9E-8EE0-23EA381E2508> /Applications/Adobe InDesign CC/*/Paragraph Panel
           0x10e90e000 -        0x10e920ff7 +com.adobe.InDesign.Paragraph Rules Panel (9.0.0.244 - 0) <C2DFFD8B-8075-361B-B832-F96F2C78C483> /Applications/Adobe InDesign CC/*/Paragraph Rules Panel
           0x10e92a000 -        0x10e941fff +com.adobe.InDesign.Path Type UI (9.0.0.244 - 0) <E18681DE-0DA3-35D2-AB20-A5B13FAF495E> /Applications/Adobe InDesign CC/*/Path Type UI
           0x10e951000 -        0x10e95bff7 +PathTypeLib.dylib (1) <1EAC22A3-1B0A-3025-BBC1-7064D4CFB153> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/PathTypeLib.dylib
           0x10e964000 -        0x10e991fff +com.adobe.InDesign.RunIn Styles Panel (9.0.0.244 - 0) <E822416C-FDB8-3AEC-8D24-115C766259F5> /Applications/Adobe InDesign CC/*/RunIn Styles Panel
           0x10e9a3000 -        0x10e9b4fff +com.adobe.InDesign.SING (9.0.0.244 - 0) <D1B2138D-3CB7-3A41-9BA0-E05D15D9656F> /Applications/Adobe InDesign CC/*/SING
           0x10e9be000 -        0x10e9c8ff7 +com.adobe.InDesign.Span Columns Panel (9.0.0.244 - 0) <1125B9B0-0A27-310E-B80A-30DD311BA363> /Applications/Adobe InDesign CC/*/Span Columns Panel
           0x10e9d1000 -        0x10ea1dff7 +com.adobe.InDesign.Spelling Panel (9.0.0.244 - 0) <5003DC67-9AE6-3261-8577-D91DA1DF1455> /Applications/Adobe InDesign CC/*/Spelling Panel
           0x10ea37000 -        0x10ea4bff7 +com.adobe.InDesign.Story Panel (9.0.0.244 - 0) <B52F7C54-8E7A-3853-98CC-B3EF7EA96942> /Applications/Adobe InDesign CC/*/Story Panel
           0x10ea5f000 -        0x10eaa4ff7 +com.adobe.pip (7.0.0.1768) <F022E031-1429-354F-B718-70F001B342EF> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobePIP.framework/AdobePIP
           0x10eab0000 -        0x10eaccff7  libJapaneseConverter.dylib (61) <D0F762C2-5372-3AA2-BBA4-066B8E4B1F8E> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
           0x10ead1000 -        0x10ead2ff7  libCyrillicConverter.dylib (61) <D06971D7-9F16-3FE6-81E8-33E0FE4D6586> /System/Library/CoreServices/Encodings/libCyrillicConverter.dylib
           0x10ead9000 -        0x10ead9fff +DTraceSupport.dylib (1) <E54DF20B-C169-68CF-A3F5-0470DEFF1C8A> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/DTraceSupport.dylib
           0x10eadd000 -        0x10eb58ff7 +com.adobe.InDesign.Style Panel (9.0.0.244 - 0) <5D67389F-C634-36C3-8564-C5B2AEA159A1> /Applications/Adobe InDesign CC/*/Style Panel
           0x10eb80000 -        0x10eb8dff7 +com.adobe.InDesign.Text Color Panel (9.0.0.244 - 0) <D62B34BB-30BA-3165-9CB3-82FF2057CF3F> /Applications/Adobe InDesign CC/*/Text Color Panel
           0x10eb96000 -        0x10ebc2ff7 +com.adobe.InDesign.Text Frame Options (9.0.0.244 - 0) <85EAFB07-5AE8-34EC-84B8-7D77BFD4F701> /Applications/Adobe InDesign CC/*/Text Frame Options
           0x10ebd3000 -        0x10ec38fff +com.adobe.InDesign.Text Panel (9.0.0.244 - 0) <D85A6FE1-E185-3B5B-A5FE-6512189E9AC5> /Applications/Adobe InDesign CC/*/Text Panel
           0x10ec5b000 -        0x10ec7dfff +com.adobe.InDesign.Text Preferences (9.0.0.244 - 0) <BE239C6C-7F13-3063-90D6-A79EC186FB7B> /Applications/Adobe InDesign CC/*/Text Preferences
           0x10ec8d000 -        0x10ecb0ff7 +com.adobe.InDesign.Text Ruler (9.0.0.244 - 0) <10D862DA-F8A2-3D6F-A2E6-F2A40C2D87CC> /Applications/Adobe InDesign CC/*/Text Ruler
           0x10ecc1000 -        0x10ecf0ff7 +com.adobe.InDesign.CSXS (9.0.0.244 - 0) <1625F389-67BC-36F1-A7E9-2A2A7FA89383> /Applications/Adobe InDesign CC/*/CSXS
           0x10ed08000 -        0x10ed40ff7 +com.adobe.InDesign.Galley Preferences (9.0.0.244 - 0) <E13290AE-89E4-3E2C-BDF7-5AB4DC750BE2> /Applications/Adobe InDesign CC/*/Galley Preferences
           0x10ed5b000 -        0x10ed7cfff +com.adobe.InDesign.GapTool (9.0.0.244 - 0) <661756AC-1112-3BF2-BBD5-51D66F6D6AC3> /Applications/Adobe InDesign CC/*/GapTool
           0x10ed8c000 -        0x10ed97ff7 +com.adobe.InDesign.General Preferences Panel (9.0.0.244 - 0) <1F1B6C89-1BA6-3F8D-AA55-DB2C7AF93939> /Applications/Adobe InDesign CC/*/General Preferences Panel
           0x10eda2000 -        0x10edb5ff7 +com.adobe.ahclientframework (1.8.0.31 - 1.8.0.31) <58BB943C-98EC-3812-AAAB-74F66630D1D4> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/ahclient.framework/Versions/A/ahclient
           0x10edbc000 -        0x10edd8ff7 +com.adobe.InDesign.Performance UI (9.0.0.244 - 0) <C0BD9765-3830-3325-8BC7-9C70845D2FD0> /Applications/Adobe InDesign CC/*/Performance UI
           0x10eded000 -        0x10ee11ff7 +com.adobe.InDesign.SharedContentUI (9.0.0.244 - 0) <2595422B-527B-390D-B8AD-9264098D58B0> /Applications/Adobe InDesign CC/*/SharedContentUI
           0x10ee20000 -        0x10ee46fff +com.adobe.InDesign.Shortcut Editor Dialog (9.0.0.244 - 0) <8C33E2E0-CCCE-3AEE-8214-E07EAE8A3B9A> /Applications/Adobe InDesign CC/*/Shortcut Editor Dialog
           0x10ee5a000 -        0x1

    In future, please put your crash reports on pastebin.com and provide a link here. Thanks.
    Your crash indicates a problem in the Adobe Graphic Manager module, I think, but curiously the VM regions listed are not related to ID or any Adobe Product. One of them appears to be the video driver, and the other is Stackguard which I believe is most likely part of the OS.
    Is this happening with ALL CS6 files, or only one or two?

  • Creative cloud Indesign crash on startup

    Please see log below. Upgraded iMac from snow leopard to Mountain Lion, upgraded to creative cloud from CS5.5, however indesign will not start and crashes with the following below.
    Process:         Adobe InDesign CC [3046]
    Path:            /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Adobe InDesign CC
    Identifier:      com.adobe.InDesign
    Version:         9.0.0.244 (9000)
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [228]
    User ID:         501
    Date/Time:       2013-10-01 16:12:54.543 +1300
    OS Version:      Mac OS X 10.8.5 (12F37)
    Report Version:  10
    Interval Since Last Report:          3661 sec
    Crashes Since Last Report:           1
    Per-App Interval Since Last Report:  155 sec
    Per-App Crashes Since Last Report:   1
    Anonymous UUID:                      D0894453-8AD3-C4EB-A95E-F464636E7268
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    terminate called throwing an exception
    abort() called
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x00007fff961b8212 __pthread_kill + 10
    1   libsystem_c.dylib                       0x00007fff94340b24 pthread_kill + 90
    2   libsystem_c.dylib                       0x00007fff94384f61 abort + 143
    3   libc++abi.dylib                         0x00007fff8f5489eb abort_message + 257
    4   libc++abi.dylib                         0x00007fff8f54639a default_terminate() + 28
    5   libobjc.A.dylib                         0x00007fff8f6e4887 _objc_terminate() + 111
    6   libc++abi.dylib                         0x00007fff8f5463c9 safe_handler_caller(void (*)()) + 8
    7   libc++abi.dylib                         0x00007fff8f546424 std::terminate() + 16
    8   libc++abi.dylib                         0x00007fff8f54758b __cxa_throw + 111
    9   PublicLib.dylib                         0x00000001011ed5fe PMString::SetUTF8String(std::string const&) + 446
    10  com.adobe.InDesign.Font Manager          0x0000000117c77bae 0x117c75000 + 11182
    11  com.adobe.InDesign.Text Panel           0x0000000115219ece 0x1151e8000 + 204494
    12  com.adobe.InDesign.Font Manager          0x0000000117cd2bd3 0x117c75000 + 383955
    13  com.adobe.InDesign.Font Manager          0x0000000117cd2576 0x117c75000 + 382326
    14  com.adobe.InDesign.Font Manager          0x0000000117cd09e4 0x117c75000 + 375268
    15  com.adobe.InDesign.Font Manager          0x0000000117c937b2 0x117c75000 + 124850
    16  com.adobe.InDesign.Text Panel           0x000000011521a785 0x1151e8000 + 206725
    17  com.adobe.InDesign.Text Panel           0x000000011520f9ea 0x1151e8000 + 162282
    18  com.adobe.InDesign.AppFramework          0x0000000115975bae 0x115898000 + 908206
    19  com.adobe.InDesign.AppFramework          0x00000001158e324f 0x115898000 + 307791
    20  com.adobe.InDesign.AppFramework          0x00000001158e2c8b 0x115898000 + 306315
    21  com.adobe.InDesign.Application UI          0x0000000115c22f4d 0x115af0000 + 1257293
    22  com.apple.AppKit                        0x00007fff9380921a -[NSApplication run] + 636
    23  com.adobe.exo.framework                 0x00000001028a7e98 exo::app::OS_AppBase::RunEventLoop() + 56
    24  com.adobe.InDesign.AppFramework          0x00000001159a5ff3 0x115898000 + 1105907
    25  com.adobe.InDesign.AppFramework          0x00000001159a5182 0x115898000 + 1102210
    26  com.adobe.InDesign                      0x0000000100001dbc main + 412
    27  com.adobe.InDesign                      0x0000000100001bb4 start + 52
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff961b8d16 kevent + 10
    1   libdispatch.dylib                       0x00007fff92e6ddea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib                       0x00007fff92e6d9ee _dispatch_mgr_thread + 54
    Thread 2:
    0   libsystem_kernel.dylib                  0x00007fff961b80fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff94343ff3 _pthread_cond_wait + 927
    2   com.apple.CoreServices.CarbonCore          0x00007fff91ca2406 TSWaitOnConditionTimedRelative + 163
    3   com.apple.CoreServices.CarbonCore          0x00007fff91c04a98 MPWaitOnQueue + 252
    4   PMRuntime.dylib                         0x000000010165ebe1 0x10165d000 + 7137
    5   com.apple.CoreServices.CarbonCore          0x00007fff91c797e0 PrivateMPEntryPoint + 58
    6   libsystem_c.dylib                       0x00007fff9433f772 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff9432c1a1 thread_start + 13
    Thread 3:
    0   libsystem_kernel.dylib                  0x00007fff961b6686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff961b5c42 mach_msg + 70
    2   com.apple.CoreServices.CarbonCore          0x00007fff91c9f3dd TS_exception_listener_thread + 67
    3   libsystem_c.dylib                       0x00007fff9433f772 _pthread_start + 327
    4   libsystem_c.dylib                       0x00007fff9432c1a1 thread_start + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00007fff961b80fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff94343fb9 _pthread_cond_wait + 869
    2   com.adobe.InDesign.AppFramework          0x0000000115990f22 0x115898000 + 1019682
    3   com.adobe.InDesign.AppFramework          0x000000011599038d 0x115898000 + 1016717
    4   com.adobe.InDesign.AppFramework          0x000000011598da97 0x115898000 + 1006231
    5   com.adobe.InDesign.AppFramework          0x0000000115991abd 0x115898000 + 1022653
    6   com.adobe.InDesign.AppFramework          0x0000000115991a43 0x115898000 + 1022531
    7   com.adobe.InDesign.AppFramework          0x0000000115991a02 0x115898000 + 1022466
    8   com.adobe.boost_threads.framework          0x00000001010736d4 boost::thread::start_thread() + 436
    9   libsystem_c.dylib                       0x00007fff9433f772 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff9432c1a1 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff961b80fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff94343fb9 _pthread_cond_wait + 869
    2   com.adobe.InDesign.AppFramework          0x0000000115990f22 0x115898000 + 1019682
    3   com.adobe.InDesign.AppFramework          0x000000011599038d 0x115898000 + 1016717
    4   com.adobe.InDesign.AppFramework          0x000000011598da97 0x115898000 + 1006231
    5   com.adobe.InDesign.AppFramework          0x0000000115991abd 0x115898000 + 1022653
    6   com.adobe.InDesign.AppFramework          0x0000000115991a43 0x115898000 + 1022531
    7   com.adobe.InDesign.AppFramework          0x0000000115991a02 0x115898000 + 1022466
    8   com.adobe.boost_threads.framework          0x00000001010736d4 boost::thread::start_thread() + 436
    9   libsystem_c.dylib                       0x00007fff9433f772 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff9432c1a1 thread_start + 13
    Thread 6:
    0   libsystem_kernel.dylib                  0x00007fff961b86d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff94341f1c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff94341ce3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff9432c191 start_wqthread + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff961b86d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff94341f1c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff94341ce3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff9432c191 start_wqthread + 13
    Thread 8:
    0   libsystem_kernel.dylib                  0x00007fff961b8386 __semwait_signal + 10
    1   libsystem_c.dylib                       0x00007fff943c97c8 nanosleep + 163
    2   com.adobe.InDesign.Support for JavaScript          0x000000011b68f818 0x11b63c000 + 342040
    3   com.adobe.InDesign.Support for JavaScript          0x000000011b676a3e 0x11b63c000 + 240190
    4   com.adobe.InDesign.Support for JavaScript          0x000000011b68f3d5 0x11b63c000 + 340949
    5   libsystem_c.dylib                       0x00007fff9433f772 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff9432c1a1 thread_start + 13
    Thread 9:
    0   libsystem_kernel.dylib                  0x00007fff961b82aa __recvfrom + 10
    1   ServiceManager-Launcher.dylib           0x00000001096fb231 0x1096e3000 + 98865
    2   ServiceManager-Launcher.dylib           0x00000001096fa5d6 0x1096e3000 + 95702
    3   ServiceManager-Launcher.dylib           0x00000001096f9678 0x1096e3000 + 91768
    4   ServiceManager-Launcher.dylib           0x00000001096f96e6 0x1096e3000 + 91878
    5   ServiceManager-Launcher.dylib           0x00000001096f42e4 0x1096e3000 + 70372
    6   ServiceManager-Launcher.dylib           0x00000001096f4cfe 0x1096e3000 + 72958
    7   ServiceManager-Launcher.dylib           0x00000001096f4c0b 0x1096e3000 + 72715
    8   ServiceManager-Launcher.dylib           0x00000001096f836e 0x1096e3000 + 86894
    9   ServiceManager-Launcher.dylib           0x00000001096f84b2 0x1096e3000 + 87218
    10  ServiceManager-Launcher.dylib           0x00000001096f826d 0x1096e3000 + 86637
    11  ServiceManager-Launcher.dylib           0x00000001096f81e6 0x1096e3000 + 86502
    12  ServiceManager-Launcher.dylib           0x00000001096e6916 0x1096e3000 + 14614
    13  ServiceManager-Launcher.dylib           0x00000001096eab05 0x1096e3000 + 31493
    14  ServiceManager-Launcher.dylib           0x00000001096f8e46 0x1096e3000 + 89670
    15  ServiceManager-Launcher.dylib           0x00000001096faef3 0x1096e3000 + 98035
    16  libsystem_c.dylib                       0x00007fff9433f772 _pthread_start + 327
    17  libsystem_c.dylib                       0x00007fff9432c1a1 thread_start + 13
    Thread 10:
    0   libsystem_kernel.dylib                  0x00007fff961b86d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff94341f1c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff94341ce3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff9432c191 start_wqthread + 13
    Thread 11:
    0   libsystem_kernel.dylib                  0x00007fff961b80fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff94343fb9 _pthread_cond_wait + 869
    2   com.adobe.InDesign.AppFramework          0x0000000115990f22 0x115898000 + 1019682
    3   com.adobe.InDesign.AppFramework          0x00000001159905c8 0x115898000 + 1017288
    4   com.adobe.InDesign.AppFramework          0x000000011598da97 0x115898000 + 1006231
    5   com.adobe.InDesign.AppFramework          0x0000000115991abd 0x115898000 + 1022653
    6   com.adobe.InDesign.AppFramework          0x0000000115991a43 0x115898000 + 1022531
    7   com.adobe.InDesign.AppFramework          0x0000000115991a02 0x115898000 + 1022466
    8   com.adobe.boost_threads.framework          0x00000001010736d4 boost::thread::start_thread() + 436
    9   libsystem_c.dylib                       0x00007fff9433f772 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff9432c1a1 thread_start + 13
    Thread 12:
    Thread 13:: MPSupport Worker
    0   libsystem_kernel.dylib                  0x00007fff961b80fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff94343fb9 _pthread_cond_wait + 869
    2   MultiProcessor Support                  0x0000000120d7244b 0x120d2d000 + 283723
    3   MultiProcessor Support                  0x0000000120d72303 0x120d2d000 + 283395
    4   MultiProcessor Support                  0x0000000120d92394 0x120d2d000 + 414612
    5   libsystem_c.dylib                       0x00007fff9433f772 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff9432c1a1 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000000000006  rcx: 0x00007fff5fbfee48  rdx: 0x0000000000000000
      rdi: 0x0000000000000c07  rsi: 0x0000000000000006  rbp: 0x00007fff5fbfee70  rsp: 0x00007fff5fbfee48
       r8: 0x00007fff7d99d278   r9: 0x0000000000000012  r10: 0x0000000020000000  r11: 0x0000000000000206
      r12: 0x00007fff5fbfefd0  r13: 0x00007fff5fbff0da  r14: 0x00007fff7d99e180  r15: 0x00007fff5fbfeeb0
      rip: 0x00007fff961b8212  rfl: 0x0000000000000206  cr2: 0x00007fff7d996ff0
    Logical CPU: 0
    Binary Images:
           0x100000000 -        0x100005fff +com.adobe.InDesign (9.0.0.244 - 9000) <2F683D4B-A144-3E91-A0CA-3F9B6B1DA676> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Adobe InDesign CC
           0x10000c000 -        0x10000eff7 +com.adobe.InDesign.InDesignModelAndUI (9.0 - 0) <7EAF82B5-D2A0-3E46-96B1-61E4A9D819C9> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/InDesignModelAndUI.framework/Versions/A/InDesignModelAndUI
           0x100014000 -        0x10001cfff +com.adobe.coretech.adobesplashkit (AdobeSplashKit Version 1.0 - 1.0) <65BFDA83-4121-3D12-9BBE-9F4FF1DB3D6A> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeSplashKit.framework/Versions/A/AdobeSplashKit
           0x100025000 -        0x10002ffff +ASLSupportLib.dylib (1) <37C5A821-5118-3BCF-AC5E-F9C4FAE123A8> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/ASLSupportLib.dylib
           0x100037000 -        0x10012bff7 +DV_WidgetBinLib.dylib (1) <6A40E798-D47A-3959-A04E-9361B010FAE3> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/DV_WidgetBinLib.dylib
           0x1001bf000 -        0x100204ff7 +TextPanelLib.dylib (1) <F06B61DF-F7D5-37AA-B1F5-BB5FA3737E62> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/TextPanelLib.dylib
           0x100221000 -        0x100382fff +WidgetBinLib.dylib (1) <7D51BAC1-7061-36C1-8C0E-CBF411371A56> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/WidgetBinLib.dylib
           0x100433000 -        0x1005fcff7 +com.adobe.owl (AdobeOwl version 5.0.13 - 5.0.13) <E9BEFE93-8AB5-3EF9-B59E-69208015C7FA> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
           0x10063f000 -        0x100883ff7 +com.adobe.dvacore.framework (7.0.849323 - 7.0.849323.0) <63BF29D6-62ED-3026-B93D-96CC42F4CF9E> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/dvacore.framework/Versions/A/dvacore
           0x10094a000 -        0x100dd7ff7 +com.adobe.dvaui.framework (7.0.849323 - 7.0.849323.0) <6C4C227F-A5D6-3B4D-AD39-4B3C97D32440> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/dvaui.framework/Versions/A/dvaui
           0x10106d000 -        0x10106dfff +com.adobe.InDesign.InDesignModel (9.0 - 0) <5A3F239E-E40A-3876-8DD9-0E5AEDB58098> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/InDesignModel.framework/Versions/A/InDesignModel
           0x101072000 -        0x101080fff +com.adobe.boost_threads.framework (7.0.847203 - 7.0.847203.0) <A0AE19A9-2B8E-310A-8AC1-0E2E026E7A40> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/boost_threads.framework/Versions/A/boost_threads
           0x101096000 -        0x10109cff7 +com.adobe.boost_date_time.framework (7.0.847203 - 7.0.847203.0) <F30F59C3-41C0-3DB1-899A-E2491EA25263> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/boost_date_time.framework/Versions/A/boost_date_time
           0x1010ab000 -        0x101513fff +PublicLib.dylib (1) <9C2969EC-46E7-3AC9-ADDE-45951D87A220> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/PublicLib.dylib
           0x10165d000 -        0x101667fff +PMRuntime.dylib (1) <E2DF4211-4A31-32BB-87F5-F0ADFFBFACE8> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/PMRuntime.dylib
           0x101670000 -        0x101687ff7 +com.adobe.AFL (AdobeAFL 1.5.0 - 1.5) <1C46F2BE-2E4D-3E25-ACDF-85E2962B92DF> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeAFL.framework/Versions/A/AdobeAFL
           0x101696000 -        0x1019a6ff7 +com.adobe.CoolType (AdobeCoolType 5.13.00.30830 - 5.13.00.30830) <BBF1FCF6-523A-3E24-967A-10EA909DF89B> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
           0x1019ee000 -        0x101a0bfff +com.adobe.BIB (AdobeBIB 1.2.03.30830 - 1.2.03.30830) <A69D3AA0-9248-3B77-991B-89B2B7FE46BB> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
           0x101a13000 -        0x101b57fff +com.adobe.ACE (AdobeACE 2.20.02.30830 - 2.20.02.30830) <73C9699B-5EDC-3FDC-82FF-738C99AA840F> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
           0x101b6a000 -        0x10213bfff +com.adobe.AGM (AdobeAGM 4.30.19.30830 - 4.30.19.30830) <9062D763-4040-3F8C-8FF3-23876F112FB8> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
           0x1021d8000 -        0x102215fff +com.adobe.ARE (AdobeARE 1.5.02.30830 - 1.5.02.30830) <73174C59-1DDC-3416-A0AD-4D70930ABA60> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeARE.framework/Versions/A/AdobeARE
           0x10221d000 -        0x102243fff +com.adobe.BIBUtils (AdobeBIBUtils 1.1.01 - 1.1.01) <FA20BCA0-05BF-35ED-95B7-5775B8310D12> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
           0x10224b000 -        0x1027e4fff +com.adobe.MPS (AdobeMPS 5.8.1.30604 - 5.8.1.30604) <70CBC6A8-2740-37AB-964E-484096A1BF8A> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
           0x102861000 -        0x10287eff7 +com.adobe.dvaflashview.framework (7.0.849323 - 7.0.849323.0) <727F09EC-0D75-3C41-8553-54585B9408BB> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/dvaflashview.framework/Versions/A/dvaflashview
           0x102895000 -        0x102899ff7 +com.adobe.ape.shim (3.4.0.29366 - 3.4.0.29366) <B9447EE8-6F91-9E85-C163-96600BF70764> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/adbeape.framework/Versions/A/adbeape
           0x1028a0000 -        0x102962fff +com.adobe.exo.framework (7.0.849323 - 7.0.849323.0) <60261EFB-3EF3-3201-9BE7-3CC7235B523B> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/exo.framework/Versions/A/exo
           0x1029ff000 -        0x102aadfff +com.adobe.dvaworkspace.framework (7.0.849323 - 7.0.849323.0) <412D9508-51FD-34D9-8B3E-FE9BD1EAC107> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/dvaworkspace.framework/Versions/A/dvaworkspace
           0x102b30000 -        0x1031adfcf +com.adobe.PlugPlug (4.0.0.172 - 4.0.0.172) <1B15941F-D885-3AC5-880F-D513DA868B00> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/PlugPlug.framework/Versions/A/PlugPlug
           0x103494000 -        0x1034c0ff7 +libtbb.dylib (0) <64B7013E-D548-3F7B-A2FB-28B7B932275C> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/libtbb.dylib
           0x1034db000 -        0x1034fafe7 +libtbbmalloc.dylib (0) <6887ED68-67ED-3748-82DA-B39A3EB210BB> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/libtbbmalloc.dylib
           0x10351f000 -        0x104264fff +com.adobe.ICUData (4.0 - 3.61) <01D90725-4B10-312C-9546-9C0CCCA1B7BB> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/ICUData.framework/Versions/4.0/libicudata.40.0.dylib
           0x104278000 -        0x1043a9ff7 +com.adobe.ICUInternationalization (4.0 - 3.61) <CD4AD967-00CD-3979-8F82-1166E2058FA6> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/ICUInternationalization.framework/Versions/4.0/libicui18n.40.0 .dylib
           0x1043fd000 -        0x1044f3ff7 +com.adobe.ICUUnicode (4.0 - 3.61) <2352E6C8-3431-3A99-92B9-382E85A018AC> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/ICUUnicode.framework/Versions/4.0/libicuuc.40.0.dylib
           0x10452b000 -        0x104659fff +com.winsoft.wrservices (WRServices 7.0.0 - 7.0.0) <0853A41B-A14A-37B7-B27F-457F87865EAD> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
           0x1046b4000 -        0x1047a3fff +com.adobe.amtlib (7.0.0.169 - 7.0.0.169) <A9A9F814-FF1F-3182-992C-395E5BC52481> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
           0x1047b6000 -        0x1047b8fff +com.adobe.AdobeCrashReporter (7.0 - 7.0.1) <B68D0D42-8DEB-3F22-BD17-981AC060E9D7> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashReporter
           0x1047be000 -        0x104875ff7 +com.adobe.boost_regex.framework (7.0.847203 - 7.0.847203.0) <F1C659D9-D3E8-3ACE-8368-9161529A6A66> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/boost_regex.framework/Versions/A/boost_regex
           0x1048df000 -        0x10494eff7 +com.adobe.adobe_caps (adobe_caps 7.0.0.21 - 7.0.0.21) <CE3C6356-9EE2-3B88-8261-8612A0743F56> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
           0x104959000 -        0x104964fff +com.adobe.boost_signals.framework (7.0.847203 - 7.0.847203.0) <E0B3BB47-4294-3D65-8979-29B2D6C5DD2E> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/boost_signals.framework/Versions/A/boost_signals
           0x104973000 -        0x104977fff +com.adobe.boost_system.framework (7.0.847203 - 7.0.847203.0) <70F73B9F-8416-37BF-9294-086AE475B743> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/boost_system.framework/Versions/A/boost_system
           0x10497d000 -        0x104a1efff +com.adobe.ICUConverter (4.0 - 3.61) <46764474-111C-3B13-AF62-002B71877405> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/ICUConverter.framework/Versions/4.0/libicucnv.40.0.dylib
           0x104a3e000 -        0x104aa0ff7 +DataBaseLib.dylib (1) <F2D6864D-0813-3833-96A5-9D256A00375D> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/DataBaseLib.dylib
           0x104ab4000 -        0x104b20fff +ObjectModelLib.dylib (1) <FDA08F73-D9C2-303E-AB18-564E50554517> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/ObjectModelLib.dylib
           0x104b3d000 -        0x104b61fff +com.adobe.AXE8SharedExpat (AdobeAXE8SharedExpat 3.8.0.30807 - 3.8.0.30807) <16FF5E16-19E0-3CE1-A68E-27567234429F> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedExpat
           0x107479000 -        0x107479fff  com.apple.applescript.component (2.2.4 - 2.2.4) <450D0310-871E-3523-A712-10B7DD2FD991> /System/Library/Components/AppleScript.component/Contents/MacOS/AppleScript
           0x107488000 -        0x107490fff +com.adobe.InDesign.Data Services UI (9.0.0.244 - 0) <7B0D3F37-5CB3-3C80-8C71-6EE35DAF0F57> /Applications/Adobe InDesign CC/*/Data Services UI
           0x1074a4000 -        0x1074a5ff7  libCyrillicConverter.dylib (61) <D06971D7-9F16-3FE6-81E8-33E0FE4D6586> /System/Library/CoreServices/Encodings/libCyrillicConverter.dylib
           0x1074dc000 -        0x1074e4fff +com.adobe.InDesign.Data Services (9.0.0.244 - 0) <FF804F79-F26A-32FD-9ABB-EE71673EF180> /Applications/Adobe InDesign CC/*/Data Services
           0x1074ea000 -        0x1074f3ff7 +com.adobe.InDesign.PNG Import Filter UI (9.0.0.244 - 0) <3FAFE9A4-D233-3288-8686-515229F7EEB1> /Applications/Adobe InDesign CC/*/PNG Import Filter UI
           0x107568000 -        0x107577ff7 +com.adobe.InDesign.DTTransform (9.0.0.244 - 0) <C9DD2FAF-BABE-3B7E-AEBA-00306E030DEE> /Applications/Adobe InDesign CC/*/DTTransform
           0x107580000 -        0x107582fff +com.adobe.InDesign.SimpleTextImportFilter (9.0.0.244 - 0) <A4823CC0-085B-3106-9A20-6D23E2591F03> /Applications/Adobe InDesign CC/*/SimpleTextImportFilter
           0x107625000 -        0x107631fff +com.adobe.InDesign.Tagged Text Filters UI (9.0.0.244 - 0) <034B439C-F4BF-36D8-8FE5-DEE1807DDBA7> /Applications/Adobe InDesign CC/*/Tagged Text Filters UI
           0x10769e000 -        0x1076a1fff +com.adobe.InDesign.Global Preferences Panel (9.0.0.244 - 0) <41190407-7FB7-3A06-BE40-5A815559E124> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Global Preferences Panel.InDesignPlugin/Global Preferences Panel
           0x10895d000 -        0x108965ff7 +com.adobe.InDesign.JPEG Export UI (9.0.0.244 - 0) <2F81D85C-3AFC-3BB4-B60F-3B3E3CB5B6FA> /Applications/Adobe InDesign CC/*/JPEG Export UI
           0x10896e000 -        0x10896fff7 +com.adobe.InDesign.Metadata Database Filter (9.0.0.244 - 0) <B6CEE02B-979B-385E-A393-FF3D08525330> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Metadata Database Filter.InDesignPlugin/Metadata Database Filter
           0x10899a000 -        0x1089a2fff +com.adobe.InDesign.InCopyExport (9.0.0.244 - 0) <81D645C8-B39C-3FFE-9A1D-55D7E7D8F46E> /Applications/Adobe InDesign CC/*/InCopyExport
           0x108be0000 -        0x108c1efff +com.adobe.AAM.AdobeUpdaterNotificationFramework (UpdaterNotifications 7.0.1.102 - 7.0.1.102) <75ADE364-1107-3DA7-84A2-26C6874EB881> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/UpdaterNotifications.framework/Versions/A/UpdaterNotifications
           0x108cf4000 -        0x108cf6ff7  com.apple.textencoding.unicode (2.5 - 2.5) <0518078E-C652-3CFC-A3FB-903C600CE831> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
           0x108d67000 -        0x108d88fff  libKoreanConverter.dylib (61) <7A601BB8-19DF-3DDC-9C50-3A798290F377> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
           0x108dc1000 -        0x108de7ff7 +com.adobe.InDesign.LILO (9.0.0.244 - 0) <9EBF6F94-9C67-38CE-8498-35AAB356F2B5> /Applications/Adobe InDesign CC/*/LILO
           0x108df5000 -        0x108dfcff7 +com.adobe.InDesign.InCopyExportUI (9.0.0.244 - 0) <713F0E2D-1802-36CA-8E10-FF322C3E2259> /Applications/Adobe InDesign CC/*/InCopyExportUI
           0x109060000 -        0x109067fff +com.adobe.InDesign.InCopyImport (9.0.0.244 - 0) <DC5E347C-82A8-3A05-B233-E0CBC1CD5C67> /Applications/Adobe InDesign CC/*/InCopyImport
           0x1091af000 -        0x1091bcfff +com.adobe.InDesign.Clipping Path Dialog (9.0.0.244 - 0) <16C1A307-2161-3A90-953D-F321E748615B> /Applications/Adobe InDesign CC/*/Clipping Path Dialog
           0x1091d1000 -        0x1091e3ff7  libTraditionalChineseConverter.dylib (61) <DDAFF75C-0714-34F4-818F-8B439AC7BBCA> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
           0x1091e7000 -        0x109225fff +com.adobe.InDesign.Dictionary Editor Dialog (9.0.0.244 - 0) <0D0DD4DC-6894-32DF-B96A-558862891888> /Applications/Adobe InDesign CC/*/Dictionary Editor Dialog
           0x10924e000 -        0x10926aff7  libJapaneseConverter.dylib (61) <D0F762C2-5372-3AA2-BBA4-066B8E4B1F8E> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
           0x109371000 -        0x10937dff7 +com.adobe.InDesign.Generic Style Editor (9.0.0.244 - 0) <E3407643-34D1-351D-AD4A-FC83D64F1D94> /Applications/Adobe InDesign CC/*/Generic Style Editor
           0x10938f000 -        0x10939eff7  libSimplifiedChineseConverter.dylib (61) <A2B475FF-667F-3B7B-A6E9-8768347F2BD6> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
           0x1093a2000 -        0x1093ccff7 +com.adobe.InDesign.Sangam Preferences UI (9.0.0.244 - 0) <2C6C6B32-5C33-300A-8AF1-AF545F1C0BD9> /Applications/Adobe InDesign CC/*/Sangam Preferences UI
           0x1093df000 -        0x1093f1ff7 +com.adobe.InDesign.PS Import UI (9.0.0.244 - 0) <0280417C-5563-3598-AA00-684D11F291D2> /Applications/Adobe InDesign CC/*/PS Import UI
           0x10953f000 -        0x10954cfff  libGPUSupport.dylib (8.10.1) <7860F083-3F7B-3811-A56C-E8557A90C7DB> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/libGPUSupport .dylib
           0x109553000 -        0x10957efff  GLRendererFloat (8.10.1) <055EC8E7-2D7E-370C-96AD-DBEEDB106927> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GLRendererFl oat
           0x109587000 -        0x109590fe7  libcldcpuengine.dylib (2.2.16) <B6E3B14B-1EAC-3FDD-8AED-87231A033BED> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengine.dylib
           0x1095d3000 -        0x1095e7fff +com.adobe.AdobeSFL (AdobeSFL 1.1.0.30369 - 1.1.0.30369) <E345428A-1893-3428-8DE9-2C61895AC1DA> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeSFL.framework/Versions/A/AdobeSFL
           0x1096e3000 -        0x10970ffff +ServiceManager-Launcher.dylib (55) <D5A4D905-A054-3E22-A284-3519895C201B> /Library/Application Support/Adobe/*/ServiceManager-Launcher.dylib
           0x10971e000 -        0x109725ff7 +FastCore (???) <550801D3-EA46-34A4-BD38-B9412427C4B4> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobePSL.framework/PlugIns/FastCore.plugin/Contents/MacOS/Fast Core
           0x109763000 -        0x10978fff7 +com.adobe.Reader for DOCX (Reader for DOCX 5.65.0.30369 - 5.65.0.30369) <C21B199B-542B-34CD-8F0E-F38D970D88BD> /Applications/Adobe InDesign CC/*/Reader for DOCX
           0x10979a000 -        0x109805ff7 +com.adobe.AdobeSangamML (AdobeSangamML 5.65.0.30369 - 5.65.0.30369) <BD083684-4F07-3F85-BD5D-729E4C597126> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeSangamML.framework/Versions/A/AdobeSangamML
           0x1098b9000 -        0x1098cfff7 +com.adobe.InDesign.SaveBack (9.0.0.244 - 0) <C839FA45-F1DD-333E-B8FF-5E3CA5B24364> /Applications/Adobe InDesign CC/*/SaveBack
           0x1098dd000 -        0x1098e5fff +com.adobe.InDesign.InCopyWorkflow UI (9.0.0.244 - 0) <B5F00DC3-482D-3FCA-BD7E-67CF432C75A8> /Applications/Adobe InDesign CC/*/InCopyWorkflow UI
           0x1098f0000 -        0x1098f5ff7 +com.adobe.InDesign.Username UI (9.0.0.244 - 0) <85772C26-BB2E-34BB-B733-E08E4966949A> /Applications/Adobe InDesign CC/*/Username UI
           0x109be2000 -        0x109c3ffff +com.adobe.InDesign.Media Import Filter (9.0.0.244 - 0) <EF3386C3-F980-34EA-9EFF-64910373496F> /Applications/Adobe InDesign CC/*/Media Import Filter
           0x109c52000 -        0x109c57fff +com.adobe.InDesign.Layout Adjustment Panel (9.0.0.244 - 0) <27CE7F02-93CA-348D-BC67-1571721BC4BF> /Applications/Adobe InDesign CC/*/Layout Adjustment Panel
           0x109c60000 -        0x109cbeff7 +com.adobe.Reader for Excel (Reader for Excel 5.65.0.30369 - 5.65.0.30369) <628DA00F-210B-3856-89F3-66393386E801> /Applications/Adobe InDesign CC/*/Reader for Excel
           0x109cd1000 -        0x109d2cff7 +com.adobe.Reader for RTF (Reader for RTF 5.65.0.30369 - 5.65.0.30369) <3ACB0F8E-0B51-3E5C-B924-A31D1D6606F6> /Applications/Adobe InDesign CC/*/Reader for RTF
           0x109d45000 -        0x109db3ff7 +com.adobe.Reader for Word (Reader for Word 5.65.0.30369 - 5.65.0.30369) <27531852-B602-3785-94C0-3B316DBEC69C> /Applications/Adobe InDesign CC/*/Reader for Word
           0x109ddb000 -        0x109e2cfff +com.adobe.InDesign.SangamExport (9.0.0.244 - 0) <0574175B-890E-36BC-B223-32EBEFB50B2F> /Applications/Adobe InDesign CC/*/SangamExport
           0x109e43000 -        0x109e4eff7 +com.adobe.InDesign.NotePref (9.0.0.244 - 0) <95C54A58-F9FD-3374-B600-705525389FF3> /Applications/Adobe InDesign CC/*/NotePref
           0x10a083000 -        0x10a09ffff +com.adobe.InDesign.EPS UI (9.0.0.244 - 0) <605EEF62-9504-3D17-944E-C46531B8AE9F> /Applications/Adobe InDesign CC/*/EPS UI
           0x10a0b0000 -        0x10a0c0fff +com.adobe.InDesign.Alignment Panel (9.0.0.244 - 0) <4801B0C6-C22C-3384-AB5E-5FCF75DD308D> /Applications/Adobe InDesign CC/*/Alignment Panel
           0x10a14c000 -        0x10a241fff +com.adobe.Reader for Quark (Reader for Quark 5.65.0.30369 - 5.65.0.30369) <7877BBF5-B31A-3CA9-9E8E-3FDFB174F261> /Applications/Adobe InDesign CC/*/Reader for Quark
           0x10a25b000 -        0x10a2c1fff +com.adobe.Reader for XLSX (Reader for XLSX 5.65.0.30369 - 5.65.0.30369) <D896568B-FB6A-3036-91FC-A1DF0FA820DF> /Applications/Adobe InDesign CC/*/Reader for XLSX
           0x10a2db000 -        0x10a2e3ff7 +com.adobe.ZTextReader (ZTextReader 5.65.0.30369 - 5.65.0.30369) <28B268EF-A3AD-3933-B4DC-247428D3A88D> /Applications/Adobe InDesign CC/*/ZTextReader
           0x10a36a000 -        0x10a390ff7 +com.adobe.ape (3.4.0.29366 - 3.4.0.29366) <40A59819-7A57-0E9F-658D-1803B2A461AE> /Library/Application Support/Adobe/*/adbeapecore.framework/adbeapecore
           0x10a9e6000 -        0x10aa2aff7 +com.adobe.InDesign.Color Management UI (9.0.0.244 - 0) <D804A9E1-A2B6-37AD-B684-43C8E3CE4936> /Applications/Adobe InDesign CC/*/Color Management UI
           0x10acc8000 -        0x10ada3fff +com.adobe.linguistic.LinguisticManager (7.0.0 - 19061) <FDBCF369-5EFE-33BB-893A-2136EF8D0D6E> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic
           0x10adbf000 -        0x10ae3bff7 +com.adobe.InDesign.Color Picker Panel (9.0.0.244 - 0) <B90A4418-E4D5-3D38-A487-4DEE7FF39A12> /Applications/Adobe InDesign CC/*/Color Picker Panel
           0x10bb01000 -        0x10bb6afff +com.adobe.AdobeSangam (AdobeSangam 5.65.0.30369 - 5.65.0.30369) <BCD8B3F6-970F-3DEA-A583-7473FDDCA067> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeSangam.framework/Versions/A/AdobeSangam
           0x10bbb8000 -        0x10bbd3fff +com.adobe.InDesign.JPEG Export (9.0.0.244 - 0) <388494FD-CC7B-3DE7-95E0-168DB055E05B> /Applications/Adobe InDesign CC/*/JPEG Export
           0x10bbe5000 -        0x10bbeffff +com.adobe.InDesign.Create Guides Dialog (9.0.0.244 - 0) <7F35F38E-FA21-3692-82C1-BCE747EE3CEB> /Applications/Adobe InDesign CC/*/Create Guides Dialog
           0x10c040000 -        0x10c0e5fff +com.adobe.InDesign.Tagged Text Filters (9.0.0.244 - 0) <A34A0B6C-7D62-31F1-93B9-D1765CBEC93D> /Applications/Adobe InDesign CC/*/Tagged Text Filters
           0x10c200000 -        0x10c280ff7 +com.adobe.InDesign.DynamicDocumentsUI (9.0.0.244 - 0) <1BCEA1A3-0146-32B2-8BF7-8ABA0A5CAAEE> /Applications/Adobe InDesign CC/*/DynamicDocumentsUI
           0x10c2a7000 -        0x10c2beff7 +com.adobe.InDesign.OutputMiscUI (9.0.0.244 - 0) <BA2B462B-F51B-3F6A-9784-C7E1A829521A> /Applications/Adobe InDesign CC/*/OutputMiscUI
           0x10c2d1000 -        0x10c2d7fff +com.adobe.InDesign.Script Label Panel (9.0.0.244 - 0) <E1CE9519-9B72-327A-A350-94DECC74020A> /Applications/Adobe InDesign CC/*/Script Label Panel
           0x10c600000 -        0x10c6b9ff7  ColorSyncDeprecated.dylib (400) <7CE58F6E-D2C8-39FB-8EE0-28CC6EC6D04F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/Resources/ColorSyncDeprecated.dylib
           0x10c88a000 -        0x10c8cfff7 +com.adobe.pip (7.0.0.1768) <F022E031-1429-354F-B718-70F001B342EF> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobePIP.framework/AdobePIP
           0x10c8dc000 -        0x10c9f1fff +com.adobe.InDesign.EBookExport (9.0.0.244 - 0) <86F6CE82-3182-32F0-A2EC-167B4F7862D6> /Applications/Adobe InDesign CC/*/EBookExport
           0x10ca19000 -        0x10ca1dfff +com.adobe.InDesign.Help (9.0.0.244 - 0) <63BF8C3C-9981-3B8C-A893-FFBA4AF1DE76> /Applications/Adobe InDesign CC/*/Help
           0x10ca2f000 -        0x10cb70ff7 +com.adobe.InDesign.SangamServicer-Mapper (9.0.0.244 - 0) <4BAB90F5-52B7-374A-B9B6-7429C66EF9A4> /Applications/Adobe InDesign CC/*/SangamServicer-Mapper
           0x10cb94000 -        0x10cc67ff7 +com.adobe.InDesign.Tagged Text Attributes (9.0.0.244 - 0) <3A0D3BCF-DDB7-3ECA-8148-C693809B9BC8> /Applications/Adobe InDesign CC/*/Tagged Text Attributes
           0x10cc96000 -        0x10ccccfff +com.adobe.InDesign.Gradient Panel (9.0.0.244 - 0) <FEB32D3E-A743-37D7-AD55-0C7BE4C3A7F9> /Applications/Adobe InDesign CC/*/Gradient Panel
           0x10cce3000 -        0x10cd85fff +com.adobe.InDesign.Graphic Panels (9.0.0.244 - 0) <21F96085-EB7B-3120-8A14-0878423CE0EB> /Applications/Adobe InDesign CC/*/Graphic Panels
           0x10cdae000 -        0x10cdffff7 +com.adobe.InDesign.Output Preview (9.0.0.244 - 0) <95F41A2C-23A1-35E3-997C-AC3E54B8122B> /Applications/Adobe InDesign CC/*/Output Preview
           0x10ce19000 -        0x10ce9afff +com.adobe.InDesign.PDF UI (9.0.0.244 - 0) <174E4555-5A58-3C01-8ACB-B3EB40200850> /Applications/Adobe InDesign CC/*/PDF UI
           0x10cebe000 -        0x10cf1fff7 +com.adobe.InDesign.Galley (9.0.0.244 - 0) <0257CC4C-1C74-35A7-BBAB-790E6861E04D> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Galley.InDesignPlugin/Galley
           0x10cf34000 -        0x10cf39fff  com.apple.agl (3.2.1 - AGL-3.2.1) <57EC66DD-031A-3A8E-B067-72DB72B405E7> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
           0x10cf41000 -        0x10cfaefff +com.adobe.AdobeXMPCore (Adobe XMP Core 5.5 -c 14 - 79.151481) <BCDB9366-EDB3-3FEA-854D-3D2C72D48781> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
           0x10cfb9000 -        0x10cfd0ff7 +com.adobe.InDesign.Printer Styles (9.0.0.244 - 0) <487F7052-DB11-3A2A-BE31-201DEC20FCEB> /Applications/Adobe InDesign CC/*/Printer Styles
           0x10cfdf000 -        0x10d0c1fff +com.adobe.InDesign.PrintUI (9.0.0.244 - 0) <F827F8F9-91CD-3A6A-836B-A674CA53B9FA> /Applications/Adobe InDesign CC/*/PrintUI
           0x10d0ed000 -        0x10d110fff +com.adobe.InDesign.Swatch Library Panel (9.0.0.244 - 0) <20A34F07-0480-302C-8438-F356D7451012> /Applications/Adobe InDesign CC/*/Swatch Library Panel
           0x10d11f000 -        0x10d1dcff7 +com.adobe.InDesign.Swatches Panel (9.0.0.244 - 0) <E9653217-9232-31D7-8B55-7460A27289E3> /Applications/Adobe InDesign CC/*/Swatches Panel
           0x10d212000 -        0x10d2c1ff7 +com.adobe.InDesign.Transparency UI (9.0.0.244 - 0) <03830CAC-DF7D-3605-9963-4DA645248281> /Applications/Adobe InDesign CC/*/Transparency UI
           0x10d2f4000 -        0x10d358fff +com.adobe.InDesign.Assignment UI (9.0.0.244 - 0) <C4DC67CA-6464-361D-8F96-AC7383158809> /Applications/Adobe InDesign CC/*/Assignment UI
           0x10d37a000 -        0x10d39dfff +com.adobe.InDesign.InCopy Bridge UI (9.0.0.244 - 0) <FA141EE1-E99A-3D03-BE6C-A2E545821E8C> /Applications/Adobe InDesign CC/*/InCopy Bridge UI
           0x10d3ab000 -        0x10d3eaff7 +com.adobe.InDesign.InCopy Bridge (9.0.0.244 - 0) <D5E4E3B1-A43B-3417-AF70-78C223C798A0> /Applications/Adobe InDesign CC/*/InCopy Bridge
           0x10d3fa000 -        0x10d451ff7 +com.adobe.InDesign.Note (9.0.0.244 - 0) <39574DCB-0795-3067-84CF-0FB12B9E4881> /Applications/Adobe InDesign CC/*/Note
           0x10d471000 -        0x10d512ff7 +com.adobe.InDesign.ButtonUI (9.0.0.244 - 0) <E55C1B03-3F82-3971-841B-56EB21F8ED20> /Applications/Adobe InDesign CC/*/ButtonUI
           0x10d541000 -        0x10d569ff7 +com.adobe.InDesign.MediaUI (9.0.0.244 - 0) <C42F3AD6-9E13-3C9A-BC49-A93F440751C0> /Applications/Adobe InDesign CC/*/MediaUI
           0x10d57e000 -        0x10d5c5fff +com.adobe.InDesign.Asset Library Panel (9.0.0.244 - 0) <DFD7A06A-9BE0-3FA3-AA41-66A68C0A0957> /Applications/Adobe InDesign CC/*/Asset Library Panel
           0x10d5e9000 -        0x10d656ff7 +com.adobe.InDesign.Asset PubLibrary (9.0.0.244 - 0) <1FB73D92-A75B-39B0-91F8-02AB32E6D0E3> /Applications/Adobe InDesign CC/*/Asset PubLibrary
           0x10d674000 -        0x10d6c1ff7 +com.adobe.InDesign.Book Panel (9.0.0.244 - 0) <0306739B-78D6-30D6-9705-6DFE711C8EE7> /Applications/Adobe InDesign CC/*/Book Panel
           0x10d6e4000 -        0x10d700fff +com.adobe.InDesign.Bookmark Panel (9.0.0.244 - 0) <19756A8B-1C5A-320E-A6D2-3D763B15947F> /Applications/Adobe InDesign CC/*/Bookmark Panel
           0x10d717000 -        0x10d750fff +com.adobe.InDesign.ContentDropper Tool (9.0.0.244 - 0) <DB93021C-DD9A-3CA4-AF06-CC3ECEFA946B> /Applications/Adobe InDesign CC/*/ContentDropper Tool
           0x10d76e000 -        0x10d7b4ff7 +com.adobe.InDesign.Control Panel (9.0.0.244 - 0) <AF496EDF-D413-3344-8805-7D9F1DB11DC7> /Applications/Adobe InDesign CC/*/Control Panel
           0x10d7d1000 -        0x10d80bfff +com.adobe.InDesign.Eyedropper Tool (9.0.0.244 - 0) <A8E7360A-E42A-3790-B998-83398E336316> /Applications/Adobe InDesign CC/*/Eyedropper Tool
           0x10d820000 -        0x10d8adfff +com.adobe.InDesign.Hyperlinks Panel (9.0.0.244 - 0) <72C51910-CC5C-3B7D-8331-70195952E7A5> /Applications/Adobe InDesign CC/*/Hyperlinks Panel
           0x10d8d2000 -        0x10d962fff +com.adobe.InDesign.Index Panel (9.0.0.244 - 0) <EC33F8C3-4233-3790-B4AF-5AB31B6956FC> /Applications/Adobe InDesign CC/*/Index Panel
           0x10d982000 -        0x10d98eff7  com.apple.carbonframeworktemplate (1.0 - 1.0) <E859A35E-8EC1-3CA9-9758-95EC69D4EC5D> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/unihan.framework/Versions/A/unihan
           0x10d999000 -        0x10da01fff +com.adobe.InDesign.Info Panel (9.0.0.244 - 0) <0BDD7C10-8F5D-3507-B772-EFCBE4AE1ED0> /Applications/Adobe InDesign CC/*/Info Panel
           0x10da19000 -        0x10daddfff +com.adobe.InDesign.Knowledge Base (9.0.0.244 - 0) <C979FEE9-EB01-3B48-AC45-EABE15DAF596> /Applications/Adobe InDesign CC/*/Knowledge Base
           0x10dae7000 -        0x10db3aff7 +com.adobe.InDesign.Layers Panel (9.0.0.244 - 0) <4BD4C9F5-7EF5-387C-AC72-40014E19D7F5> /Applications/Adobe InDesign CC/*/Layers Panel
           0x10db5c000 -        0x10db7bfff +com.adobe.InDesign.Layout Adjustment (9.0.0.244 - 0) <D4DAC346-AE89-3BBE-BF0C-E449E34B4121> /Applications/Adobe InDesign CC/*/Layout Adjustment
           0x10db8a000 -        0x10dbd6ff7 +com.adobe.InDesign.Links UI (9.0.0.244 - 0) <D2BA3E6B-66B8-36BB-B28F-FB41EAC0C74D> /Applications/Adobe InDesign CC/*/Links UI
           0x10dbf8000 -        0x10dc9dff7 +com.adobe.InDesign.ObjectStylesUI (9.0.0.244 - 0) <8805D797-3D6A-3231-9E5A-3954B2BC30FD> /Applications/Adobe InDesign CC/*/ObjectStylesUI
           0x10dccd000 -        0x10dcf3fff +com.adobe.InDesign.Page Setup Dialog (9.0.0.244 - 0) <4F0302C1-D70D-3B22-AFD6-EA32AE0D393A> /Applications/Adobe InDesign CC/*/Page Setup Dialog
           0x10dd00000 -        0x10ddc4fff +com.adobe.InDesign.Pages Panel (9.0.0.244 - 0) <DE2D5A98-5F85-3311-B09E-9391CE0AFA73> /Applications/Adobe InDesign CC/*/Pages Panel
           0x10ddf5000 -        0x10de04fff +com.adobe.InDesign.Sections UI (9.0.0.244 - 0) <B7BE35B6-9BA8-33B7-88E1-9CD7E49745C3> /Applications/Adobe InDesign CC/*/Sections UI
           0x10de0f000 -        0x10de19fff +com.adobe.InDesign.StepRepeat (9.0.0.244 - 0) <28502BE1-9A2D-338D-AC27-5CFFC9FC4DD8> /Applications/Adobe InDesign CC/*/StepRepeat
           0x10de25000 -        0x10de64ff7 +com.adobe.InDesign.Text Wrap Panel (9.0.0.244 - 0) <3197CB4D-952F-3BF9-A91C-F1490A2BA0A2> /Applications/Adobe InDesign CC/*/Text Wrap Panel
           0x10de7d000 -        0x10debffff +com.adobe.InDesign.TOC UI Dialog (9.0.0.244 - 0) <B330AAE5-4ECF-3687-B25B-A7E1087287EB> /Applications/Adobe InDesign CC/*/TOC UI Dialog
           0x10ded9000 -        0x10df15ff7 +com.adobe.InDesign.Transform Panel (9.0.0.244 - 0) <916C8883-536E-3E8C-B321-DB90DDC4C072> /Applications/Adobe InDesign CC/*/Transform Panel
           0x10df2b000 -        0x10df46fff +com.adobe.InDesign.Image Import UI (9.0.0.244 - 0) <314ED635-384F-3699-8494-A9713519B2E0> /Applications/Adobe InDesign CC/*/Image Import UI
           0x10df58000 -        0x10df6efff +com.adobe.InDesign.Scotch Rules (9.0.0.244 - 0) <67B1F4A9-CAF9-34E0-9C2F-70B47C09A2FB> /Applications/Adobe InDesign CC/*/Scotch Rules
           0x10df79000 -        0x10dfddff7 +com.adobe.InDesign.BNUI (9.0.0.244 - 0) <5B87D18C-2A25-3037-B3CD-1EAA8B094D96> /Applications/Adobe InDesign CC/*/BNUI
           0x10dffd000 -        0x10e09eff7 +com.adobe.InDesign.DataMerge (9.0.0.244 - 0) <E3EACAC8-853B-31BF-B69F-53A440363465> /Applications/Adobe InDesign CC/*/DataMerge
           0x10e0be000 -        0x10e0f2fff +com.adobe.InDesign.DataMergeUI (9.0.0.244 - 0) <CA9B9CCF-B643-3142-A15D-615DFA863E40> /Applications/Adobe InDesign CC/*/DataMergeUI
           0x10e10d000 -        0x10e11bff7 +com.adobe.InDesign.Scripts Panel (9.0.0.244 - 0) <A807C3AB-930E-3A5D-9228-77CE07DAC921> /Applications/Adobe InDesign CC/*/Scripts Panel
           0x10e12a000 -        0x10e15cfff +com.adobe.InDesign.Conditional Text UI (9.0.0.244 - 0) <C5EB0EA6-A522-37B8-AD88-5100F0460946> /Applications/Adobe InDesign CC/*/Conditional Text UI
           0x10e177000 -        0x10e181fff +com.adobe.InDesign.Justification Panel (9.0.0.244 - 0) <1E88B355-C440-3D79-B042-BC0B20008701> /Applications/Adobe InDesign CC/*/Justification Panel
           0x111cbc000 -        0x111d47fff  com.apple.applescript (2.2.4 - 2.2.4) <306F7B52-2C41-338A-ACFA-2FBDD1B7FA11> /System/Library/PrivateFrameworks/AppleScript.framework/Versions/A/AppleScript
           0x114228000 -        0x114330fff +com.adobe.InDesign.Package and Preflight UI (9.0.0.244 - 0) <DDE8D6F2-3604-3802-B177-5EA59BAEF0FF> /Applications/Adobe InDesign CC/*/Package and Preflight UI
           0x11436f000 -        0x1145d2fff +com.adobe.InDesign.Package and Preflight (9.0.0.244 - 0) <056ABF0A-3875-30B9-8D40-0491E8E75708> /Applications/Adobe InDesign CC/*/Package and Preflight
           0x114618000 -        0x114706fff +com.adobe.InDesign.JBX (9.0.0.244 - 0) <7E93A162-4087-3E56-92BB-558019173520> /Applications/Adobe InDesign CC/*/JBX
           0x114730000 -        0x1148b7ff7 +com.adobe.InDesign.SettingsInCloud (9.0.0.244 - 0) <2E718598-B183-3EB6-88BF-516A57533D99> /Applications/Adobe InDesign CC/*/SettingsInCloud
           0x114945000 -        0x114a2afff +com.adobe.InDesign.Tables UI (9.0.0.244 - 0) <8423E141-41C2-3801-81ED-A63CB05944BA> /Applications/Adobe InDesign CC/*/Tables UI
           0x114a59000 -        0x114afdff7 +com.adobe.InDesign.TableStylesUI (9.0.0.244 - 0) <85361E78-9B46-3C59-B300-BB4438C5E484> /Applications/Adobe InDesign CC/*/TableStylesUI
           0x114b29000 -        0x114bb5ff7 +com.adobe.InDesign.Character Panel (9.0.0.244 - 0) <36A39281-11AF-3906-9704-AD62934A4381> /Applications/Adobe InDesign CC/*/Character Panel
           0x114bf1000 -        0x114c0eff7 +com.adobe.InDesign.Create Outlines (9.0.0.244 - 0) <D0C6613F-44D6-3889-8515-039A91A33FBD> /Applications/Adobe InDesign CC/*/Create Outlines
           0x114c1b000 -        0x114d40ff7 +com.adobe.InDesign.Find and Change Panel (9.0.0.244 - 0) <5E843CB3-3F2C-320E-99F1-EFE36E0BEB66> /Applications/Adobe InDesign CC/*/Find and Change Panel
           0x114d7d000 -        0x114da9ff7 +com.adobe.InDesign.Find Change Format Panel (9.0.0.244 - 0) <06D18AEC-4C5D-3224-81AD-E3B2DA457E3C> /Applications/Adobe InDesign CC/*/Find Change Format Panel
           0x114dbd000 -        0x114de7fff +com.adobe.InDesign.Font Usage Dialog (9.0.0.244 - 0) <AB628101-A591-38EF-8BB2-84A8795C2746> /Applications/Adobe InDesign CC/*/Font Usage Dialog
           0x114df7000 -        0x114ec7fff +com.adobe.InDesign.Glyphs Panel (9.0.0.244 - 0) <C2DCCEFD-568E-338A-8062-C597FCD7DED5> /Applications/Adobe InDesign CC/*/Glyphs Panel
           0x114eeb000 -        0x114ef5fff +com.adobe.InDesign.Hyphenation Panel (9.0.0.244 - 0) <8D94B764-6772-37E0-894F-015DA432C5A3> /Applications/Adobe InDesign CC/*/Hyphenation Panel
           0x114f02000 -        0x114f15ff7 +com.adobe.InDesign.Indents and Tabs (9.0.0.244 - 0) <6BEEEACB-1746-3C07-8FD9-6F9FA8B3F94E> /Applications/Adobe InDesign CC/*/Indents and Tabs
           0x114f24000 -        0x114f2cff7 +com.adobe.InDesign.Keeps Panel (9.0.0.244 - 0) <9098A274-E93C-34AA-96D8-915D9E4F8628> /Applications/Adobe InDesign CC/*/Keeps Panel
           0x114f34000 -        0x114f54ff7 +com.adobe.InDesign.Optical Kerning (9.0.0.244 - 0) <BA5A40EB-931E-37DC-997F-234F354CBD7A> /Applications/Adobe InDesign CC/*/Optical Kerning
           0x114f5f000 -        0x114f93ff7 +com.adobe.InDesign.Paragraph Panel (9.0.0.244 - 0) <F6D20772-BAB5-3C9E-8EE0-23EA381E2508> /Applications/Adobe InDesign CC/*/Paragraph Panel
           0x114fa6000 -        0x114fb8ff7 +com.adobe.InDesign.Paragraph Rules Panel (9.0.0.244 - 0) <C2DFFD8B-8075-361B-B832-F96F2C78C483> /Applications/Adobe InDesign CC/*/Paragraph Rules Panel
           0x114fc2000 -        0x114fd9fff +com.adobe.InDesign.Path Type UI (9.0.0.244 - 0) <E18681DE-0DA3-35D2-AB20-A5B13FAF495E> /Applications/Adobe InDesign CC/*/Path Type UI
           0x114fe9000 -        0x114ff3ff7 +PathTypeLib.dylib (1) <1EAC22A3-1B0A-3025-BBC1-7064D4CFB153> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/PathTypeLib.dylib
           0x114ffc000 -        0x115029fff +com.adobe.InDesign.RunIn Styles Panel (9.0.0.244 - 0) <E822416C-FDB8-3AEC-8D24-115C766259F5> /Applications/Adobe InDesign CC/*/RunIn Styles Panel
           0x11503b000 -        0x11504cfff +com.adobe.InDesign.SING (9.0.0.244 - 0) <D1B2138D-3CB7-3A41-9BA0-E05D15D9656F> /Applications/Adobe InDesign CC/*/SING
           0x115056000 -        0x115060ff7 +com.adobe.InDesign.Span Columns Panel (9.0.0.244 - 0) <1125B9B0-0A27-310E-B80A-30DD311BA363> /Applications/Adobe InDesign CC/*/Span Columns Panel
           0x115069000 -        0x1150b5ff7 +com.adobe.InDesign.Spelling Panel (9.0.0.244 - 0) <5003DC67-9AE6-3261-8577-D91DA1DF1455> /Applications/Adobe InDesign CC/*/Spelling Panel
           0x1150cf000 -        0x1150e3ff7 +com.adobe.InDesign.Story Panel (9.0.0.244 - 0) <B52F7C54-8E7A-3853-98CC-B3EF7EA96942> /Applications/Adobe InDesign CC/*/Story Panel
           0x1150f2000 -        0x11516dff7 +com.adobe.InDesign.Style Panel (9.0.0.244 - 0) <5D67389F-C634-36C3-8564-C5B2AEA159A1> /Applications/Adobe InDesign CC/*/Style Panel
           0x115195000 -        0x1151a2ff7 +com.adobe.InDesign.Text Color Panel (9.0.0.244 - 0) <D62B34BB-30BA-3165-9CB3-82FF2057CF3F> /Applications/Adobe InDesign CC/*/Text Color Panel
           0x1151ab000 -        0x1151d7ff7 +com.adobe.InDesign.Text Frame Options (9.0.0.244 - 0) <85EAFB07-5AE8-34EC-84B8-7D77BFD4F701> /Applications/Adobe InDesign CC/*/Text Frame Options
           0x1151e8000 -        0x11524dfff +com.adobe.InDesign.Text Panel (9.0.0.244 - 0) <D85A6FE1-E185-3B5B-A5FE-6512189E9AC5> /Applications/Adobe InDesign CC/*/Text Panel
           0x115270000 -        0x115292fff +com.adobe.InDesign.Text Preferences (9.0.0.244 - 0) <BE239C6C-7F13-3063-90D6-A79EC186FB7B> /Applications/Adobe InDesign CC/*/Text Preferences
           0x1152a2000 -        0x1152c5ff7 +com.adobe.InDesign.Text Ruler (9.0.0.244 - 0) <10D862DA-F8A2-3D6F-A2E6-F2A40C2D87CC> /Applications/Adobe InDesign CC/*/Text Ruler
           0x1152d6000 -        0x1152fbff7 +com.adobe.InDesign.Text Style Panel (9.0.0.244 - 0) <D4CC3047-F140-3B8A-B4C9-43C251DFCDBA> /Applications/Adobe InDesign CC/*/Text Style Panel
           0x11530c000 -        0x115338fff +com.adobe.InDesign.Article Panel (9.0.0.244 - 0) <B27AF2DC-262C-3CBF-9B05-63BD5D1D308F> /Applications/Adobe InDesign CC/*/Article Panel
           0x115351000 -        0x115380ff7 +com.adobe.InDesign.CSXS (9.0.0.244 - 0) <1625F389-67BC-36F1-A7E9-2A2A7FA89383> /Applications/Adobe InDesign CC/*/CSXS
           0x115398000 -        0x1153d0ff7 +com.adobe.InDesign.Galley Preferences (9.0.0.244 - 0) <E13290AE-89E4-3E2C-BDF7-5AB4DC750BE2> /Applications/Adobe InDesign CC/*/Galley Preferences
           0x1153eb000 -        0x11540cfff +com.adobe.InDesign.GapTool (9.0.0.244 - 0) <661756AC-1112-3BF2-BBD5-51D66F6D6AC3> /Applications/Adobe InDesign CC/*/GapTool
           0x11541c000 -        0x115427ff7 +com.adobe.InDesign.General Preferences Panel (9.0.0.244 - 0) <1F1B6C89-1BA6-3F8D-AA55-DB2C7AF93939> /Applications/Adobe InDesign CC/*/General Preferences Panel
           0x115432000 -        0x115445ff7 +com.adobe.ahclientframework (1.8.0.31 - 1.8.0.31) <58BB943C-98EC-3812-AAAB-74F66630D1D4> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/ahclient.framework/Versions/A/ahclient
           0x11544c000 -        0x115468ff7 +com.adobe.InDesign.Performance UI (9.0.0.244 - 0) <C0BD9765-3830-3325-8BC7-9C70845D2FD0> /Applications/Adobe InDesign CC/*/Performance UI
           0x11547d000 -        0x1154a1ff7 +com.adobe.InDesign.SharedContentUI (9.0.0.244 - 0) <2595422B-527B-390D-B8AD-9264098D58B0> /Applications/Adobe InDesign CC/*/SharedContentUI
           0x1154b0000 -        0x1154d6fff +com.adobe.InDesign.Shortcut Editor Dialog (9.0.0.244 - 0) <8C33E2E0-CCCE-3AEE-8214-E07EAE8A3B9A> /Applications/Adobe InDesign CC/*/Shortcut Editor Dialog
           0x1154ea000 -        0x11550aff7 +com.adobe.InDesign.Tool Box (9.0.0.244 - 0) <E89BE6EB-68B1-3907-A6FA-0C370F452627> /Applications/Adobe InDesign CC/*/Tool Box
           0x11552d000 -        0x115535fff +com.adobe.InDesign.Tool Tips (9.0.0.244 - 0) <CEF9DB9B-99DD-3BAD-8965-4D82B846F41F> /Applications/Adobe InDesign CC/*/Tool Tips
           0x11553e000 -        0x115546fff +com.adobe.InDesign.Track Changes Preferences (9.0.0.244 - 0) <C895C8AA-0614-3466-9393-11446F2AE784> /Applications/Adobe InDesign CC/*/Track Changes Preferences
           0x11554f000 -        0x115566ff7 +com.adobe.InDesign.Track Changes UI (9.0.0.244 - 0) <FC485BB7-24DB-3C8B-BE80-CBA5370F9F38> /Applications/Adobe InDesign CC/*/Track Changes UI
           0x115571000 -        0x11557dff7 +com.adobe.InDesign.PerformanceMetrics (9.0.0.244 - 0) <04D13F6E-D21D-3AA4-A48B-1E52BDB7890F> /Applications/Adobe InDesign CC/*/PerformanceMetrics
           0x115588000 -        0x115597ff7 +com.adobe.InDesign.Metadata UI (9.0.0.244 - 0) <02101AD9-C74D-3359-8B8E-90A679EC443C> /Applications/Adobe InDesign CC/*/Metadata UI
           0x1155a1000 -        0x115612fe7 +com.adobe.FileInfo.framework (Adobe XMP FileInfo 5 . 3 . 0 . 0 -i 3 - 79.151561) <380981FE-6528-37CC-9159-AB1892803BD4> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
           0x115625000 -        0x11562ffff +com.adobe.InDesign.Workgroup UI (9.0.0.244 - 0) <9A831E35-2B98-3398-8DC2-65DD8BBCC639> /Applications/Adobe InDesign CC/*/Workgroup UI
           0x115638000 -        0x115689ff7 +com.adobe.InDesign.Snippet (9.0.0.244 - 0) <128F1E0E-D497-365A-B94C-0A3FB10DD7DE> /Applications/Adobe InDesign CC/*/Snippet
           0x1156a2000 -        0x1157d1ff7 +com.adobe.InDesign.XMedia UI (9.0.0.244 - 0) <E89A698D-5F1E-3651-B99F-967469A53CF8> /Applications/Adobe InDesign CC/*/XMedia UI
           0x11581b000 -        0x11587dff7 +com.adobe.InDesign.Actions (9.0.0.244 - 0) <C2CE3416-7DA3-3FFB-B955-694E55C023A3> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Actions.InDesignPlugin/Actions
           0x115898000 -        0x115a5cfff +com.adobe.InDesign.

    Hi Exceldpstudiocc5,
    Please check the permission on preferences folders and follow the below link. It should help.
    http://helpx.adobe.com/indesign/kb/indesign-crashes-upon-launch-attempting.html
    Regards,
    Ashish

  • Trying to open Indesign and it keeps crashing... help!

    Process:         Adobe InDesign CC [333]
    Path:            /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Adobe InDesign CC
    Identifier:      com.adobe.InDesign
    Version:         9.2.1.101 (9210)
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [158]
    Responsible:     Adobe InDesign CC [333]
    User ID:         501
    Date/Time:       2014-05-12 17:35:26.355 -0400
    OS Version:      Mac OS X 10.9.2 (13C1021)
    Report Version:  11
    Anonymous UUID:  13E6E154-1C27-CD1D-CEF7-A9A240F509C6
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Dyld Error Message:
      Symbol not found: _AMTRetrievePersonGUIDWithAuthSource
      Referenced from: /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/PublicLib.dylib
      Expected in: /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/../Frameworks/amtlib.framework/Versions/A/amtlib
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   dyld                           0x00007fff661d509d dyld_fatal_error + 1
    1   dyld                           0x00007fff661d7df6 dyld::fastBindLazySymbol(ImageLoader**, unsigned long) + 171
    2   libdyld.dylib                 0x00007fff94f352dd dyld_stub_binder_ + 13
    3   ???                           0x0000000101537008 0 + 4317212680
    4   PublicLib.dylib               0x00000001013c36ae IDIMSConnection::GetUserInfoAndFetchToken() + 446
    5   PublicLib.dylib               0x00000001013c304a IDIMSConnection::IDIMSConnection(ServiceType const&) + 11690
    6   com.adobe.InDesign.SettingsInCloud 0x000000010e005656 0x10dfff000 + 26198
    7   com.adobe.InDesign.SettingsInCloud 0x000000010e00189a 0x10dfff000 + 10394
    8   ObjectModelLib.dylib           0x0000000104b09ca8 0x104b02000 + 31912
    9   ObjectModelLib.dylib           0x0000000104b03da4 0x104b02000 + 7588
    10  ObjectModelLib.dylib           0x0000000104b35469 0x104b02000 + 210025
    11  ObjectModelLib.dylib           0x0000000104b20ea4 0x104b02000 + 126628
    12  com.adobe.InDesign.SettingsInCloud 0x000000010e0064e6 0x10dfff000 + 29926
    13  com.adobe.InDesign.AppFramework 0x000000010f1de9bb 0x10f19d000 + 268731
    14  ObjectModelLib.dylib           0x0000000104b21cd3 0x104b02000 + 130259
    15  ObjectModelLib.dylib           0x0000000104b3506c 0x104b02000 + 209004
    16  ObjectModelLib.dylib           0x0000000104b303fc ShuksanInit(IStartupScreen* (*)(), IPlugIn*) + 7676
    17  com.adobe.InDesign             0x0000000100001c7e main + 94
    18  com.adobe.InDesign             0x0000000100001bb4 start + 52
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib         0x00007fff90d26662 kevent64 + 10
    1   libdispatch.dylib             0x00007fff9293a43d _dispatch_mgr_invoke + 239
    2   libdispatch.dylib             0x00007fff9293a152 _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib         0x00007fff90d25e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff93087f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x00007fff9308afb9 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib         0x00007fff90d25e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff93087f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x00007fff9308afb9 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib         0x00007fff90d25716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff93088c77 _pthread_cond_wait + 787
    2   com.apple.CoreServices.CarbonCore 0x00007fff8d8fc9e7 TSWaitOnConditionTimedRelative + 148
    3   com.apple.CoreServices.CarbonCore 0x00007fff8d8cd145 MPWaitOnQueue + 192
    4   PMRuntime.dylib               0x0000000101682be1 0x101681000 + 7137
    5   com.apple.CoreServices.CarbonCore 0x00007fff8d8cd6c3 PrivateMPEntryPoint + 58
    6   libsystem_pthread.dylib       0x00007fff93086899 _pthread_body + 138
    7   libsystem_pthread.dylib       0x00007fff9308672a _pthread_start + 137
    8   libsystem_pthread.dylib       0x00007fff9308afc9 thread_start + 13
    Thread 5:
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x00007fff66209db0  rbx: 0x0000000104c40aa0  rcx: 0x0000000000000000  rdx: 0x0000000000000000
      rdi: 0x00007fff66209f20  rsi: 0x0000000000000000  rbp: 0x00007fff5fbfe690  rsp: 0x00007fff5fbfe678
       r8: 0x00007fff661f4b4c   r9: 0x0000000000000000  r10: 0x00007fff661f7ce6  r11: 0x00007fff66209f20
      r12: 0x00000001178f1d10  r13: 0x00000001178f1ab0  r14: 0x00007fff66209f20  r15: 0x00000001178f1800
      rip: 0x00007fff661d509d  rfl: 0x0000000000000246  cr2: 0x0000000106ffd000
    Logical CPU:     2
    Error Code:      0x00000000
    Trap Number:     3
    Binary Images:
           0x100000000 -        0x100005fff +com.adobe.InDesign (9.2.1.101 - 9210) <B7C09BD6-74AF-323E-8D22-D5E1F7965643> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Adobe InDesign CC
           0x10000c000 -        0x10000eff7 +com.adobe.InDesign.InDesignModelAndUI (9.0 - 0) <612870BE-869E-3165-9714-55F900A66BCC> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/InDesignModelAndUI.framework/Versions/A/InDesignModelAndUI
           0x100014000 -        0x10001cfff +com.adobe.coretech.adobesplashkit (AdobeSplashKit Version 1.0 - 1.0) <65BFDA83-4121-3D12-9BBE-9F4FF1DB3D6A> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeSplashKit.framework/Versions/A/AdobeSplashKit
           0x100025000 -        0x10002ffff +ASLSupportLib.dylib (1) <1039F962-C495-36E4-B868-3DA5C43E3EBF> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/ASLSupportLib.dylib
           0x100037000 -        0x10013aff7 +DV_WidgetBinLib.dylib (1) <176E817C-0939-3899-B514-D78ADF3696DC> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/DV_WidgetBinLib.dylib
           0x1001d5000 -        0x10021aff7 +TextPanelLib.dylib (1) <4B30610F-C637-3910-A413-C40325795CAD> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/TextPanelLib.dylib
           0x100237000 -        0x100398fff +WidgetBinLib.dylib (1) <48D53338-0F40-3D6B-AF45-230F68DF659A> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/WidgetBinLib.dylib
           0x10044a000 -        0x100616fff +com.adobe.owl (AdobeOwl version 5.0.24 - 5.0.24) <1C99AA07-E73F-370B-82FA-01C1C4AAF97D> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
           0x100659000 -        0x10089dfff +com.adobe.dvacore.framework (7.0.849324 - 7.0.849324.0) <08EB97C1-03E5-3C1B-B154-C886807BC6F1> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/dvacore.framework/Versions/A/dvacore
           0x100964000 -        0x100df1ff7 +com.adobe.dvaui.framework (7.0.849324 - 7.0.849324.0) <25942AAC-0437-303F-9663-B17113468EBB> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/dvaui.framework/Versions/A/dvaui
           0x101089000 -        0x101089fff +com.adobe.InDesign.InDesignModel (9.0 - 0) <7DCCCD9E-8ECB-330B-84AF-4F090F82BBBA> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/InDesignModel.framework/Versions/A/InDesignModel
           0x10108e000 -        0x10109cfff +com.adobe.boost_threads.framework (7.0.847203 - 7.0.847203.0) <A0AE19A9-2B8E-310A-8AC1-0E2E026E7A40> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/boost_threads.framework/Versions/A/boost_threads
           0x1010b2000 -        0x1010b8ff7 +com.adobe.boost_date_time.framework (7.0.847203 - 7.0.847203.0) <F30F59C3-41C0-3DB1-899A-E2491EA25263> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/boost_date_time.framework/Versions/A/boost_date_time
           0x1010c7000 -        0x101536ff7 +PublicLib.dylib (1) <77945799-2B8C-3960-92A6-F5F200CD6DE7> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/PublicLib.dylib
           0x101681000 -        0x10168bfff +PMRuntime.dylib (1) <0164EA5E-E56E-332F-901A-5E514833C38F> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/PMRuntime.dylib
           0x101694000 -        0x1016abff7 +com.adobe.AFL (AdobeAFL 1.5.0 - 1.5) <1C46F2BE-2E4D-3E25-ACDF-85E2962B92DF> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeAFL.framework/Versions/A/AdobeAFL
           0x1016ba000 -        0x1019cbff7 +com.adobe.CoolType (AdobeCoolType 5.15.00.31977 - 5.15.00.31977) <42323DBD-3A6D-3C41-A2C1-2B944789D8A9> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
           0x101a13000 -        0x101a30fff +com.adobe.BIB (AdobeBIB 1.2.03.31977 - 1.2.03.31977) <A69D3AA0-9248-3B77-991B-89B2B7FE46BB> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
           0x101a38000 -        0x101b7efff +com.adobe.ACE (AdobeACE 2.20.02.31977 - 2.20.02.31977) <3A212837-B075-34C0-96E9-5A4019C9DFEE> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
           0x101b92000 -        0x102163fff +com.adobe.AGM (AdobeAGM 4.30.29.31977 - 4.30.29.31977) <BFFDBF0E-28EF-3720-93BE-293618541D26> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
           0x102200000 -        0x10223dfff +com.adobe.ARE (AdobeARE 1.5.02.31977 - 1.5.02.31977) <73174C59-1DDC-3416-A0AD-4D70930ABA60> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeARE.framework/Versions/A/AdobeARE
           0x102245000 -        0x10226bfff +com.adobe.BIBUtils (AdobeBIBUtils 1.1.01 - 1.1.01) <FA20BCA0-05BF-35ED-95B7-5775B8310D12> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
           0x102273000 -        0x10280cfff +com.adobe.MPS (AdobeMPS 5.8.1.32241 - 5.8.1.32241) <68FA2E74-31EF-33CD-97DC-27B191931F90> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
           0x102889000 -        0x1028a7fff +com.adobe.dvaflashview.framework (7.0.849324 - 7.0.849324.0) <46FFD5B4-2182-3CC3-A258-486E585A5B2D> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/dvaflashview.framework/Versions/A/dvaflashview
           0x1028bf000 -        0x1028c3ff7 +com.adobe.ape.shim (3.4.0.29366 - 3.4.0.29366) <B9447EE8-6F91-9E85-C163-96600BF70764> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/adbeape.framework/Versions/A/adbeape
           0x1028ca000 -        0x10298cfff +com.adobe.exo.framework (7.0.849324 - 7.0.849324.0) <AF41BB10-6BB7-3645-9F60-AE77E54F04F1> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/exo.framework/Versions/A/exo
           0x102a2a000 -        0x102ad8fff +com.adobe.dvaworkspace.framework (7.0.849324 - 7.0.849324.0) <97F274A8-A56B-3F3A-AAA7-66B9FBEFEBF1> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/dvaworkspace.framework/Versions/A/dvaworkspace
           0x102b5b000 -        0x1031fafff +com.adobe.PlugPlugOwl (4.2.0.36 - 4.2.0.36) <D6EC53B4-E257-3698-8EA8-24D4E3D98EBD> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/PlugPlugOwl.framework/Versions/A/PlugPlugOwl
           0x1034ef000 -        0x10351bff7 +libtbb.dylib (0) <64B7013E-D548-3F7B-A2FB-28B7B932275C> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/libtbb.dylib
           0x103536000 -        0x103555fe7 +libtbbmalloc.dylib (0) <6887ED68-67ED-3748-82DA-B39A3EB210BB> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/libtbbmalloc.dylib
           0x10357a000 -        0x1042bffff +com.adobe.ICUData (4.0 - 3.61) <01D90725-4B10-312C-9546-9C0CCCA1B7BB> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/ICUData.framework/Versions/4.0/libicudata.40.0.dylib
           0x1042d3000 -        0x104404ff7 +com.adobe.ICUInternationalization (4.0 - 3.61) <CD4AD967-00CD-3979-8F82-1166E2058FA6> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/ICUInternationalization.framework/Versions/4.0/libicui18n.40.0 .dylib
           0x104458000 -        0x10454eff7 +com.adobe.ICUUnicode (4.0 - 3.61) <2352E6C8-3431-3A99-92B9-382E85A018AC> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/ICUUnicode.framework/Versions/4.0/libicuuc.40.0.dylib
           0x104586000 -        0x1046b4fff +com.winsoft.wrservices (WRServices 7.0.0 - 7.0.0) <0853A41B-A14A-37B7-B27F-457F87865EAD> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
           0x10470f000 -        0x1047f3fe7 +com.adobe.amtlib (amtlib 6.0.0.75 - 6.0.0.75) <07A3E1E1-55C3-BA5B-A0B0-60250809ED61> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
           0x104804000 -        0x104806fff +com.adobe.AdobeCrashReporter (7.0 - 7.1) <B68D0D42-8DEB-3F22-BD17-981AC060E9D7> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashReporter
           0x10480c000 -        0x1048c3ff7 +com.adobe.boost_regex.framework (7.0.847203 - 7.0.847203.0) <F1C659D9-D3E8-3ACE-8368-9161529A6A66> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/boost_regex.framework/Versions/A/boost_regex
           0x10492d000 -        0x10499cff7 +com.adobe.adobe_caps (adobe_caps 7.0.0.21 - 7.0.0.21) <CE3C6356-9EE2-3B88-8261-8612A0743F56> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
           0x1049a7000 -        0x1049b2fff +com.adobe.boost_signals.framework (7.0.847203 - 7.0.847203.0) <E0B3BB47-4294-3D65-8979-29B2D6C5DD2E> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/boost_signals.framework/Versions/A/boost_signals
           0x1049c1000 -        0x1049c5fff +com.adobe.boost_system.framework (7.0.847203 - 7.0.847203.0) <70F73B9F-8416-37BF-9294-086AE475B743> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/boost_system.framework/Versions/A/boost_system
           0x1049cb000 -        0x104a6cfff +com.adobe.ICUConverter (4.0 - 3.61) <46764474-111C-3B13-AF62-002B71877405> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/ICUConverter.framework/Versions/4.0/libicucnv.40.0.dylib
           0x104a8c000 -        0x104aeefff +DataBaseLib.dylib (1) <670C9B64-DD9A-3B32-BDA9-22D6EA26A5EF> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/DataBaseLib.dylib
           0x104b02000 -        0x104b6ffff +ObjectModelLib.dylib (1) <83B9682D-C6AE-3085-A7D0-B097CA1AF98C> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/ObjectModelLib.dylib
           0x104b8c000 -        0x104bb0fff +com.adobe.AXE8SharedExpat (AdobeAXE8SharedExpat 3.8.0.30807 - 3.8.0.30807) <16FF5E16-19E0-3CE1-A68E-27567234429F> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedExpat
           0x109ca9000 -        0x109cacffa  libCGXType.A.dylib (599.21.1) <0F364FEE-105D-329D-B823-082AA45E6AFD> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
           0x10ac87000 -        0x10ac8fff3  libCGCMS.A.dylib (599.21.1) <84C6C6F3-AD75-3120-A86F-8AE1005A0ECE> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS.A.dylib
           0x10ac97000 -        0x10acbfffb  libRIP.A.dylib (599.21.1) <994C1D46-A532-3361-8C20-11778DC12040> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
           0x10b6cd000 -        0x10b6d5fff +com.adobe.InDesign.Data Services UI (9.2.1.101 - 0) <EF01EA1E-61C9-3B9E-A166-0A425537E310> /Applications/Adobe InDesign CC/*/Data Services UI
           0x10b6df000 -        0x10b6e7fff +com.adobe.InDesign.Data Services (9.2.1.101 - 0) <48C1DEF8-D77A-3717-AD51-02E641D9EF8F> /Applications/Adobe InDesign CC/*/Data Services
           0x10b6ed000 -        0x10b6fcff7 +com.adobe.InDesign.DTTransform (9.2.1.101 - 0) <417A914C-BEA9-3AF6-94BC-158C93DCDC56> /Applications/Adobe InDesign CC/*/DTTransform
           0x10b705000 -        0x10b743fff +com.adobe.InDesign.Dictionary Editor Dialog (9.2.1.101 - 0) <EC06E951-7EDF-306A-85E2-B52805F8110C> /Applications/Adobe InDesign CC/*/Dictionary Editor Dialog
           0x10b764000 -        0x10b78afff +com.adobe.InDesign.LILO (9.2.1.101 - 0) <02CAE547-BE94-333C-A38D-F73923098BD2> /Applications/Adobe InDesign CC/*/LILO
           0x10b798000 -        0x10b873fff +com.adobe.linguistic.LinguisticManager (7.0.0 - 19061) <FDBCF369-5EFE-33BB-893A-2136EF8D0D6E> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic
           0x10b88f000 -        0x10b9dbff7 +com.adobe.InDesign.EBookExport (9.2.1.101 - 0) <5D5F7956-1E0A-3311-90E0-0E6FABC5E35A> /Applications/Adobe InDesign CC/*/EBookExport
           0x10ba06000 -        0x10ba63fff +com.adobe.InDesign.Media Import Filter (9.2.1.101 - 0) <E612697E-17AF-3305-B5CF-F7BCA68C4777> /Applications/Adobe InDesign CC/*/Media Import Filter
           0x10ba76000 -        0x10ba7fff7 +com.adobe.InDesign.PNG Import Filter UI (9.2.1.101 - 0) <C566B5E1-9945-3673-A6E0-12FDBE39B7D2> /Applications/Adobe InDesign CC/*/PNG Import Filter UI
           0x10ba8a000 -        0x10bab4ff7 +com.adobe.InDesign.Sangam Preferences UI (9.2.1.101 - 0) <BCFBDD3B-9562-3F7A-AFE7-052DE0E3620E> /Applications/Adobe InDesign CC/*/Sangam Preferences UI
           0x10bac7000 -        0x10bb30fff +com.adobe.AdobeSangam (AdobeSangam 5.65.0.31977 - 5.65.0.31977) <81A4C7F3-E791-3AD1-A44B-CF5BB5B6A545> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeSangam.framework/Versions/A/AdobeSangam
           0x10bb7e000 -        0x10bbd2ff7 +com.adobe.InDesign.SangamExport (9.2.1.101 - 0) <86187ADD-BB1A-37CD-9699-DEC36615F2C0> /Applications/Adobe InDesign CC/*/SangamExport
           0x10bbe9000 -        0x10bd2afff +com.adobe.InDesign.SangamServicer-Mapper (9.2.1.101 - 0) <F2E5BD34-3091-317F-88A8-0B6090F262E0> /Applications/Adobe InDesign CC/*/SangamServicer-Mapper
           0x10bd4e000 -        0x10bd64ff7 +com.adobe.InDesign.SaveBack (9.2.1.101 - 0) <42FE0ACC-F37A-3DAC-8101-490609415A86> /Applications/Adobe InDesign CC/*/SaveBack
           0x10bd72000 -        0x10bd74fff +com.adobe.InDesign.SimpleTextImportFilter (9.2.1.101 - 0) <B409D770-A106-3EFE-9925-DE295432C918> /Applications/Adobe InDesign CC/*/SimpleTextImportFilter
           0x10bd7a000 -        0x10be4dff7 +com.adobe.InDesign.Tagged Text Attributes (9.2.1.101 - 0) <63FB581D-0334-3755-8697-6051DBBA1716> /Applications/Adobe InDesign CC/*/Tagged Text Attributes
           0x10be7c000 -        0x10be88fff +com.adobe.InDesign.Tagged Text Filters UI (9.2.1.101 - 0) <83C996D8-4E24-3511-A666-70DE47F3DE39> /Applications/Adobe InDesign CC/*/Tagged Text Filters UI
           0x10be93000 -        0x10bf38fff +com.adobe.InDesign.Tagged Text Filters (9.2.1.101 - 0) <A33D33F5-232D-3778-BC70-3BA61804DD2B> /Applications/Adobe InDesign CC/*/Tagged Text Filters
           0x10bf4d000 -        0x10bf5afff +com.adobe.InDesign.Clipping Path Dialog (9.2.1.101 - 0) <93D2E8FF-D77F-3DBA-96AF-116B460D22C3> /Applications/Adobe InDesign CC/*/Clipping Path Dialog
           0x10bf6c000 -        0x10bfb0ff7 +com.adobe.InDesign.Color Management UI (9.2.1.101 - 0) <E1F74CF9-8EF7-3EDE-9A4B-D8588C99A23F> /Applications/Adobe InDesign CC/*/Color Management UI
           0x10bfc0000 -        0x10c03cfff +com.adobe.InDesign.Color Picker Panel (9.2.1.101 - 0) <65E3F570-F364-3016-A42A-355B59BEB4DF> /Applications/Adobe InDesign CC/*/Color Picker Panel
           0x10c064000 -        0x10c27bfff +com.adobe.InDesign.Digital Publishing (9.0.10.30 - 0) <A9BF17A4-2B00-3141-9183-98FE732B824E> /Applications/Adobe InDesign CC/*/Digital Publishing
           0x10c3fb000 -        0x10c40dfff +com.adobe.boost_filesystem.framework (7.0.847203 - 7.0.847203.0) <B0F56E9F-BAAB-34C5-93C4-C713203AB0DF> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/boost_filesystem.framework/Versions/A/boost_filesystem
           0x10c41e000 -        0x10c456fef +libcurl.4.dylib (7) <FA1D87DC-8CBC-3645-8ADA-D974B6EDED53> /Applications/Adobe InDesign CC/*/libcurl.4.dylib
           0x10c461000 -        0x10c4e1ff7 +com.adobe.InDesign.DynamicDocumentsUI (9.2.1.101 - 0) <7AE58B59-0747-3910-8FD5-34C4347F9320> /Applications/Adobe InDesign CC/*/DynamicDocumentsUI
           0x10c508000 -        0x10c524fff +com.adobe.InDesign.EPS UI (9.2.1.101 - 0) <EEC807E7-CA80-341C-9EC9-B2A466EEF0D8> /Applications/Adobe InDesign CC/*/EPS UI
           0x10c535000 -        0x10c541ff7 +com.adobe.InDesign.Generic Style Editor (9.2.1.101 - 0) <6DD52448-3D93-3D78-AEE4-BB5B78D2B018> /Applications/Adobe InDesign CC/*/Generic Style Editor
           0x10c550000 -        0x10c586fff +com.adobe.InDesign.Gradient Panel (9.2.1.101 - 0) <A0B7F034-768A-3725-8F03-7302B1014374> /Applications/Adobe InDesign CC/*/Gradient Panel
           0x10c59d000 -        0x10c640fff +com.adobe.InDesign.Graphic Panels (9.2.1.101 - 0) <AC90D2D5-F299-3B08-A9CB-82BC0E557FFC> /Applications/Adobe InDesign CC/*/Graphic Panels
           0x10c66a000 -        0x10c672ff7 +com.adobe.InDesign.JPEG Export UI (9.2.1.101 - 0) <2EAEC64B-5E6D-3E13-80AC-2DED9C3F0A28> /Applications/Adobe InDesign CC/*/JPEG Export UI
           0x10c67b000 -        0x10c696fff +com.adobe.InDesign.JPEG Export (9.2.1.101 - 0) <DB2C27D2-B1A9-37BF-BFB4-484E28CFC2E5> /Applications/Adobe InDesign CC/*/JPEG Export
           0x10c6a8000 -        0x10c6f9fff +com.adobe.InDesign.Output Preview (9.2.1.101 - 0) <1967D234-6D81-314A-8F7D-C85C7A2C2875> /Applications/Adobe InDesign CC/*/Output Preview
           0x10c713000 -        0x10c72aff7 +com.adobe.InDesign.OutputMiscUI (9.2.1.101 - 0) <BACF73C7-0ABA-361D-8F85-840CF055968A> /Applications/Adobe InDesign CC/*/OutputMiscUI
           0x10c73d000 -        0x10c7befff +com.adobe.InDesign.PDF UI (9.2.1.101 - 0) <2ABDFC92-F233-3DD2-9F41-6EA7F34B2E1E> /Applications/Adobe InDesign CC/*/PDF UI
           0x10c7e2000 -        0x10c84fff7 +com.adobe.AdobeXMPCore (Adobe XMP Core 5.5 -c 21 - 79.154911) <E8E31BC1-F7BC-3018-8CF8-AC3C7B2DCEA2> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
           0x10c85b000 -        0x10c872ff7 +com.adobe.InDesign.Printer Styles (9.2.1.101 - 0) <ACDF3B96-030B-3A7A-B552-661D4EF28F6D> /Applications/Adobe InDesign CC/*/Printer Styles
           0x10c881000 -        0x10c963fff +com.adobe.InDesign.PrintUI (9.2.1.101 - 0) <8CF1D4F4-85B0-3B0E-ABB8-DF70DA17609C> /Applications/Adobe InDesign CC/*/PrintUI
           0x10c98f000 -        0x10c9a1ff7 +com.adobe.InDesign.PS Import UI (9.2.1.101 - 0) <6F36235F-8819-3C30-8DCE-2771243875BE> /Applications/Adobe InDesign CC/*/PS Import UI
           0x10c9b0000 -        0x10c9d4ff7 +com.adobe.InDesign.Swatch Library Panel (9.2.1.101 - 0) <5C94F9C0-227E-3D5E-83FE-8D24A39A7286> /Applications/Adobe InDesign CC/*/Swatch Library Panel
           0x10c9e3000 -        0x10caa0ff7 +com.adobe.InDesign.Swatches Panel (9.2.1.101 - 0) <AFC9C047-060B-3F87-BFF4-C500FFC817DF> /Applications/Adobe InDesign CC/*/Swatches Panel
           0x10cad7000 -        0x10cb86ff7 +com.adobe.InDesign.Transparency UI (9.2.1.101 - 0) <3209F3EC-0A3E-3E68-AB9F-04D2F2D76C3D> /Applications/Adobe InDesign CC/*/Transparency UI
           0x10cbb9000 -        0x10cc1dfff +com.adobe.InDesign.Assignment UI (9.2.1.101 - 0) <23FE015C-C541-3EB2-BAAD-25F931528849> /Applications/Adobe InDesign CC/*/Assignment UI
           0x10cc3f000 -        0x10cc62fff +com.adobe.InDesign.InCopy Bridge UI (9.2.1.101 - 0) <7923E03C-96CB-3369-8CEC-1EA4E369DE70> /Applications/Adobe InDesign CC/*/InCopy Bridge UI
           0x10cc70000 -        0x10ccafff7 +com.adobe.InDesign.InCopy Bridge (9.2.1.101 - 0) <F476293E-F020-3CDB-9A0C-660B91A71281> /Applications/Adobe InDesign CC/*/InCopy Bridge
           0x10ccbf000 -        0x10ccc7fff +com.adobe.InDesign.InCopyExport (9.2.1.101 - 0) <9ACE4231-FCB8-3995-BE0E-ED6DBEAA58B7> /Applications/Adobe InDesign CC/*/InCopyExport
           0x10ccd1000 -        0x10ccd8ff7 +com.adobe.InDesign.InCopyExportUI (9.2.1.101 - 0) <F0EB0F82-C96B-3B9D-92C5-66E2DCC416DF> /Applications/Adobe InDesign CC/*/InCopyExportUI
           0x10cce1000 -        0x10cce8fff +com.adobe.InDesign.InCopyImport (9.2.1.101 - 0) <6C4D93D1-26B1-3A78-AEC4-08BE97A6F15A> /Applications/Adobe InDesign CC/*/InCopyImport
           0x10ccef000 -        0x10ccf7fff +com.adobe.InDesign.InCopyWorkflow UI (9.2.1.101 - 0) <F7524889-E7AC-3177-AFF7-B487FD6BF7D6> /Applications/Adobe InDesign CC/*/InCopyWorkflow UI
           0x10cd02000 -        0x10cd59ff7 +com.adobe.InDesign.Note (9.2.1.101 - 0) <07808666-F165-34C1-9E46-D4403EC7C6A6> /Applications/Adobe InDesign CC/*/Note
           0x10cd79000 -        0x10cd84ff7 +com.adobe.InDesign.NotePref (9.2.1.101 - 0) <D1FA4217-A5A8-31D2-9178-D94F2F048790> /Applications/Adobe InDesign CC/*/NotePref
           0x10cd92000 -        0x10cd97ff7 +com.adobe.InDesign.Username UI (9.2.1.101 - 0) <D3009947-D338-3EAB-9690-722AB9C10FB3> /Applications/Adobe InDesign CC/*/Username UI
           0x10cda1000 -        0x10ce43fff +com.adobe.InDesign.ButtonUI (9.2.1.101 - 0) <A6BBF878-D711-3510-B607-EC1B52687BFC> /Applications/Adobe InDesign CC/*/ButtonUI
           0x10ce73000 -        0x10ce9bff7 +com.adobe.InDesign.MediaUI (9.2.1.101 - 0) <3EF85F9E-52B3-3385-861C-116A4758E02D> /Applications/Adobe InDesign CC/*/MediaUI
           0x10ceb0000 -        0x10cec0fff +com.adobe.InDesign.Alignment Panel (9.2.1.101 - 0) <54940D94-3BB6-38D7-B45B-14906B94A6C3> /Applications/Adobe InDesign CC/*/Alignment Panel
           0x10cec9000 -        0x10cf10fff +com.adobe.InDesign.Asset Library Panel (9.2.1.101 - 0) <94FC082E-93DF-34B8-B9AF-56F7A5A98B9E> /Applications/Adobe InDesign CC/*/Asset Library Panel
           0x10cf34000 -        0x10cfa1fff +com.adobe.InDesign.Asset PubLibrary (9.2.1.101 - 0) <37F17FFD-7BAA-3F5F-87D3-647C49A127ED> /Applications/Adobe InDesign CC/*/Asset PubLibrary
           0x10cfbf000 -        0x10d00dff7 +com.adobe.InDesign.Book Panel (9.2.1.101 - 0) <AA1C2413-72AA-3407-8A68-203B8FB4FEA2> /Applications/Adobe InDesign CC/*/Book Panel
           0x10d031000 -        0x10d04dfff +com.adobe.InDesign.Bookmark Panel (9.2.1.101 - 0) <BDC06E7C-049F-323E-B333-1FED1E499E37> /Applications/Adobe InDesign CC/*/Bookmark Panel
           0x10d064000 -        0x10d09dfff +com.adobe.InDesign.ContentDropper Tool (9.2.1.101 - 0) <E8550DE9-50AD-303F-9009-8E584DBADF9E> /Applications/Adobe InDesign CC/*/ContentDropper Tool
           0x10d0bc000 -        0x10d102ff7 +com.adobe.InDesign.Control Panel (9.2.1.101 - 0) <15528F16-3629-3E3B-90A8-E5CBD8E31B45> /Applications/Adobe InDesign CC/*/Control Panel
           0x10d11f000 -        0x10d129fff +com.adobe.InDesign.Create Guides Dialog (9.2.1.101 - 0) <59B37FF3-166C-3BA0-88F9-B48121D455FA> /Applications/Adobe InDesign CC/*/Create Guides Dialog
           0x10d134000 -        0x10d16efff +com.adobe.InDesign.Eyedropper Tool (9.2.1.101 - 0) <6EB8BC12-7868-3B4C-BAD1-851801E0A42E> /Applications/Adobe InDesign CC/*/Eyedropper Tool
           0x10d183000 -        0x10d246ff7 +com.adobe.InDesign.Hyperlinks Panel (9.2.1.101 - 0) <2ADAC3DA-225A-3CC2-B29F-11ABF86D3FCF> /Applications/Adobe InDesign CC/*/Hyperlinks Panel
           0x10d276000 -        0x10d306fff +com.adobe.InDesign.Index Panel (9.2.1.101 - 0) <3B1558CE-A272-35B4-A8A3-FFD880B3630B> /Applications/Adobe InDesign CC/*/Index Panel
           0x10d326000 -        0x10d332ff7  com.apple.carbonframeworktemplate (1.0 - 1.0) <E859A35E-8EC1-3CA9-9758-95EC69D4EC5D> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/unihan.framework/Versions/A/unihan
           0x10d33d000 -        0x10d3a6fff +com.adobe.InDesign.Info Panel (9.2.1.101 - 0) <F0AABE7E-6D25-3BD9-A8EC-A1CE5B1C3373> /Applications/Adobe InDesign CC/*/Info Panel
           0x10d3be000 -        0x10d482fff +com.adobe.InDesign.Knowledge Base (9.2.1.101 - 0) <E650B6BD-690B-37A0-9371-970563634B38> /Applications/Adobe InDesign CC/*/Knowledge Base
           0x10d48c000 -        0x10d4dfff7 +com.adobe.InDesign.Layers Panel (9.2.1.101 - 0) <32A9F245-ABAE-302A-B17C-B3EF2A5E4A9D> /Applications/Adobe InDesign CC/*/Layers Panel
           0x10d501000 -        0x10d506fff +com.adobe.InDesign.Layout Adjustment Panel (9.2.1.101 - 0) <098313B3-96FB-3AF9-BC24-2F3CA93AFB4C> /Applications/Adobe InDesign CC/*/Layout Adjustment Panel
           0x10d50f000 -        0x10d52ffff +com.adobe.InDesign.Layout Adjustment (9.2.1.101 - 0) <08AB16C3-C9CB-3486-A339-2A35E63E0565> /Applications/Adobe InDesign CC/*/Layout Adjustment
           0x10d53e000 -        0x10d58aff7 +com.adobe.InDesign.Links UI (9.2.1.101 - 0) <5D426E96-ADC2-38BE-A84E-840FFFF0EB1D> /Applications/Adobe InDesign CC/*/Links UI
           0x10d5ac000 -        0x10d651ff7 +com.adobe.InDesign.ObjectStylesUI (9.2.1.101 - 0) <0D9FA355-F322-31B5-BC77-2020503C5260> /Applications/Adobe InDesign CC/*/ObjectStylesUI
           0x10d681000 -        0x10d6a7fff +com.adobe.InDesign.Page Setup Dialog (9.2.1.101 - 0) <36758243-E6DC-3E0F-A79E-AADCD5A416A8> /Applications/Adobe InDesign CC/*/Page Setup Dialog
           0x10d6b4000 -        0x10d778fff +com.adobe.InDesign.Pages Panel (9.2.1.101 - 0) <67B36CC5-4EED-30FA-9507-62B45AFDBFB5> /Applications/Adobe InDesign CC/*/Pages Panel
           0x10d7a9000 -        0x10d7b8fff +com.adobe.InDesign.Sections UI (9.2.1.101 - 0) <3FD8D737-8DA8-3707-9031-FB97E05D9FB9> /Applications/Adobe InDesign CC/*/Sections UI
           0x10d7c3000 -        0x10d7cdfff +com.adobe.InDesign.StepRepeat (9.2.1.101 - 0) <0F3A3EC5-6BF6-3D92-B2A9-A8D571E51B54> /Applications/Adobe InDesign CC/*/StepRepeat
           0x10d7d9000 -        0x10d818ff7 +com.adobe.InDesign.Text Wrap Panel (9.2.1.101 - 0) <0767C906-FE80-30D5-89E1-78D3F7AC8A5A> /Applications/Adobe InDesign CC/*/Text Wrap Panel
           0x10d831000 -        0x10d872fff +com.adobe.InDesign.TOC UI Dialog (9.2.1.101 - 0) <9DC626E3-B44C-327D-A605-3486F290893A> /Applications/Adobe InDesign CC/*/TOC UI Dialog
           0x10d88c000 -        0x10d8c8fff +com.adobe.InDesign.Transform Panel (9.2.1.101 - 0) <78B039EC-7BD7-3D4E-8C85-DE128B6C1F4B> /Applications/Adobe InDesign CC/*/Transform Panel
           0x10d8de000 -        0x10d8f9fff +com.adobe.InDesign.Image Import UI (9.2.1.101 - 0) <BBC09119-A690-340C-93A7-E27B238004B6> /Applications/Adobe InDesign CC/*/Image Import UI
           0x10d90b000 -        0x10d921fff +com.adobe.InDesign.Scotch Rules (9.2.1.101 - 0) <7BB10CB0-31B7-3B31-B2A5-97B8792273C3> /Applications/Adobe InDesign CC/*/Scotch Rules
           0x10d92c000 -        0x10d990ff7 +com.adobe.InDesign.BNUI (9.2.1.101 - 0) <A687AB81-E289-3AFD-BDC5-3350B0C1122D> /Applications/Adobe InDesign CC/*/BNUI
           0x10d9b0000 -        0x10da51ff7 +com.adobe.InDesign.DataMerge (9.2.1.101 - 0) <0DFAE7C2-0731-3D82-AA8C-1AE6E109DF99> /Applications/Adobe InDesign CC/*/DataMerge
           0x10da71000 -        0x10daa5fff +com.adobe.InDesign.DataMergeUI (9.2.1.101 - 0) <898AA1EF-681C-346F-B141-6DB164AD3FE5> /Applications/Adobe InDesign CC/*/DataMergeUI
           0x10dac0000 -        0x10dbcdff7 +com.adobe.InDesign.Package and Preflight UI (9.2.1.101 - 0) <A11E8FC7-DF9C-3B40-BEB4-B555BE2A2A3C> /Applications/Adobe InDesign CC/*/Package and Preflight UI
           0x10dc0e000 -        0x10de72fff +com.adobe.InDesign.Package and Preflight (9.2.1.101 - 0) <6590908A-0A78-32F4-A455-ABBEC9D97B5E> /Applications/Adobe InDesign CC/*/Package and Preflight
           0x10deb8000 -        0x10dfa6ff7 +com.adobe.InDesign.JBX (9.2.1.101 - 0) <4CF2340B-0AF2-3FA1-ABB9-C2808C3A8AA8> /Applications/Adobe InDesign CC/*/JBX
           0x10dfd0000 -        0x10dfd6fff +com.adobe.InDesign.Script Label Panel (9.2.1.101 - 0) <CF90BDAA-5B8E-33EB-B580-972C71104678> /Applications/Adobe InDesign CC/*/Script Label Panel
           0x10dfe2000 -        0x10dff0ff7 +com.adobe.InDesign.Scripts Panel (9.2.1.101 - 0) <C96405B4-3F30-3174-9F2A-4C874721EF27> /Applications/Adobe InDesign CC/*/Scripts Panel
           0x10dfff000 -        0x10e185ff7 +com.adobe.InDesign.SettingsInCloud (9.2.1.101 - 0) <EC5B37FA-9195-3243-9D62-C6A5FB8E394A> /Applications/Adobe InDesign CC/*/SettingsInCloud
           0x10e1a8000 -        0x10e28cfff +com.adobe.InDesign.Tables UI (9.2.1.101 - 0) <EB6A86BF-BECA-374D-9AE3-B29A6566EB44> /Applications/Adobe InDesign CC/*/Tables UI
           0x10e2bb000 -        0x10e35fff7 +com.adobe.InDesign.TableStylesUI (9.2.1.101 - 0) <956E57B9-06EB-3501-A290-B0D891C623C3> /Applications/Adobe InDesign CC/*/TableStylesUI
           0x10e38b000 -        0x10e422ff7 +com.adobe.InDesign.Character Panel (9.2.1.101 - 0) <13A2F730-248F-35BC-BB7E-4768DB93439D> /Applications/Adobe InDesign CC/*/Character Panel
           0x10e462000 -        0x10e494fff +com.adobe.InDesign.Conditional Text UI (9.2.1.101 - 0) <E1DD33FA-169E-3173-8E4F-E60BBFCC55D2> /Applications/Adobe InDesign CC/*/Conditional Text UI
           0x10e4af000 -        0x10e4ccff7 +com.adobe.InDesign.Create Outlines (9.2.1.101 - 0) <67E01895-4459-3227-97EE-05C08FAF12A7> /Applications/Adobe InDesign CC/*/Create Outlines
           0x10e4d9000 -        0x10e5feff7 +com.adobe.InDesign.Find and Change Panel (9.2.1.101 - 0) <9B25A6FC-D818-3715-9CAD-D1C7FDC71680> /Applications/Adobe InDesign CC/*/Find and Change Panel
           0x10e63b000 -        0x10e667ff7 +com.adobe.InDesign.Find Change Format Panel (9.2.1.101 - 0) <59B463B6-6D3B-3D25-B353-4A99C6301B2A> /Applications/Adobe InDesign CC/*/Find Change Format Panel
           0x10e67b000 -        0x10e6bbff7 +com.adobe.InDesign.Font Usage Dialog (9.2.1.101 - 0) <8CD7FADB-42BB-3C5D-8D01-D66041C451BB> /Applications/Adobe InDesign CC/*/Font Usage Dialog
           0x10e6d3000 -        0x10e7a3fff +com.adobe.InDesign.Glyphs Panel (9.2.1.101 - 0) <0C352A11-C0DE-33D4-ACD6-1A436B87D956> /Applications/Adobe InDesign CC/*/Glyphs Panel
           0x10e7c7000 -        0x10e7d1fff +com.adobe.InDesign.Hyphenation Panel (9.2.1.101 - 0) <CE3045F4-F009-33E4-904D-557A76A05216> /Applications/Adobe InDesign CC/*/Hyphenation Panel
           0x10e7de000 -        0x10e7f2fff +com.adobe.InDesign.Indents and Tabs (9.2.1.101 - 0) <43823223-7B60-3171-AACB-A8CD50C966CC> /Applications/Adobe InDesign CC/*/Indents and Tabs
           0x10e801000 -        0x10e80bfff +com.adobe.InDesign.Justification Panel (9.2.1.101 - 0) <4F940073-AAF8-3FDF-87FA-04A8DC87679D> /Applications/Adobe InDesign CC/*/Justification Panel
           0x10e816000 -        0x10e81eff7 +com.adobe.InDesign.Keeps Panel (9.2.1.101 - 0) <B93BD9B2-6C80-39E6-8A20-C37883A904E4> /Applications/Adobe InDesign CC/*/Keeps Panel
           0x10e826000 -        0x10e846fff +com.adobe.InDesign.Optical Kerning (9.2.1.101 - 0) <4E574590-FE5E-3CD1-91FE-A812919DDFAF> /Applications/Adobe InDesign CC/*/Optical Kerning
           0x10e851000 -        0x10e885ff7 +com.adobe.InDesign.Paragraph Panel (9.2.1.101 - 0) <AF14E0F9-4234-355B-816F-A19A7BCE8676> /Applications/Adobe InDesign CC/*/Paragraph Panel
           0x10e898000 -        0x10e8aaff7 +com.adobe.InDesign.Paragraph Rules Panel (9.2.1.101 - 0) <505B0CE0-4873-3DA9-97BC-1CE80B8A81E4> /Applications/Adobe InDesign CC/*/Paragraph Rules Panel
           0x10e8b4000 -        0x10e8cbfff +com.adobe.InDesign.Path Type UI (9.2.1.101 - 0) <5FBB48B2-8E60-3BFA-82EA-A52467B9831A> /Applications/Adobe InDesign CC/*/Path Type UI
           0x10e8db000 -        0x10e8e5ff7 +PathTypeLib.dylib (1) <A6E44FB4-61D6-3729-B3DD-A4D22EEC73B3> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/PathTypeLib.dylib
           0x10e8ee000 -        0x10e91bfff +com.adobe.InDesign.RunIn Styles Panel (9.2.1.101 - 0) <EE33D598-7F48-3DCE-A596-B619BE63F8EE> /Applications/Adobe InDesign CC/*/RunIn Styles Panel
           0x10e92d000 -        0x10e93eff7 +com.adobe.InDesign.SING (9.2.1.101 - 0) <3CC6846B-D663-31F2-BAB9-03BCAD89606E> /Applications/Adobe InDesign CC/*/SING
           0x10e948000 -        0x10e952ff7 +com.adobe.InDesign.Span Columns Panel (9.2.1.101 - 0) <15F063E0-7874-30AE-841C-C10A12CF8B5E> /Applications/Adobe InDesign CC/*/Span Columns Panel
           0x10e95b000 -        0x10e9a7ff7 +com.adobe.InDesign.Spelling Panel (9.2.1.101 - 0) <B208BBCC-1AAB-354C-9CA6-44C6B5D35946> /Applications/Adobe InDesign CC/*/Spelling Panel
           0x10e9c1000 -        0x10e9d5ff7 +com.adobe.InDesign.Story Panel (9.2.1.101 - 0) <989D8312-C513-36B9-9A2A-A161EC806905> /Applications/Adobe InDesign CC/*/Story Panel
           0x10e9e4000 -        0x10ea5fff7 +com.adobe.InDesign.Style Panel (9.2.1.101 - 0) <9282C33B-17C7-3AE0-94D0-7F53831FA588> /Applications/Adobe InDesign CC/*/Style Panel
           0x10ea88000 -        0x10ea95ff7 +com.adobe.InDesign.Text Color Panel (9.2.1.101 - 0) <B9722BDD-B3B2-3B6B-90EC-D7B52D54C678> /Applications/Adobe InDesign CC/*/Text Color Panel
           0x10ea9e000 -        0x10eacaff7 +com.adobe.InDesign.Text Frame Options (9.2.1.101 - 0) <24DF4463-54CA-3FC3-95E3-E8C791B12169> /Applications/Adobe InDesign CC/*/Text Frame Options
           0x10eadb000 -        0x10eb41fff +com.adobe.InDesign.Text Panel (9.2.1.101 - 0) <70BA1FF5-A8FD-3D59-976A-5AE782CB79ED> /Applications/Adobe InDesign CC/*/Text Panel
           0x10eb64000 -        0x10eb86fff +com.adobe.InDesign.Text Preferences (9.2.1.101 - 0) <8C47BE3B-1091-32A2-9059-386030EC9C49> /Applications/Adobe InDesign CC/*/Text Preferences
           0x10eb96000 -        0x10ebb9ff7 +com.adobe.InDesign.Text Ruler (9.2.1.101 - 0) <7B9A2B91-60B5-32FD-8244-6372495C16BF> /Applications/Adobe InDesign CC/*/Text Ruler
           0x10ebca000 -        0x10ebefff7 +com.adobe.InDesign.Text Style Panel (9.2.1.101 - 0) <8313AC57-723E-3409-97C3-4E33665F8396> /Applications/Adobe InDesign CC/*/Text Style Panel
           0x10ec00000 -        0x10ec2cff7 +com.adobe.InDesign.Article Panel (9.2.1.101 - 0) <DFB7EF6E-5FBE-3E41-8A0B-B5E678F955A4> /Applications/Adobe InDesign CC/*/Article Panel
           0x10ec45000 -        0x10ec77fff +com.adobe.InDesign.CSXS (9.2.1.101 - 0) <23CEA49C-D486-3ADB-B1E9-4647E3BD22AE> /Applications/Adobe InDesign CC/*/CSXS
           0x10ec8f000 -        0x10ecc7ff7 +com.adobe.InDesign.Galley Preferences (9.2.1.101 - 0) <8AA1A69A-6B95-320B-9307-C45F80BCD14D> /Applications/Adobe InDesign CC/*/Galley Preferences
           0x10ece2000 -        0x10ed03ff7 +com.adobe.InDesign.GapTool (9.2.1.101 - 0) <FC93E783-D09C-3F01-9CF1-873002CC0FBD> /Applications/Adobe InDesign CC/*/GapTool
           0x10ed13000 -        0x10ed1eff7 +com.adobe.InDesign.General Preferences Panel (9.2.1.101 - 0) <F513D5DE-713B-3A9A-9F3E-E997883E69A6> /Applications/Adobe InDesign CC/*/General Preferences Panel
           0x10ed29000 -        0x10ed2dfff +com.adobe.InDesign.Help (9.2.1.101 - 0) <09CFAB79-828F-39A9-8E6C-634999CF4EC8> /Applications/Adobe InDesign CC/*/Help
           0x10ed34000 -        0x10ed47ff7 +com.adobe.ahclientframework (1.8.0.31 - 1.8.0.31) <58BB943C-98EC-3812-AAAB-74F66630D1D4> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/ahclient.framework/Versions/A/ahclient
           0x10ed4e000 -        0x10ed6afff +com.adobe.InDesign.Performance UI (9.2.1.101 - 0) <278593AB-82E1-373C-9644-85373371BB93> /Applications/Adobe InDesign CC/*/Performance UI
           0x10ed7f000 -        0x10eda3ff7 +com.adobe.InDesign.SharedContentUI (9.2.1.101 - 0) <D62134DD-76DC-3DD0-B8B2-4F2C857037E5> /Applications/Adobe InDesign CC/*/SharedContentUI
           0x10edb2000 -        0x10edd8fff +com.adobe.InDesign.Shortcut Editor Dialog (9.2.1.101 - 0) <C4A827C6-AA10-3628-8967-01B9CD5EF71E> /Applications/Adobe InDesign CC/*/Shortcut Editor Dialog
           0x10edec000 -        0x10ee0cfff +com.adobe.InDesign.Tool Box (9.2.1.101 - 0) <5B97B389-A741-323E-A4E8-38B49C3F2BF3> /Applications/Adobe InDesign CC/*/Tool Box
           0x10ee30000 -        0x10ee38ff7 +com.adobe.InDesign.Tool Tips (9.2.1.101 - 0) <88CF576A-34C1-3CE6-A4CB-8EDB975F1DCB> /Applications/Adobe InDesign CC/*/Tool Tips
           0x10ee41000 -        0x10ee49fff +com.adobe.InDesign.Track Changes Preferences (9.2.1.101 - 0) <5A658631-2249-3036-A041-EE8CB387BF8B> /Applications/Adobe InDesign CC/*/Track Changes Preferences
           0x10ee53000 -        0x10ee6aff7 +com.adobe.InDesign.Track Changes UI (9.2.1.101 - 0) <01C328F8-3440-3866-B596-D03D78FA5BF3> /Applications/Adobe InDesign CC/*/Track Changes UI
           0x10ee75000 -        0x10ee81ff7 +com.adobe.InDesign.PerformanceMetrics (9.2.1.101 - 0) <67E7E2B5-61E3-3F40-B440-5FE1EDE59E77> /Applications/Adobe InDesign CC/*/PerformanceMetrics
           0x10ee8c000 -        0x10ee9bff7 +com.adobe.InDesign.Metadata UI (9.2.1.101 - 0) <442F11B4-4698-3BED-BADD-F1E858A7DCB7> /Applications/Adobe InDesign CC/*/Metadata UI
           0x10eea5000 -        0x10ef16fe7 +com.adobe.FileInfo.framework (Adobe XMP FileInfo 5 . 3 . 0 . 0 -i 3 - 79.154511) <E69CE2EF-1FC7-3C8D-AAB8-8C5B0B3D3176> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
           0x10ef29000 -        0x10ef33fff +com.adobe.InDesign.Workgroup UI (9.2.1.101 - 0) <B71098FE-647E-327A-9767-8075272CB665> /Applications/Adobe InDesign CC/*/Workgroup UI
           0x10ef3c000 -        0x10ef8dff7 +com.adobe.InDesign.Snippet (9.2.1.101 - 0) <5CC75DF2-5697-3E17-920D-1536AED78A9A> /Applications/Adobe InDesign CC/*/Snippet
           0x10efa6000 -        0x10f0d5ff7 +com.adobe.InDesign.XMedia UI (9.2.1.101 - 0) <EE29CCB0-862B-3528-B6F1-AA856F23DFA8> /Applications/Adobe InDesign CC/*/XMedia UI
           0x10f11f000 -        0x10f182ff7 +com.adobe.InDesign.Actions (9.2.1.101 - 0) <71C1F74A-C7C5-338B-88B0-15C184328F7A> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Actions.InDesignPlugin/Actions
           0x10f19d000 -        0x10f363ff7 +com.adobe.InDesign.AppFramework (9.2.1.101 - 0) <6EAA206E-7521-3A43-AC69-569D502C5C9A> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/AppFramework.InDesignPlugin/AppFramework
           0x10f3b7000 -        0x10f5ccfff +com.adobe.InDesign.Application UI (9.2.1.101 - 0) <A9201C20-7814-3168-BD63-84002E3261B3> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Application UI.InDesignPlugin/Application UI
           0x10f663000 -        0x10f981ff7 +com.adobe.dvaadameve.framework (7.0.849324 - 7.0.849324.0) <FF303DE3-2F53-3AA7-94E7-93B46DB28918> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/dvaadameve.framework/Versions/A/dvaadameve
           0x10fc57000 -        0x10fca6fff +com.adobe.headlights.LogSessionFramework (2.1.2.1785) <160BF2F9-B418-31C5-866F-6FADA1B720ED> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
           0x10fccc000 -        0x10fd8afff +com.adobe.AdobeExtendScript (ExtendScript 4.5.5 - 4.5.5.31983) <7764EE73-651A-3D8A-9B0F-A25DF57D79E1> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendScript
           0x10fdb2000 -        0x10fe5dff7 +com.adobe.AdobeScCore (ScCore 4.5.5 - 4.5.5.31983) <0E9111E5-ECBF-3C1C-82DB-9A945F1A573C> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
           0x10fe87000 -        0x10ffd7fff +com.adobe.dvascriptui.framework (7.0.849324 - 7.0.849324.0) <EC31CE70-34C1-31E0-A68D-F49D99ADA604> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/dvascriptui.framework/Versions/A/dvascriptui
           0x1100f9000 -        0x11011fff7 +com.adobe.InDesign.Article (9.2.1.101 - 0) <5594CD9B-844A-3C9F-949A-93F520ACCD63> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Article.InDesignPlugin/Article
           0x11012f000 -        0x1101ccfff +com.adobe.InDesign.Assignments (9.2.1.101 - 0) <CA529AA7-D38E-3D7B-967E-8EC980F2901B> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Assignments.InDesignPlugin/Assignments
           0x1101ed000 -        0x1102fafff +com.adobe.AdobeXMPFiles (Adobe XMP Files 5.6 -f 81 - 79.154911) <38348CA8-7905-3AA4-AA00-95A6D912C491> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeXMPFiles.framework/Versions/A/AdobeXMPFiles
           0x110330000 -        0x110370fff +com.adobe.InDesign.AWS (9.2.1.101 - 0) <572A9805-107C-30E1-A639-08C977F22E0C> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/AWS.InDesignPlugin/AWS
           0x110389000 -        0x1103b4ff7 +com.adobe.InDesign.AWSUI (9.2.1.101 - 0) <6CDDCDEE-176D-3E7E-A666-3CE5045EA3CB> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/AWSUI.InDesignPlugin/AWSUI
           0x1103c9000 -        0x110403ff7 +com.adobe.InDesign.Basic Tools (9.2.1.101 - 0) <67E340EB-CE3F-334F-B1FB-7B0FBCE2AB75> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Basic Tools.InDesignPlugin/Basic Tools
           0x11041e000 -        0x110487fff +com.adobe.InDesign.Behavior (9.2.1.101 - 0) <9224EBBE-1184-30AC-9C0B-7776AC77A582> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Behavior.InDesignPlugin/Behavior
           0x1104a5000 -        0x110547ff7 +com.adobe.InDesign.BNCore (9.2.1.101 - 0) <7370C6DC-E42A-3AE4-9E2B-AE876B3A625F> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/BNCore.InDesignPlugin/BNCore
           0x110565000 -        0x1105cbfff +com.adobe.InDesign.Book (9.2.1.101 - 0) <A57C7841-5282-3A46-8202-CAB3C70DFBD0> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Book.InDesignPlugin/Book
           0x1105e2000 -        0x11061bfff +com.adobe.InDesign.CellStyles (9.2.1.101 - 0) <99BB7B71-EDF0-361B-B168-A9AB3025E24D> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/CellStyles.InDesignPlugin/CellStyles
           0x11062e000 -        0x1106beff7 +com.adobe.InDesign.CJK Text Attributes (9.2.1.101 - 0) <A3516E48-C8B1-33E1-9948-056076338D94> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/CJK Text Attributes.InDesignPlugin/CJK Text Attributes
           0x1106e1000 -        0x110767fff +com.adobe.InDesign.CJKGrid (9.2.1.101 - 0) <C2AE712A-12DC-3666-A8F6-CE4572E22B87> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/CJKGrid.InDesignPlugin/CJKGrid
           0x110783000 -        0x110880fff +com.adobe.InDesign.Color Management (9.2.1.101 - 0) <33023C59-D4C5-3BF2-8C42-54BD6E50E651> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Color Management.InDesignPlugin/Color Management
           0x1108ad000 -        0x110914ff7 +com.adobe.InDesign.CompFontMgr (9.2.1.101 - 0) <445E5D30-A1FC-3E63-AEA9-B0DF8B1F9213> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/CompFontMgr.InDesignPlugin/CompFontMgr
           0x11092c000 -        0x110983fff +com.adobe.InDesign.Conditional Text (9.2.1.101 - 0) <0F92B4B6-9877-38A5-AE21-77558C13513F> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Conditional Text.InDesignPlugin/Conditional Text
           0x11099c000 -        0x1109d0ff7 +com.adobe.InDesign.ContentDropper (9.2.1.101 - 0) <770161E3-FD66-3F7E-9590-8081A26EBF87> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/ContentDropper.InDesignPlugin/ContentDropper
           0x1109e4000 -        0x110a0afff +com.adobe.InDesign.Dialog Layout (9.2.1.101 - 0) <F0876EDD-1E88-3B12-BABC-63F14A8DA912> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Dialog Layout.InDesignPlugin/Dialog Layout
           0x110a1c000 -        0x110a42fff +com.adobe.InDesign.Document Actions (9.2.1.101 - 0) <6E70D356-C8C4-3EBD-9026-19E728F20013> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Document Actions.InDesignPlugin/Document Actions
           0x110a4f000 -        0x110c2ffff +com.adobe.InDesign.Document Framework (9.2.1.101 - 0) <75A1A812-4CDF-37B2-8AEC-15440B0E95A2> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Document Framework.InDesignPlugin/Document Framework
           0x110c6d000 -        0x110c77ff7 +com.adobe.InDesign.Document UI (9.2.1.101 - 0) <7FAE894D-EEAE-3C6B-B209-A6CFAFA514B7> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Document UI.InDesignPlugin/Document UI
           0x110c81000 -        0x110cd1ff7 +com.adobe.InDesign.DV_Widgets (9.2.1.101 - 0) <AB7FF37C-CB4B-3DE7-A825-2CEB2DE0568A> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/DV_Widgets.InDesignPlugin/DV_Widgets
           0x110d06000 -        0x111066fff +com.adobe.InDesign.Dynamic Documents (9.2.1.101 - 0) <CA3478E3-0A3A-3595-8804-2DFDD485E3B6> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Dynamic Documents.InDesignPlugin/Dynamic Documents
           0x1110ae000 -        0x1111a5fff +com.adobe.AGMFL (AdobeAGMFL 2.1.0.31977 - 2.1.0.31977) <C93FF155-AA80-34F1-A785-42BC0D8D3909> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/ADBE_AGMFL.framework/Versions/A/ADBE_AGMFL
           0x1111c2000 -        0x11139fff7 +com.adobe.AFlamingo (AFlamingo 2.4.402.31977 - 2.4.402.31977) <B90D5CA4-DA52-39A1-95DD-8011764655A1> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/aflamingo.framework/Versions/A/aflamingo
           0x1113c3000 -        0x111505fe7 +com.adobe.InDesign.EPS Page Item (9.2.1.101 - 0) <CFD4D636-06B2-3969-91FA-ED68F0873111> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/EPS Page Item.InDesignPlugin/EPS Page Item
           0x111544000 -        0x111693ff7 +com.adobe.InDesign.Font Manager (9.2.1.101 - 0) <7E3483CF-FE4D-3218-BABE-7698C5674F32> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Font Manager.InDesignPlugin/Font Manager
           0x1116bb000 -        0x111792ff7 +com.adobe.InDesign.FormField (9.2.1.101 - 0) <8D813A0F-DBD0-31EA-93DA-102D366DF99C> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/FormField.InDesignPlugin/FormField
           0x1117b7000 -        0x111818ff7 +com.adobe.InDesign.Galley (9.2.1.101 - 0) <970A6D55-9CDF-3DE7-939D-372B0907F4BC> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Galley.InDesignPlugin/Galley
           0x11182d000 -        0x111978ff7 +com.adobe.InDesign.GalleyUI (9.2.1.101 - 0) <89C9D915-C94D-3548-92AE-4017AC973AA5> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/GalleyUI.InDesignPlugin/GalleyUI
           0x1119a6000 -        0x111c12ff7 +com.adobe.InDesign.Generic Page Item (9.2.1.101 - 0) <F0DECCE6-EAF5-30C0-8FB0-48FA56CB3503> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Generic Page Item.InDesignPlugin/Generic Page Item
           0x111c5e000 -        0x111c6cfff +com.adobe.InDesign.GenericSettings (9.2.1.101 - 0) <265C32A6-C9D4-3571-93BB-BF1A64FE3001> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/GenericSettings.InDesignPlugin/GenericSettings
           0x111c76000 -        0x111c79fff +com.adobe.InDesign.Global Preferences Panel (9.2.1.101 - 0) <3B261D67-E6B5-32E3-AC7E-AFCCDC9B75CB> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Global Preferences Panel.InDesignPlugin/Global Preferences Panel
           0x111c7f000 -        0x111ceffff +com.adobe.InDesign.Gradient Fill (9.2.1.101 - 0) <FFE95F52-F173-3B84-A96C-3340E06FFE72> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Gradient Fill.InDesignPlugin/Gradient Fill
           0x111d0b000 -        0x111e0dff7 +com.adobe.InDesign.Graphics (9.2.1.101 - 0) <FCBDB8E7-46E8-3987-9BCB-0E3177F00F11> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Graphics.InDesignPlugin/Graphics
           0x111e31000 -        0x111e3dff7 +com.adobe.InDesign.Group (9.2.1.101 - 0) <8DF66586-0FC5-3EA5-8F0D-6083387F0697> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Group.InDesignPlugin/Group
           0x111e4a000 -        0x111e6bff7 +com.adobe.InDesign.Guides (9.2.1.101 - 0) <0431FB5F-AA6B-33A6-BDFE-7ABEC7445572> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Guides.InDesignPlugin/Guides
           0x111e7d000 -        0x111f4fff7 +com.adobe.InDesign.HTMLPGT (9.2.1.101 - 0) <DE7D940F-9651-3A94-B364-588061627B2C> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/HTMLPGT.InDesignPlugin/HTMLPGT
           0x111fb3000 -        0x1120c1fff +com.adobe.InDesign.Hyperlinks (9.2.1.101 - 0) <BF029BB8-6578-303F-A983-9ADEE43AB7A4> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Hyperlinks.InDesignPlugin/Hyperlinks
           0x1120ec000 -        0x11213fff7 +com.adobe.InDesign.Image Filters (9.2.1.101 - 0) <F3DF9DCA-6073-3DF8-89EB-18F8D1DB8902> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Image Filters.InDesignPlugin/Image Filters
           0x11214b000 -        0x112261ff7 +com.adobe.InDesign.Image (9.2.1.101 - 0) <E026A24C-EF82-33E8-95FD-463A23618CB2> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Image.InDesignPlugin/Image
           0x11228d000 -        0x1122a7ff7 +com.adobe.InDesign.IME (9.2.1.101 - 0) <905334C5-8BF8-3958-8216-720BDB4D3A1F> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/IME.InDesignPlugin/IME
           0x1122b7000 -        0x112327fff +com.adobe.InDesign.Import Export UI (9.2.1.101 - 0) <FFA896AE-BAF9-30EC-A788-25AD02061296> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Import Export UI.InDesignPlugin/Import Export UI
           0x11234e000 -        0x112451ff7 +com.adobe.InDesign.InCopyShared (9.2.1.101 - 0) <355958AC-6C78-3173-A259-E777024CF2C3> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/InCopyShared.InDesignPlugin/InCopyShared
           0x11247d000 -        0x11249afff +com.adobe.InDesign.InCopySharedUI (9.2.1.101 - 0) <0A19AFFD-DB77-334D-B8D3-60CB775F517D> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/InCopySharedUI.InDesignPlugin/InCopySharedUI
           0x1124aa000 -        0x112542ff7 +com.adobe.InDesign.InCopyWorkflow (9.2.1.101 - 0) <D6C76680-B980-3D34-A873-C8883C2779F6> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/InCopyWorkflow.InDesignPlugin/InCopyWorkflow
           0x112568000 -        0x11266eff7 +com.adobe.InDesign.Indexing (9.2.1.101 - 0) <CD23A88C-DBB2-3F46-91CC-31B334E29762> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Indexing.InDesignPlugin/Indexing
           0x11268f000 -        0x11275ffff +com.adobe.InDesign.INXCore (9.2.1.101 - 0) <40520408-A5B6-3023-B802-158D391E41FA> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/INXCore.InDesignPlugin/INXCore
           0x112787000 -        0x1127b4fff +com.adobe.InDesign.Layer (9.2.1.101 - 0) <94604B73-0E52-30CB-9CC0-805F5B138FE4> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Layer.InDesignPlugin/Layer
           0x1127c7000 -        0x1129d5fff +com.adobe.InDesign.Layout UI (9.2.1.101 - 0) <4D341B44-0E84-360A-972A-4379A6B60AD8> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Layout UI.InDesignPlugin/Layout UI
           0x112a35000 -        0x112a5efff +com.adobe.InDesign.Layout (9.2.1.101 - 0) <98815961-6446-3917-B266-7E3DB625B782> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Layout.InDesignPlugin/Layout
           0x112a6d000 -        0x112abefff +com.adobe.InDesign.Linguistics (9.2.1.101 - 0) <13A4BC6D-4C68-3884-9059-5837B952EC17> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Linguistics.InDesignPlugin/Linguistics
           0x112ad8000 -        0x112c12fff +com.adobe.InDesign.Links (9.2.1.101 - 0) <1BCD7856-3DD0-3C58-AF61-0E430CF5EFBC> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Links.InDesignPlugin/Links
           0x112c47000 -        0x112cebfff +com.adobe.InDesign.Master Page (9.2.1.101 - 0) <557BD678-3F9D-3A4F-ABDA-8A1DD7D41AF6> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Master Page.InDesignPlugin/Master Page
           0x112d05000 -        0x112d61ff7 +com.adobe.InDesign.Media (9.2.1.101 - 0) <560CE1DB-99AF-389F-8BC2-37D5F83C110F> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Media.InDesignPlugin/Media
           0x112d77000 -        0x112d78ff7 +com.adobe.InDesign.Metadata Database Filter (9.2.1.101 - 0) <3BE1DF86-81E8-359D-A40E-84EC7

    Process:         Adobe InDesign CC [333]
    Path:            /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Adobe InDesign CC
    Identifier:      com.adobe.InDesign
    Version:         9.2.1.101 (9210)
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [158]
    Responsible:     Adobe InDesign CC [333]
    User ID:         501
    Date/Time:       2014-05-12 17:35:26.355 -0400
    OS Version:      Mac OS X 10.9.2 (13C1021)
    Report Version:  11
    Anonymous UUID:  13E6E154-1C27-CD1D-CEF7-A9A240F509C6
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Dyld Error Message:
      Symbol not found: _AMTRetrievePersonGUIDWithAuthSource
      Referenced from: /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/PublicLib.dylib
      Expected in: /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/../Frameworks/amtlib.framework/Versions/A/amtlib
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   dyld                           0x00007fff661d509d dyld_fatal_error + 1
    1   dyld                           0x00007fff661d7df6 dyld::fastBindLazySymbol(ImageLoader**, unsigned long) + 171
    2   libdyld.dylib                 0x00007fff94f352dd dyld_stub_binder_ + 13
    3   ???                           0x0000000101537008 0 + 4317212680
    4   PublicLib.dylib               0x00000001013c36ae IDIMSConnection::GetUserInfoAndFetchToken() + 446
    5   PublicLib.dylib               0x00000001013c304a IDIMSConnection::IDIMSConnection(ServiceType const&) + 11690
    6   com.adobe.InDesign.SettingsInCloud 0x000000010e005656 0x10dfff000 + 26198
    7   com.adobe.InDesign.SettingsInCloud 0x000000010e00189a 0x10dfff000 + 10394
    8   ObjectModelLib.dylib           0x0000000104b09ca8 0x104b02000 + 31912
    9   ObjectModelLib.dylib           0x0000000104b03da4 0x104b02000 + 7588
    10  ObjectModelLib.dylib           0x0000000104b35469 0x104b02000 + 210025
    11  ObjectModelLib.dylib           0x0000000104b20ea4 0x104b02000 + 126628
    12  com.adobe.InDesign.SettingsInCloud 0x000000010e0064e6 0x10dfff000 + 29926
    13  com.adobe.InDesign.AppFramework 0x000000010f1de9bb 0x10f19d000 + 268731
    14  ObjectModelLib.dylib           0x0000000104b21cd3 0x104b02000 + 130259
    15  ObjectModelLib.dylib           0x0000000104b3506c 0x104b02000 + 209004
    16  ObjectModelLib.dylib           0x0000000104b303fc ShuksanInit(IStartupScreen* (*)(), IPlugIn*) + 7676
    17  com.adobe.InDesign             0x0000000100001c7e main + 94
    18  com.adobe.InDesign             0x0000000100001bb4 start + 52
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib         0x00007fff90d26662 kevent64 + 10
    1   libdispatch.dylib             0x00007fff9293a43d _dispatch_mgr_invoke + 239
    2   libdispatch.dylib             0x00007fff9293a152 _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib         0x00007fff90d25e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff93087f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x00007fff9308afb9 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib         0x00007fff90d25e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff93087f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x00007fff9308afb9 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib         0x00007fff90d25716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff93088c77 _pthread_cond_wait + 787
    2   com.apple.CoreServices.CarbonCore 0x00007fff8d8fc9e7 TSWaitOnConditionTimedRelative + 148
    3   com.apple.CoreServices.CarbonCore 0x00007fff8d8cd145 MPWaitOnQueue + 192
    4   PMRuntime.dylib               0x0000000101682be1 0x101681000 + 7137
    5   com.apple.CoreServices.CarbonCore 0x00007fff8d8cd6c3 PrivateMPEntryPoint + 58
    6   libsystem_pthread.dylib       0x00007fff93086899 _pthread_body + 138
    7   libsystem_pthread.dylib       0x00007fff9308672a _pthread_start + 137
    8   libsystem_pthread.dylib       0x00007fff9308afc9 thread_start + 13
    Thread 5:
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x00007fff66209db0  rbx: 0x0000000104c40aa0  rcx: 0x0000000000000000  rdx: 0x0000000000000000
      rdi: 0x00007fff66209f20  rsi: 0x0000000000000000  rbp: 0x00007fff5fbfe690  rsp: 0x00007fff5fbfe678
       r8: 0x00007fff661f4b4c   r9: 0x0000000000000000  r10: 0x00007fff661f7ce6  r11: 0x00007fff66209f20
      r12: 0x00000001178f1d10  r13: 0x00000001178f1ab0  r14: 0x00007fff66209f20  r15: 0x00000001178f1800
      rip: 0x00007fff661d509d  rfl: 0x0000000000000246  cr2: 0x0000000106ffd000
    Logical CPU:     2
    Error Code:      0x00000000
    Trap Number:     3
    Binary Images:
           0x100000000 -        0x100005fff +com.adobe.InDesign (9.2.1.101 - 9210) <B7C09BD6-74AF-323E-8D22-D5E1F7965643> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Adobe InDesign CC
           0x10000c000 -        0x10000eff7 +com.adobe.InDesign.InDesignModelAndUI (9.0 - 0) <612870BE-869E-3165-9714-55F900A66BCC> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/InDesignModelAndUI.framework/Versions/A/InDesignModelAndUI
           0x100014000 -        0x10001cfff +com.adobe.coretech.adobesplashkit (AdobeSplashKit Version 1.0 - 1.0) <65BFDA83-4121-3D12-9BBE-9F4FF1DB3D6A> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeSplashKit.framework/Versions/A/AdobeSplashKit
           0x100025000 -        0x10002ffff +ASLSupportLib.dylib (1) <1039F962-C495-36E4-B868-3DA5C43E3EBF> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/ASLSupportLib.dylib
           0x100037000 -        0x10013aff7 +DV_WidgetBinLib.dylib (1) <176E817C-0939-3899-B514-D78ADF3696DC> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/DV_WidgetBinLib.dylib
           0x1001d5000 -        0x10021aff7 +TextPanelLib.dylib (1) <4B30610F-C637-3910-A413-C40325795CAD> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/TextPanelLib.dylib
           0x100237000 -        0x100398fff +WidgetBinLib.dylib (1) <48D53338-0F40-3D6B-AF45-230F68DF659A> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/WidgetBinLib.dylib
           0x10044a000 -        0x100616fff +com.adobe.owl (AdobeOwl version 5.0.24 - 5.0.24) <1C99AA07-E73F-370B-82FA-01C1C4AAF97D> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
           0x100659000 -        0x10089dfff +com.adobe.dvacore.framework (7.0.849324 - 7.0.849324.0) <08EB97C1-03E5-3C1B-B154-C886807BC6F1> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/dvacore.framework/Versions/A/dvacore
           0x100964000 -        0x100df1ff7 +com.adobe.dvaui.framework (7.0.849324 - 7.0.849324.0) <25942AAC-0437-303F-9663-B17113468EBB> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/dvaui.framework/Versions/A/dvaui
           0x101089000 -        0x101089fff +com.adobe.InDesign.InDesignModel (9.0 - 0) <7DCCCD9E-8ECB-330B-84AF-4F090F82BBBA> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/InDesignModel.framework/Versions/A/InDesignModel
           0x10108e000 -        0x10109cfff +com.adobe.boost_threads.framework (7.0.847203 - 7.0.847203.0) <A0AE19A9-2B8E-310A-8AC1-0E2E026E7A40> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/boost_threads.framework/Versions/A/boost_threads
           0x1010b2000 -        0x1010b8ff7 +com.adobe.boost_date_time.framework (7.0.847203 - 7.0.847203.0) <F30F59C3-41C0-3DB1-899A-E2491EA25263> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/boost_date_time.framework/Versions/A/boost_date_time
           0x1010c7000 -        0x101536ff7 +PublicLib.dylib (1) <77945799-2B8C-3960-92A6-F5F200CD6DE7> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/PublicLib.dylib
           0x101681000 -        0x10168bfff +PMRuntime.dylib (1) <0164EA5E-E56E-332F-901A-5E514833C38F> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/PMRuntime.dylib
           0x101694000 -        0x1016abff7 +com.adobe.AFL (AdobeAFL 1.5.0 - 1.5) <1C46F2BE-2E4D-3E25-ACDF-85E2962B92DF> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeAFL.framework/Versions/A/AdobeAFL
           0x1016ba000 -        0x1019cbff7 +com.adobe.CoolType (AdobeCoolType 5.15.00.31977 - 5.15.00.31977) <42323DBD-3A6D-3C41-A2C1-2B944789D8A9> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
           0x101a13000 -        0x101a30fff +com.adobe.BIB (AdobeBIB 1.2.03.31977 - 1.2.03.31977) <A69D3AA0-9248-3B77-991B-89B2B7FE46BB> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
           0x101a38000 -        0x101b7efff +com.adobe.ACE (AdobeACE 2.20.02.31977 - 2.20.02.31977) <3A212837-B075-34C0-96E9-5A4019C9DFEE> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
           0x101b92000 -        0x102163fff +com.adobe.AGM (AdobeAGM 4.30.29.31977 - 4.30.29.31977) <BFFDBF0E-28EF-3720-93BE-293618541D26> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
           0x102200000 -        0x10223dfff +com.adobe.ARE (AdobeARE 1.5.02.31977 - 1.5.02.31977) <73174C59-1DDC-3416-A0AD-4D70930ABA60> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeARE.framework/Versions/A/AdobeARE
           0x102245000 -        0x10226bfff +com.adobe.BIBUtils (AdobeBIBUtils 1.1.01 - 1.1.01) <FA20BCA0-05BF-35ED-95B7-5775B8310D12> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
           0x102273000 -        0x10280cfff +com.adobe.MPS (AdobeMPS 5.8.1.32241 - 5.8.1.32241) <68FA2E74-31EF-33CD-97DC-27B191931F90> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
           0x102889000 -        0x1028a7fff +com.adobe.dvaflashview.framework (7.0.849324 - 7.0.849324.0) <46FFD5B4-2182-3CC3-A258-486E585A5B2D> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/dvaflashview.framework/Versions/A/dvaflashview
           0x1028bf000 -        0x1028c3ff7 +com.adobe.ape.shim (3.4.0.29366 - 3.4.0.29366) <B9447EE8-6F91-9E85-C163-96600BF70764> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/adbeape.framework/Versions/A/adbeape
           0x1028ca000 -        0x10298cfff +com.adobe.exo.framework (7.0.849324 - 7.0.849324.0) <AF41BB10-6BB7-3645-9F60-AE77E54F04F1> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/exo.framework/Versions/A/exo
           0x102a2a000 -        0x102ad8fff +com.adobe.dvaworkspace.framework (7.0.849324 - 7.0.849324.0) <97F274A8-A56B-3F3A-AAA7-66B9FBEFEBF1> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/dvaworkspace.framework/Versions/A/dvaworkspace
           0x102b5b000 -        0x1031fafff +com.adobe.PlugPlugOwl (4.2.0.36 - 4.2.0.36) <D6EC53B4-E257-3698-8EA8-24D4E3D98EBD> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/PlugPlugOwl.framework/Versions/A/PlugPlugOwl
           0x1034ef000 -        0x10351bff7 +libtbb.dylib (0) <64B7013E-D548-3F7B-A2FB-28B7B932275C> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/libtbb.dylib
           0x103536000 -        0x103555fe7 +libtbbmalloc.dylib (0) <6887ED68-67ED-3748-82DA-B39A3EB210BB> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/libtbbmalloc.dylib
           0x10357a000 -        0x1042bffff +com.adobe.ICUData (4.0 - 3.61) <01D90725-4B10-312C-9546-9C0CCCA1B7BB> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/ICUData.framework/Versions/4.0/libicudata.40.0.dylib
           0x1042d3000 -        0x104404ff7 +com.adobe.ICUInternationalization (4.0 - 3.61) <CD4AD967-00CD-3979-8F82-1166E2058FA6> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/ICUInternationalization.framework/Versions/4.0/libicui18n.40.0 .dylib
           0x104458000 -        0x10454eff7 +com.adobe.ICUUnicode (4.0 - 3.61) <2352E6C8-3431-3A99-92B9-382E85A018AC> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/ICUUnicode.framework/Versions/4.0/libicuuc.40.0.dylib
           0x104586000 -        0x1046b4fff +com.winsoft.wrservices (WRServices 7.0.0 - 7.0.0) <0853A41B-A14A-37B7-B27F-457F87865EAD> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
           0x10470f000 -        0x1047f3fe7 +com.adobe.amtlib (amtlib 6.0.0.75 - 6.0.0.75) <07A3E1E1-55C3-BA5B-A0B0-60250809ED61> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
           0x104804000 -        0x104806fff +com.adobe.AdobeCrashReporter (7.0 - 7.1) <B68D0D42-8DEB-3F22-BD17-981AC060E9D7> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashReporter
           0x10480c000 -        0x1048c3ff7 +com.adobe.boost_regex.framework (7.0.847203 - 7.0.847203.0) <F1C659D9-D3E8-3ACE-8368-9161529A6A66> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/boost_regex.framework/Versions/A/boost_regex
           0x10492d000 -        0x10499cff7 +com.adobe.adobe_caps (adobe_caps 7.0.0.21 - 7.0.0.21) <CE3C6356-9EE2-3B88-8261-8612A0743F56> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
           0x1049a7000 -        0x1049b2fff +com.adobe.boost_signals.framework (7.0.847203 - 7.0.847203.0) <E0B3BB47-4294-3D65-8979-29B2D6C5DD2E> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/boost_signals.framework/Versions/A/boost_signals
           0x1049c1000 -        0x1049c5fff +com.adobe.boost_system.framework (7.0.847203 - 7.0.847203.0) <70F73B9F-8416-37BF-9294-086AE475B743> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/boost_system.framework/Versions/A/boost_system
           0x1049cb000 -        0x104a6cfff +com.adobe.ICUConverter (4.0 - 3.61) <46764474-111C-3B13-AF62-002B71877405> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/ICUConverter.framework/Versions/4.0/libicucnv.40.0.dylib
           0x104a8c000 -        0x104aeefff +DataBaseLib.dylib (1) <670C9B64-DD9A-3B32-BDA9-22D6EA26A5EF> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/DataBaseLib.dylib
           0x104b02000 -        0x104b6ffff +ObjectModelLib.dylib (1) <83B9682D-C6AE-3085-A7D0-B097CA1AF98C> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/ObjectModelLib.dylib
           0x104b8c000 -        0x104bb0fff +com.adobe.AXE8SharedExpat (AdobeAXE8SharedExpat 3.8.0.30807 - 3.8.0.30807) <16FF5E16-19E0-3CE1-A68E-27567234429F> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedExpat
           0x109ca9000 -        0x109cacffa  libCGXType.A.dylib (599.21.1) <0F364FEE-105D-329D-B823-082AA45E6AFD> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
           0x10ac87000 -        0x10ac8fff3  libCGCMS.A.dylib (599.21.1) <84C6C6F3-AD75-3120-A86F-8AE1005A0ECE> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS.A.dylib
           0x10ac97000 -        0x10acbfffb  libRIP.A.dylib (599.21.1) <994C1D46-A532-3361-8C20-11778DC12040> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
           0x10b6cd000 -        0x10b6d5fff +com.adobe.InDesign.Data Services UI (9.2.1.101 - 0) <EF01EA1E-61C9-3B9E-A166-0A425537E310> /Applications/Adobe InDesign CC/*/Data Services UI
           0x10b6df000 -        0x10b6e7fff +com.adobe.InDesign.Data Services (9.2.1.101 - 0) <48C1DEF8-D77A-3717-AD51-02E641D9EF8F> /Applications/Adobe InDesign CC/*/Data Services
           0x10b6ed000 -        0x10b6fcff7 +com.adobe.InDesign.DTTransform (9.2.1.101 - 0) <417A914C-BEA9-3AF6-94BC-158C93DCDC56> /Applications/Adobe InDesign CC/*/DTTransform
           0x10b705000 -        0x10b743fff +com.adobe.InDesign.Dictionary Editor Dialog (9.2.1.101 - 0) <EC06E951-7EDF-306A-85E2-B52805F8110C> /Applications/Adobe InDesign CC/*/Dictionary Editor Dialog
           0x10b764000 -        0x10b78afff +com.adobe.InDesign.LILO (9.2.1.101 - 0) <02CAE547-BE94-333C-A38D-F73923098BD2> /Applications/Adobe InDesign CC/*/LILO
           0x10b798000 -        0x10b873fff +com.adobe.linguistic.LinguisticManager (7.0.0 - 19061) <FDBCF369-5EFE-33BB-893A-2136EF8D0D6E> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic
           0x10b88f000 -        0x10b9dbff7 +com.adobe.InDesign.EBookExport (9.2.1.101 - 0) <5D5F7956-1E0A-3311-90E0-0E6FABC5E35A> /Applications/Adobe InDesign CC/*/EBookExport
           0x10ba06000 -        0x10ba63fff +com.adobe.InDesign.Media Import Filter (9.2.1.101 - 0) <E612697E-17AF-3305-B5CF-F7BCA68C4777> /Applications/Adobe InDesign CC/*/Media Import Filter
           0x10ba76000 -        0x10ba7fff7 +com.adobe.InDesign.PNG Import Filter UI (9.2.1.101 - 0) <C566B5E1-9945-3673-A6E0-12FDBE39B7D2> /Applications/Adobe InDesign CC/*/PNG Import Filter UI
           0x10ba8a000 -        0x10bab4ff7 +com.adobe.InDesign.Sangam Preferences UI (9.2.1.101 - 0) <BCFBDD3B-9562-3F7A-AFE7-052DE0E3620E> /Applications/Adobe InDesign CC/*/Sangam Preferences UI
           0x10bac7000 -        0x10bb30fff +com.adobe.AdobeSangam (AdobeSangam 5.65.0.31977 - 5.65.0.31977) <81A4C7F3-E791-3AD1-A44B-CF5BB5B6A545> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeSangam.framework/Versions/A/AdobeSangam
           0x10bb7e000 -        0x10bbd2ff7 +com.adobe.InDesign.SangamExport (9.2.1.101 - 0) <86187ADD-BB1A-37CD-9699-DEC36615F2C0> /Applications/Adobe InDesign CC/*/SangamExport
           0x10bbe9000 -        0x10bd2afff +com.adobe.InDesign.SangamServicer-Mapper (9.2.1.101 - 0) <F2E5BD34-3091-317F-88A8-0B6090F262E0> /Applications/Adobe InDesign CC/*/SangamServicer-Mapper
           0x10bd4e000 -        0x10bd64ff7 +com.adobe.InDesign.SaveBack (9.2.1.101 - 0) <42FE0ACC-F37A-3DAC-8101-490609415A86> /Applications/Adobe InDesign CC/*/SaveBack
           0x10bd72000 -        0x10bd74fff +com.adobe.InDesign.SimpleTextImportFilter (9.2.1.101 - 0) <B409D770-A106-3EFE-9925-DE295432C918> /Applications/Adobe InDesign CC/*/SimpleTextImportFilter
           0x10bd7a000 -        0x10be4dff7 +com.adobe.InDesign.Tagged Text Attributes (9.2.1.101 - 0) <63FB581D-0334-3755-8697-6051DBBA1716> /Applications/Adobe InDesign CC/*/Tagged Text Attributes
           0x10be7c000 -        0x10be88fff +com.adobe.InDesign.Tagged Text Filters UI (9.2.1.101 - 0) <83C996D8-4E24-3511-A666-70DE47F3DE39> /Applications/Adobe InDesign CC/*/Tagged Text Filters UI
           0x10be93000 -        0x10bf38fff +com.adobe.InDesign.Tagged Text Filters (9.2.1.101 - 0) <A33D33F5-232D-3778-BC70-3BA61804DD2B> /Applications/Adobe InDesign CC/*/Tagged Text Filters
           0x10bf4d000 -        0x10bf5afff +com.adobe.InDesign.Clipping Path Dialog (9.2.1.101 - 0) <93D2E8FF-D77F-3DBA-96AF-116B460D22C3> /Applications/Adobe InDesign CC/*/Clipping Path Dialog
           0x10bf6c000 -        0x10bfb0ff7 +com.adobe.InDesign.Color Management UI (9.2.1.101 - 0) <E1F74CF9-8EF7-3EDE-9A4B-D8588C99A23F> /Applications/Adobe InDesign CC/*/Color Management UI
           0x10bfc0000 -        0x10c03cfff +com.adobe.InDesign.Color Picker Panel (9.2.1.101 - 0) <65E3F570-F364-3016-A42A-355B59BEB4DF> /Applications/Adobe InDesign CC/*/Color Picker Panel
           0x10c064000 -        0x10c27bfff +com.adobe.InDesign.Digital Publishing (9.0.10.30 - 0) <A9BF17A4-2B00-3141-9183-98FE732B824E> /Applications/Adobe InDesign CC/*/Digital Publishing
           0x10c3fb000 -        0x10c40dfff +com.adobe.boost_filesystem.framework (7.0.847203 - 7.0.847203.0) <B0F56E9F-BAAB-34C5-93C4-C713203AB0DF> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/boost_filesystem.framework/Versions/A/boost_filesystem
           0x10c41e000 -        0x10c456fef +libcurl.4.dylib (7) <FA1D87DC-8CBC-3645-8ADA-D974B6EDED53> /Applications/Adobe InDesign CC/*/libcurl.4.dylib
           0x10c461000 -        0x10c4e1ff7 +com.adobe.InDesign.DynamicDocumentsUI (9.2.1.101 - 0) <7AE58B59-0747-3910-8FD5-34C4347F9320> /Applications/Adobe InDesign CC/*/DynamicDocumentsUI
           0x10c508000 -        0x10c524fff +com.adobe.InDesign.EPS UI (9.2.1.101 - 0) <EEC807E7-CA80-341C-9EC9-B2A466EEF0D8> /Applications/Adobe InDesign CC/*/EPS UI
           0x10c535000 -        0x10c541ff7 +com.adobe.InDesign.Generic Style Editor (9.2.1.101 - 0) <6DD52448-3D93-3D78-AEE4-BB5B78D2B018> /Applications/Adobe InDesign CC/*/Generic Style Editor
           0x10c550000 -        0x10c586fff +com.adobe.InDesign.Gradient Panel (9.2.1.101 - 0) <A0B7F034-768A-3725-8F03-7302B1014374> /Applications/Adobe InDesign CC/*/Gradient Panel
           0x10c59d000 -        0x10c640fff +com.adobe.InDesign.Graphic Panels (9.2.1.101 - 0) <AC90D2D5-F299-3B08-A9CB-82BC0E557FFC> /Applications/Adobe InDesign CC/*/Graphic Panels
           0x10c66a000 -        0x10c672ff7 +com.adobe.InDesign.JPEG Export UI (9.2.1.101 - 0) <2EAEC64B-5E6D-3E13-80AC-2DED9C3F0A28> /Applications/Adobe InDesign CC/*/JPEG Export UI
           0x10c67b000 -        0x10c696fff +com.adobe.InDesign.JPEG Export (9.2.1.101 - 0) <DB2C27D2-B1A9-37BF-BFB4-484E28CFC2E5> /Applications/Adobe InDesign CC/*/JPEG Export
           0x10c6a8000 -        0x10c6f9fff +com.adobe.InDesign.Output Preview (9.2.1.101 - 0) <1967D234-6D81-314A-8F7D-C85C7A2C2875> /Applications/Adobe InDesign CC/*/Output Preview
           0x10c713000 -        0x10c72aff7 +com.adobe.InDesign.OutputMiscUI (9.2.1.101 - 0) <BACF73C7-0ABA-361D-8F85-840CF055968A> /Applications/Adobe InDesign CC/*/OutputMiscUI
           0x10c73d000 -        0x10c7befff +com.adobe.InDesign.PDF UI (9.2.1.101 - 0) <2ABDFC92-F233-3DD2-9F41-6EA7F34B2E1E> /Applications/Adobe InDesign CC/*/PDF UI
           0x10c7e2000 -        0x10c84fff7 +com.adobe.AdobeXMPCore (Adobe XMP Core 5.5 -c 21 - 79.154911) <E8E31BC1-F7BC-3018-8CF8-AC3C7B2DCEA2> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
           0x10c85b000 -        0x10c872ff7 +com.adobe.InDesign.Printer Styles (9.2.1.101 - 0) <ACDF3B96-030B-3A7A-B552-661D4EF28F6D> /Applications/Adobe InDesign CC/*/Printer Styles
           0x10c881000 -        0x10c963fff +com.adobe.InDesign.PrintUI (9.2.1.101 - 0) <8CF1D4F4-85B0-3B0E-ABB8-DF70DA17609C> /Applications/Adobe InDesign CC/*/PrintUI
           0x10c98f000 -        0x10c9a1ff7 +com.adobe.InDesign.PS Import UI (9.2.1.101 - 0) <6F36235F-8819-3C30-8DCE-2771243875BE> /Applications/Adobe InDesign CC/*/PS Import UI
           0x10c9b0000 -        0x10c9d4ff7 +com.adobe.InDesign.Swatch Library Panel (9.2.1.101 - 0) <5C94F9C0-227E-3D5E-83FE-8D24A39A7286> /Applications/Adobe InDesign CC/*/Swatch Library Panel
           0x10c9e3000 -        0x10caa0ff7 +com.adobe.InDesign.Swatches Panel (9.2.1.101 - 0) <AFC9C047-060B-3F87-BFF4-C500FFC817DF> /Applications/Adobe InDesign CC/*/Swatches Panel
           0x10cad7000 -        0x10cb86ff7 +com.adobe.InDesign.Transparency UI (9.2.1.101 - 0) <3209F3EC-0A3E-3E68-AB9F-04D2F2D76C3D> /Applications/Adobe InDesign CC/*/Transparency UI
           0x10cbb9000 -        0x10cc1dfff +com.adobe.InDesign.Assignment UI (9.2.1.101 - 0) <23FE015C-C541-3EB2-BAAD-25F931528849> /Applications/Adobe InDesign CC/*/Assignment UI
           0x10cc3f000 -        0x10cc62fff +com.adobe.InDesign.InCopy Bridge UI (9.2.1.101 - 0) <7923E03C-96CB-3369-8CEC-1EA4E369DE70> /Applications/Adobe InDesign CC/*/InCopy Bridge UI
           0x10cc70000 -        0x10ccafff7 +com.adobe.InDesign.InCopy Bridge (9.2.1.101 - 0) <F476293E-F020-3CDB-9A0C-660B91A71281> /Applications/Adobe InDesign CC/*/InCopy Bridge
           0x10ccbf000 -        0x10ccc7fff +com.adobe.InDesign.InCopyExport (9.2.1.101 - 0) <9ACE4231-FCB8-3995-BE0E-ED6DBEAA58B7> /Applications/Adobe InDesign CC/*/InCopyExport
           0x10ccd1000 -        0x10ccd8ff7 +com.adobe.InDesign.InCopyExportUI (9.2.1.101 - 0) <F0EB0F82-C96B-3B9D-92C5-66E2DCC416DF> /Applications/Adobe InDesign CC/*/InCopyExportUI
           0x10cce1000 -        0x10cce8fff +com.adobe.InDesign.InCopyImport (9.2.1.101 - 0) <6C4D93D1-26B1-3A78-AEC4-08BE97A6F15A> /Applications/Adobe InDesign CC/*/InCopyImport
           0x10ccef000 -        0x10ccf7fff +com.adobe.InDesign.InCopyWorkflow UI (9.2.1.101 - 0) <F7524889-E7AC-3177-AFF7-B487FD6BF7D6> /Applications/Adobe InDesign CC/*/InCopyWorkflow UI
           0x10cd02000 -        0x10cd59ff7 +com.adobe.InDesign.Note (9.2.1.101 - 0) <07808666-F165-34C1-9E46-D4403EC7C6A6> /Applications/Adobe InDesign CC/*/Note
           0x10cd79000 -        0x10cd84ff7 +com.adobe.InDesign.NotePref (9.2.1.101 - 0) <D1FA4217-A5A8-31D2-9178-D94F2F048790> /Applications/Adobe InDesign CC/*/NotePref
           0x10cd92000 -        0x10cd97ff7 +com.adobe.InDesign.Username UI (9.2.1.101 - 0) <D3009947-D338-3EAB-9690-722AB9C10FB3> /Applications/Adobe InDesign CC/*/Username UI
           0x10cda1000 -        0x10ce43fff +com.adobe.InDesign.ButtonUI (9.2.1.101 - 0) <A6BBF878-D711-3510-B607-EC1B52687BFC> /Applications/Adobe InDesign CC/*/ButtonUI
           0x10ce73000 -        0x10ce9bff7 +com.adobe.InDesign.MediaUI (9.2.1.101 - 0) <3EF85F9E-52B3-3385-861C-116A4758E02D> /Applications/Adobe InDesign CC/*/MediaUI
           0x10ceb0000 -        0x10cec0fff +com.adobe.InDesign.Alignment Panel (9.2.1.101 - 0) <54940D94-3BB6-38D7-B45B-14906B94A6C3> /Applications/Adobe InDesign CC/*/Alignment Panel
           0x10cec9000 -        0x10cf10fff +com.adobe.InDesign.Asset Library Panel (9.2.1.101 - 0) <94FC082E-93DF-34B8-B9AF-56F7A5A98B9E> /Applications/Adobe InDesign CC/*/Asset Library Panel
           0x10cf34000 -        0x10cfa1fff +com.adobe.InDesign.Asset PubLibrary (9.2.1.101 - 0) <37F17FFD-7BAA-3F5F-87D3-647C49A127ED> /Applications/Adobe InDesign CC/*/Asset PubLibrary
           0x10cfbf000 -        0x10d00dff7 +com.adobe.InDesign.Book Panel (9.2.1.101 - 0) <AA1C2413-72AA-3407-8A68-203B8FB4FEA2> /Applications/Adobe InDesign CC/*/Book Panel
           0x10d031000 -        0x10d04dfff +com.adobe.InDesign.Bookmark Panel (9.2.1.101 - 0) <BDC06E7C-049F-323E-B333-1FED1E499E37> /Applications/Adobe InDesign CC/*/Bookmark Panel
           0x10d064000 -        0x10d09dfff +com.adobe.InDesign.ContentDropper Tool (9.2.1.101 - 0) <E8550DE9-50AD-303F-9009-8E584DBADF9E> /Applications/Adobe InDesign CC/*/ContentDropper Tool
           0x10d0bc000 -        0x10d102ff7 +com.adobe.InDesign.Control Panel (9.2.1.101 - 0) <15528F16-3629-3E3B-90A8-E5CBD8E31B45> /Applications/Adobe InDesign CC/*/Control Panel
           0x10d11f000 -        0x10d129fff +com.adobe.InDesign.Create Guides Dialog (9.2.1.101 - 0) <59B37FF3-166C-3BA0-88F9-B48121D455FA> /Applications/Adobe InDesign CC/*/Create Guides Dialog
           0x10d134000 -        0x10d16efff +com.adobe.InDesign.Eyedropper Tool (9.2.1.101 - 0) <6EB8BC12-7868-3B4C-BAD1-851801E0A42E> /Applications/Adobe InDesign CC/*/Eyedropper Tool
           0x10d183000 -        0x10d246ff7 +com.adobe.InDesign.Hyperlinks Panel (9.2.1.101 - 0) <2ADAC3DA-225A-3CC2-B29F-11ABF86D3FCF> /Applications/Adobe InDesign CC/*/Hyperlinks Panel
           0x10d276000 -        0x10d306fff +com.adobe.InDesign.Index Panel (9.2.1.101 - 0) <3B1558CE-A272-35B4-A8A3-FFD880B3630B> /Applications/Adobe InDesign CC/*/Index Panel
           0x10d326000 -        0x10d332ff7  com.apple.carbonframeworktemplate (1.0 - 1.0) <E859A35E-8EC1-3CA9-9758-95EC69D4EC5D> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/unihan.framework/Versions/A/unihan
           0x10d33d000 -        0x10d3a6fff +com.adobe.InDesign.Info Panel (9.2.1.101 - 0) <F0AABE7E-6D25-3BD9-A8EC-A1CE5B1C3373> /Applications/Adobe InDesign CC/*/Info Panel
           0x10d3be000 -        0x10d482fff +com.adobe.InDesign.Knowledge Base (9.2.1.101 - 0) <E650B6BD-690B-37A0-9371-970563634B38> /Applications/Adobe InDesign CC/*/Knowledge Base
           0x10d48c000 -        0x10d4dfff7 +com.adobe.InDesign.Layers Panel (9.2.1.101 - 0) <32A9F245-ABAE-302A-B17C-B3EF2A5E4A9D> /Applications/Adobe InDesign CC/*/Layers Panel
           0x10d501000 -        0x10d506fff +com.adobe.InDesign.Layout Adjustment Panel (9.2.1.101 - 0) <098313B3-96FB-3AF9-BC24-2F3CA93AFB4C> /Applications/Adobe InDesign CC/*/Layout Adjustment Panel
           0x10d50f000 -        0x10d52ffff +com.adobe.InDesign.Layout Adjustment (9.2.1.101 - 0) <08AB16C3-C9CB-3486-A339-2A35E63E0565> /Applications/Adobe InDesign CC/*/Layout Adjustment
           0x10d53e000 -        0x10d58aff7 +com.adobe.InDesign.Links UI (9.2.1.101 - 0) <5D426E96-ADC2-38BE-A84E-840FFFF0EB1D> /Applications/Adobe InDesign CC/*/Links UI
           0x10d5ac000 -        0x10d651ff7 +com.adobe.InDesign.ObjectStylesUI (9.2.1.101 - 0) <0D9FA355-F322-31B5-BC77-2020503C5260> /Applications/Adobe InDesign CC/*/ObjectStylesUI
           0x10d681000 -        0x10d6a7fff +com.adobe.InDesign.Page Setup Dialog (9.2.1.101 - 0) <36758243-E6DC-3E0F-A79E-AADCD5A416A8> /Applications/Adobe InDesign CC/*/Page Setup Dialog
           0x10d6b4000 -        0x10d778fff +com.adobe.InDesign.Pages Panel (9.2.1.101 - 0) <67B36CC5-4EED-30FA-9507-62B45AFDBFB5> /Applications/Adobe InDesign CC/*/Pages Panel
           0x10d7a9000 -        0x10d7b8fff +com.adobe.InDesign.Sections UI (9.2.1.101 - 0) <3FD8D737-8DA8-3707-9031-FB97E05D9FB9> /Applications/Adobe InDesign CC/*/Sections UI
           0x10d7c3000 -        0x10d7cdfff +com.adobe.InDesign.StepRepeat (9.2.1.101 - 0) <0F3A3EC5-6BF6-3D92-B2A9-A8D571E51B54> /Applications/Adobe InDesign CC/*/StepRepeat
           0x10d7d9000 -        0x10d818ff7 +com.adobe.InDesign.Text Wrap Panel (9.2.1.101 - 0) <0767C906-FE80-30D5-89E1-78D3F7AC8A5A> /Applications/Adobe InDesign CC/*/Text Wrap Panel
           0x10d831000 -        0x10d872fff +com.adobe.InDesign.TOC UI Dialog (9.2.1.101 - 0) <9DC626E3-B44C-327D-A605-3486F290893A> /Applications/Adobe InDesign CC/*/TOC UI Dialog
           0x10d88c000 -        0x10d8c8fff +com.adobe.InDesign.Transform Panel (9.2.1.101 - 0) <78B039EC-7BD7-3D4E-8C85-DE128B6C1F4B> /Applications/Adobe InDesign CC/*/Transform Panel
           0x10d8de000 -        0x10d8f9fff +com.adobe.InDesign.Image Import UI (9.2.1.101 - 0) <BBC09119-A690-340C-93A7-E27B238004B6> /Applications/Adobe InDesign CC/*/Image Import UI
           0x10d90b000 -        0x10d921fff +com.adobe.InDesign.Scotch Rules (9.2.1.101 - 0) <7BB10CB0-31B7-3B31-B2A5-97B8792273C3> /Applications/Adobe InDesign CC/*/Scotch Rules
           0x10d92c000 -        0x10d990ff7 +com.adobe.InDesign.BNUI (9.2.1.101 - 0) <A687AB81-E289-3AFD-BDC5-3350B0C1122D> /Applications/Adobe InDesign CC/*/BNUI
           0x10d9b0000 -        0x10da51ff7 +com.adobe.InDesign.DataMerge (9.2.1.101 - 0) <0DFAE7C2-0731-3D82-AA8C-1AE6E109DF99> /Applications/Adobe InDesign CC/*/DataMerge
           0x10da71000 -        0x10daa5fff +com.adobe.InDesign.DataMergeUI (9.2.1.101 - 0) <898AA1EF-681C-346F-B141-6DB164AD3FE5> /Applications/Adobe InDesign CC/*/DataMergeUI
           0x10dac0000 -        0x10dbcdff7 +com.adobe.InDesign.Package and Preflight UI (9.2.1.101 - 0) <A11E8FC7-DF9C-3B40-BEB4-B555BE2A2A3C> /Applications/Adobe InDesign CC/*/Package and Preflight UI
           0x10dc0e000 -        0x10de72fff +com.adobe.InDesign.Package and Preflight (9.2.1.101 - 0) <6590908A-0A78-32F4-A455-ABBEC9D97B5E> /Applications/Adobe InDesign CC/*/Package and Preflight
           0x10deb8000 -        0x10dfa6ff7 +com.adobe.InDesign.JBX (9.2.1.101 - 0) <4CF2340B-0AF2-3FA1-ABB9-C2808C3A8AA8> /Applications/Adobe InDesign CC/*/JBX
           0x10dfd0000 -        0x10dfd6fff +com.adobe.InDesign.Script Label Panel (9.2.1.101 - 0) <CF90BDAA-5B8E-33EB-B580-972C71104678> /Applications/Adobe InDesign CC/*/Script Label Panel
           0x10dfe2000 -        0x10dff0ff7 +com.adobe.InDesign.Scripts Panel (9.2.1.101 - 0) <C96405B4-3F30-3174-9F2A-4C874721EF27> /Applications/Adobe InDesign CC/*/Scripts Panel
           0x10dfff000 -        0x10e185ff7 +com.adobe.InDesign.SettingsInCloud (9.2.1.101 - 0) <EC5B37FA-9195-3243-9D62-C6A5FB8E394A> /Applications/Adobe InDesign CC/*/SettingsInCloud
           0x10e1a8000 -        0x10e28cfff +com.adobe.InDesign.Tables UI (9.2.1.101 - 0) <EB6A86BF-BECA-374D-9AE3-B29A6566EB44> /Applications/Adobe InDesign CC/*/Tables UI
           0x10e2bb000 -        0x10e35fff7 +com.adobe.InDesign.TableStylesUI (9.2.1.101 - 0) <956E57B9-06EB-3501-A290-B0D891C623C3> /Applications/Adobe InDesign CC/*/TableStylesUI
           0x10e38b000 -        0x10e422ff7 +com.adobe.InDesign.Character Panel (9.2.1.101 - 0) <13A2F730-248F-35BC-BB7E-4768DB93439D> /Applications/Adobe InDesign CC/*/Character Panel
           0x10e462000 -        0x10e494fff +com.adobe.InDesign.Conditional Text UI (9.2.1.101 - 0) <E1DD33FA-169E-3173-8E4F-E60BBFCC55D2> /Applications/Adobe InDesign CC/*/Conditional Text UI
           0x10e4af000 -        0x10e4ccff7 +com.adobe.InDesign.Create Outlines (9.2.1.101 - 0) <67E01895-4459-3227-97EE-05C08FAF12A7> /Applications/Adobe InDesign CC/*/Create Outlines
           0x10e4d9000 -        0x10e5feff7 +com.adobe.InDesign.Find and Change Panel (9.2.1.101 - 0) <9B25A6FC-D818-3715-9CAD-D1C7FDC71680> /Applications/Adobe InDesign CC/*/Find and Change Panel
           0x10e63b000 -        0x10e667ff7 +com.adobe.InDesign.Find Change Format Panel (9.2.1.101 - 0) <59B463B6-6D3B-3D25-B353-4A99C6301B2A> /Applications/Adobe InDesign CC/*/Find Change Format Panel
           0x10e67b000 -        0x10e6bbff7 +com.adobe.InDesign.Font Usage Dialog (9.2.1.101 - 0) <8CD7FADB-42BB-3C5D-8D01-D66041C451BB> /Applications/Adobe InDesign CC/*/Font Usage Dialog
           0x10e6d3000 -        0x10e7a3fff +com.adobe.InDesign.Glyphs Panel (9.2.1.101 - 0) <0C352A11-C0DE-33D4-ACD6-1A436B87D956> /Applications/Adobe InDesign CC/*/Glyphs Panel
           0x10e7c7000 -        0x10e7d1fff +com.adobe.InDesign.Hyphenation Panel (9.2.1.101 - 0) <CE3045F4-F009-33E4-904D-557A76A05216> /Applications/Adobe InDesign CC/*/Hyphenation Panel
           0x10e7de000 -        0x10e7f2fff +com.adobe.InDesign.Indents and Tabs (9.2.1.101 - 0) <43823223-7B60-3171-AACB-A8CD50C966CC> /Applications/Adobe InDesign CC/*/Indents and Tabs
           0x10e801000 -        0x10e80bfff +com.adobe.InDesign.Justification Panel (9.2.1.101 - 0) <4F940073-AAF8-3FDF-87FA-04A8DC87679D> /Applications/Adobe InDesign CC/*/Justification Panel
           0x10e816000 -        0x10e81eff7 +com.adobe.InDesign.Keeps Panel (9.2.1.101 - 0) <B93BD9B2-6C80-39E6-8A20-C37883A904E4> /Applications/Adobe InDesign CC/*/Keeps Panel
           0x10e826000 -        0x10e846fff +com.adobe.InDesign.Optical Kerning (9.2.1.101 - 0) <4E574590-FE5E-3CD1-91FE-A812919DDFAF> /Applications/Adobe InDesign CC/*/Optical Kerning
           0x10e851000 -        0x10e885ff7 +com.adobe.InDesign.Paragraph Panel (9.2.1.101 - 0) <AF14E0F9-4234-355B-816F-A19A7BCE8676> /Applications/Adobe InDesign CC/*/Paragraph Panel
           0x10e898000 -        0x10e8aaff7 +com.adobe.InDesign.Paragraph Rules Panel (9.2.1.101 - 0) <505B0CE0-4873-3DA9-97BC-1CE80B8A81E4> /Applications/Adobe InDesign CC/*/Paragraph Rules Panel
           0x10e8b4000 -        0x10e8cbfff +com.adobe.InDesign.Path Type UI (9.2.1.101 - 0) <5FBB48B2-8E60-3BFA-82EA-A52467B9831A> /Applications/Adobe InDesign CC/*/Path Type UI
           0x10e8db000 -        0x10e8e5ff7 +PathTypeLib.dylib (1) <A6E44FB4-61D6-3729-B3DD-A4D22EEC73B3> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/PathTypeLib.dylib
           0x10e8ee000 -        0x10e91bfff +com.adobe.InDesign.RunIn Styles Panel (9.2.1.101 - 0) <EE33D598-7F48-3DCE-A596-B619BE63F8EE> /Applications/Adobe InDesign CC/*/RunIn Styles Panel
           0x10e92d000 -        0x10e93eff7 +com.adobe.InDesign.SING (9.2.1.101 - 0) <3CC6846B-D663-31F2-BAB9-03BCAD89606E> /Applications/Adobe InDesign CC/*/SING
           0x10e948000 -        0x10e952ff7 +com.adobe.InDesign.Span Columns Panel (9.2.1.101 - 0) <15F063E0-7874-30AE-841C-C10A12CF8B5E> /Applications/Adobe InDesign CC/*/Span Columns Panel
           0x10e95b000 -        0x10e9a7ff7 +com.adobe.InDesign.Spelling Panel (9.2.1.101 - 0) <B208BBCC-1AAB-354C-9CA6-44C6B5D35946> /Applications/Adobe InDesign CC/*/Spelling Panel
           0x10e9c1000 -        0x10e9d5ff7 +com.adobe.InDesign.Story Panel (9.2.1.101 - 0) <989D8312-C513-36B9-9A2A-A161EC806905> /Applications/Adobe InDesign CC/*/Story Panel
           0x10e9e4000 -        0x10ea5fff7 +com.adobe.InDesign.Style Panel (9.2.1.101 - 0) <9282C33B-17C7-3AE0-94D0-7F53831FA588> /Applications/Adobe InDesign CC/*/Style Panel
           0x10ea88000 -        0x10ea95ff7 +com.adobe.InDesign.Text Color Panel (9.2.1.101 - 0) <B9722BDD-B3B2-3B6B-90EC-D7B52D54C678> /Applications/Adobe InDesign CC/*/Text Color Panel
           0x10ea9e000 -        0x10eacaff7 +com.adobe.InDesign.Text Frame Options (9.2.1.101 - 0) <24DF4463-54CA-3FC3-95E3-E8C791B12169> /Applications/Adobe InDesign CC/*/Text Frame Options
           0x10eadb000 -        0x10eb41fff +com.adobe.InDesign.Text Panel (9.2.1.101 - 0) <70BA1FF5-A8FD-3D59-976A-5AE782CB79ED> /Applications/Adobe InDesign CC/*/Text Panel
           0x10eb64000 -        0x10eb86fff +com.adobe.InDesign.Text Preferences (9.2.1.101 - 0) <8C47BE3B-1091-32A2-9059-386030EC9C49> /Applications/Adobe InDesign CC/*/Text Preferences
           0x10eb96000 -        0x10ebb9ff7 +com.adobe.InDesign.Text Ruler (9.2.1.101 - 0) <7B9A2B91-60B5-32FD-8244-6372495C16BF> /Applications/Adobe InDesign CC/*/Text Ruler
           0x10ebca000 -        0x10ebefff7 +com.adobe.InDesign.Text Style Panel (9.2.1.101 - 0) <8313AC57-723E-3409-97C3-4E33665F8396> /Applications/Adobe InDesign CC/*/Text Style Panel
           0x10ec00000 -        0x10ec2cff7 +com.adobe.InDesign.Article Panel (9.2.1.101 - 0) <DFB7EF6E-5FBE-3E41-8A0B-B5E678F955A4> /Applications/Adobe InDesign CC/*/Article Panel
           0x10ec45000 -        0x10ec77fff +com.adobe.InDesign.CSXS (9.2.1.101 - 0) <23CEA49C-D486-3ADB-B1E9-4647E3BD22AE> /Applications/Adobe InDesign CC/*/CSXS
           0x10ec8f000 -        0x10ecc7ff7 +com.adobe.InDesign.Galley Preferences (9.2.1.101 - 0) <8AA1A69A-6B95-320B-9307-C45F80BCD14D> /Applications/Adobe InDesign CC/*/Galley Preferences
           0x10ece2000 -        0x10ed03ff7 +com.adobe.InDesign.GapTool (9.2.1.101 - 0) <FC93E783-D09C-3F01-9CF1-873002CC0FBD> /Applications/Adobe InDesign CC/*/GapTool
           0x10ed13000 -        0x10ed1eff7 +com.adobe.InDesign.General Preferences Panel (9.2.1.101 - 0) <F513D5DE-713B-3A9A-9F3E-E997883E69A6> /Applications/Adobe InDesign CC/*/General Preferences Panel
           0x10ed29000 -        0x10ed2dfff +com.adobe.InDesign.Help (9.2.1.101 - 0) <09CFAB79-828F-39A9-8E6C-634999CF4EC8> /Applications/Adobe InDesign CC/*/Help
           0x10ed34000 -        0x10ed47ff7 +com.adobe.ahclientframework (1.8.0.31 - 1.8.0.31) <58BB943C-98EC-3812-AAAB-74F66630D1D4> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/ahclient.framework/Versions/A/ahclient
           0x10ed4e000 -        0x10ed6afff +com.adobe.InDesign.Performance UI (9.2.1.101 - 0) <278593AB-82E1-373C-9644-85373371BB93> /Applications/Adobe InDesign CC/*/Performance UI
           0x10ed7f000 -        0x10eda3ff7 +com.adobe.InDesign.SharedContentUI (9.2.1.101 - 0) <D62134DD-76DC-3DD0-B8B2-4F2C857037E5> /Applications/Adobe InDesign CC/*/SharedContentUI
           0x10edb2000 -        0x10edd8fff +com.adobe.InDesign.Shortcut Editor Dialog (9.2.1.101 - 0) <C4A827C6-AA10-3628-8967-01B9CD5EF71E> /Applications/Adobe InDesign CC/*/Shortcut Editor Dialog
           0x10edec000 -        0x10ee0cfff +com.adobe.InDesign.Tool Box (9.2.1.101 - 0) <5B97B389-A741-323E-A4E8-38B49C3F2BF3> /Applications/Adobe InDesign CC/*/Tool Box
           0x10ee30000 -        0x10ee38ff7 +com.adobe.InDesign.Tool Tips (9.2.1.101 - 0) <88CF576A-34C1-3CE6-A4CB-8EDB975F1DCB> /Applications/Adobe InDesign CC/*/Tool Tips
           0x10ee41000 -        0x10ee49fff +com.adobe.InDesign.Track Changes Preferences (9.2.1.101 - 0) <5A658631-2249-3036-A041-EE8CB387BF8B> /Applications/Adobe InDesign CC/*/Track Changes Preferences
           0x10ee53000 -        0x10ee6aff7 +com.adobe.InDesign.Track Changes UI (9.2.1.101 - 0) <01C328F8-3440-3866-B596-D03D78FA5BF3> /Applications/Adobe InDesign CC/*/Track Changes UI
           0x10ee75000 -        0x10ee81ff7 +com.adobe.InDesign.PerformanceMetrics (9.2.1.101 - 0) <67E7E2B5-61E3-3F40-B440-5FE1EDE59E77> /Applications/Adobe InDesign CC/*/PerformanceMetrics
           0x10ee8c000 -        0x10ee9bff7 +com.adobe.InDesign.Metadata UI (9.2.1.101 - 0) <442F11B4-4698-3BED-BADD-F1E858A7DCB7> /Applications/Adobe InDesign CC/*/Metadata UI
           0x10eea5000 -        0x10ef16fe7 +com.adobe.FileInfo.framework (Adobe XMP FileInfo 5 . 3 . 0 . 0 -i 3 - 79.154511) <E69CE2EF-1FC7-3C8D-AAB8-8C5B0B3D3176> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
           0x10ef29000 -        0x10ef33fff +com.adobe.InDesign.Workgroup UI (9.2.1.101 - 0) <B71098FE-647E-327A-9767-8075272CB665> /Applications/Adobe InDesign CC/*/Workgroup UI
           0x10ef3c000 -        0x10ef8dff7 +com.adobe.InDesign.Snippet (9.2.1.101 - 0) <5CC75DF2-5697-3E17-920D-1536AED78A9A> /Applications/Adobe InDesign CC/*/Snippet
           0x10efa6000 -        0x10f0d5ff7 +com.adobe.InDesign.XMedia UI (9.2.1.101 - 0) <EE29CCB0-862B-3528-B6F1-AA856F23DFA8> /Applications/Adobe InDesign CC/*/XMedia UI
           0x10f11f000 -        0x10f182ff7 +com.adobe.InDesign.Actions (9.2.1.101 - 0) <71C1F74A-C7C5-338B-88B0-15C184328F7A> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Actions.InDesignPlugin/Actions
           0x10f19d000 -        0x10f363ff7 +com.adobe.InDesign.AppFramework (9.2.1.101 - 0) <6EAA206E-7521-3A43-AC69-569D502C5C9A> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/AppFramework.InDesignPlugin/AppFramework
           0x10f3b7000 -        0x10f5ccfff +com.adobe.InDesign.Application UI (9.2.1.101 - 0) <A9201C20-7814-3168-BD63-84002E3261B3> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Application UI.InDesignPlugin/Application UI
           0x10f663000 -        0x10f981ff7 +com.adobe.dvaadameve.framework (7.0.849324 - 7.0.849324.0) <FF303DE3-2F53-3AA7-94E7-93B46DB28918> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/dvaadameve.framework/Versions/A/dvaadameve
           0x10fc57000 -        0x10fca6fff +com.adobe.headlights.LogSessionFramework (2.1.2.1785) <160BF2F9-B418-31C5-866F-6FADA1B720ED> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
           0x10fccc000 -        0x10fd8afff +com.adobe.AdobeExtendScript (ExtendScript 4.5.5 - 4.5.5.31983) <7764EE73-651A-3D8A-9B0F-A25DF57D79E1> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendScript
           0x10fdb2000 -        0x10fe5dff7 +com.adobe.AdobeScCore (ScCore 4.5.5 - 4.5.5.31983) <0E9111E5-ECBF-3C1C-82DB-9A945F1A573C> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
           0x10fe87000 -        0x10ffd7fff +com.adobe.dvascriptui.framework (7.0.849324 - 7.0.849324.0) <EC31CE70-34C1-31E0-A68D-F49D99ADA604> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/dvascriptui.framework/Versions/A/dvascriptui
           0x1100f9000 -        0x11011fff7 +com.adobe.InDesign.Article (9.2.1.101 - 0) <5594CD9B-844A-3C9F-949A-93F520ACCD63> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Article.InDesignPlugin/Article
           0x11012f000 -        0x1101ccfff +com.adobe.InDesign.Assignments (9.2.1.101 - 0) <CA529AA7-D38E-3D7B-967E-8EC980F2901B> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Assignments.InDesignPlugin/Assignments
           0x1101ed000 -        0x1102fafff +com.adobe.AdobeXMPFiles (Adobe XMP Files 5.6 -f 81 - 79.154911) <38348CA8-7905-3AA4-AA00-95A6D912C491> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeXMPFiles.framework/Versions/A/AdobeXMPFiles
           0x110330000 -        0x110370fff +com.adobe.InDesign.AWS (9.2.1.101 - 0) <572A9805-107C-30E1-A639-08C977F22E0C> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/AWS.InDesignPlugin/AWS
           0x110389000 -        0x1103b4ff7 +com.adobe.InDesign.AWSUI (9.2.1.101 - 0) <6CDDCDEE-176D-3E7E-A666-3CE5045EA3CB> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/AWSUI.InDesignPlugin/AWSUI
           0x1103c9000 -        0x110403ff7 +com.adobe.InDesign.Basic Tools (9.2.1.101 - 0) <67E340EB-CE3F-334F-B1FB-7B0FBCE2AB75> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Basic Tools.InDesignPlugin/Basic Tools
           0x11041e000 -        0x110487fff +com.adobe.InDesign.Behavior (9.2.1.101 - 0) <9224EBBE-1184-30AC-9C0B-7776AC77A582> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Behavior.InDesignPlugin/Behavior
           0x1104a5000 -        0x110547ff7 +com.adobe.InDesign.BNCore (9.2.1.101 - 0) <7370C6DC-E42A-3AE4-9E2B-AE876B3A625F> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/BNCore.InDesignPlugin/BNCore
           0x110565000 -        0x1105cbfff +com.adobe.InDesign.Book (9.2.1.101 - 0) <A57C7841-5282-3A46-8202-CAB3C70DFBD0> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Book.InDesignPlugin/Book
           0x1105e2000 -        0x11061bfff +com.adobe.InDesign.CellStyles (9.2.1.101 - 0) <99BB7B71-EDF0-361B-B168-A9AB3025E24D> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/CellStyles.InDesignPlugin/CellStyles
           0x11062e000 -        0x1106beff7 +com.adobe.InDesign.CJK Text Attributes (9.2.1.101 - 0) <A3516E48-C8B1-33E1-9948-056076338D94> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/CJK Text Attributes.InDesignPlugin/CJK Text Attributes
           0x1106e1000 -        0x110767fff +com.adobe.InDesign.CJKGrid (9.2.1.101 - 0) <C2AE712A-12DC-3666-A8F6-CE4572E22B87> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/CJKGrid.InDesignPlugin/CJKGrid
           0x110783000 -        0x110880fff +com.adobe.InDesign.Color Management (9.2.1.101 - 0) <33023C59-D4C5-3BF2-8C42-54BD6E50E651> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Color Management.InDesignPlugin/Color Management
           0x1108ad000 -        0x110914ff7 +com.adobe.InDesign.CompFontMgr (9.2.1.101 - 0) <445E5D30-A1FC-3E63-AEA9-B0DF8B1F9213> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/CompFontMgr.InDesignPlugin/CompFontMgr
           0x11092c000 -        0x110983fff +com.adobe.InDesign.Conditional Text (9.2.1.101 - 0) <0F92B4B6-9877-38A5-AE21-77558C13513F> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Conditional Text.InDesignPlugin/Conditional Text
           0x11099c000 -        0x1109d0ff7 +com.adobe.InDesign.ContentDropper (9.2.1.101 - 0) <770161E3-FD66-3F7E-9590-8081A26EBF87> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/ContentDropper.InDesignPlugin/ContentDropper
           0x1109e4000 -        0x110a0afff +com.adobe.InDesign.Dialog Layout (9.2.1.101 - 0) <F0876EDD-1E88-3B12-BABC-63F14A8DA912> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Dialog Layout.InDesignPlugin/Dialog Layout
           0x110a1c000 -        0x110a42fff +com.adobe.InDesign.Document Actions (9.2.1.101 - 0) <6E70D356-C8C4-3EBD-9026-19E728F20013> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Document Actions.InDesignPlugin/Document Actions
           0x110a4f000 -        0x110c2ffff +com.adobe.InDesign.Document Framework (9.2.1.101 - 0) <75A1A812-4CDF-37B2-8AEC-15440B0E95A2> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Document Framework.InDesignPlugin/Document Framework
           0x110c6d000 -        0x110c77ff7 +com.adobe.InDesign.Document UI (9.2.1.101 - 0) <7FAE894D-EEAE-3C6B-B209-A6CFAFA514B7> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Document UI.InDesignPlugin/Document UI
           0x110c81000 -        0x110cd1ff7 +com.adobe.InDesign.DV_Widgets (9.2.1.101 - 0) <AB7FF37C-CB4B-3DE7-A825-2CEB2DE0568A> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/DV_Widgets.InDesignPlugin/DV_Widgets
           0x110d06000 -        0x111066fff +com.adobe.InDesign.Dynamic Documents (9.2.1.101 - 0) <CA3478E3-0A3A-3595-8804-2DFDD485E3B6> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Dynamic Documents.InDesignPlugin/Dynamic Documents
           0x1110ae000 -        0x1111a5fff +com.adobe.AGMFL (AdobeAGMFL 2.1.0.31977 - 2.1.0.31977) <C93FF155-AA80-34F1-A785-42BC0D8D3909> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/ADBE_AGMFL.framework/Versions/A/ADBE_AGMFL
           0x1111c2000 -        0x11139fff7 +com.adobe.AFlamingo (AFlamingo 2.4.402.31977 - 2.4.402.31977) <B90D5CA4-DA52-39A1-95DD-8011764655A1> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/aflamingo.framework/Versions/A/aflamingo
           0x1113c3000 -        0x111505fe7 +com.adobe.InDesign.EPS Page Item (9.2.1.101 - 0) <CFD4D636-06B2-3969-91FA-ED68F0873111> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/EPS Page Item.InDesignPlugin/EPS Page Item
           0x111544000 -        0x111693ff7 +com.adobe.InDesign.Font Manager (9.2.1.101 - 0) <7E3483CF-FE4D-3218-BABE-7698C5674F32> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Font Manager.InDesignPlugin/Font Manager
           0x1116bb000 -        0x111792ff7 +com.adobe.InDesign.FormField (9.2.1.101 - 0) <8D813A0F-DBD0-31EA-93DA-102D366DF99C> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/FormField.InDesignPlugin/FormField
           0x1117b7000 -        0x111818ff7 +com.adobe.InDesign.Galley (9.2.1.101 - 0) <970A6D55-9CDF-3DE7-939D-372B0907F4BC> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Galley.InDesignPlugin/Galley
           0x11182d000 -        0x111978ff7 +com.adobe.InDesign.GalleyUI (9.2.1.101 - 0) <89C9D915-C94D-3548-92AE-4017AC973AA5> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/GalleyUI.InDesignPlugin/GalleyUI
           0x1119a6000 -        0x111c12ff7 +com.adobe.InDesign.Generic Page Item (9.2.1.101 - 0) <F0DECCE6-EAF5-30C0-8FB0-48FA56CB3503> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Generic Page Item.InDesignPlugin/Generic Page Item
           0x111c5e000 -        0x111c6cfff +com.adobe.InDesign.GenericSettings (9.2.1.101 - 0) <265C32A6-C9D4-3571-93BB-BF1A64FE3001> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/GenericSettings.InDesignPlugin/GenericSettings
           0x111c76000 -        0x111c79fff +com.adobe.InDesign.Global Preferences Panel (9.2.1.101 - 0) <3B261D67-E6B5-32E3-AC7E-AFCCDC9B75CB> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Global Preferences Panel.InDesignPlugin/Global Preferences Panel
           0x111c7f000 -        0x111ceffff +com.adobe.InDesign.Gradient Fill (9.2.1.101 - 0) <FFE95F52-F173-3B84-A96C-3340E06FFE72> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Gradient Fill.InDesignPlugin/Gradient Fill
           0x111d0b000 -        0x111e0dff7 +com.adobe.InDesign.Graphics (9.2.1.101 - 0) <FCBDB8E7-46E8-3987-9BCB-0E3177F00F11> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Graphics.InDesignPlugin/Graphics
           0x111e31000 -        0x111e3dff7 +com.adobe.InDesign.Group (9.2.1.101 - 0) <8DF66586-0FC5-3EA5-8F0D-6083387F0697> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Group.InDesignPlugin/Group
           0x111e4a000 -        0x111e6bff7 +com.adobe.InDesign.Guides (9.2.1.101 - 0) <0431FB5F-AA6B-33A6-BDFE-7ABEC7445572> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Guides.InDesignPlugin/Guides
           0x111e7d000 -        0x111f4fff7 +com.adobe.InDesign.HTMLPGT (9.2.1.101 - 0) <DE7D940F-9651-3A94-B364-588061627B2C> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/HTMLPGT.InDesignPlugin/HTMLPGT
           0x111fb3000 -        0x1120c1fff +com.adobe.InDesign.Hyperlinks (9.2.1.101 - 0) <BF029BB8-6578-303F-A983-9ADEE43AB7A4> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Hyperlinks.InDesignPlugin/Hyperlinks
           0x1120ec000 -        0x11213fff7 +com.adobe.InDesign.Image Filters (9.2.1.101 - 0) <F3DF9DCA-6073-3DF8-89EB-18F8D1DB8902> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Image Filters.InDesignPlugin/Image Filters
           0x11214b000 -        0x112261ff7 +com.adobe.InDesign.Image (9.2.1.101 - 0) <E026A24C-EF82-33E8-95FD-463A23618CB2> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Image.InDesignPlugin/Image
           0x11228d000 -        0x1122a7ff7 +com.adobe.InDesign.IME (9.2.1.101 - 0) <905334C5-8BF8-3958-8216-720BDB4D3A1F> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/IME.InDesignPlugin/IME
           0x1122b7000 -        0x112327fff +com.adobe.InDesign.Import Export UI (9.2.1.101 - 0) <FFA896AE-BAF9-30EC-A788-25AD02061296> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Import Export UI.InDesignPlugin/Import Export UI
           0x11234e000 -        0x112451ff7 +com.adobe.InDesign.InCopyShared (9.2.1.101 - 0) <355958AC-6C78-3173-A259-E777024CF2C3> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/InCopyShared.InDesignPlugin/InCopyShared
           0x11247d000 -        0x11249afff +com.adobe.InDesign.InCopySharedUI (9.2.1.101 - 0) <0A19AFFD-DB77-334D-B8D3-60CB775F517D> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/InCopySharedUI.InDesignPlugin/InCopySharedUI
           0x1124aa000 -        0x112542ff7 +com.adobe.InDesign.InCopyWorkflow (9.2.1.101 - 0) <D6C76680-B980-3D34-A873-C8883C2779F6> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/InCopyWorkflow.InDesignPlugin/InCopyWorkflow
           0x112568000 -        0x11266eff7 +com.adobe.InDesign.Indexing (9.2.1.101 - 0) <CD23A88C-DBB2-3F46-91CC-31B334E29762> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Indexing.InDesignPlugin/Indexing
           0x11268f000 -        0x11275ffff +com.adobe.InDesign.INXCore (9.2.1.101 - 0) <40520408-A5B6-3023-B802-158D391E41FA> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/INXCore.InDesignPlugin/INXCore
           0x112787000 -        0x1127b4fff +com.adobe.InDesign.Layer (9.2.1.101 - 0) <94604B73-0E52-30CB-9CC0-805F5B138FE4> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Layer.InDesignPlugin/Layer
           0x1127c7000 -        0x1129d5fff +com.adobe.InDesign.Layout UI (9.2.1.101 - 0) <4D341B44-0E84-360A-972A-4379A6B60AD8> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Layout UI.InDesignPlugin/Layout UI
           0x112a35000 -        0x112a5efff +com.adobe.InDesign.Layout (9.2.1.101 - 0) <98815961-6446-3917-B266-7E3DB625B782> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Layout.InDesignPlugin/Layout
           0x112a6d000 -        0x112abefff +com.adobe.InDesign.Linguistics (9.2.1.101 - 0) <13A4BC6D-4C68-3884-9059-5837B952EC17> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Linguistics.InDesignPlugin/Linguistics
           0x112ad8000 -        0x112c12fff +com.adobe.InDesign.Links (9.2.1.101 - 0) <1BCD7856-3DD0-3C58-AF61-0E430CF5EFBC> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Links.InDesignPlugin/Links
           0x112c47000 -        0x112cebfff +com.adobe.InDesign.Master Page (9.2.1.101 - 0) <557BD678-3F9D-3A4F-ABDA-8A1DD7D41AF6> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Master Page.InDesignPlugin/Master Page
           0x112d05000 -        0x112d61ff7 +com.adobe.InDesign.Media (9.2.1.101 - 0) <560CE1DB-99AF-389F-8BC2-37D5F83C110F> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Media.InDesignPlugin/Media
           0x112d77000 -        0x112d78ff7 +com.adobe.InDesign.Metadata Database Filter (9.2.1.101 - 0) <3BE1DF86-81E8-359D-A40E-84EC7

  • InDesign crashing on startup with upgrade to Yosemite -only on main admin user- MacBook Pro 2011

    Hi, I have been reading forums about similar issue but not able to solve my issue.
    1.) Installed Yosemite 1x
    2.) Indesign CS5 crashed on Launch (Photoshop and Illustrator opened fine)
         a.) So I upgraded to CC
    3.) Indesign CC also crashed on launch(Photoshop and Illustrator opened fine)
    4.) Spent hours on chat support with Adobe -
         a.) They cleared out many old files (preferences etc) -
         b.) We uninstalled Adobe CC and used the Adobe CC Cleaner tool and Re-installed.  Still did not open.
    5.) Tried to open InDesign CC in newly created second admin User account.  Opened fine!
         a.) So it is only crashing in my main user account.
         b.) Adobe determined they could not help me and told me I had to contact apple support (have not done yet)
    6.) Re-installed Yosemite from thumb drive I had created as installer- seemed to install fine and fixed a minor problem I have had with Mac Mail.
    What do I need to do?  Is there some way to clean up the User account so this will open?
    Process:               Adobe InDesign CC 2014 [1071]
    Path:                  /Applications/Adobe InDesign CC 2014/Adobe InDesign CC 2014.app/Contents/MacOS/Adobe InDesign CC 2014
    Identifier:            com.adobe.InDesign
    Version:               10.2.0.69 (10200)
    Code Type:             X86-64 (Native)
    Parent Process:        ??? [1]
    Responsible:           Adobe InDesign CC 2014 [1071]
    User ID:               501
    Date/Time:             2015-02-14 09:32:28.084 -0600
    OS Version:            Mac OS X 10.10.2 (14C109)
    Report Version:        11
    Anonymous UUID:        9B44E1D7-7023-5BF9-B38A-41FA98DB31F6
    Sleep/Wake UUID:       FEAE9EBA-5ACD-4B53-9AE0-78443AD6FAC3
    Time Awake Since Boot: 2900 seconds
    Time Since Wake:       1800 seconds
    Crashed Thread:        0  Dispatch queue: com.apple.main-thread
    Exception Type:        EXC_CRASH (SIGABRT)
    Exception Codes:       0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    abort() called
    *** error for object 0x600000017910: Invalid pointer dequeued from free list
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib         0x00007fff92def286 __pthread_kill + 10
    1   libsystem_c.dylib             0x00007fff886ecb53 abort + 129
    2   libsystem_malloc.dylib         0x00007fff88795f3c nanozone_error + 524
    3   libsystem_malloc.dylib         0x00007fff88783a5c _nano_malloc_check_clear + 370
    4   libsystem_malloc.dylib         0x00007fff887838cc nano_malloc + 35
    5   libsystem_malloc.dylib         0x00007fff88783877 malloc_zone_malloc + 71
    6   libsystem_malloc.dylib         0x00007fff88782395 malloc + 42
    7   libc++abi.dylib               0x00007fff8db8223e operator new(unsigned long) + 30
    8   PMRuntime.dylib               0x000000010b4c8936 0x10b4c6000 + 10550
    9   PMRuntime.dylib               0x000000010b4c8a1f 0x10b4c6000 + 10783
    10  PublicLib.dylib               0x000000010b11647e CStyleGroupHierarchy::CStyleGroupHierarchy(IPMUnknown*) + 78
    11  com.adobe.InDesign.Text       0x000000011ec08c56 0x11e9bd000 + 2407510
    12  ObjectModelLib.dylib           0x000000010e374608 0x10e36c000 + 34312
    13  ObjectModelLib.dylib           0x000000010e36e424 0x10e36c000 + 9252
    14  ObjectModelLib.dylib           0x000000010e3a091e 0x10e36c000 + 215326
    15  DataBaseLib.dylib             0x000000010e2f4a0e 0x10e2f0000 + 18958
    16  PublicLib.dylib               0x000000010b1188c4 CStyleGroupManager::GetRootHierarchy() const + 244
    17  PublicLib.dylib               0x000000010b118ba1 CStyleGroupManager::FindByName(PMString const&, IStyleGroupManager::StyleNameMatch*) const + 257
    18  com.adobe.InDesign.Text       0x000000011ebc70bb 0x11e9bd000 + 2138299
    19  com.adobe.InDesign.Text       0x000000011ebc5e53 0x11e9bd000 + 2133587
    20  com.adobe.InDesign.Text       0x000000011ebc5c57 0x11e9bd000 + 2133079
    21  com.adobe.InDesign.Text       0x000000011ea0c6b8 0x11e9bd000 + 325304
    22  com.adobe.InDesign.AppFramework 0x000000011868ef4d 0x118662000 + 184141
    23  com.adobe.InDesign.AppFramework 0x000000011868f359 0x118662000 + 185177
    24  com.adobe.InDesign.BNCore     0x00000001193cec0e 0x1193ac000 + 142350
    25  com.adobe.InDesign.AppFramework 0x000000011868ef4d 0x118662000 + 184141
    26  com.adobe.InDesign.AppFramework 0x000000011868f2e5 0x118662000 + 185061
    27  PublicLib.dylib               0x000000010af039f1 CDataExchangeController::RunNewScrapResponders() + 465
    28  PublicLib.dylib               0x000000010af03635 CDataExchangeController::InitializeScrap() + 1301
    29  PublicLib.dylib               0x000000010af030d7 CDataExchangeController::Initialize() + 39
    30  com.adobe.InDesign.Text Walker 0x000000011e6ed9af 0x11e6e4000 + 39343
    31  com.adobe.InDesign.Text Walker 0x000000011e72a7ef 0x11e6e4000 + 288751
    32  com.adobe.InDesign.AppFramework 0x00000001186b76fd 0x118662000 + 349949
    33  ObjectModelLib.dylib           0x000000010e38d10c 0x10e36c000 + 135436
    34  ObjectModelLib.dylib           0x000000010e3a038b 0x10e36c000 + 213899
    35  ObjectModelLib.dylib           0x000000010e39b489 ShuksanInit(IStartupScreen* (*)(), IPlugIn*) + 6713
    36  com.adobe.InDesign             0x0000000109a8e69e main + 94
    37  com.adobe.InDesign             0x0000000109a8e5d4 start + 52
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib         0x00007fff92df0232 kevent64 + 10
    1   libdispatch.dylib             0x00007fff85f0ba6a _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib         0x00007fff92def94a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff9031640d start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib         0x00007fff92def94a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff9031640d start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib         0x00007fff92def94a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff9031640d start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib         0x00007fff92dea4de mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff92de964f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff94291b34 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff94290ffb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff94290858 CFRunLoopRunSpecific + 296
    5   IMSLib.dylib                   0x000000012090fdda 0x12090b000 + 19930
    6   IMSLib.dylib                   0x0000000120910590 0x12090b000 + 21904
    7   IMSLib.dylib                   0x00000001209213d9 0x12090b000 + 91097
    8   IMSLib.dylib                   0x0000000120920925 0x12090b000 + 88357
    9   IMSLib.dylib                   0x00000001209321ed 0x12090b000 + 160237
    10  IMSLib.dylib                   0x0000000120928098 0x12090b000 + 118936
    11  IMSLib.dylib                   0x00000001209178c4 0x12090b000 + 51396
    12  libsystem_pthread.dylib       0x00007fff90318268 _pthread_body + 131
    13  libsystem_pthread.dylib       0x00007fff903181e5 _pthread_start + 176
    14  libsystem_pthread.dylib       0x00007fff9031641d thread_start + 13
    Thread 6:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib         0x00007fff92dea4de mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff92de964f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff94291b34 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff94290ffb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff94290858 CFRunLoopRunSpecific + 296
    5   com.apple.CFNetwork           0x00007fff8e252c80 +[NSURLConnection(Loader) _resourceLoadLoop:] + 434
    6   com.apple.Foundation           0x00007fff928ca90a __NSThread__main__ + 1345
    7   libsystem_pthread.dylib       0x00007fff90318268 _pthread_body + 131
    8   libsystem_pthread.dylib       0x00007fff903181e5 _pthread_start + 176
    9   libsystem_pthread.dylib       0x00007fff9031641d thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib         0x00007fff92def94a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff9031640d start_wqthread + 13
    Thread 8:
    0   libsystem_kernel.dylib         0x00007fff92dea4de mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff92de964f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff94291b34 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff94290ffb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff94290858 CFRunLoopRunSpecific + 296
    5   IMSLib.dylib                   0x000000012090fdda 0x12090b000 + 19930
    6   IMSLib.dylib                   0x0000000120910590 0x12090b000 + 21904
    7   IMSLib.dylib                   0x00000001209213d9 0x12090b000 + 91097
    8   IMSLib.dylib                   0x0000000120920925 0x12090b000 + 88357
    9   IMSLib.dylib                   0x00000001209321ed 0x12090b000 + 160237
    10  IMSLib.dylib                   0x0000000120928098 0x12090b000 + 118936
    11  IMSLib.dylib                   0x00000001209178c4 0x12090b000 + 51396
    12  libsystem_pthread.dylib       0x00007fff90318268 _pthread_body + 131
    13  libsystem_pthread.dylib       0x00007fff903181e5 _pthread_start + 176
    14  libsystem_pthread.dylib       0x00007fff9031641d thread_start + 13
    Thread 9:
    0   libsystem_kernel.dylib         0x00007fff92dea4de mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff92de964f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff94291b34 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff94290ffb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff94290858 CFRunLoopRunSpecific + 296
    5   IMSLib.dylib                   0x000000012090fdda 0x12090b000 + 19930
    6   IMSLib.dylib                   0x0000000120910590 0x12090b000 + 21904
    7   IMSLib.dylib                   0x00000001209213d9 0x12090b000 + 91097
    8   IMSLib.dylib                   0x0000000120920925 0x12090b000 + 88357
    9   IMSLib.dylib                   0x00000001209321ed 0x12090b000 + 160237
    10  IMSLib.dylib                   0x0000000120928098 0x12090b000 + 118936
    11  IMSLib.dylib                   0x00000001209178c4 0x12090b000 + 51396
    12  libsystem_pthread.dylib       0x00007fff90318268 _pthread_body + 131
    13  libsystem_pthread.dylib       0x00007fff903181e5 _pthread_start + 176
    14  libsystem_pthread.dylib       0x00007fff9031641d thread_start + 13
    Thread 10:
    0   libsystem_kernel.dylib         0x00007fff92dea4de mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff92de964f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff94291b34 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff94290ffb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff94290858 CFRunLoopRunSpecific + 296
    5   IMSLib.dylib                   0x000000012090fdda 0x12090b000 + 19930
    6   IMSLib.dylib                   0x0000000120910590 0x12090b000 + 21904
    7   IMSLib.dylib                   0x00000001209213d9 0x12090b000 + 91097
    8   IMSLib.dylib                   0x0000000120920925 0x12090b000 + 88357
    9   IMSLib.dylib                   0x00000001209321ed 0x12090b000 + 160237
    10  IMSLib.dylib                   0x0000000120928098 0x12090b000 + 118936
    11  IMSLib.dylib                   0x00000001209178c4 0x12090b000 + 51396
    12  libsystem_pthread.dylib       0x00007fff90318268 _pthread_body + 131
    13  libsystem_pthread.dylib       0x00007fff903181e5 _pthread_start + 176
    14  libsystem_pthread.dylib       0x00007fff9031641d thread_start + 13
    Thread 11:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib         0x00007fff92def3fa __select + 10
    1   libsystem_pthread.dylib       0x00007fff90318268 _pthread_body + 131
    2   libsystem_pthread.dylib       0x00007fff903181e5 _pthread_start + 176
    3   libsystem_pthread.dylib       0x00007fff9031641d thread_start + 13
    Thread 12:
    0   libsystem_kernel.dylib         0x00007fff92def94a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff9031640d start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000000000006  rcx: 0x00007fff56171068  rdx: 0x0000000000000000
      rdi: 0x000000000000130f  rsi: 0x0000000000000006  rbp: 0x00007fff56171090  rsp: 0x00007fff56171068
       r8: 0x0000000000000000   r9: 0x0000000000000000  r10: 0x0000000008000000  r11: 0x0000000000000206
      r12: 0x0000000000000001  r13: 0x0000600000017910  r14: 0x00007fff76d52300  r15: 0x000000010e454000
      rip: 0x00007fff92def286  rfl: 0x0000000000000206  cr2: 0x00007fff75bbafd8
    Logical CPU:     0
    Error Code:      0x02000148
    Trap Number:     133
    Binary Images:
           0x109a8d000 -        0x109a92ff7 +com.adobe.InDesign (10.2.0.69 - 10200) <5A4FB9EB-9F6D-3284-9493-E9FF0B2D9704> /Applications/Adobe InDesign CC 2014/Adobe InDesign CC 2014.app/Contents/MacOS/Adobe InDesign CC 2014
           0x109a99000 -        0x109a9bfff +com.adobe.InDesign.InDesignModelAndUI (9.0 - 0) <B60E3D72-B6D5-38B9-BF3E-782C6DA76616> /Applications/Adobe InDesign CC 2014/Adobe InDesign CC 2014.app/Contents/MacOS/InDesignModelAndUI.framework/Versions/A/InDesignModelAn dUI
           0x109aa1000 -        0x109aa9fff +com.adobe.coretech.adobesplashkit (AdobeSplashKit Version 1.0 - 1.0) <DE5F9D5B-B04A-3755-B429-FC596A837225> /Applications/Adobe InDesign CC 2014/Adobe InDesign CC 2014.app/Contents/Frameworks/AdobeSplashKit.framework/Versions/A/AdobeSplashKit
           0x109ab3000 -        0x109abeff7 +ASLSupportLib.dylib (1) <BDEF6440-2620-3DA3-8D0F-36A46BD9490D> /Applications/Adobe InDesign CC 2014/Adobe InDesign CC 2014.app/Contents/MacOS/ASLSupportLib.dylib
           0x109acb000 -        0x109be6fff +DV_WidgetBinLib.dylib (1) <7AF7D413-5E27-3E78-AE85-FA4AE83F150F> /Applications/Adobe InDesign CC 2014/Adobe InDesign CC 2014.app/Contents/MacOS/DV_WidgetBinLib.dylib
           0x109d0d000 -        0x109d52fff +TextPanelLib.dylib (1) <3FC36017-3E72-3F6C-9C82-6A1B732296E3> /Applications/Adobe InDesign CC 2014/Adobe InDesign CC 2014.app/Contents/MacOS/TextPanelLib.dylib
           0x109d71000 -        0x109ed8ff7 +WidgetBinLib.dylib (1) <D643B651-EF10-3B8F-B135-FC3B2411E3AC> /Applications/Adobe InDesign CC 2014/Adobe InDesign CC 2014.app/Contents/MacOS/WidgetBinLib.dylib
           0x109f92000 -        0x10a161ff7 +com.adobe.owl (AdobeOwl version 5.0.33 - 5.0.33) <99CE9407-9426-3CCF-8C36-3A0F211FD043> /Applications/Adobe InDesign CC 2014/Adobe InDesign CC 2014.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
           0x10a1a9000 -        0x10a435fff +com.adobe.dvacore.framework (8.0.849323 - 8.0.849323.0) <4E40C3B4-AFCC-32E3-A84B-C7FE02887C09> /Applications/Adobe InDesign CC 2014/Adobe InDesign CC 2014.app/Contents/Frameworks/dvacore.framework/Versions/A/dvacore
           0x10a506000 -        0x10aa70fff +com.adobe.dvaui.framework (8.0.849323 - 8.0.849323.0) <E6C4B141-161B-32BF-8C3F-FE28537B477E> /Applications/Adobe InDesign CC 2014/Adobe InDesign CC 2014.app/Contents/Frameworks/dvaui.framework/Versions/A/dvaui
           0x10ae72000 -        0x10ae72fff +com.adobe.InDesign.InDesignModel (9.0 - 0) <7A950038-2DE2-34B6-B061-3FDC39A5FD52> /Applications/Adobe InDesign CC 2014/Adobe InDesign CC 2014.app/Contents/MacOS/InDesignModel.framework/Versions/A/InDesignModel
           0x10ae7d000 -        0x10ae8bfff +com.adobe.boost_threads.framework (7.0.849323 - 7.0.849323.0) <C79997A8-ECDE-352D-AE76-B432E47513A3> /Applications/Adobe InDesign CC 2014/Adobe InDesign CC 2014.app/Contents/Frameworks/boost_threads.framework/Versions/A/boost_threads
           0x10ae9f000 -        0x10aea1fff +com.adobe.boost_system.framework (7.0.849323 - 7.0.849323.0) <D2BCFF56-217E-3714-97C4-02FA9D2DD5AD> /Applications/Adobe InDesign CC 2014/Adobe InDesign CC 2014.app/Contents/Frameworks/boost_system.framework/Versions/A/boost_system
           0x10aeac000 -        0x10aeb2fff +com.adobe.boost_date_time.framework (7.0.849323 - 7.0.849323.0) <6CF68F53-2E0B-3424-8769-9477964B60BE> /Applications/Adobe InDesign CC 2014/Adobe InDesign CC 2014.app/Contents/Frameworks/boost_date_time.framework/Versions/A/boost_date_ti me
           0x10aec7000 -        0x10b376fff +PublicLib.dylib (1) <98C827A8-110B-3F2D-AA96-940EDFD151E2> /Applications/Adobe InDesign CC 2014/Adobe InDesign CC 2014.app/Contents/MacOS/PublicLib.dylib
           0x10b4c6000 -        0x10b4d2fff +PMRuntime.dylib (1) <11898B55-2BC6-35C9-85AD-79F81DD93E5C> /Applications/Adobe InDesign CC 2014/Adobe InDesign CC 2014.app/Contents/MacOS/PMRuntime.dylib
           0x10b4dc000 -        0x10b4ddff7 +com.adobe.InDesign.Metadata Database Filter (10.2.0.69 - 0) <4FEB8677-E19B-3D45-8E1F-552DB52C145A> /Applications/Adobe InDesign CC 2014/Adobe InDesign CC 2014.app/Contents/MacOS/Required/Metadata Database Filter.InDesignPlugin/Metadata Database Filter
           0x10b4e2000 -        0x10b4fbfff +com.adobe.AFL (AdobeAFL 1.5.0 - 1.5) <F723E695-5E65-3A08-906A-19C65DA63ACB> /Applications/Adobe InDesign CC 2014/Adobe InDesign CC 2014.app/Contents/Frameworks/AdobeAFL.framework/Versions/A/AdobeAFL
           0x10b50d000 -        0x10b832ff7 +com.adobe.CoolType (AdobeCoolType 5.15.00.33308 - 5.15.00.33308) <07952676-1A11-3AA6-991D-04460EFBA92E> /Applications/Adobe InDesign CC 2014/Adobe InDesign CC 2014.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
           0x10b87e000 -        0x10b89dfff +com.adobe.BIB (AdobeBIB 1.2.03.33308 - 1.2.03.33308) <1E069560-E3C6-38B4-A853-88F3492543FF> /Applications/Adobe InDesign CC 2014/Adobe InDesign CC 2014.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
           0x10b8a5000 -        0x10b8a7ff7  com.apple.textencoding.unicode (2.7 - 2.7) <A5C5993B-30AA-39C7-B3B5-D34FAE232712> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
           0x10b8ac000 -        0x10b9faff7 +com.adobe.ACE (AdobeACE 2.20.02.33308 - 2.20.02.33308) <DCD064B8-A43A-3D41-B499-15E602F69CDA> /Applications/Adobe InDesign CC 2014/Adobe InDesign CC 2014.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
           0x10ba0f000 -        0x10bff0ff7 +com.adobe.AGM (AdobeAGM 4.30.41.33308 - 4.30.41.33308) <CD4001BD-25FA-39AF-952F-4670BF29D0BB> /Applications/Adobe InDesign CC 2014/Adobe InDesign CC 2014.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
           0x10c098000 -        0x10c0d5ff7 +com.adobe.ARE (AdobeARE 1.5.02.33308 - 1.5.02.33308) <04A0C255-9BB7-31E9-8829-A58A68DD5CBC> /Applications/Adobe InDesign CC 2014/Adobe InDesign CC 2014.app/Contents/Frameworks/AdobeARE.framework/Versions/A/AdobeARE
           0x10c0e2000 -        0x10c109ff7 +com.adobe.BIBUtils (AdobeBIBUtils 1.1.01 - 1.1.01) <C21D264F-9A78-3E52-9E0F-3044E78A24B0> /Applications/Adobe InDesign CC 2014/Adobe InDesign CC 2014.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
           0x10c115000 -        0x10c509ff7 +com.adobe.MPS (AdobeMPS 5.8.1.33340 - 5.8.1.33340) <4B02E5D5-79A8-3281-920A-BD3B74DFEDF7> /Applications/Adobe InDesign CC 2014/Adobe InDesign CC 2014.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
           0x10c584000 -        0x10c5abfff +com.adobe.dvaflashview.framework (8.0.849323 - 8.0.849323.0) <CCE9E27F-AA90-3416-98DA-8ADD53064B71> /Applications/Adobe InDesign CC 2014/Adobe InDesign CC 2014.app/Contents/Frameworks/dvaflashview.framework/Versions/A/dvaflashview
           0x10c5d0000 -        0x10c5d4ff7 +com.adobe.ape.shim (3.4.0.29366 - 3.4.0.29366) <B9447EE8-6F91-9E85-C163-96600BF70764> /Applications/Adobe InDesign CC 2014/Adobe InDesign CC 2014.app/Contents/Frameworks/adbeape.framework/Versions/A/adbeape
           0x10c5de000 -        0x10c6b4fff +com.adobe.exo.framework (8.0.849323 - 8.0.849323.0) <D2118EBF-DB2A-3525-8C4E-51C9FED46082> /Applications/Adobe InDesign CC 2014/Adobe InDesign CC 2014.app/Contents/Frameworks/exo.framework/Versions/A/exo
           0x10c77b000 -        0x10c85afff +com.adobe.dvaworkspace.framework (8.0.849323 - 8.0.849323.0) <2FEAC4B0-94E9-38A1-A0C5-148BD01393C8> /Applications/Adobe InDesign CC 2014/Adobe InDesign CC 2014.app/Contents/Frameworks/dvaworkspace.framework/Versions/A/dvaworkspace
           0x10c925000 -        0x10cbe6fc7 +com.adobe.PlugPlugOwl (5.2.0.69 - 5.2.0.69) <CD3F7670-FA19-3876-9773-07737FF72A08> /Applications/Adobe InDesign CC 2014/Adobe InDesign CC 2014.app/Contents/Frameworks/PlugPlugOwl.framework/Versions/A/PlugPlugOwl
           0x10cc37000 -        0x10cc63ff7 +libtbb.dylib (0) <64B7013E-D548-3F7B-A2FB-28B7B932275C> /Applications/Adobe InDesign CC 2014/Adobe InDesign CC 2014.app/Contents/Frameworks/libtbb.dylib
           0x10cc81000 -        0x10cca0fe7 +libtbbmalloc.dylib (0) <6887ED68-67ED-3748-82DA-B39A3EB210BB> /Applications/Adobe InDesign CC 2014/Adobe InDesign CC 2014.app/Contents/Frameworks/libtbbmalloc.dylib
           0x10ccca000 -        0x10da0ffff +com.adobe.ICUData (4.0 - 3.61) <01D90725-4B10-312C-9546-9C0CCCA1B7BB> /Applications/Adobe InDesign CC 2014/Adobe InDesign CC 2014.app/Contents/Frameworks/ICUData.framework/Versions/4.0/libicudata.40.0.dyl ib
           0x10da26000 -        0x10db57ff7 +com.adobe.ICUInternationalization (4.0 - 3.61) <CD4AD967-00CD-3979-8F82-1166E2058FA6> /Applications/Adobe InDesign CC 2014/Adobe InDesign CC 2014.app/Contents/Frameworks/ICUInternationalization.framework/Versions/4.0/lib icui18n.40.0.dylib
           0x10dbad000 -        0x10dca3ff7 +com.adobe.ICUUnicode (4.0 - 3.61) <2352E6C8-3431-3A99-92B9-382E85A018AC> /Applications/Adobe InDesign CC 2014/Adobe InDesign CC 2014.app/Contents/Frameworks/ICUUnicode.framework/Versions/4.0/libicuuc.40.0.dy lib
           0x10dce2000 -        0x10de11fff +com.winsoft.wrservices (WRServices 8.0.0 - 8.0.0) <3DDC40D0-BC6F-3758-B00A-E102E80D4F5F> /Applications/Adobe InDesign CC 2014/Adobe InDesign CC 2014.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
           0x10de6e000 -        0x10df6efff +com.adobe.amtlib (8.0.0.160 - 8.0.0.160) <E536A7CF-0E0E-37B8-9EDF-EBFF0C0E5A8C> /Applications/Adobe InDesign CC 2014/Adobe InDesign CC 2014.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
           0x10df88000 -        0x10df8bfff +com.adobe.AdobeCrashReporter (7.1 - 7.1.4) <A33546D9-3E26-38A2-88FE-C7C46B4CD989> /Applications/Adobe InDesign CC 2014/Adobe InDesign CC 2014.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrash Reporter
           0x10df98000 -        0x10e059fff +com.adobe.boost_regex.framework (7.0.849323 - 7.0.849323.0) <CF35FC7F-D6E2-332A-B939-5E90EC1CC033> /Applications/Adobe InDesign CC 2014/Adobe InDesign CC 2014.app/Contents/Frameworks/boost_regex.framework/Versions/A/boost_regex
           0x10e0cb000 -        0x10e158fff +com.adobe.adobe_caps (adobe_caps 8.0.0.20 - 8.0.0.20) <8E6FED5A-B032-38C3-A748-03BC0104DC1E> /Applications/Adobe InDesign CC 2014/Adobe InDesign CC 2014.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
           0x10e16b000 -        0x10e177ff7 +com.adobe.boost_signals.framework (7.0.849323 - 7.0.849323.0) <3465A9BD-53BF-30D8-BEDE-FB80795CD577> /Applications/Adobe InDesign CC 2014/Adobe InDesign CC 2014.app/Contents/Frameworks/boost_signals.framework/Versions/A/boost_signals
           0x10e18d000 -        0x10e22efff +com.adobe.ICUConverter (4.0 - 3.61) <46764474-111C-3B13-AF62-002B71877405> /Applications/Adobe InDesign CC 2014/Adobe InDesign CC 2014.app/Contents/Frameworks/ICUConverter.framework/Versions/4.0/libicucnv.40.0 .dylib
           0x10e24f000 -        0x10e27dfff +VulcanControl.dylib (5.0.0.82 - 5.0.0.82 © 2013 Adobe Systems, Inc. All rights reserved.) <059975FF-07C9-3231-BCD0-4E7E9862B14A> /Applications/Adobe InDesign CC 2014/Adobe InDesign CC 2014.app/Contents/Frameworks/VulcanControl.dylib
           0x10e293000 -        0x10e2d5ff7 +VulcanMessage5.dylib (5.0.0.82 - 5.0.0.82 © 2013 Adobe Systems, Inc. All rights reserved.) <1CA9DD0D-0AC3-3306-AE66-E078B64003A6> /Applications/Adobe InDesign CC 2014/Adobe InDesign CC 2014.app/Contents/Frameworks/VulcanMessage5.dylib
           0x10e2f0000 -        0x10e353ff7 +DataBaseLib.dylib (1) <00109801-E225-3478-8F97-31C207F3C9B7> /Applications/Adobe InDesign CC 2014/Adobe InDesign CC 2014.app/Contents/MacOS/DataBaseLib.dylib
           0x10e36c000 -        0x10e3dbff7 +ObjectModelLib.dylib (1) <23F0FEAE-60C5-30DF-A169-B87018042416> /Applications/Adobe InDesign CC 2014/Adobe InDesign CC 2014.app/Contents/MacOS/ObjectModelLib.dylib
           0x10e3f9000 -        0x10e41dff7 +com.adobe.AXE8SharedExpat (AdobeAXE8SharedExpat 3.8.0.33078 - 3.8.0.33078) <A0D182B0-E35A-32A9-BD39-20B0EDB511FB> /Applications/Adobe InDesign CC 2014/Adobe InDesign CC 2014.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE 8SharedExpat
           0x10f6f1000 -        0x10f703ff7 +com.adobe.InDesign.PS Import UI (10.2.0.69 - 0) <E61EFC9F-771B-3802-B3A6-BCE917EFC4E6> /Applications/Adobe InDesign CC 2014/*/PS Import UI
           0x10f711000 -        0x10f735ff7 +com.adobe.InDesign.Swatch Library Panel (10.2.0.69 - 0) <4E187586-9C5D-3409-97E9-459D503A3EBE> /Applications/Adobe InDesign CC 2014/*/Swatch Library Panel
           0x10f744000 -        0x10f74cff7 +com.adobe.InDesign.InCopyExport (10.2.0.69 - 0) <B296115E-9C79-335D-BAA4-4FBB0DA3F747> /Applications/Adobe InDesign CC 2014/*/InCopyExport
           0x10f755000 -        0x10f75cff7 +com.adobe.InDesign.InCopyExportUI (10.2.0.69 - 0) <A3374EEE-F228-36DB-A028-7FD1D72A4854> /Applications/Adobe InDesign CC 2014/*/InCopyExportUI
           0x10f763000 -        0x10f769fff +com.adobe.InDesign.InCopyImport (10.2.0.69 - 0) <5008DAA8-D0D1-32F4-813D-103A999F3FF9> /Applications/Adobe InDesign CC 2014/*/InCopyImport
           0x10f770000 -        0x10f79cff7 +com.adobe.InDesign.Utilities (10.2.0.69 - 0) <93C6081D-B869-3C6E-9BC7-E810D7299523> /Applications/Adobe InDesign CC 2014/Adobe InDesign CC 2014.app/Contents/MacOS/Required/Utilities.InDesignPlugin/Utilities
           0x10f7b6000 -        0x10f7c0fff +com.adobe.InDesign.Workgroup Client UI (10.2.0.69 - 0) <8FEBA0AD-B127-3D2F-B2D8-6D5AC9B19593> /Applications/Adobe InDesign CC 2014/Adobe InDesign CC 2014.app/Contents/MacOS/Required/Workgroup Client UI.InDesignPlugin/Workgroup Client UI
           0x10f7c6000 -        0x10f7e8ff7 +com.adobe.InDesign.Workgroup Client (10.2.0.69 - 0) <1FFB4564-33EF-3D97-B07A-ADBD1041C34D> /Applications/Adobe InDesign CC 2014/Adobe InDesign CC 2014.app/Contents/MacOS/Required/Workgroup Client.InDesignPlugin/Workgroup Client
           0x10f7f6000 -        0x10f832ff7 +com.adobe.InDesign.Workgroup (10.2.0.69 - 0) <4BFE4D20-E76C-3E90-BD43-BD572C4F1110> /Applications/Adobe InDesign CC 2014/Adobe InDesign CC 2014.app/Contents/MacOS/Required/Workgroup.InDesignPlugin/Workgroup
           0x10f85a000 -        0x10f86efff +com.adobe.AdobeSFL (AdobeSFL 1.1.0.31977 - 1.1.0.31977) <A1874DA3-6F12-333D-8941-ED3A08A1E265> /Applications/Adobe InDesign CC 2014/Adobe InDesign CC 2014.app/Contents/Frameworks/AdobeSFL.framework/Versions/A/AdobeSFL
           0x11286e000 -        0x1128adff7 +com.adobe.AAM.AdobeUpdaterNotificationFramework (UpdaterNotifications 8.0.0.20 - 8.0.0.20) <5B093DA0-9FAC-3DFA-9045-77FCEDA9C9C3> /Applications/Adobe InDesign CC 2014/Adobe InDesign CC 2014.app/Contents/Frameworks/UpdaterNotifications.framework/Versions/A/UpdaterN otifications
           0x113af5000 -        0x113afdfff +com.adobe.InDesign.Data Services UI (10.2.0.69 - 0) <E244DB3C-7784-3F70-A051-CD53A1509899> /Applications/Adobe InDesign CC 2014/*/Data Services UI
           0x113b06000 -        0x113b0fff7 +com.adobe.InDesign.Data Services (10.2.0.69 - 0) <8C2762FB-613B-3922-9556-7F9C36671DB0> /Applications/Adobe InDesign CC 2014/*/Data Services
           0x113b15000 -        0x113b23ff7 +com.adobe.InDesign.DTTransform (10.2.0.69 - 0) <6B85E3FD-9273-3A4E-997D-CAA22ECB52AF> /Applications/Adobe InDesign CC 2014/*/DTTransform
           0x113b2c000 -        0x113b6afff +com.adobe.InDesign.Dictionary Editor Dialog (10.2.0.69 - 0) <3469C90B-DA7B-3B68-8CE7-302BA7A7C0DF> /Applications/Adobe InDesign CC 2014/*/Dictionary Editor Dialog
           0x113b8a000 -        0x113bb3fff +com.adobe.InDesign.LILO (10.2.0.69 - 0) <28CC2FE4-D4D2-3656-8452-79D815C8C344> /Applications/Adobe InDesign CC 2014/*/LILO
           0x113bc1000 -        0x113c9dff7 +com.adobe.linguistic.LinguisticManager (8.0.0 - 20256) <F4BD30E8-0A55-3A3B-A1AA-0C42683BCFA0> /Applications/Adobe InDesign CC 2014/Adobe InDesign CC 2014.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguist ic
           0x113cb9000 -        0x113f12fff +com.adobe.InDesign.EBookExport (10.2.0.69 - 0) <4594317D-5509-3C83-9807-733BF9920782> /Applications/Adobe InDesign CC 2014/*/EBookExport
           0x113f43000 -        0x113fa2ff7 +com.adobe.InDesign.Media Import Filter (10.2.0.69 - 0) <B1E182DB-B90D-3455-9222-DE15E25E489B> /Applications/Adobe InDesign CC 2014/*/Media Import Filter
           0x113fb5000 -        0x113fbffff +com.adobe.InDesign.PNG Import Filter UI (10.2.0.69 - 0) <B48E35E0-59F5-345D-9EEF-D2579B869DC5> /Applications/Adobe InDesign CC 2014/*/PNG Import Filter UI
           0x113fc8000 -        0x113ff3ff7 +com.adobe.InDesign.Sangam Preferences UI (10.2.0.69 - 0) <5C3ED481-AC9E-3F98-BF92-7A1ACD3D4810> /Applications/Adobe InDesign CC 2014/*/Sangam Preferences UI
           0x114006000 -        0x11407afff +com.adobe.AdobeSangam (AdobeSangam 5.65.0.32332 - 5.65.0.32332) <C2C6A2E8-C210-3294-AA1A-C2C3B481495C> /Applications/Adobe InDesign CC 2014/Adobe InDesign CC 2014.app/Contents/Frameworks/AdobeSangam.framework/Versions/A/AdobeSangam
           0x1140cb000 -        0x114123fff +com.adobe.InDesign.SangamExport (10.2.0.69 - 0) <9C883C03-D0C0-3291-8F48-14AF2002EB92> /Applications/Adobe InDesign CC 2014/*/SangamExport
           0x11413b000 -        0x11427bff7 +com.adobe.InDesign.SangamServicer-Mapper (10.2.0.69 - 0) <D6B1B2CE-C5FC-39C8-A6B9-95FF03B87C1D> /Applications/Adobe InDesign CC 2014/*/SangamServicer-Mapper
           0x11429f000 -        0x1142b8fff +com.adobe.InDesign.SaveBack (10.2.0.69 - 0) <68BFCD71-BE1E-3CDF-A423-9E6F051E6F19> /Applications/Adobe InDesign CC 2014/*/SaveBack
           0x1142c6000 -        0x1142c8ff7 +com.adobe.InDesign.SimpleTextImportFilter (10.2.0.69 - 0) <363FD451-9852-37F5-8840-67799AC42CF7> /Applications/Adobe InDesign CC 2014/*/SimpleTextImportFilter
           0x1142ce000 -        0x1143a1ff7 +com.adobe.InDesign.Tagged Text Attributes (10.2.0.69 - 0) <5E22E95F-D546-320F-A1A7-00D227041875> /Applications/Adobe InDesign CC 2014/*/Tagged Text Attributes
           0x1143cf000 -        0x1143dbff7 +com.adobe.InDesign.Tagged Text Filters UI (10.2.0.69 - 0) <B8564966-E746-31F7-A9C5-68625055041E> /Applications/Adobe InDesign CC 2014/*/Tagged Text Filters UI
           0x1143e5000 -        0x114490ff7 +com.adobe.InDesign.Tagged Text Filters (10.2.0.69 - 0) <4D676A3C-2B90-3094-8EA4-61F63FAE7B56> /Applications/Adobe InDesign CC 2014/*/Tagged Text Filters
           0x1144a5000 -        0x1144b2fff +com.adobe.InDesign.Clipping Path Dialog (10.2.0.69 - 0) <A920534E-0A9C-383E-B99A-6E87B9FC1708> /Applications/Adobe InDesign CC 2014/*/Clipping Path Dialog
           0x1144c3000 -        0x114506fff +com.adobe.InDesign.Color Management UI (10.2.0.69 - 0) <DC756A82-D5FE-3C0A-9C37-338BD9E882A4> /Applications/Adobe InDesign CC 2014/*/Color Management UI
           0x114515000 -        0x114592fff +com.adobe.InDesign.Color Picker Panel (10.2.0.69 - 0) <E5800A6E-F219-3D72-8A7B-9296E9D413C9> /Applications/Adobe InDesign CC 2014/*/Color Picker Panel
           0x1145ba000 -        0x1147d6fff +com.adobe.InDesign.Digital Publishing (10.0.10.32 - 0) <6B56F2F7-83DD-36CC-809F-AB035A0B0E63> /Applications/Adobe InDesign CC 2014/*/Digital Publishing
           0x11495e000 -        0x11496cff7 +com.adobe.boost_filesystem.framework (7.0.849323 - 7.0.849323.0) <755D82FC-3338-3609-A077-3D8989A10AD0> /Applications/Adobe InDesign CC 2014/Adobe InDesign CC 2014.app/Contents/Frameworks/boost_filesystem.framework/Versions/A/boost_filesy stem
           0x114978000 -        0x1149b0fef +libcurl.4.dylib (7) <FA1D87DC-8CBC-3645-8ADA-D974B6EDED53> /Applications/Adobe InDesign CC 2014/*/libcurl.4.dylib
           0x1149bb000 -        0x114a3cff7 +com.adobe.InDesign.DynamicDocumentsUI (10.2.0.69 - 0) <53703CB1-69AE-3AFC-A8EE-E440458F45C2> /Applications/Adobe InDesign CC 2014/*/DynamicDocumentsUI
           0x114a62000 -        0x114a7eff7 +com.adobe.InDesign.EPS UI (10.2.0.69 - 0) <532A7C80-096F-38B8-8EA0-C75B223030F2> /Applications/Adobe InDesign CC 2014/*/EPS UI
           0x114a8e000 -        0x114a99ff7 +com.adobe.InDesign.Generic Style Editor (10.2.0.69 - 0) <F986779A-4DCC-3076-B05C-DB49E0DADFAA> /Applications/Adobe InDesign CC 2014/*/Generic Style Editor
           0x114aa7000 -        0x114adeff7 +com.adobe.InDesign.Gradient Panel (10.2.0.69 - 0) <22BFDFE1-B79A-318A-95A2-2FE33E14283E> /Applications/Adobe InDesign CC 2014/*/Gradient Panel
           0x114af5000 -        0x114baafff +com.adobe.InDesign.Graphic Panels (10.2.0.69 - 0) <0F545114-55AB-323D-A608-224A3C75D0D8> /Applications/Adobe InDesign CC 2014/*/Graphic Panels
           0x114bd4000 -        0x114bdcfff +com.adobe.InDesign.JPEG Export UI (10.2.0.69 - 0) <4FFDC0C4-FA37-3BBD-B336-B4E79CE24E47> /Applications/Adobe InDesign CC 2014/*/JPEG Export UI
           0x114be4000 -        0x114bfffff +com.adobe.InDesign.JPEG Export (10.2.0.69 - 0) <31E893D9-2F4F-3708-B647-CE71DE69BC9E> /Applications/Adobe InDesign CC 2014/*/JPEG Export
           0x114c10000 -        0x114c62fff +com.adobe.InDesign.Output Preview (10.2.0.69 - 0) <AB8571CD-EC2C-30AE-9208-847D28AB68B2> /Applications/Adobe InDesign CC 2014/*/Output Preview
           0x114c7c000 -        0x114c93fff +com.adobe.InDesign.OutputMiscUI (10.2.0.69 - 0) <1F5C8725-61D9-395E-A131-C8540F6CA968> /Applications/Adobe InDesign CC 2014/*/OutputMiscUI
           0x114ca5000 -        0x114d26fff +com.adobe.InDesign.PDF UI (10.2.0.69 - 0) <3DE53A73-53E0-37F7-A20F-A8A22123B14A> /Applications/Adobe InDesign CC 2014/*/PDF UI
           0x114d49000 -        0x114dfdfff +com.adobe.AdobeXMPCore (Adobe XMP Core 5.6 -c 14 - 79.156797) <B92343BD-6092-397F-A805-4649556DD7E2> /Applications/Adobe InDesign CC 2014/Adobe InDesign CC 2014.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
           0x114e25000 -        0x114e3bfff +com.adobe.InDesign.Printer Styles (10.2.0.69 - 0) <EED5FE1E-5785-3A39-AEB5-A30CBE7B2D2C> /Applications/Adobe InDesign CC 2014/*/Printer Styles
           0x114e49000 -        0x114f27ff7 +com.adobe.InDesign.PrintUI (10.2.0.69 - 0) <801FB86B-C156-31B4-BF01-32913FB36516> /Applications/Adobe InDesign CC 2014/*/PrintUI
           0x114f51000 -        0x115026ff7 +com.adobe.InDesign.Swatches Panel (10.2.0.69 - 0) <F2B30D31-F6E8-3AB3-9980-A15BF21EBCDB> /Applications/Adobe InDesign CC 2014/*/Swatches Panel
           0x11505f000 -        0x11510dff7 +com.adobe.InDesign.Transparency UI (10.2.0.69 - 0) <C43AA6A5-1F0D-302B-8F92-497B0A4B4EF8> /Applications/Adobe InDesign CC 2014/*/Transparency UI
           0x115140000 -        0x1151a3fff +com.adobe.InDesign.Assignment UI (10.2.0.69 - 0) <36E423A1-266E-3EAE-84E9-42AF66BB7E07> /Applications/Adobe InDesign CC 2014/*/Assignment UI
           0x1151c5000 -        0x1151e8fff +com.adobe.InDesign.InCopy Bridge UI (10.2.0.69 - 0) <96BEE7FE-F933-31A1-A5C1-6225CA68D848> /Applications/Adobe InDesign CC 2014/*/InCopy Bridge UI
           0x1151f6000 -        0x115234fff +com.adobe.InDesign.InCopy Bridge (10.2.0.69 - 0) <4A39860E-6F43-3216-9CE8-C31BC13AA5A6> /Applications/Adobe InDesign CC 2014/*/InCopy Bridge
           0x115244000 -        0x11524cfff +com.adobe.InDesign.InCopyWorkflow UI (10.2.0.69 - 0) <C8FF43E1-3729-35FE-B89A-367761253590> /Applications/Adobe InDesign CC 2014/*/InCopyWorkflow UI
           0x115256000 -        0x1152abfff +com.adobe.InDesign.Note (10.2.0.69 - 0) <40DE9A9D-9365-32B0-B973-D09792756C73> /Applications/Adobe InDesign CC 2014/*/Note
           0x1152ca000 -        0x1152d5fff +com.adobe.InDesign.NotePref (10.2.0.69 - 0) <02E02E1D-B03F-373D-A541-F26D76529CBA> /Applications/Adobe InDesign CC 2014/*/NotePref
           0x1152e3000 -        0x1152e8fff +com.adobe.InDesign.Username UI (10.2.0.69 - 0) <6F54DE72-6941-353C-926D-4018815AF2F8> /Applications/Adobe InDesign CC 2014/*/Username UI
           0x1152f1000 -        0x115392ff7 +com.adobe.InDesign.ButtonUI (10.2.0.69 - 0) <F4CAE504-B601-35CD-9E16-D8003F09451C> /Applications/Adobe InDesign CC 2014/*/ButtonUI
           0x1153c1000 -        0x1153eaff7 +com.adobe.InDesign.MediaUI (10.2.0.69 - 0) <59A54691-F1B7-3B02-82A3-0479283D3C61> /Applications/Adobe InDesign CC 2014/*/MediaUI
           0x1153ff000 -        0x11540efff +com.adobe.InDesign.Alignment Panel (10.2.0.69 - 0) <14F2D03C-9317-356A-830E-305287A359BE> /Applications/Adobe InDesign CC 2014/*/Alignment Panel
           0x115416000 -        0x115467ff7 +com.adobe.InDesign.Asset Library Panel (10.2.0.69 - 0) <3BB85DC5-B703-36DE-9F20-0150A31E6523> /Applications/Adobe InDesign CC 2014/*/Asset Library Panel
           0x11548d000 -        0x1155fafff +libtypekitC4Release.dylib (1) <0EA13282-E704-3125-8C33-29A80484E1E0> /Applications/Adobe InDesign CC 2014/Adobe InDesign CC 2014.app/Contents/MacOS/libtypekitC4Release.dylib
           0x115617000 -        0x115685fff +com.adobe.InDesign.Asset PubLibrary (10.2.0.69 - 0) <D61F618D-4071-3320-86DD-B4CD4C168558> /Applications/Adobe InDesign CC 2014/*/Asset PubLibrary
           0x1156a3000 -        0x1156f1ff7 +com.adobe.InDesign.Book Panel (10.2.0.69 - 0) <69A2C302-9AC7-3C43-AA64-C75026167EB7> /Applications/Adobe InDesign CC 2014/*/Book Panel
           0x115714000 -        0x115730fff +com.adobe.InDesign.Bookmark Panel (10.2.0.69 - 0) <02C404F5-90F2-3B1E-BFCA-243A75BB458D> /Applications/Adobe InDesign CC 2014/*/Bookmark Panel
           0x115746000 -        0x11577cff7 +com.adobe.InDesign.ContentDropper Tool (10.2.0.69 - 0) <E55DCC63-45CF-3343-8577-91756742C5E8> /Applications/Adobe InDesign CC 2014/*/ContentDropper Tool
           0x11579a000 -        0x1157dfff7 +com.adobe.InDesign.Control Panel (10.2.0.69 - 0) <BC4D719E-F8A5-35D0-8629-C57B71E2B0D3> /Applications/Adobe InDesign CC 2014/*/Control Panel
           0x1157fc000 -        0x115806ff7 +com.adobe.InDesign.Create Guides Dialog (10.2.0.69 - 0) <E27099A1-CB67-3D0B-AF24-6CC1E16BCFC3> /Applications/Adobe InDesign CC 2014/*/Create Guides Dialog
           0x115810000 -        0x1158b4ff7 +com.adobe.InDesign.Eyedropper Tool (10.2.0.69 - 0) <42F8BE0D-CC5B-3E5C-828A-6E29065BC9CD> /Applications/Adobe InDesign CC 2014/*/Eyedropper Tool
           0x1158dc000 -        0x115981fff +com.adobe.InDesign.Hyperlinks Panel (10.2.0.69 - 0) <6649FA48-C6D5-33B4-B27D-052C24FE1DEE> /Applications/Adobe InDesign CC 2014/*/Hyperlinks Panel
           0x1159aa000 -        0x115a40fff +com.adobe.InDesign.Index Panel (10.2.0.69 - 0) <7B8DCBFB-89EA-3365-B4BA-A148958ABC5D> /Applications/Adobe InDesign CC 2014/*/Index Panel
           0x115a60000 -        0x115a6cff7 +unihan (1) <E859A35E-8EC1-3CA9-9758-95EC69D4EC5D> /Applications/Adobe InDesign CC 2014/Adobe InDesign CC 2014.app/Contents/Frameworks/unihan.framework/Versions/A/unihan
           0x115a75000 -        0x115addfff +com.adobe.InDesign.Info Panel (10.2.0.69 - 0) <BA356828-72D3-3548-9ECF-EFBF6C27F586> /Applications/Adobe InDesign CC 2014/*/Info Panel
           0x115af5000 -        0x115bb9fff +com.adobe.InDesign.Knowledge Base (10.2.0.69 - 0) <203F165C-21B7-317A-822F-5C0F7AA29ACA> /Applications/Adobe InDesign CC 2014/*/Knowledge Base
           0x115bc3000 -        0x115c14ff7 +com.adobe.InDesign.Layers Panel (10.2.0.69 - 0) <13221984-D382-37EA-8138-E95EBD541AEC> /Applications/Adobe InDesign CC 2014/*/Layers Panel
           0x115c36000 -        0x115c3aff7 +com.adobe.InDesign.Layout Adjustment Panel (10.2.0.69 - 0) <7D4F1BEF-6D13-361F-A8DD-E966ACF9C98B> /Applications/Adobe InDesign CC 2014/*/Layout Adjustment Panel
           0x115c42000 -        0x115c61ff7 +com.adobe.InDesign.Layout Adjustment (10.2.0.69 - 0) <E4AA1550-A45C-3D49-ADE5-463D191B20BD> /Applications/Adobe InDesign CC 2014/*/Layout Adjustment
           0x115c6f000 -        0x115cbafff +com.adobe.InDesign.Links UI (10.2.0.69 - 0) <3C6322F0-B545-38B8-9AE7-8B8D3B8C4E39> /Applications/Adobe InDesign CC 2014/*/Links UI
           0x115cdb000 -        0x115d7fff7 +com.adobe.InDesign.ObjectStylesUI (10.2.0.69 - 0) <27A8E7E8-D7F5-34F1-BAD7-498B8AAB0BAD> /Applications/Adobe InDesign CC 2014/*/ObjectStylesUI
           0x115daf000 -        0x115dd4ff7 +com.adobe.InDesign.Page Setup Dialog (10.2.0.69 - 0) <E55E2B70-5BC8-3BEA-8268-8941DCFAC995> /Applications/Adobe InDesign CC 2014/*/Page Setup Dialog
           0x115de1000 -        0x115ea4fff +com.adobe.InDesign.Pages Panel (10.2.0.69 - 0) <019B5AA2-A479-3932-8346-0F3DE949829F> /Applications/Adobe InDesign CC 2014/*/Pages Panel
           0x115ed4000 -        0x115ee2fff +com.adobe.InDesign.Sections UI (10.2.0.69 - 0) <25EDB01D-0568-3712-BD74-A264CF9977B2> /Applications/Adobe InDesign CC 2014/*/Sections UI
           0x115eec000 -        0x115ef6fff +com.adobe.InDesign.StepRepeat (10.2.0.69 - 0) <0CC1E061-43CE-3384-B501-5606906E3EF9> /Applications/Adobe InDesign CC 2014/*/StepRepeat
           0x115f02000 -        0x115f40fff +com.adobe.InDesign.Text Wrap Panel (10.2.0.69 - 0) <62FEF8BC-2D22-36DA-9031-E2A55BB2EA0E> /Applications/Adobe InDesign CC 2014/*/Text Wrap Panel
           0x115f59000 -        0x115f9bff7 +com.adobe.InDesign.TOC UI Dialog (10.2.0.69 - 0) <052B396B-EA99-37DD-8839-75EF96756D8A> /Applications/Adobe InDesign CC 2014/*/TOC UI Dialog
           0x115fb4000 -        0x115ff1fff +com.adobe.InDesign.Transform Panel (10.2.0.69 - 0) <6314C555-0202-3665-A1F9-904A49D25EAE> /Applications/Adobe InDesign CC 2014/*/Transform Panel
           0x116007000 -        0x116022ff7 +com.adobe.InDesign.Image Import UI (10.2.0.69 - 0) <232BE0E9-EA90-38E1-BBFF-B93045D9580C> /Applications/Adobe InDesign CC 2014/*/Image Import UI
           0x116034000 -        0x116049ff7 +com.adobe.InDesign.Scotch Rules (10.2.0.69 - 0) <4CDFAE81-0ADE-3C0A-95EF-1208F11A0B70> /Applications/Adobe InDesign CC 2014/*/Scotch Rules
           0x116054000 -        0x1160b8ff7 +com.adobe.InDesign.BNUI (10.2.0.69 - 0) <5993DE44-8

    Try booting into the Safe Mode using your normal account.  Disconnect all peripherals except those needed for the test. Shut down the computer and then power it back up after waiting 10 seconds. Immediately after hearing the startup chime, hold down the shift key and continue to hold it until the gray Apple icon and a progress bar appear and again when you log in. The boot up is significantly slower than normal. This will reset some caches, forces a directory check, and disables all startup and login items, among other things. When you reboot normally, the initial reboot may be slower than normal. If the system operates normally, there may be 3rd party applications which are causing a problem. Try deleting/disabling the third party applications after a restart by using the application un-installer. For each disable/delete, you will need to restart if you don’t do them all at once.
    Safe Mode - Mavericks   also Yosemite
    If it works in the Safe Mode, reboot and test. If it still doesn't work, try running this program and then copy and paste the output in a reply. The program was created by Etresoft, a frequent contributor.  Please use copy and paste as screen shots can be hard to read.
    Etrecheck – System Information

  • Fresh install of InDesign quits unexpectedly with the following report.

    Crash report:
    Process:         Adobe InDesign CC [617]
    Path:            /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/MacOS/Adobe InDesign CC
    Identifier:      com.adobe.InDesign
    Version:         9.1.0.33 (9100)
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [195]
    Responsible:     Adobe InDesign CC [617]
    User ID:         502
    Date/Time:       2013-11-15 22:55:24.246 -0700
    OS Version:      Mac OS X 10.9 (13A603)
    Report Version:  11
    Anonymous UUID:  83031888-D0EF-B1AA-3645-03A257E271B9
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    terminating with uncaught exception of type dvacore::filesupport::dir_create_exception: $$$/dvacore/filesupport/DirCreate=The directory '@0' could not be created. Please check the parent directory protection or permission rights.
    abort() called
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x00007fff8ba48866 __pthread_kill + 10
    1   libsystem_pthread.dylib                 0x00007fff9039e35c pthread_kill + 92
    2   libsystem_c.dylib                       0x00007fff84e5fbba abort + 125
    3   libc++abi.dylib                         0x00007fff8bb22141 abort_message + 257
    4   libc++abi.dylib                         0x00007fff8bb47aa4 default_terminate_handler() + 240
    5   libobjc.A.dylib                         0x00007fff8f2bc322 _objc_terminate() + 124
    6   libc++abi.dylib                         0x00007fff8bb453e1 std::__terminate(void (*)()) + 8
    7   libc++abi.dylib                         0x00007fff8bb44e6b __cxa_throw + 124
    8   com.adobe.dvacore.framework             0x00000001006b167f dvacore::filesupport::DirHelper::Create() + 687
    9   com.adobe.dvacore.framework             0x00000001006b25c1 dvacore::filesupport::DirHelper::PrefDir() + 129
    10  com.adobe.dvacore.framework             0x00000001006c0f07 dvacore::filesupport::Dir::PrefDir() + 23
    11  com.adobe.exo.framework                 0x00000001028a8025 exo::app::AppBase::LoadAppSettings() + 21
    12  com.adobe.exo.framework                 0x00000001028a7a9e exo::app::AppBase::Initialize(exo::app::AppInitArgs&) + 942
    13  com.adobe.InDesign.Application UI          0x00000001112a0807 0x11116a000 + 1271815
    14  com.adobe.InDesign.AppFramework          0x000000011105e605 0x110f52000 + 1099269
    15  com.adobe.InDesign.AppFramework          0x000000011105ea7e 0x110f52000 + 1100414
    16  com.adobe.InDesign                      0x0000000100001dbc main + 412
    17  com.adobe.InDesign                      0x0000000100001bb4 start + 52
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff8ba49662 kevent64 + 10
    1   libdispatch.dylib                       0x00007fff83cd543d _dispatch_mgr_invoke + 239
    2   libdispatch.dylib                       0x00007fff83cd5152 _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib                  0x00007fff8ba48716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff9039fc77 _pthread_cond_wait + 787
    2   com.apple.CoreServices.CarbonCore          0x00007fff85810c37 TSWaitOnConditionTimedRelative + 148
    3   com.apple.CoreServices.CarbonCore          0x00007fff857e138d MPWaitOnQueue + 192
    4   PMRuntime.dylib                         0x0000000101661be1 0x101660000 + 7137
    5   com.apple.CoreServices.CarbonCore          0x00007fff857e190b PrivateMPEntryPoint + 58
    6   libsystem_pthread.dylib                 0x00007fff9039d899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff9039d72a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff903a1fc9 thread_start + 13
    Thread 3:
    0   libsystem_kernel.dylib                  0x00007fff8ba48e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff9039ef08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff903a1fb9 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00007fff8ba48e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff9039ef08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff903a1fb9 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff8ba48e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff9039ef08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff903a1fb9 start_wqthread + 13
    Thread 6:
    0   libsystem_kernel.dylib                  0x00007fff8ba44a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8ba43d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff8540b315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff8540a939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff8540a275 CFRunLoopRunSpecific + 309
    5   IMSLib.dylib                            0x000000011c1247da 0x11c120000 + 18394
    6   IMSLib.dylib                            0x000000011c124f8e 0x11c120000 + 20366
    7   IMSLib.dylib                            0x000000011c1351a4 0x11c120000 + 86436
    8   IMSLib.dylib                            0x000000011c14286d 0x11c120000 + 141421
    9   IMSLib.dylib                            0x000000011c1399b5 0x11c120000 + 104885
    10  IMSLib.dylib                            0x000000011c12c5f4 0x11c120000 + 50676
    11  libsystem_pthread.dylib                 0x00007fff9039d899 _pthread_body + 138
    12  libsystem_pthread.dylib                 0x00007fff9039d72a _pthread_start + 137
    13  libsystem_pthread.dylib                 0x00007fff903a1fc9 thread_start + 13
    Thread 7:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x00007fff8ba44a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8ba43d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff8540b315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff8540a939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff8540a275 CFRunLoopRunSpecific + 309
    5   com.apple.Foundation                    0x00007fff8bd1d907 +[NSURLConnection(Loader) _resourceLoadLoop:] + 348
    6   com.apple.Foundation                    0x00007fff8bd1d70b __NSThread__main__ + 1318
    7   libsystem_pthread.dylib                 0x00007fff9039d899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff9039d72a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff903a1fc9 thread_start + 13
    Thread 8:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x00007fff8ba489aa __select + 10
    1   com.apple.CoreFoundation                0x00007fff85456d43 __CFSocketManager + 867
    2   libsystem_pthread.dylib                 0x00007fff9039d899 _pthread_body + 138
    3   libsystem_pthread.dylib                 0x00007fff9039d72a _pthread_start + 137
    4   libsystem_pthread.dylib                 0x00007fff903a1fc9 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x00007fff76101310  rcx: 0x00007fff5fbfef28  rdx: 0x0000000000000000
      rdi: 0x0000000000000707  rsi: 0x0000000000000006  rbp: 0x00007fff5fbfef50  rsp: 0x00007fff5fbfef28
       r8: 0x0000000000000000   r9: 0x00007fff84e87900  r10: 0x0000000008000000  r11: 0x0000000000000206
      r12: 0x00007fff5fbff0b0  r13: 0x0000600000713378  r14: 0x0000000000000006  r15: 0x00007fff5fbfef90
      rip: 0x00007fff8ba48866  rfl: 0x0000000000000206  cr2: 0x000000010084a680
    Logical CPU:     0
    Error Code:      0x02000148
    Trap Number:     133
    Binary Images:
           0x100000000 -        0x100005fff +com.adobe.InDesign (9.1.0.33 - 9100) <B7C09BD6-74AF-323E-8D22-D5E1F7965643> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/MacOS/Adobe InDesign CC
           0x10000c000 -        0x10000eff7 +com.adobe.InDesign.InDesignModelAndUI (9.0 - 0) <612870BE-869E-3165-9714-55F900A66BCC> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/MacOS/InDesignModelAndUI.framework/Versions/A/InDesignModelAndUI
           0x100014000 -        0x10001cfff +com.adobe.coretech.adobesplashkit (AdobeSplashKit Version 1.0 - 1.0) <65BFDA83-4121-3D12-9BBE-9F4FF1DB3D6A> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/Frameworks/AdobeSplashKit.framework/Versions/A/AdobeSplashKit
           0x100025000 -        0x10002ffff +ASLSupportLib.dylib (1) <1039F962-C495-36E4-B868-3DA5C43E3EBF> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/MacOS/ASLSupportLib.dylib
           0x100037000 -        0x10012cfff +DV_WidgetBinLib.dylib (1) <E9E8E0B7-A59C-30F0-9E3A-6E096AA18C48> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/MacOS/DV_WidgetBinLib.dylib
           0x1001c1000 -        0x100206ff7 +TextPanelLib.dylib (1) <D57C5ADC-53A7-347C-8F44-30ABBE243FB2> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/MacOS/TextPanelLib.dylib
           0x100223000 -        0x100384fff +WidgetBinLib.dylib (1) <AB920F70-D419-3EB0-99E3-CA007895128B> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/MacOS/WidgetBinLib.dylib
           0x100436000 -        0x1005ffff7 +com.adobe.owl (AdobeOwl version 5.0.13 - 5.0.13) <E9BEFE93-8AB5-3EF9-B59E-69208015C7FA> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
           0x100642000 -        0x100886ff7 +com.adobe.dvacore.framework (7.0.853914 - 7.0.853914.0) <75BA2F95-1D2C-3844-AE13-35ADD4B3F3CC> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/Frameworks/dvacore.framework/Versions/A/dvacore
           0x10094d000 -        0x100ddaff7 +com.adobe.dvaui.framework (7.0.853914 - 7.0.853914.0) <DF5970A5-A55D-3CBB-84D2-51582F22D5F4> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/Frameworks/dvaui.framework/Versions/A/dvaui
           0x101070000 -        0x101070fff +com.adobe.InDesign.InDesignModel (9.0 - 0) <7DCCCD9E-8ECB-330B-84AF-4F090F82BBBA> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/MacOS/InDesignModel.framework/Versions/A/InDesignModel
           0x101075000 -        0x101083fff +com.adobe.boost_threads.framework (7.0.847203 - 7.0.847203.0) <A0AE19A9-2B8E-310A-8AC1-0E2E026E7A40> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/Frameworks/boost_threads.framework/Versions/A/boost_threads
           0x101099000 -        0x10109fff7 +com.adobe.boost_date_time.framework (7.0.847203 - 7.0.847203.0) <F30F59C3-41C0-3DB1-899A-E2491EA25263> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/Frameworks/boost_date_time.framework/Versions/A/boost_date_time
           0x1010ae000 -        0x101516fff +PublicLib.dylib (1) <84561314-CC42-3485-9219-1977F0F39804> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/MacOS/PublicLib.dylib
           0x101660000 -        0x10166afff +PMRuntime.dylib (1) <0164EA5E-E56E-332F-901A-5E514833C38F> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/MacOS/PMRuntime.dylib
           0x101673000 -        0x10168aff7 +com.adobe.AFL (AdobeAFL 1.5.0 - 1.5) <1C46F2BE-2E4D-3E25-ACDF-85E2962B92DF> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/Frameworks/AdobeAFL.framework/Versions/A/AdobeAFL
           0x101699000 -        0x1019a9ff7 +com.adobe.CoolType (AdobeCoolType 5.13.00.30830 - 5.13.00.30830) <BBF1FCF6-523A-3E24-967A-10EA909DF89B> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
           0x1019f1000 -        0x101a0efff +com.adobe.BIB (AdobeBIB 1.2.03.30830 - 1.2.03.30830) <A69D3AA0-9248-3B77-991B-89B2B7FE46BB> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
           0x101a16000 -        0x101b5afff +com.adobe.ACE (AdobeACE 2.20.02.30830 - 2.20.02.30830) <73C9699B-5EDC-3FDC-82FF-738C99AA840F> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
           0x101b6d000 -        0x10213efff +com.adobe.AGM (AdobeAGM 4.30.19.30830 - 4.30.19.30830) <9062D763-4040-3F8C-8FF3-23876F112FB8> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
           0x1021db000 -        0x102218fff +com.adobe.ARE (AdobeARE 1.5.02.30830 - 1.5.02.30830) <73174C59-1DDC-3416-A0AD-4D70930ABA60> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/Frameworks/AdobeARE.framework/Versions/A/AdobeARE
           0x102220000 -        0x102246fff +com.adobe.BIBUtils (AdobeBIBUtils 1.1.01 - 1.1.01) <FA20BCA0-05BF-35ED-95B7-5775B8310D12> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
           0x10224e000 -        0x1027e7fff +com.adobe.MPS (AdobeMPS 5.8.1.30604 - 5.8.1.30604) <70CBC6A8-2740-37AB-964E-484096A1BF8A> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
           0x102864000 -        0x102882fff +com.adobe.dvaflashview.framework (7.0.853914 - 7.0.853914.0) <4A6FE7D8-835A-3B0D-959B-8CA0E9A1C758> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/Frameworks/dvaflashview.framework/Versions/A/dvaflashview
           0x10289a000 -        0x10289eff7 +com.adobe.ape.shim (3.4.0.29366 - 3.4.0.29366) <B9447EE8-6F91-9E85-C163-96600BF70764> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/Frameworks/adbeape.framework/Versions/A/adbeape
           0x1028a5000 -        0x102967fff +com.adobe.exo.framework (7.0.853914 - 7.0.853914.0) <B6CCEBE6-6179-3611-B700-C6EEF9EA757E> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/Frameworks/exo.framework/Versions/A/exo
           0x102a04000 -        0x102ab2fff +com.adobe.dvaworkspace.framework (7.0.853914 - 7.0.853914.0) <E80A9533-786D-3063-9695-D40BE50BDCAC> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/Frameworks/dvaworkspace.framework/Versions/A/dvaworkspace
           0x102b35000 -        0x1031cbff7 +com.adobe.PlugPlugOwl (4.0.2.35 - 4.0.2.35) <395AA523-BA82-3577-BB56-BC9949DB3EA6> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/Frameworks/PlugPlugOwl.framework/Versions/A/PlugPlugOwl
           0x1034bd000 -        0x1034e9ff7 +libtbb.dylib (0) <64B7013E-D548-3F7B-A2FB-28B7B932275C> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/Frameworks/libtbb.dylib
           0x103504000 -        0x103523fe7 +libtbbmalloc.dylib (0) <6887ED68-67ED-3748-82DA-B39A3EB210BB> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/Frameworks/libtbbmalloc.dylib
           0x103548000 -        0x10428dfff +com.adobe.ICUData (4.0 - 3.61) <01D90725-4B10-312C-9546-9C0CCCA1B7BB> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/Frameworks/ICUData.framework/Versions/4.0/libicudata.40.0.dylib
           0x1042a1000 -        0x1043d2ff7 +com.adobe.ICUInternationalization (4.0 - 3.61) <CD4AD967-00CD-3979-8F82-1166E2058FA6> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/Frameworks/ICUInternationalization.framework/Versions/4.0/libicui18n.40.0 .dylib
           0x104426000 -        0x10451cff7 +com.adobe.ICUUnicode (4.0 - 3.61) <2352E6C8-3431-3A99-92B9-382E85A018AC> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/Frameworks/ICUUnicode.framework/Versions/4.0/libicuuc.40.0.dylib
           0x104554000 -        0x104682fff +com.winsoft.wrservices (WRServices 7.0.0 - 7.0.0) <0853A41B-A14A-37B7-B27F-457F87865EAD> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
           0x1046dd000 -        0x1047ccfff +com.adobe.amtlib (7.0.0.169 - 7.0.0.169) <A9A9F814-FF1F-3182-992C-395E5BC52481> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
           0x1047df000 -        0x1047e1fff +com.adobe.AdobeCrashReporter (7.0 - 7.0.1) <B68D0D42-8DEB-3F22-BD17-981AC060E9D7> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashReporter
           0x1047e7000 -        0x10489eff7 +com.adobe.boost_regex.framework (7.0.847203 - 7.0.847203.0) <F1C659D9-D3E8-3ACE-8368-9161529A6A66> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/Frameworks/boost_regex.framework/Versions/A/boost_regex
           0x104908000 -        0x104977ff7 +com.adobe.adobe_caps (adobe_caps 7.0.0.21 - 7.0.0.21) <CE3C6356-9EE2-3B88-8261-8612A0743F56> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
           0x104982000 -        0x10498dfff +com.adobe.boost_signals.framework (7.0.847203 - 7.0.847203.0) <E0B3BB47-4294-3D65-8979-29B2D6C5DD2E> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/Frameworks/boost_signals.framework/Versions/A/boost_signals
           0x10499c000 -        0x1049a0fff +com.adobe.boost_system.framework (7.0.847203 - 7.0.847203.0) <70F73B9F-8416-37BF-9294-086AE475B743> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/Frameworks/boost_system.framework/Versions/A/boost_system
           0x1049a6000 -        0x104a47fff +com.adobe.ICUConverter (4.0 - 3.61) <46764474-111C-3B13-AF62-002B71877405> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/Frameworks/ICUConverter.framework/Versions/4.0/libicucnv.40.0.dylib
           0x104a67000 -        0x104ac9ff7 +DataBaseLib.dylib (1) <E83A89F6-EA79-37FD-9A25-69FEF8FD92B2> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/MacOS/DataBaseLib.dylib
           0x104add000 -        0x104b49fff +ObjectModelLib.dylib (1) <DACE1F3B-0BB0-3F81-99CB-1ECBB73F50A4> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/MacOS/ObjectModelLib.dylib
           0x104b66000 -        0x104b8afff +com.adobe.AXE8SharedExpat (AdobeAXE8SharedExpat 3.8.0.30807 - 3.8.0.30807) <16FF5E16-19E0-3CE1-A68E-27567234429F> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedExpat
           0x1081f5000 -        0x1081f7fff +com.adobe.InDesign.SimpleTextImportFilter (9.1.0.33 - 0) <B409D770-A106-3EFE-9925-DE295432C918> /Applications/Adobe Creative Cloud/*/SimpleTextImportFilter
           0x1084ee000 -        0x1084f6fff +com.adobe.InDesign.Data Services UI (9.1.0.33 - 0) <EF01EA1E-61C9-3B9E-A166-0A425537E310> /Applications/Adobe Creative Cloud/*/Data Services UI
           0x108783000 -        0x1087c1fff +com.adobe.AAM.AdobeUpdaterNotificationFramework (UpdaterNotifications 7.0.1.102 - 7.0.1.102) <75ADE364-1107-3DA7-84A2-26C6874EB881> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/Frameworks/UpdaterNotifications.framework/Versions/A/UpdaterNotifications
           0x10aeab000 -        0x10aeb3fff +com.adobe.InDesign.Data Services (9.1.0.33 - 0) <48C1DEF8-D77A-3717-AD51-02E641D9EF8F> /Applications/Adobe Creative Cloud/*/Data Services
           0x10aeb9000 -        0x10aec8ff7 +com.adobe.InDesign.DTTransform (9.1.0.33 - 0) <417A914C-BEA9-3AF6-94BC-158C93DCDC56> /Applications/Adobe Creative Cloud/*/DTTransform
           0x10aed1000 -        0x10aedaff7 +com.adobe.InDesign.PNG Import Filter UI (9.1.0.33 - 0) <C566B5E1-9945-3673-A6E0-12FDBE39B7D2> /Applications/Adobe Creative Cloud/*/PNG Import Filter UI
           0x10aee5000 -        0x10aeedff7 +com.adobe.InDesign.JPEG Export UI (9.1.0.33 - 0) <2EAEC64B-5E6D-3E13-80AC-2DED9C3F0A28> /Applications/Adobe Creative Cloud/*/JPEG Export UI
           0x10aff9000 -        0x10affaff7 +com.adobe.InDesign.Metadata Database Filter (9.1.0.33 - 0) <3BE1DF86-81E8-359D-A40E-84EC7A016E16> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/MacOS/Required/Metadata Database Filter.InDesignPlugin/Metadata Database Filter
           0x10ba00000 -        0x10ba16ff7 +com.adobe.InDesign.SaveBack (9.1.0.33 - 0) <546099DF-3333-3037-8591-FA07773367B5> /Applications/Adobe Creative Cloud/*/SaveBack
           0x10bde1000 -        0x10bdedfff +com.adobe.InDesign.Tagged Text Filters UI (9.1.0.33 - 0) <83C996D8-4E24-3511-A666-70DE47F3DE39> /Applications/Adobe Creative Cloud/*/Tagged Text Filters UI
           0x10bdf8000 -        0x10bdfaff7  com.apple.textencoding.unicode (2.6 - 2.6) <0EEF0283-1ACA-3147-89B4-B4E014BFEC52> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
           0x10d571000 -        0x10d5affff +com.adobe.InDesign.Dictionary Editor Dialog (9.1.0.33 - 0) <C95A4466-2E6E-371D-A983-C8C1A2923FB6> /Applications/Adobe Creative Cloud/*/Dictionary Editor Dialog
           0x10d5d0000 -        0x10d5f6ff7 +com.adobe.InDesign.LILO (9.1.0.33 - 0) <30921CBA-EDDD-3146-AAFC-57C738B06CD7> /Applications/Adobe Creative Cloud/*/LILO
           0x10d604000 -        0x10d6dffff +com.adobe.linguistic.LinguisticManager (7.0.0 - 19061) <FDBCF369-5EFE-33BB-893A-2136EF8D0D6E> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic
           0x10d6fb000 -        0x10d810fff +com.adobe.InDesign.EBookExport (9.1.0.33 - 0) <C10A49CB-2581-33F9-A50F-766E6345F843> /Applications/Adobe Creative Cloud/*/EBookExport
           0x10d838000 -        0x10d895fff +com.adobe.InDesign.Media Import Filter (9.1.0.33 - 0) <E612697E-17AF-3305-B5CF-F7BCA68C4777> /Applications/Adobe Creative Cloud/*/Media Import Filter
           0x10d8a8000 -        0x10d8d2ff7 +com.adobe.InDesign.Sangam Preferences UI (9.1.0.33 - 0) <BCFBDD3B-9562-3F7A-AFE7-052DE0E3620E> /Applications/Adobe Creative Cloud/*/Sangam Preferences UI
           0x10d8e5000 -        0x10d94efff +com.adobe.AdobeSangam (AdobeSangam 5.65.0.30369 - 5.65.0.30369) <BCD8B3F6-970F-3DEA-A583-7473FDDCA067> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/Frameworks/AdobeSangam.framework/Versions/A/AdobeSangam
           0x10d99c000 -        0x10d9edfff +com.adobe.InDesign.SangamExport (9.1.0.33 - 0) <F8CCDC32-FBFF-38FA-95BE-EB388F00556C> /Applications/Adobe Creative Cloud/*/SangamExport
           0x10da04000 -        0x10db45ff7 +com.adobe.InDesign.SangamServicer-Mapper (9.1.0.33 - 0) <F1BCCC8E-BDE9-3299-A144-B70F607763F5> /Applications/Adobe Creative Cloud/*/SangamServicer-Mapper
           0x10db69000 -        0x10dc3cff7 +com.adobe.InDesign.Tagged Text Attributes (9.1.0.33 - 0) <63FB581D-0334-3755-8697-6051DBBA1716> /Applications/Adobe Creative Cloud/*/Tagged Text Attributes
           0x10dc6b000 -        0x10dd10fff +com.adobe.InDesign.Tagged Text Filters (9.1.0.33 - 0) <36C8468C-1362-31F8-87C6-D8FA7EB933BC> /Applications/Adobe Creative Cloud/*/Tagged Text Filters
           0x10dd25000 -        0x10dd32fff +com.adobe.InDesign.Clipping Path Dialog (9.1.0.33 - 0) <93D2E8FF-D77F-3DBA-96AF-116B460D22C3> /Applications/Adobe Creative Cloud/*/Clipping Path Dialog
           0x10dd44000 -        0x10dd88ff7 +com.adobe.InDesign.Color Management UI (9.1.0.33 - 0) <E1F74CF9-8EF7-3EDE-9A4B-D8588C99A23F> /Applications/Adobe Creative Cloud/*/Color Management UI
           0x10dd98000 -        0x10de14fff +com.adobe.InDesign.Color Picker Panel (9.1.0.33 - 0) <A2B35463-46D7-3033-AC02-DE4A307F8864> /Applications/Adobe Creative Cloud/*/Color Picker Panel
           0x10de3c000 -        0x10e051ff7 +com.adobe.InDesign.Digital Publishing (9.0.10.28 - 0) <3DEACF5D-7856-3674-925E-95058D4CBBFE> /Applications/Adobe Creative Cloud/*/Digital Publishing
           0x10e1d0000 -        0x10e1e2fff +com.adobe.boost_filesystem.framework (7.0.847203 - 7.0.847203.0) <B0F56E9F-BAAB-34C5-93C4-C713203AB0DF> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/Frameworks/boost_filesystem.framework/Versions/A/boost_filesystem
           0x10e1f3000 -        0x10e22bfef +libcurl.4.dylib (7) <FA1D87DC-8CBC-3645-8ADA-D974B6EDED53> /Applications/Adobe Creative Cloud/*/libcurl.4.dylib
           0x10e236000 -        0x10e2b6ff7 +com.adobe.InDesign.DynamicDocumentsUI (9.1.0.33 - 0) <3DF5B8E9-480D-3634-B410-8186F88A5489> /Applications/Adobe Creative Cloud/*/DynamicDocumentsUI
           0x10e2dd000 -        0x10e2f9fff +com.adobe.InDesign.EPS UI (9.1.0.33 - 0) <CB5EB4C4-04F6-36B0-8CC1-82C59C2FD56B> /Applications/Adobe Creative Cloud/*/EPS UI
           0x10e30a000 -        0x10e316ff7 +com.adobe.InDesign.Generic Style Editor (9.1.0.33 - 0) <6DD52448-3D93-3D78-AEE4-BB5B78D2B018> /Applications/Adobe Creative Cloud/*/Generic Style Editor
           0x10e325000 -        0x10e35bfff +com.adobe.InDesign.Gradient Panel (9.1.0.33 - 0) <A0B7F034-768A-3725-8F03-7302B1014374> /Applications/Adobe Creative Cloud/*/Gradient Panel
           0x10e372000 -        0x10e414fff +com.adobe.InDesign.Graphic Panels (9.1.0.33 - 0) <23239156-9058-3019-8ECD-88DA24122B99> /Applications/Adobe Creative Cloud/*/Graphic Panels
           0x10e43d000 -        0x10e458fff +com.adobe.InDesign.JPEG Export (9.1.0.33 - 0) <DB2C27D2-B1A9-37BF-BFB4-484E28CFC2E5> /Applications/Adobe Creative Cloud/*/JPEG Export
           0x10e46a000 -        0x10e4bbff7 +com.adobe.InDesign.Output Preview (9.1.0.33 - 0) <BF8EA07F-798D-3D9F-872B-F75E35376CCE> /Applications/Adobe Creative Cloud/*/Output Preview
           0x10e4d5000 -        0x10e4ecff7 +com.adobe.InDesign.OutputMiscUI (9.1.0.33 - 0) <BACF73C7-0ABA-361D-8F85-840CF055968A> /Applications/Adobe Creative Cloud/*/OutputMiscUI
           0x10e4ff000 -        0x10e580fff +com.adobe.InDesign.PDF UI (9.1.0.33 - 0) <2ABDFC92-F233-3DD2-9F41-6EA7F34B2E1E> /Applications/Adobe Creative Cloud/*/PDF UI
           0x10e5a4000 -        0x10e611fff +com.adobe.AdobeXMPCore (Adobe XMP Core 5.5 -c 14 - 79.151481) <BCDB9366-EDB3-3FEA-854D-3D2C72D48781> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
           0x10e61c000 -        0x10e633ff7 +com.adobe.InDesign.Printer Styles (9.1.0.33 - 0) <ACDF3B96-030B-3A7A-B552-661D4EF28F6D> /Applications/Adobe Creative Cloud/*/Printer Styles
           0x10e642000 -        0x10e724fff +com.adobe.InDesign.PrintUI (9.1.0.33 - 0) <8CF1D4F4-85B0-3B0E-ABB8-DF70DA17609C> /Applications/Adobe Creative Cloud/*/PrintUI
           0x10e750000 -        0x10e762ff7 +com.adobe.InDesign.PS Import UI (9.1.0.33 - 0) <6F36235F-8819-3C30-8DCE-2771243875BE> /Applications/Adobe Creative Cloud/*/PS Import UI
           0x10e771000 -        0x10e794fff +com.adobe.InDesign.Swatch Library Panel (9.1.0.33 - 0) <DE2CA80F-CE46-3CD9-9FD4-EA8E9E672B1E> /Applications/Adobe Creative Cloud/*/Swatch Library Panel
           0x10e7a3000 -        0x10e860ff7 +com.adobe.InDesign.Swatches Panel (9.1.0.33 - 0) <E9F1F194-99D8-35E5-8685-5C8DC4508EE6> /Applications/Adobe Creative Cloud/*/Swatches Panel
           0x10e897000 -        0x10e946ff7 +com.adobe.InDesign.Transparency UI (9.1.0.33 - 0) <469B9D94-8BA5-3F4C-98BE-AD7BE885BFC7> /Applications/Adobe Creative Cloud/*/Transparency UI
           0x10e979000 -        0x10e9ddfff +com.adobe.InDesign.Assignment UI (9.1.0.33 - 0) <63DC234B-5418-3FEF-961C-04E65E8F376D> /Applications/Adobe Creative Cloud/*/Assignment UI
           0x10e9ff000 -        0x10ea22fff +com.adobe.InDesign.InCopy Bridge UI (9.1.0.33 - 0) <7923E03C-96CB-3369-8CEC-1EA4E369DE70> /Applications/Adobe Creative Cloud/*/InCopy Bridge UI
           0x10ea30000 -        0x10ea6fff7 +com.adobe.InDesign.InCopy Bridge (9.1.0.33 - 0) <F476293E-F020-3CDB-9A0C-660B91A71281> /Applications/Adobe Creative Cloud/*/InCopy Bridge
           0x10ea7f000 -        0x10ea87fff +com.adobe.InDesign.InCopyExport (9.1.0.33 - 0) <9ACE4231-FCB8-3995-BE0E-ED6DBEAA58B7> /Applications/Adobe Creative Cloud/*/InCopyExport
           0x10ea91000 -        0x10ea98ff7 +com.adobe.InDesign.InCopyExportUI (9.1.0.33 - 0) <F0EB0F82-C96B-3B9D-92C5-66E2DCC416DF> /Applications/Adobe Creative Cloud/*/InCopyExportUI
           0x10eaa1000 -        0x10eaa8fff +com.adobe.InDesign.InCopyImport (9.1.0.33 - 0) <6C4D93D1-26B1-3A78-AEC4-08BE97A6F15A> /Applications/Adobe Creative Cloud/*/InCopyImport
           0x10eaaf000 -        0x10eab7fff +com.adobe.InDesign.InCopyWorkflow UI (9.1.0.33 - 0) <F7524889-E7AC-3177-AFF7-B487FD6BF7D6> /Applications/Adobe Creative Cloud/*/InCopyWorkflow UI
           0x10eac2000 -        0x10eb19ff7 +com.adobe.InDesign.Note (9.1.0.33 - 0) <07808666-F165-34C1-9E46-D4403EC7C6A6> /Applications/Adobe Creative Cloud/*/Note
           0x10eb39000 -        0x10eb44ff7 +com.adobe.InDesign.NotePref (9.1.0.33 - 0) <D1FA4217-A5A8-31D2-9178-D94F2F048790> /Applications/Adobe Creative Cloud/*/NotePref
           0x10eb52000 -        0x10eb57ff7 +com.adobe.InDesign.Username UI (9.1.0.33 - 0) <D3009947-D338-3EAB-9690-722AB9C10FB3> /Applications/Adobe Creative Cloud/*/Username UI
           0x10eb61000 -        0x10ec02ff7 +com.adobe.InDesign.ButtonUI (9.1.0.33 - 0) <80905FB7-290E-3CBF-9544-4B3ADF9EA03F> /Applications/Adobe Creative Cloud/*/ButtonUI
           0x10ec31000 -        0x10ec59ff7 +com.adobe.InDesign.MediaUI (9.1.0.33 - 0) <7ECB27BD-1D9D-3AF9-B649-97A711719520> /Applications/Adobe Creative Cloud/*/MediaUI
           0x10ec6e000 -        0x10ec7efff +com.adobe.InDesign.Alignment Panel (9.1.0.33 - 0) <54940D94-3BB6-38D7-B45B-14906B94A6C3> /Applications/Adobe Creative Cloud/*/Alignment Panel
           0x10ec87000 -        0x10eccefff +com.adobe.InDesign.Asset Library Panel (9.1.0.33 - 0) <C43845BE-9F2F-31A4-AB1E-2E031415722F> /Applications/Adobe Creative Cloud/*/Asset Library Panel
           0x10ecf2000 -        0x10ed5fff7 +com.adobe.InDesign.Asset PubLibrary (9.1.0.33 - 0) <DCD77415-2134-3E42-9CD6-FA9E47BCD4BF> /Applications/Adobe Creative Cloud/*/Asset PubLibrary
           0x10ed7d000 -        0x10edcaff7 +com.adobe.InDesign.Book Panel (9.1.0.33 - 0) <8114886F-3760-31DF-A429-078084FA7AA7> /Applications/Adobe Creative Cloud/*/Book Panel
           0x10eded000 -        0x10ee09fff +com.adobe.InDesign.Bookmark Panel (9.1.0.33 - 0) <2D72245E-E8B5-3958-8B1E-A47CFC64D8BB> /Applications/Adobe Creative Cloud/*/Bookmark Panel
           0x10ee20000 -        0x10ee59fff +com.adobe.InDesign.ContentDropper Tool (9.1.0.33 - 0) <99A68583-FDFD-38B8-A727-86CA230F62EF> /Applications/Adobe Creative Cloud/*/ContentDropper Tool
           0x10ee78000 -        0x10eebeff7 +com.adobe.InDesign.Control Panel (9.1.0.33 - 0) <15528F16-3629-3E3B-90A8-E5CBD8E31B45> /Applications/Adobe Creative Cloud/*/Control Panel
           0x10eedb000 -        0x10eee5fff +com.adobe.InDesign.Create Guides Dialog (9.1.0.33 - 0) <59B37FF3-166C-3BA0-88F9-B48121D455FA> /Applications/Adobe Creative Cloud/*/Create Guides Dialog
           0x10eef0000 -        0x10ef2afff +com.adobe.InDesign.Eyedropper Tool (9.1.0.33 - 0) <6EB8BC12-7868-3B4C-BAD1-851801E0A42E> /Applications/Adobe Creative Cloud/*/Eyedropper Tool
           0x10ef3f000 -        0x10efccfff +com.adobe.InDesign.Hyperlinks Panel (9.1.0.33 - 0) <0AB14BC3-AC1D-3DDC-B451-449644AF37D2> /Applications/Adobe Creative Cloud/*/Hyperlinks Panel
           0x10eff1000 -        0x10f081fff +com.adobe.InDesign.Index Panel (9.1.0.33 - 0) <3B1558CE-A272-35B4-A8A3-FFD880B3630B> /Applications/Adobe Creative Cloud/*/Index Panel
           0x10f0a1000 -        0x10f0adff7  com.apple.carbonframeworktemplate (1.0 - 1.0) <E859A35E-8EC1-3CA9-9758-95EC69D4EC5D> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/Frameworks/unihan.framework/Versions/A/unihan
           0x10f0b8000 -        0x10f121fff +com.adobe.InDesign.Info Panel (9.1.0.33 - 0) <1C0402F5-4C5E-3D10-88BA-7407A40E3965> /Applications/Adobe Creative Cloud/*/Info Panel
           0x10f139000 -        0x10f1fdfff +com.adobe.InDesign.Knowledge Base (9.1.0.33 - 0) <E650B6BD-690B-37A0-9371-970563634B38> /Applications/Adobe Creative Cloud/*/Knowledge Base
           0x10f207000 -        0x10f25aff7 +com.adobe.InDesign.Layers Panel (9.1.0.33 - 0) <52C05DD0-6A95-3032-B41C-2B480A5EED88> /Applications/Adobe Creative Cloud/*/Layers Panel
           0x10f27c000 -        0x10f281fff +com.adobe.InDesign.Layout Adjustment Panel (9.1.0.33 - 0) <098313B3-96FB-3AF9-BC24-2F3CA93AFB4C> /Applications/Adobe Creative Cloud/*/Layout Adjustment Panel
           0x10f28a000 -        0x10f2a9fff +com.adobe.InDesign.Layout Adjustment (9.1.0.33 - 0) <DB9C45CC-3A38-3875-BBDF-399DCB593A14> /Applications/Adobe Creative Cloud/*/Layout Adjustment
           0x10f2b8000 -        0x10f304ff7 +com.adobe.InDesign.Links UI (9.1.0.33 - 0) <C4F379A7-7AC3-3504-BADC-ABCCFE5100A0> /Applications/Adobe Creative Cloud/*/Links UI
           0x10f326000 -        0x10f3cbff7 +com.adobe.InDesign.ObjectStylesUI (9.1.0.33 - 0) <58E9476C-6716-3CA3-BDCD-E1AA5DF42624> /Applications/Adobe Creative Cloud/*/ObjectStylesUI
           0x10f3fb000 -        0x10f421fff +com.adobe.InDesign.Page Setup Dialog (9.1.0.33 - 0) <F138A322-9F60-3A17-B2C7-9F05A7E8BD98> /Applications/Adobe Creative Cloud/*/Page Setup Dialog
           0x10f42e000 -        0x10f4f2fff +com.adobe.InDesign.Pages Panel (9.1.0.33 - 0) <C072BBAE-E49A-307E-A115-C5CDC298C9C7> /Applications/Adobe Creative Cloud/*/Pages Panel
           0x10f523000 -        0x10f532fff +com.adobe.InDesign.Sections UI (9.1.0.33 - 0) <3FD8D737-8DA8-3707-9031-FB97E05D9FB9> /Applications/Adobe Creative Cloud/*/Sections UI
           0x10f53d000 -        0x10f547fff +com.adobe.InDesign.StepRepeat (9.1.0.33 - 0) <0F3A3EC5-6BF6-3D92-B2A9-A8D571E51B54> /Applications/Adobe Creative Cloud/*/StepRepeat
           0x10f553000 -        0x10f592ff7 +com.adobe.InDesign.Text Wrap Panel (9.1.0.33 - 0) <0767C906-FE80-30D5-89E1-78D3F7AC8A5A> /Applications/Adobe Creative Cloud/*/Text Wrap Panel
           0x10f5ab000 -        0x10f5edfff +com.adobe.InDesign.TOC UI Dialog (9.1.0.33 - 0) <942CA8F6-F094-3F26-97BE-4B7B59AE80C7> /Applications/Adobe Creative Cloud/*/TOC UI Dialog
           0x10f607000 -        0x10f643ff7 +com.adobe.InDesign.Transform Panel (9.1.0.33 - 0) <597F9458-996D-3C22-A150-BEF828D5634D> /Applications/Adobe Creative Cloud/*/Transform Panel
           0x10f659000 -        0x10f674fff +com.adobe.InDesign.Image Import UI (9.1.0.33 - 0) <BBC09119-A690-340C-93A7-E27B238004B6> /Applications/Adobe Creative Cloud/*/Image Import UI
           0x10f686000 -        0x10f69cfff +com.adobe.InDesign.Scotch Rules (9.1.0.33 - 0) <7BB10CB0-31B7-3B31-B2A5-97B8792273C3> /Applications/Adobe Creative Cloud/*/Scotch Rules
           0x10f6a7000 -        0x10f70bff7 +com.adobe.InDesign.BNUI (9.1.0.33 - 0) <A687AB81-E289-3AFD-BDC5-3350B0C1122D> /Applications/Adobe Creative Cloud/*/BNUI
           0x10f72b000 -        0x10f7ccff7 +com.adobe.InDesign.DataMerge (9.1.0.33 - 0) <B879F1CA-45D4-31BE-A831-68226DBFE3C9> /Applications/Adobe Creative Cloud/*/DataMerge
           0x10f7ec000 -        0x10f820fff +com.adobe.InDesign.DataMergeUI (9.1.0.33 - 0) <A3FE421A-366E-3C90-B1C3-F7CD52F87B5D> /Applications/Adobe Creative Cloud/*/DataMergeUI
           0x10f83b000 -        0x10f943fff +com.adobe.InDesign.Package and Preflight UI (9.1.0.33 - 0) <7FDC6527-29B8-3307-BE94-CBDA2B5C4B4E> /Applications/Adobe Creative Cloud/*/Package and Preflight UI
           0x10f982000 -        0x10fbe5fff +com.adobe.InDesign.Package and Preflight (9.1.0.33 - 0) <C93636A7-6DFF-3976-93BA-3753C7961356> /Applications/Adobe Creative Cloud/*/Package and Preflight
           0x10fc2b000 -        0x10fd19fff +com.adobe.InDesign.JBX (9.1.0.33 - 0) <F9C75EA9-28AF-31BF-9A6E-6EE1E6010591> /Applications/Adobe Creative Cloud/*/JBX
           0x10fd43000 -        0x10fd49fff +com.adobe.InDesign.Script Label Panel (9.1.0.33 - 0) <CF90BDAA-5B8E-33EB-B580-972C71104678> /Applications/Adobe Creative Cloud/*/Script Label Panel
           0x10fd55000 -        0x10fd63ff7 +com.adobe.InDesign.Scripts Panel (9.1.0.33 - 0) <AF5E85D2-EBFB-33C2-966C-FEE87EE8211D> /Applications/Adobe Creative Cloud/*/Scripts Panel
           0x10fd72000 -        0x10fefeff7 +com.adobe.InDesign.SettingsInCloud (9.1.0.33 - 0) <6B6F6595-0020-3775-85EB-F315636F8BDC> /Applications/Adobe Creative Cloud/*/SettingsInCloud
           0x10ff8c000 -        0x110071fff +com.adobe.InDesign.Tables UI (9.1.0.33 - 0) <DE20E47C-580C-30A0-847B-E4F07122331D> /Applications/Adobe Creative Cloud/*/Tables UI
           0x1100a0000 -        0x110144ff7 +com.adobe.InDesign.TableStylesUI (9.1.0.33 - 0) <2CE8F674-586E-3EB9-88B3-A4ECBDF0187F> /Applications/Adobe Creative Cloud/*/TableStylesUI
           0x110170000 -        0x1101fcfff +com.adobe.InDesign.Character Panel (9.1.0.33 - 0) <A91DF108-9F28-36E4-A4B8-1A525F98C503> /Applications/Adobe Creative Cloud/*/Character Panel
           0x110238000 -        0x11026afff +com.adobe.InDesign.Conditional Text UI (9.1.0.33 - 0) <30D77E16-CF41-3627-B3E3-E449847F7AA5> /Applications/Adobe Creative Cloud/*/Conditional Text UI
           0x110285000 -        0x1102a2ff7 +com.adobe.InDesign.Create Outlines (9.1.0.33 - 0) <67E01895-4459-3227-97EE-05C08FAF12A7> /Applications/Adobe Creative Cloud/*/Create Outlines
           0x1102af000 -        0x1103d4ff7 +com.adobe.InDesign.Find and Change Panel (9.1.0.33 - 0) <DD6F373A-18D1-34B1-BD0C-330DD07603F9> /Applications/Adobe Creative Cloud/*/Find and Change Panel
           0x110411000 -        0x11043dff7 +com.adobe.InDesign.Find Change Format Panel (9.1.0.33 - 0) <59B463B6-6D3B-3D25-B353-4A99C6301B2A> /Applications/Adobe Creative Cloud/*/Find Change Format Panel
           0x110451000 -        0x11047bfff +com.adobe.InDesign.Font Usage Dialog (9.1.0.33 - 0) <872B9689-D8D1-3237-87E4-1D820ABD3402> /Applications/Adobe Creative Cloud/*/Font Usage Dialog
           0x11048b000 -        0x11055bfff +com.adobe.InDesign.Glyphs Panel (9.1.0.33 - 0) <4137222E-0361-3589-A8CF-6C1529BC73E0> /Applications/Adobe Creative Cloud/*/Glyphs Panel
           0x11057f000 -        0x110589fff +com.adobe.InDesign.Hyphenation Panel (9.1.0.33 - 0) <CE3045F4-F009-33E4-904D-557A76A05216> /Applications/Adobe Creative Cloud/*/Hyphenation Panel
           0x110596000 -        0x1105a9ff7 +com.adobe.InDesign.Indents and Tabs (9.1.0.33 - 0) <DE29B198-9C8D-3BF5-AA17-D96ACBA00E43> /Applications/Adobe Creative Cloud/*/Indents and Tabs
           0x1105b8000 -        0x1105c2fff +com.adobe.InDesign.Justification Panel (9.1.0.33 - 0) <4F940073-AAF8-3FDF-87FA-04A8DC87679D> /Applications/Adobe Creative Cloud/*/Justification Panel
           0x1105cd000 -        0x1105d5ff7 +com.adobe.InDesign.Keeps Panel (9.1.0.33 - 0) <B93BD9B2-6C80-39E6-8A20-C37883A904E4> /Applications/Adobe Creative Cloud/*/Keeps Panel
           0x1105dd000 -        0x1105fdff7 +com.adobe.InDesign.Optical Kerning (9.1.0.33 - 0) <24369EBE-1766-35EC-9A39-DE5167F0A8AE> /Applications/Adobe Creative Cloud/*/Optical Kerning
           0x110608000 -        0x11063cff7 +com.adobe.InDesign.Paragraph Panel (9.1.0.33 - 0) <AF14E0F9-4234-355B-816F-A19A7BCE8676> /Applications/Adobe Creative Cloud/*/Paragraph Panel
           0x11064f000 -        0x110661ff7 +com.adobe.InDesign.Paragraph Rules Panel (9.1.0.33 - 0) <505B0CE0-4873-3DA9-97BC-1CE80B8A81E4> /Applications/Adobe Creative Cloud/*/Paragraph Rules Panel
           0x11066b000 -        0x110682fff +com.adobe.InDesign.Path Type UI (9.1.0.33 - 0) <5FBB48B2-8E60-3BFA-82EA-A52467B9831A> /Applications/Adobe Creative Cloud/*/Path Type UI
           0x110692000 -        0x11069cff7 +PathTypeLib.dylib (1) <A6E44FB4-61D6-3729-B3DD-A4D22EEC73B3> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/MacOS/PathTypeLib.dylib
           0x1106a5000 -        0x1106d2fff +com.adobe.InDesign.RunIn Styles Panel (9.1.0.33 - 0) <EE33D598-7F48-3DCE-A596-B619BE63F8EE> /Applications/Adobe Creative Cloud/*/RunIn Styles Panel
           0x1106e4000 -        0x1106f5fff +com.adobe.InDesign.SING (9.1.0.33 - 0) <78835D9D-56FB-39EB-A216-F3494451AC42> /Applications/Adobe Creative Cloud/*/SING
           0x1106ff000 -        0x110709ff7 +com.adobe.InDesign.Span Columns Panel (9.1.0.33 - 0) <15F063E0-7874-30AE-841C-C10A12CF8B5E> /Applications/Adobe Creative Cloud/*/Span Columns Panel
           0x110712000 -        0x11075eff7 +com.adobe.InDesign.Spelling Panel (9.1.0.33 - 0) <B208BBCC-1AAB-354C-9CA6-44C6B5D35946> /Applications/Adobe Creative Cloud/*/Spelling Panel
           0x110778000 -        0x11078cff7 +com.adobe.InDesign.Story Panel (9.1.0.33 - 0) <989D8312-C513-36B9-9A2A-A161EC806905> /Applications/Adobe Creative Cloud/*/Story Panel
           0x11079b000 -        0x110816ff7 +com.adobe.InDesign.Style Panel (9.1.0.33 - 0) <60EEDE2C-6BBC-3E5F-9F69-C5A001DAE984> /Applications/Adobe Creative Cloud/*/Style Panel
           0x11083f000 -        0x11084cff7 +com.adobe.InDesign.Text Color Panel (9.1.0.33 - 0) <B9722BDD-B3B2-3B6B-90EC-D7B52D54C678> /Applications/Adobe Creative Cloud/*/Text Color Panel
           0x110855000 -        0x110881ff7 +com.adobe.InDesign.Text Frame Options (9.1.0.33 - 0) <24DF4463-54CA-3FC3-95E3-E8C791B12169> /Applications/Adobe Creative Cloud/*/Text Frame Options
           0x110892000 -        0x1108f7fff +com.adobe.InDesign.Text Panel (9.1.0.33 - 0) <C10930A1-FDA7-36B6-B79D-6E6F73BA4EEC> /Applications/Adobe Creative Cloud/*/Text Panel
           0x11091a000 -        0x11093cfff +com.adobe.InDesign.Text Preferences (9.1.0.33 - 0) <8C47BE3B-1091-32A2-9059-386030EC9C49> /Applications/Adobe Creative Cloud/*/Text Preferences
           0x11094c000 -        0x11096fff7 +com.adobe.InDesign.Text Ruler (9.1.0.33 - 0) <7B9A2B91-60B5-32FD-8244-6372495C16BF> /Applications/Adobe Creative Cloud/*/Text Ruler
           0x110980000 -        0x1109a5ff7 +com.adobe.InDesign.Text Style Panel (9.1.0.33 - 0) <8313AC57-723E-3409-97C3-4E33665F8396> /Applications/Adobe Creative Cloud/*/Text Style Panel
           0x1109b6000 -        0x1109e2fff +com.adobe.InDesign.Article Panel (9.1.0.33 - 0) <8D03DC8F-4D9F-34F3-9046-25CDE3D4FE03> /Applications/Adobe Creative Cloud/*/Article Panel
           0x1109fb000 -        0x110a2cff7 +com.adobe.InDesign.CSXS (9.1.0.33 - 0) <96685203-48A3-39BD-B0A9-90FE7AF33B87> /Applications/Adobe Creative Cloud/*/CSXS
           0x110a44000 -        0x110a7cff7 +com.adobe.InDesign.Galley Preferences (9.1.0.33 - 0) <F96A6961-E3CD-36DC-9C6F-CACBC0B74579> /Applications/Adobe Creative Cloud/*/Galley Preferences
           0x110a97000 -        0x110ab8fff +com.adobe.InDesign.GapTool (9.1.0.33 - 0) <21C1069C-5783-3940-92A6-A345FCC317AA> /Applications/Adobe Creative Cloud/*/GapTool
           0x110ac8000 -        0x110ad3ff7 +com.adobe.InDesign.General Preferences Panel (9.1.0.33 - 0) <EDF87C7F-BF1E-36D1-8E71-55B4D8DD1C4A> /Applications/Adobe Creative Cloud/*/General Preferences Panel
           0x110ade000 -        0x110ae2fff +com.adobe.InDesign.Help (9.1.0.33 - 0) <09CFAB79-828F-39A9-8E6C-634999CF4EC8> /Applications/Adobe Creative Cloud/*/Help
           0x110ae9000 -        0x110afcff7 +com.adobe.ahclientframework (1.8.0.31 - 1.8.0.31) <58BB943C-98EC-3812-AAAB-74F66630D1D4> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/Frameworks/ahclient.framework/Versions/A/ahclient
           0x110b03000 -        0x110b1fff7 +com.adobe.InDesign.Performance UI (9.1.0.33 - 0) <F2E0971B-A70C-39CF-91CF-3F4F25B176B5> /Applications/Adobe Creative Cloud/*/Performance UI
           0x110b34000 -        0x110b58ff7 +com.adobe.InDesign.SharedContentUI (9.1.0.33 - 0) <F933D1D2-262B-373D-9C38-9A95EF456410> /Applications/Adobe Creative Cloud/*/SharedContentUI
           0x110b67000 -        0x110b8dfff +com.adobe.InDesign.Shortcut Editor Dialog (9.1.0.33 - 0) <C4A827C6-AA10-3628-8967-01B9CD5EF71E> /Applications/Adobe Creative Cloud/*/Shortcut Editor Dialog
           0x110ba1000 -        0x110bc1ff7 +com.adobe.InDesign.Tool Box (9.1.0.33 - 0) <D5B0587D-3C0B-3A05-8153-6CEAD7953792> /Applications/Adobe Creative Cloud/*/Tool Box
           0x110be5000 -        0x110bedfff +com.adobe.InDesign.Tool Tips (9.1.0.33 - 0) <2A39F9CA-AD4D-31DE-A547-150997D5731D> /Applications/Adobe Creative Cloud/*/Tool Tips
           0x110bf6000 -        0x110bfefff +com.adobe.InDesign.Track Changes Preferences (9.1.0.33 - 0) <5A658631-2249-3036-A041-EE8CB387BF8B> /Applications/Adobe Creative Cloud/*/Track Changes Preferences
           0x110c08000 -        0x110c1fff7 +com.adobe.InDesign.Track Changes UI (9.1.0.33 - 0) <01C328F8-3440-3866-B596-D03D78FA5BF3> /Applications/Adobe Creative Cloud/*/Track Changes UI
           0x110c2a000 -        0x110c36ff7 +com.adobe.InDesign.PerformanceMetrics (9.1.0.33 - 0) <67E7E2B5-61E3-3F40-B440-5FE1EDE59E77> /Applications/Adobe Creative Cloud/*/PerformanceMetrics
           0x110c41000 -        0x110c50ff7 +com.adobe.InDesign.Metadata UI (9.1.0.33 - 0) <442F11B4-4698-3BED-BADD-F1E858A7DCB7> /Applications/Adobe Creative Cloud/*/Metadata UI
           0x110c5a000 -        0x110ccbfe7 +com.adobe.FileInfo.framework (Adobe XMP FileInfo 5 . 3 . 0 . 0 -i 3 - 79.151561) <380981FE-6528-37CC-9159-AB1892803BD4> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
           0x110cde000 -        0x110ce8fff +com.adobe.InDesign.Workgroup UI (9.1.0.33 - 0) <F8322558-0D2F-396E-B517-C55212DAB68B> /Applications/Adobe Creative Cloud/*/Workgroup UI
           0x110cf1000 -        0x110d42ff7 +com.adobe.InDesign.Snippet (9.1.0.33 - 0) <5CC75DF2-5697-3E17-920D-1536AED78A9A> /Applications/Adobe Creative Cloud/*/Snippet
           0x110d5b000 -        0x110e8aff7 +com.adobe.InDesign.XMedia UI (9.1.0.33 - 0) <B37B0973-4F9F-37F5-B7FC-FA2E9602F1EA> /Applications/Adobe Creative Cloud/*/XMedia UI
           0x110ed4000 -        0x110f37ff7 +com.adobe.InDesign.Actions (9.1.0.33 - 0) <5673AFC0-08B8-3B67-8447-7C64C1B58E27> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/MacOS/Required/Actions.InDesignPlugin/Actions
           0x110f52000 -        0x111116ff7 +com.adobe.InDesign.AppFramework (9.1.0.33 - 0) <BF1B290E-456C-3D0F-8157-283614AF4235> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/MacOS/Required/AppFramework.InDesignPlugin/AppFramework
           0x11116a000 -        0x11137eff7 +com.adobe.InDesign.Application UI (9.1.0.33 - 0) <E3C17BFD-316C-3537-BB02-0DD33E63C7DC> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/MacOS/Required/Application UI.InDesignPlugin/Application UI
           0x111415000 -        0x111733ff7 +com.adobe.dvaadameve.framework (7.0.853914 - 7.0.853914.0) <F3B6585F-C6E9-3BB2-B4A8-2730B6CEEAB4> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/Frameworks/dvaadameve.framework/Versions/A/dvaadameve
           0x111a09000 -        0x111a58fff +com.adobe.headlights.LogSessionFramework (2.1.2.1756) <BD518257-970F-344A-92B8-B8BE1A8EB4D8> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
           0x111a7e000 -        0x111b3cff7 +com.adobe.AdobeExtendScript (ExtendScript 4.5.5 - 4.5.5.30772) <4FC0039A-A770-3A51-9D7A-D24167344540> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendScript
           0x111b64000 -        0x111c0fff7 +com.adobe.AdobeScCore (ScCore 4.5.5 - 4.5.5.30772) <5DE0B54D-CDAE-3146-904F-72CBC5C89FA7> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
           0x111c39000 -        0x111d83fff +com.adobe.dvascriptui.framework (7.0.6 - 7.0.6.0) <9A133FD8-BE29-3AD1-B3A7-ED1C7466C159> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/Frameworks/dvascriptui.framework/Versions/A/dvascriptui
           0x111e9d000 -        0x111ec3ff7 +com.adobe.InDesign.Article (9.1.0.33 - 0) <5594CD9B-844A-3C9F-949A-93F520ACCD63> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/MacOS/Required/Article.InDesignPlugin/Article
           0x111ed3000 -        0x111f70fff +com.adobe.InDesign.Assignments (9.1.0.33 - 0) <EAD2FFCF-B8E5-3530-B58E-474904578138> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/MacOS/Required/Assignments.InDesignPlugin/Assignments
           0x111f91000 -        0x11209dff7 +com.adobe.AdobeXMPFiles (Adobe XMP Files 5.6 -f 45 - 79.151481) <7B2C5F12-A861-3EA3-A5E1-A0ABF705EB5D> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/Frameworks/AdobeXMPFiles.framework/Versions/A/AdobeXMPFiles
           0x1120d2000 -        0x112112fff +com.adobe.InDesign.AWS (9.1.0.33 - 0) <4503E027-C352-3E36-B97F-053F163815B3> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/MacOS/Required/AWS.InDesignPlugin/AWS
           0x11212b000 -        0x112156ff7 +com.adobe.InDesign.AWSUI (9.1.0.33 - 0) <6CDDCDEE-176D-3E7E-A666-3CE5045EA3CB> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/MacOS/Required/AWSUI.InDesignPlugin/AWSUI
           0x11216b000 -        0x1121a5ff7 +com.adobe.InDesign.Basic Tools (9.1.0.33 - 0) <67E340EB-CE3F-334F-B1FB-7B0FBCE2AB75> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/MacOS/Required/Basic Tools.InDesignPlugin/Basic Tools
           0x1121c0000 -        0x112229fff +com.adobe.InDesign.Behavior (9.1.0.33 - 0) <9224EBBE-1184-30AC-9C0B-7776AC77A582> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/MacOS/Required/Behavior.InDesignPlugin/Behavior
           0x112247000 -        0x1122e9ff7 +com.adobe.InDesign.BNCore (9.1.0.33 - 0) <7370C6DC-E42A-3AE4-9E2B-AE876B3A625F> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/MacOS/Required/BNCore.InDesignPlugin/BNCore
           0x112307000 -        0x11236dfff +com.adobe.InDesign.Book (9.1.0.33 - 0) <04687BA9-AAB6-3DEF-A1CB-387134C9C01C> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/MacOS/Required/Book.InDesignPlugin/Book
           0x112384000 -        0x1123bdfff +com.adobe.InDesign.CellStyles (9.1.0.33 - 0) <99BB7B71-EDF0-361B-B168-A9AB3025E24D> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/MacOS/Required/CellStyles.InDesignPlugin/CellStyles
           0x1123d0000 -        0x112460ff7 +com.adobe.InDesign.CJK Text Attributes (9.1.0.33 - 0) <81D0AE00-2265-39ED-900F-C55FF6B383A7> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/MacOS/Required/CJK Text Attributes.InDesignPlugin/CJK Text Attributes
           0x112483000 -        0x112509fff +com.adobe.InDesign.CJKGrid (9.1.0.33 - 0) <C2AE712A-12DC-3666-A8F6-CE4572E22B87> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/MacOS/Required/CJKGrid.InDesignPlugin/CJKGrid
           0x112525000 -        0x112622fff +com.adobe.InDesign.Color Management (9.1.0.33 - 0) <33023C59-D4C5-3BF2-8C42-54BD6E50E651> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/MacOS/Required/Color Management.InDesignPlugin/Color Management
           0x11264f000 -        0x1126b6fff +com.adobe.InDesign.CompFontMgr (9.1.0.33 - 0) <3058E746-133A-343A-8ED2-6AC33635DDDE> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/MacOS/Required/CompFontMgr.InDesignPlugin/CompFontMgr
           0x1126ce000 -        0x112725fff +com.adobe.InDesign.Conditional Text (9.1.0.33 - 0) <0F92B4B6-9877-38A5-AE21-77558C13513F> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/MacOS/Required/Conditional Text.InDesignPlugin/Conditional Text
           0x11273e000 -        0x112772ff7 +com.adobe.InDesign.ContentDropper (9.1.0.33 - 0) <770161E3-FD66-3F7E-9590-8081A26EBF87> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/MacOS/Required/ContentDropper.InDesignPlugin/ContentDropper
           0x112786000 -        0x1127acfff +com.adobe.InDesign.Dialog Layout (9.1.0.33 - 0) <A707ECDB-55B2-3E5F-8AB7-41AF8B5E88A9> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/MacOS/Required/Dialog Layout.InDesignPlugin/Dialog Layout
           0x1127be000 -        0x1127e4fff +com.adobe.InDesign.Document Actions (9.1.0.33 - 0) <49E39D70-73A7-34AB-9A85-6CB1E72E296C> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/MacOS/Required/Document Actions.InDesignPlugin/Document Actions
           0x1127f1000 -        0x1129ccfff +com.adobe.InDesign.Document Framework (9.1.0.33 - 0) <C3CE0E63-77DE-3E9E-993D-9F67D2936C47> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/MacOS/Required/Document Framework.InDesignPlugin/Document Framework
           0x112a09000 -        0x112a13ff7 +com.adobe.InDesign.Document UI (9.1.0.33 - 0) <55DDF1E6-E82B-3200-9290-83A58959DB28> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/MacOS/Required/Document UI.InDesignPlugin/Document UI
           0x112a1d000 -        0x112a6cff7 +com.adobe.InDesign.DV_Widgets (9.1.0.33 - 0) <A68057AD-EC2D-374C-8141-0C6D614192FD> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/MacOS/Required/DV_Widgets.InDesignPlugin/DV_Widgets
           0x112aa1000 -        0x112dfefff +com.adobe.InDesign.Dynamic Documents (9.1.0.33 - 0) <010593B4-AEE5-3454-AF7B-FBFE8A6A907E> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/MacOS/Required/Dynamic Documents.InDesignPlugin/Dynamic Documents
           0x112e46000 -        0x112f3dfff +com.adobe.AGMFL (AdobeAGMFL 2.1.0.30848 - 2.1.0.30848) <DBCCE05E-9069-3496-8154-38965BECDC31> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/Frameworks/ADBE_AGMFL.framework/Versions/A/ADBE_AGMFL
           0x112f5a000 -        0x113131fff +com.adobe.AFlamingo (AFlamingo 2.4.104.30551 - 2.4.104.30551) <0CFE6F29-B675-3D00-8A19-D204AE5B5AE4> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/Frameworks/aflamingo.framework/Versions/A/aflamingo
           0x113155000 -        0x113294fe7 +com.adobe.InDesign.EPS Page Item (9.1.0.33 - 0) <D36AF79C-7FC0-3708-8AD6-E16287BA01AB> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/MacOS/Required/EPS Page Item.InDesignPlugin/EPS Page Item
           0x1132d3000 -        0x1133defff +com.adobe.InDesign.Font Manager (9.1.0.33 - 0) <438EFE25-CC8A-35F5-8E60-84EE6DBDDFB6> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/MacOS/Required/Font Manager.InDesignPlugin/Font Manager
           0x1133fd000 -        0x1134d4ff7 +com.adobe.InDesign.FormField (9.1.0.33 - 0) <8D813A0F-DBD0-31EA-93DA-102D366DF99C> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/MacOS/Required/FormField.InDesignPlugin/FormField
           0x1134f9000 -        0x11355aff7 +com.adobe.InDesign.Galley (9.1.0.33 - 0) <335A35BE-36E8-361C-A94B-531476E1C1D5> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/MacOS/Required/Galley.InDesignPlugin/Galley
           0x11356f000 -        0x1136bafff +com.adobe.InDesign.GalleyUI (9.1.0.33 - 0) <473804F7-E665-3073-A041-BD04683F20F1> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/MacOS/Required/GalleyUI.InDesignPlugin/GalleyUI
           0x1136e8000 -        0x113950ff7 +com.adobe.InDesign.Generic Page Item (9.1.0.33 - 0) <838AE2F5-74A3-36A6-8F91-9DFF8A906183> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/MacOS/Required/Generic Page Item.InDesignPlugin/Generic Page Item
           0x11399b000 -        0x1139a9fff +com.adobe.InDesign.GenericSettings (9.1.0.33 - 0) <265C32A6-C9D4-3571-93BB-BF1A64FE3001> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/MacOS/Required/GenericSettings.InDesignPlugin/GenericSettings
           0x1139b3000 -        0x1139b6fff +com.adobe.InDesign.Global Preferences Panel (9.1.0.33 - 0) <3B261D67-E6B5-32E3-AC7E-AFCCDC9B75CB> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/MacOS/Required/Global Preferences Panel.InDesignPlugin/Global Preferences Panel
           0x1139bc000 -        0x113a2cfff +com.adobe.InDesign.Gradient Fill (9.1.0.33 - 0) <FFE95F52-F173-3B84-A96C-3340E06FFE72> /Applications/Adobe Creative Cloud/*/Adobe InDesign CC.app/Contents/MacOS/Required/Gradient Fill.InDesignPlugin/Gradient Fill
           0x113a48000 -        0x113b4aff7 +com.adobe.InDesign.Graphics (9.1.0.33 - 0) <30631DCC-7478-3808-B59A-F13F67CDA22E> /Applications/Adobe Creative Cloud/*/Adobe InDesign

    Ok, so new Mac user here and I had to do a decent amount of hunting around various threads to get a solution, but I eventually cobbled together my own.
    1) Open up Finder
    2) From the menu bar, select Go > Go To Folder
    3) Type in "~/Library" and select Go
    4) Once in the Library folder, select Preferences
    5) Right click on the Adobe folder and select Get Info
    6) Click the lock on the bottom right corner to allow changes
    7) Expand the Sharing & Permissions portion at the bottom
    8) Change Priveleges for Staff and Everyone to Read & Write
    After this, Illustrator opened perfectly.
    Hope this helps someone out!

  • Q: My InDesign keeps crashing on Launch - can anyone help?

    Here's the crash report:
    Process:         Adobe InDesign CS5.5 [4503]
    Path:            /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Adobe InDesign CS5.5
    Identifier:      com.adobe.InDesign
    Version:         7.5.0.142 (7500)
    Code Type:       X86 (Native)
    Parent Process:  launchd [141]
    Date/Time:       2012-09-17 15:35:41.650 +0200
    OS Version:      Mac OS X 10.7.4 (11E53)
    Report Version:  9
    Interval Since Last Report:          -31860 sec
    Per-App Interval Since Last Report:  29 sec
    Per-App Crashes Since Last Report:   2
    Anonymous UUID:                      67B4FD80-99E2-49DF-A5D4-EAEFCD606995
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
    VM Regions Near 0:
    --> __PAGEZERO             0000000000000000-0000000000001000 [    4K] ---/--- SM=NUL  /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Adobe InDesign CS5.5
        __TEXT                 0000000000001000-0000000000005000 [   16K] r-x/rwx SM=COW  /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Adobe InDesign CS5.5
    Application Specific Information:
    objc[4503]: garbage collection is OFF
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   ???                                     0xac50c630 _XHNDL_trapback_instruction + 0
    1   com.adobe.BIB                           0x0083f290 0x83c000 + 12944
    2   com.adobe.BIB                           0x0083f63c 0x83c000 + 13884
    3   com.adobe.BIB                           0x0083f6b8 0x83c000 + 14008
    4   com.adobe.InDesign.PDF                  0x10d2b6b9 GetPlugIn + 1275273
    5   libsystem_c.dylib                       0x91887944 __cxa_finalize + 243
    6   libsystem_c.dylib                       0x918877f2 exit + 25
    7   com.adobe.InDesign                      0x000027cf start + 63
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x9b91f90a kevent + 10
    1   libdispatch.dylib                       0x929aae10 _dispatch_mgr_invoke + 969
    2   libdispatch.dylib                       0x929a985f _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib                  0x9b91e83e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x91898e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x91898f7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore          0x94eeb3a7 TSWaitOnConditionTimedRelative + 178
    4   com.apple.CoreServices.CarbonCore          0x94f4d67f MPWaitOnQueue + 200
    5   PMRuntime.dylib                         0x00016130 MemUtils::GetAvailMem() + 288
    6   com.apple.CoreServices.CarbonCore          0x94f4e5e0 PrivateMPEntryPoint + 68
    7   libsystem_c.dylib                       0x91894ed9 _pthread_start + 335
    8   libsystem_c.dylib                       0x918986de thread_start + 34
    Thread 3:
    0   libsystem_kernel.dylib                  0x9b91f02e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x91896ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x918986fe start_wqthread + 30
    Thread 4:
    0   libsystem_kernel.dylib                  0x9b91f02e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x91896ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x918986fe start_wqthread + 30
    Thread 5:
    0   libsystem_kernel.dylib                  0x9b91cc22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x9b91c1f6 mach_msg + 70
    2   com.apple.CoreServices.CarbonCore          0x94f780ec TS_exception_listener_thread + 90
    3   libsystem_c.dylib                       0x91894ed9 _pthread_start + 335
    4   libsystem_c.dylib                       0x918986de thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib                  0x9b91e83e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x91898e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9184082a pthread_cond_wait + 48
    3   com.adobe.amt.services                  0x09b74274 C_AMTUISwitchSuppressUpdates + 16864
    4   com.adobe.amt.services                  0x09b6d074 C_EULA_SetState + 2166
    5   com.adobe.amt.services                  0x09b742da C_AMTUISwitchSuppressUpdates + 16966
    6   libsystem_c.dylib                       0x91894ed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x918986de thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib                  0x9b91f02e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x91896ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x918986fe start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x0083f629  ecx: 0x00000000  edx: 0xffffffff
      edi: 0x00000000  esi: 0x03ad5d30  ebp: 0xbffffc08  esp: 0xbffffa70
       ss: 0x00000023  efl: 0x00010246  eip: 0xac50c630   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x00000000
    Logical CPU: 1
    Binary Images:
        0x1000 -     0x4ffb +com.adobe.InDesign (7.5.0.142 - 7500) <C7B8B88C-A6B0-6D19-90C9-8D0DEF16C955> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Adobe InDesign CS5.5
        0xa000 -     0xafff +InDesignModel (??? - ???) <30F20A0C-431C-E52D-BDEF-DAF8C99E8BB4> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/InDesignModel.framework/Versions/A/InDesignModel
        0xf000 -     0xffff +InDesignModelAndUI (??? - ???) <F70C26E5-8747-4B57-8849-78889B389510> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/InDesignModelAndUI.framework/Versions/A/InDesignModelAndUI
       0x14000 -    0x1bff3 +PMRuntime.dylib (??? - ???) <FD895FC0-241A-7DC6-AB12-5B3491A9E624> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/PMRuntime.dylib
       0x23000 -   0x15eff2 +com.adobe.ACE (AdobeACE 2.18.00.12659 - 2.18.00.12659) <5BD496D2-2E2B-0411-779F-855603C5B2AE> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
      0x186000 -   0x6acfff +com.adobe.AGM (AdobeAGM 4.20.70.12659 - 4.20.70.12659) <F1616614-B565-4CC9-C2FA-459FBC857981> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
      0x7f6000 -   0x832fff +com.adobe.ARE (AdobeARE 1.5.02.12659 - 1.5.02.12659) <9AF30878-D3F4-7E85-0820-B674CED4558A> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeARE.framework/Versions/A/AdobeARE
      0x83c000 -   0x857fff +com.adobe.BIB (AdobeBIB 1.2.02.12659 - 1.2.02.12659) <802FB4A6-C5FF-522C-89A5-83EB4C139B12> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
      0x862000 -   0x883ff7 +com.adobe.BIBUtils (AdobeBIBUtils 1.1.01 - 1.1.01) <6710FF23-871B-C9A2-306C-15EDBA2AADEA> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
      0x890000 -   0xb82ff7 +com.adobe.CoolType (AdobeCoolType 5.07.124.12659 - 5.07.124.12659) <0481471E-E075-0782-BA1C-C5A5E23C5565> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
      0xc0f000 -   0xfe8ff7 +com.adobe.MPS (AdobeMPS 5.5.0.12783 - 5.5.0.12783) <D67E9F42-5C32-4E64-9AE8-B292565E1326> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
    0x111f000 -  0x118dff7 +ObjectModelLib.dylib (??? - ???) <CBC3A0F4-5567-AE0C-8E1A-886D0E4DEFF7> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/ObjectModelLib.dylib
    0x11b2000 -  0x120cfe7 +DataBaseLib.dylib (??? - ???) <5825417D-9630-83F2-2A46-4A1E1F64406A> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/DataBaseLib.dylib
    0x1227000 -  0x163efff +PublicLib.dylib (??? - ???) <C771D26E-109E-B663-A7B8-62B809C34629> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/PublicLib.dylib
    0x17ce000 -  0x17e5ff6 +AdobeAFL (??? - ???) <CFC0FF78-A748-AC45-2E62-8F20090D911C> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeAFL.framework/Versions/A/AdobeAFL
    0x17f6000 -  0x17feff3 +boost_threads (??? - ???) <B00C0C9E-7175-B6D2-E58B-7278E0EB8863> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/boost_threads.framework/Versions/1_37/boost_threads
    0x1808000 -  0x180dffd +ASLSupportLib.dylib (??? - ???) <85A313EC-05FF-23C5-0EEB-C74D412645FF> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/ASLSupportLib.dylib
    0x1813000 -  0x1814ff2 +libtbbmalloc.dylib (??? - ???) <A1EAB5E4-3F88-5E37-7068-7A35A3EC69DE> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/libtbbmalloc.dylib
    0x1818000 -  0x1826fe7 +libtbb.dylib (??? - ???) <FFA49B03-C516-D23D-B535-B64D7CD35ECE> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/libtbb.dylib
    0x182e000 -  0x1966fe7 +WRServices (??? - ???) <9E3A36AD-71F1-B9C7-AC3F-30A7E63C8B57> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
    0x19a8000 -  0x19acffc +com.adobe.AdobeCrashReporter (3.0 - 5.5.20101001) <EA9B7B55-7FE5-14D2-FBAE-817121F94086> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashReporter
    0x19b2000 -  0x2362fff +libicudata.dylib.36.0 (36.0.0 - compatibility 36.0.0) <02108DEA-3DD2-14BE-DAEB-BE522B619C1D> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/ICUData.framework/Versions/3.6/libicudata.dylib.36.0
    0x2365000 -  0x2432ff3 +libicui18n.dylib.36.0 (36.0.0 - compatibility 36.0.0) <08F15219-7F35-574E-7725-1ACAA1B18A00> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/ICUInternationalization.framework/Versions/3.6/libicui18n.d ylib.36.0
    0x2495000 -  0x256ffef +libicuuc.dylib.36.0 (36.0.0 - compatibility 36.0.0) <5EE72009-40B3-7FB7-3A49-576AEDE0D400> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/ICUUnicode.framework/Versions/3.6/libicuuc.dylib.36.0
    0x25af000 -  0x261ffeb +com.adobe.adobe_caps (adobe_caps 4.0.42.0 - 4.0.42.0) <55D7D2EA-D21E-98B1-77C6-58C0A0E07051> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
    0x262a000 -  0x2698ffb +com.adobe.amtlib (amtlib 4.0.0.21 - 4.0.0.21) <3090D254-587A-A820-DBCD-729C27532FC8> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
    0x26af000 -  0x2748fef +boost_regex (??? - ???) <462635B6-7AF0-B43D-74D6-4AC15ACBC66A> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/boost_regex.framework/Versions/1_37/boost_regex
    0x278d000 -  0x27cafff  com.apple.vmutils (4.2.1 - 107) <43B3BFA5-8362-3EBD-B44B-32DCE9885082> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x27e4000 -  0x2891ff7  libcrypto.0.9.7.dylib (0.9.7 - compatibility 0.9.7) <7B6DB792-C9E5-3772-8734-8D0052757B8C> /usr/lib/libcrypto.0.9.7.dylib
    0x28d6000 -  0x28d8ffb +boost_system (??? - ???) <FBD2BBDA-A758-FFCE-ABBA-7FDAB09FAF0F> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/boost_system.framework/Versions/1_37/boost_system
    0x28dd000 -  0x2a7bfff +WidgetBinLib.dylib (??? - ???) <BF0D4AF6-C502-352D-DA1D-5EFBCA827993> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/WidgetBinLib.dylib
    0x2b5f000 -  0x2cfefe7 +com.adobe.owl (AdobeOwl version 3.0.84 - 3.0.84) <25884999-8A98-F8C9-699B-ED75261B6BFC> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
    0x2d67000 -  0x2de4fff +AdobeOwlCanvas (??? - ???) <65B2E680-4F43-BE46-2290-3500758D1BF7> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeOwlCanvas.framework/Versions/A/AdobeOwlCanvas
    0x2e00000 -  0x2e03ffc +com.adobe.ape.shim (adbeape version 3.1.74.12761 - 3.1.74.12761) <FE2ABE8A-1D3F-7AF5-297C-D22FC3E0FBDA> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/adbeape.framework/Versions/A/adbeape
    0x5682000 -  0x568afff +com.adobe.asneu.framework (asneu version 1.7.0.1 - 1.7.0.1) <80195B5C-2C67-D841-232C-74FCAB79D304> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/asneu.framework/Versions/A/asneu
    0x56aa000 -  0x56afff1 +com.adobe.InDesign.Data Services UI (7.5.0.142 - ???) <AB93B9A4-5E39-A9ED-7B18-92D614524CB6> /Applications/Adobe InDesign CS5.5/*/Data Services UI
    0x56b7000 -  0x56b8ffd +com.adobe.InDesign.Help (7.5.0.142 - ???) <CEB5D662-51B7-241D-925B-4F35F5EF83D4> /Applications/Adobe InDesign CS5.5/*/Help
    0x9b4f000 -  0x9bbafe7 +com.adobe.amt.services (AMTServices 4.0.0.21 [BuildVersion: 4.0; BuildDate: Mon Jan 24 2011 21:49:00] - 4.0.0.21) <018F21DE-7E2E-C850-4C32-D4A2131ABF74> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/amtservices.framework/Versions/A/amtservices
    0x9f5f000 -  0x9f98ffb +com.adobe.AAM.AdobeUpdaterNotificationFramework (UpdaterNotifications 2.0.0.15 - 2.0.0.15) <3A9CF871-6678-90BB-3770-CDBF56AF21D5> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/UpdaterNotifications.framework/Versions/A/UpdaterNotificati ons
    0xa152000 -  0xa159ffc +com.adobe.InDesign.Data Services (7.5.0.142 - ???) <20F34329-D294-9772-5ECF-034E24D2C680> /Applications/Adobe InDesign CS5.5/*/Data Services
    0xa160000 -  0xa16cff9 +com.adobe.InDesign.DTTransform (7.5.0.142 - ???) <0711CA7C-B066-9C99-6656-865DDE402A33> /Applications/Adobe InDesign CS5.5/*/DTTransform
    0xa175000 -  0xa1a5fff +com.adobe.InDesign.Dictionary Editor Dialog (7.5.0.142 - ???) <9340DCEA-9615-0660-136D-9F00B3DD1004> /Applications/Adobe InDesign CS5.5/*/Dictionary Editor Dialog
    0xa1c5000 -  0xa1e4ff7 +com.adobe.InDesign.LILO (7.5.0.142 - ???) <0CC76B77-ECB6-6109-0BB8-8FDDC3A03198> /Applications/Adobe InDesign CS5.5/*/LILO
    0xa1f4000 -  0xa1f7fff +com.adobe.InDesign.PNG Import Filter UI (7.5.0.142 - ???) <B1F2FD17-1B1A-9116-8DD1-FE72873AA6FE> /Applications/Adobe InDesign CS5.5/*/PNG Import Filter UI
    0xa510000 -  0xa53fff0 +TextPanelLib.dylib (??? - ???) <0C3DE096-BEA9-5C37-1C4B-E597611FE756> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/TextPanelLib.dylib
    0xa55d000 -  0xa5b4ff7 +com.adobe.InDesign.Media Import Filter (7.5.0.142 - ???) <C0F751A6-899D-A6E6-56F7-44736FFB914C> /Applications/Adobe InDesign CS5.5/*/Media Import Filter
    0xa5d2000 -  0xa5e4fff +com.adobe.InDesign.SaveBack (7.5.0.142 - ???) <E860E13C-8160-8F06-8B2C-BDE0B0874D12> /Applications/Adobe InDesign CS5.5/*/SaveBack
    0xa5f1000 -  0xa5f3fff +com.adobe.InDesign.SimpleTextImportFilter (7.5.0.142 - ???) <98F4A61E-7E79-A524-F1F4-8B7AF28D3EC3> /Applications/Adobe InDesign CS5.5/*/SimpleTextImportFilter
    0xa5f9000 -  0xa5faff1 +com.adobe.InDesign.Global Preferences Panel (7.5.0.142 - ???) <85F380E9-DDB5-4671-4473-227A5DB8C5DB> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Global Preferences Panel.InDesignPlugin/Global Preferences Panel
    0xa700000 -  0xa7c3fe7 +com.adobe.linguistic.LinguisticManager (5.5.0 - 13920) <A68A22E7-85E8-B626-D9A9-3D3CBC98A42E> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic
    0xa862000 -  0xa925ff3 +com.adobe.InDesign.EBookExport (7.5.0.142 - ???) <77334CA1-C340-6EA7-797E-963598D184C5> /Applications/Adobe InDesign CS5.5/*/EBookExport
    0xa960000 -  0xa981ffb +com.adobe.InDesign.Sangam Preferences UI (7.5.0.142 - ???) <08FC37AD-5071-AD2A-764F-3E7EE0973C6F> /Applications/Adobe InDesign CS5.5/*/Sangam Preferences UI
    0xa997000 -  0xaa00ffb +com.adobe.AdobeSangam (AdobeSangam 5.5.0.12783 - 5.5.0.12783) <EE734EB4-6DC9-A88E-F189-584CB3CC300F> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeSangam.framework/Versions/A/AdobeSangam
    0xaa4c000 -  0xaa9cff3 +com.adobe.InDesign.SangamExport (7.5.0.142 - ???) <53D21AC3-79F5-A6D5-B4C3-A981BDDE443F> /Applications/Adobe InDesign CS5.5/*/SangamExport
    0xaabe000 -  0xabcfff3 +com.adobe.InDesign.SangamServicer-Mapper (7.5.0.142 - ???) <825729F5-772E-9F27-2710-147A497256B5> /Applications/Adobe InDesign CS5.5/*/SangamServicer-Mapper
    0xac1e000 -  0xacdffff +com.adobe.InDesign.Tagged Text Attributes (7.5.0.142 - ???) <E9C68011-6F1F-86E1-29B4-0360FAE54DCE> /Applications/Adobe InDesign CS5.5/*/Tagged Text Attributes
    0xad2f000 -  0xad3cfed +com.adobe.InDesign.Tagged Text Filters UI (7.5.0.142 - ???) <B719C358-641A-D3DD-8E4B-BA01EC924D49> /Applications/Adobe InDesign CS5.5/*/Tagged Text Filters UI
    0xad45000 -  0xadf8feb +com.adobe.InDesign.Tagged Text Filters (7.5.0.142 - ???) <9233733E-DE59-D1EB-1AE2-EB9BA8804059> /Applications/Adobe InDesign CS5.5/*/Tagged Text Filters
    0xae21000 -  0xae2aff3 +com.adobe.InDesign.Clipping Path Dialog (7.5.0.142 - ???) <A718206B-10F5-09A1-88E6-67CE13E9B742> /Applications/Adobe InDesign CS5.5/*/Clipping Path Dialog
    0xae36000 -  0xae69ff7 +com.adobe.InDesign.Color Management UI (7.5.0.142 - ???) <905A6F91-0AC5-436A-54A0-19E7C23AF20E> /Applications/Adobe InDesign CS5.5/*/Color Management UI
    0xae7f000 -  0xaee2ff0 +com.adobe.InDesign.Color Picker Panel (7.5.0.142 - ???) <9B031CA0-DD30-A6C0-4AAE-3DF3BF872144> /Applications/Adobe InDesign CS5.5/*/Color Picker Panel
    0xaf10000 -  0xaf3cfef +com.adobe.InDesign.CS Review Support (7.5.0.142 - ???) <8EF73395-1EA5-D443-CA96-0A4C84AA43AC> /Applications/Adobe InDesign CS5.5/*/CS Review Support
    0xaf53000 -  0xb05cfef +com.adobe.InDesign.Digital Publishing (7.5.0.9 - ???) <64DB74C5-B40E-5DFC-CD37-3FF8D82F3255> /Applications/Adobe InDesign CS5.5/*/Digital Publishing
    0xb136000 -  0xb141ff3 +boost_filesystem (??? - ???) <7DCE5514-9C94-751C-49FD-727D8CA3C132> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/boost_filesystem.framework/Versions/1_37/boost_filesystem
    0xb14c000 -  0xb1b2ff0 +com.adobe.InDesign.DynamicDocumentsUI (7.5.0.142 - ???) <3829E7A9-1C0C-352D-8759-2C9F60A5ED99> /Applications/Adobe InDesign CS5.5/*/DynamicDocumentsUI
    0xb1e2000 -  0xb1ebfff +com.adobe.InDesign.EPS UI (7.5.0.142 - ???) <CA77B93B-E96B-D523-FCE2-8DEE60C4B45A> /Applications/Adobe InDesign CS5.5/*/EPS UI
    0xb1f5000 -  0xb1fdff7 +com.adobe.InDesign.Generic Style Editor (7.5.0.142 - ???) <83E53A5B-9BA9-0B90-B80F-9752A802E340> /Applications/Adobe InDesign CS5.5/*/Generic Style Editor
    0xb209000 -  0xb234ff3 +com.adobe.InDesign.Gradient Panel (7.5.0.142 - ???) <47FEFC45-AAD6-0011-D82C-C2E2AD74B47C> /Applications/Adobe InDesign CS5.5/*/Gradient Panel
    0xb24c000 -  0xb2bcff7 +com.adobe.InDesign.Graphic Panels (7.5.0.142 - ???) <609E6F01-F30D-2AEB-5A1E-E2F25B0EB851> /Applications/Adobe InDesign CS5.5/*/Graphic Panels
    0xb2ef000 -  0xb2f4ff8 +com.adobe.InDesign.JPEG Export UI (7.5.0.142 - ???) <57E968B6-9B45-ACD4-50E9-4A47275FB3B4> /Applications/Adobe InDesign CS5.5/*/JPEG Export UI
    0xb2fc000 -  0xb313fff +com.adobe.InDesign.JPEG Export (7.5.0.142 - ???) <B5017E38-ACF2-66EB-DD70-5AC8298F68D2> /Applications/Adobe InDesign CS5.5/*/JPEG Export
    0xb323000 -  0xb367ff7 +com.adobe.InDesign.Output Preview (7.5.0.142 - ???) <5DB8554B-3AFA-0BB8-34E7-522994D24F3D> /Applications/Adobe InDesign CS5.5/*/Output Preview
    0xb386000 -  0xb398ffc +com.adobe.InDesign.OutputMiscUI (7.5.0.142 - ???) <3C58FDC3-FE56-E79D-7A18-8F023563AB8F> /Applications/Adobe InDesign CS5.5/*/OutputMiscUI
    0xb3a8000 -  0xb417fe3 +com.adobe.InDesign.PDF UI (7.5.0.142 - ???) <F343636D-99D2-EB66-72E1-60C81E40313E> /Applications/Adobe InDesign CS5.5/*/PDF UI
    0xb445000 -  0xb49dff7 +com.adobe.AdobeXMPCore (Adobe XMP Core 5.2 -c 3 - 61.141987) <31B045A8-AA5F-AFDF-E2DD-71B418CD1707> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
    0xb4ad000 -  0xb4c0ff7 +com.adobe.InDesign.Printer Styles (7.5.0.142 - ???) <3E09CCB7-E7F5-0423-6FE5-9ECF35EA4551> /Applications/Adobe InDesign CS5.5/*/Printer Styles
    0xb4cf000 -  0xb585fef +com.adobe.InDesign.PrintUI (7.5.0.142 - ???) <D747A854-1B43-FAEC-0D98-481138692618> /Applications/Adobe InDesign CS5.5/*/PrintUI
    0xb5c1000 -  0xb5ceff0 +com.adobe.InDesign.PS Import UI (7.5.0.142 - ???) <FE705074-9F89-C2F9-A24E-1B01DEF21F02> /Applications/Adobe InDesign CS5.5/*/PS Import UI
    0xb5db000 -  0xb5f4fff +com.adobe.InDesign.Swatch Library Panel (7.5.0.142 - ???) <715620A3-83CD-940E-0AF6-6092B82D2599> /Applications/Adobe InDesign CS5.5/*/Swatch Library Panel
    0xb603000 -  0xb696ff0 +com.adobe.InDesign.Swatches Panel (7.5.0.142 - ???) <AF3A4068-8AC7-AB7E-8942-EB545AEE73D1> /Applications/Adobe InDesign CS5.5/*/Swatches Panel
    0xb6d9000 -  0xb76dff8 +com.adobe.InDesign.Transparency UI (7.5.0.142 - ???) <37E89526-16A8-B297-DBDA-E8FC80A7192A> /Applications/Adobe InDesign CS5.5/*/Transparency UI
    0xb7ad000 -  0xb7fefff +com.adobe.InDesign.Assignment UI (7.5.0.142 - ???) <80391DA8-3DEA-D9F5-C616-3521E59EC676> /Applications/Adobe InDesign CS5.5/*/Assignment UI
    0xb827000 -  0xb840ff0 +com.adobe.InDesign.InCopy Bridge UI (7.5.0.142 - ???) <56A9CFBA-5991-1ED8-DD42-852C97277D8B> /Applications/Adobe InDesign CS5.5/*/InCopy Bridge UI
    0xb84e000 -  0xb881ffb +com.adobe.InDesign.InCopy Bridge (7.5.0.142 - ???) <781407D3-C673-BBC7-EF83-78ECB1603F2D> /Applications/Adobe InDesign CS5.5/*/InCopy Bridge
    0xb898000 -  0xb89eff0 +com.adobe.InDesign.InCopyExport (7.5.0.142 - ???) <C12AA02C-7BF2-627A-24E3-5558D68E8946> /Applications/Adobe InDesign CS5.5/*/InCopyExport
    0xb8a7000 -  0xb8abff3 +com.adobe.InDesign.InCopyExportUI (7.5.0.142 - ???) <02F5E7E6-2371-E5DE-03E7-F5D672AD730D> /Applications/Adobe InDesign CS5.5/*/InCopyExportUI
    0xb8b2000 -  0xb8b7fff +com.adobe.InDesign.InCopyImport (7.5.0.142 - ???) <7C646947-367C-E477-194E-4F49187736DE> /Applications/Adobe InDesign CS5.5/*/InCopyImport
    0xb8be000 -  0xb8c3ff7 +com.adobe.InDesign.InCopyWorkflow UI (7.5.0.142 - ???) <CE16B441-8812-9B07-681B-0C3E72D8EFA6> /Applications/Adobe InDesign CS5.5/*/InCopyWorkflow UI
    0xb8cc000 -  0xb913ff7 +com.adobe.InDesign.Note (7.5.0.142 - ???) <7F91417D-A176-9093-51B8-D863F555DDB9> /Applications/Adobe InDesign CS5.5/*/Note
    0xb937000 -  0xb940fff +com.adobe.InDesign.NotePref (7.5.0.142 - ???) <3672E3EE-3738-4FDE-E8FB-B2874842BBE3> /Applications/Adobe InDesign CS5.5/*/NotePref
    0xb94d000 -  0xb950ff3 +com.adobe.InDesign.Username UI (7.5.0.142 - ???) <028DA658-D460-0CD7-3443-09879F605A99> /Applications/Adobe InDesign CS5.5/*/Username UI
    0xb957000 -  0xb9dbff7 +com.adobe.InDesign.ButtonUI (7.5.0.142 - ???) <4B625280-C975-C356-16A2-F5EFEB305F68> /Applications/Adobe InDesign CS5.5/*/ButtonUI
    0xba19000 -  0xba32fff +com.adobe.InDesign.MediaUI (7.5.0.142 - ???) <640F9500-AC20-9D87-9434-ADEE7C2AB3ED> /Applications/Adobe InDesign CS5.5/*/MediaUI
    0xba44000 -  0xba50fff +com.adobe.InDesign.Alignment Panel (7.5.0.142 - ???) <98A9D8EB-034A-EFC3-0CA6-EFA01C579A43> /Applications/Adobe InDesign CS5.5/*/Alignment Panel
    0xba5b000 -  0xba93ff6 +com.adobe.InDesign.Asset Library Panel (7.5.0.142 - ???) <3FD151AB-FA6E-D909-86B4-DD6F14485323> /Applications/Adobe InDesign CS5.5/*/Asset Library Panel
    0xbab7000 -  0xbb11fff +com.adobe.InDesign.Asset PubLibrary (7.5.0.142 - ???) <5FD66CC3-7AA1-D9A8-373C-ED1F69E6D4A4> /Applications/Adobe InDesign CS5.5/*/Asset PubLibrary
    0xbb3a000 -  0xbb78ff5 +com.adobe.InDesign.Book Panel (7.5.0.142 - ???) <1B60815D-B3D7-2201-DA6D-B747F1F7CE9F> /Applications/Adobe InDesign CS5.5/*/Book Panel
    0xbb9d000 -  0xbbb3ffb +com.adobe.InDesign.Bookmark Panel (7.5.0.142 - ???) <CC5722C0-B407-3557-0FF5-6920770ECF03> /Applications/Adobe InDesign CS5.5/*/Bookmark Panel
    0xbbc6000 -  0xbbfcffd +com.adobe.InDesign.Control Panel (7.5.0.142 - ???) <F60384DE-7BD3-1D78-CA9C-3F5D93267DF6> /Applications/Adobe InDesign CS5.5/*/Control Panel
    0xbc19000 -  0xbc1ffff +com.adobe.InDesign.Create Guides Dialog (7.5.0.142 - ???) <FC41459F-A33E-E737-47C8-C23B1518ADD4> /Applications/Adobe InDesign CS5.5/*/Create Guides Dialog
    0xbc27000 -  0xbc59fff +com.adobe.InDesign.Eyedropper Tool (7.5.0.142 - ???) <649674B2-1C71-5D26-65EB-CE3D7E4E1431> /Applications/Adobe InDesign CS5.5/*/Eyedropper Tool
    0xbc6e000 -  0xbcdaff8 +com.adobe.InDesign.Hyperlinks Panel (7.5.0.142 - ???) <0BDE8E8D-D9C4-7716-7D70-07EC30747AD9> /Applications/Adobe InDesign CS5.5/*/Hyperlinks Panel
    0xbd09000 -  0xbd7dff1 +com.adobe.InDesign.Index Panel (7.5.0.142 - ???) <1FDF9D9A-66FD-0E9A-0F58-643646317564> /Applications/Adobe InDesign CS5.5/*/Index Panel
    0xbda8000 -  0xbdb5fff +unihan (??? - ???) <21D02D03-821D-1E92-C99E-919CD21883A0> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/unihan.framework/Versions/A/unihan
    0xbdc0000 -  0xbe0ffff +com.adobe.InDesign.Info Panel (7.5.0.142 - ???) <EF31A678-DDC6-8A84-B3A2-51E0A784EA6B> /Applications/Adobe InDesign CS5.5/*/Info Panel
    0xbe32000 -  0xbf1efff +com.adobe.InDesign.Knowledge Base (7.5.0.142 - ???) <5ED7B92A-3920-2342-2EE6-41596638166C> /Applications/Adobe InDesign CS5.5/*/Knowledge Base
    0xbf26000 -  0xbf63fff +com.adobe.InDesign.Layers Panel (7.5.0.142 - ???) <D936E9EB-D43D-AFCA-1674-9B4917F5CC00> /Applications/Adobe InDesign CS5.5/*/Layers Panel
    0xbf86000 -  0xbf88ff7 +com.adobe.InDesign.Layout Adjustment Panel (7.5.0.142 - ???) <A8BA566B-EDEF-E1A0-58E1-0388408E03DC> /Applications/Adobe InDesign CS5.5/*/Layout Adjustment Panel
    0xbf8f000 -  0xbfaafff +com.adobe.InDesign.Layout Adjustment (7.5.0.142 - ???) <613292DA-0E84-514A-2C48-BEAF5E0F3995> /Applications/Adobe InDesign CS5.5/*/Layout Adjustment
    0xbfb9000 -  0xbff3fff +com.adobe.InDesign.Links UI (7.5.0.142 - ???) <3801F5AE-C3AC-FDFD-B1E9-24EA83BFEE14> /Applications/Adobe InDesign CS5.5/*/Links UI
    0xc014000 -  0xc09affc +com.adobe.InDesign.ObjectStylesUI (7.5.0.142 - ???) <90BA70A8-09FA-D5DA-8525-C4BF40FA4E6C> /Applications/Adobe InDesign CS5.5/*/ObjectStylesUI
    0xc0d7000 -  0xc0f1ffb +com.adobe.InDesign.Page Setup Dialog (7.5.0.142 - ???) <DEF77CE5-1023-1283-B905-980CA42B92B3> /Applications/Adobe InDesign CS5.5/*/Page Setup Dialog
    0xc0fe000 -  0xc18afec +com.adobe.InDesign.Pages Panel (7.5.0.142 - ???) <FA3E36FD-6BA4-6B05-55A8-1CD562D0C9A0> /Applications/Adobe InDesign CS5.5/*/Pages Panel
    0xc1c5000 -  0xc1d0ff8 +com.adobe.InDesign.Sections UI (7.5.0.142 - ???) <F8BCED95-4669-4163-09B8-BA167A745EBE> /Applications/Adobe InDesign CS5.5/*/Sections UI
    0xc1da000 -  0xc1e1ffc +com.adobe.InDesign.StepRepeat (7.5.0.142 - ???) <79AB1831-1627-6894-B5AE-75B08D41C7B1> /Applications/Adobe InDesign CS5.5/*/StepRepeat
    0xc1ea000 -  0xc21fff7 +com.adobe.InDesign.Text Wrap Panel (7.5.0.142 - ???) <C261E8AE-05D6-B3C5-8366-F4387B721A6B> /Applications/Adobe InDesign CS5.5/*/Text Wrap Panel
    0xc23a000 -  0xc26dff0 +com.adobe.InDesign.TOC UI Dialog (7.5.0.142 - ???) <1B8476DE-D0AA-9E9E-8AA3-A80E59864CD1> /Applications/Adobe InDesign CS5.5/*/TOC UI Dialog
    0xc288000 -  0xc2b4ff4 +com.adobe.InDesign.Transform Panel (7.5.0.142 - ???) <C08A7D8B-FC60-C7F8-E82A-5853CD5B66DF> /Applications/Adobe InDesign CS5.5/*/Transform Panel
    0xc2cb000 -  0xc2e2ff3 +com.adobe.InDesign.Image Import UI (7.5.0.142 - ???) <B55E19CE-E78F-3FAC-5CBB-CE7C90C269F2> /Applications/Adobe InDesign CS5.5/*/Image Import UI
    0xc2f3000 -  0xc305fff +com.adobe.InDesign.Scotch Rules (7.5.0.142 - ???) <6502E487-54CB-DBEE-0863-2590F4BB14F0> /Applications/Adobe InDesign CS5.5/*/Scotch Rules
    0xc310000 -  0xc35cfff +com.adobe.InDesign.BNUI (7.5.0.142 - ???) <71200BB9-F434-F825-9154-EF334A268DDD> /Applications/Adobe InDesign CS5.5/*/BNUI
    0xc381000 -  0xc408fff +com.adobe.InDesign.DataMerge (7.5.0.142 - ???) <0D11D6FA-02AD-8CEB-E958-F96174D89BD0> /Applications/Adobe InDesign CS5.5/*/DataMerge
    0xc43b000 -  0xc465ff7 +com.adobe.InDesign.DataMergeUI (7.5.0.142 - ???) <D9FA6962-0353-56DA-5A15-84427708CAA1> /Applications/Adobe InDesign CS5.5/*/DataMergeUI
    0xc480000 -  0xc492fff +com.adobe.InDesign.PMWelcomeScreen (7.5.0.142 - ???) <DF50AF2B-67F4-F9F3-A9AC-E7073CACA267> /Applications/Adobe InDesign CS5.5/*/PMWelcomeScreen
    0xc4a4000 -  0xc4b5ff8 +com.adobe.ahclientframework (1.6.0.20 - 1.6.0.20) <6FB288F2-45FD-E54A-C9A4-A0D0C374FE37> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/ahclient.framework/Versions/A/ahclient
    0xc4c3000 -  0xc592ffb +com.adobe.InDesign.Package and Preflight UI (7.5.0.142 - ???) <26E41EEA-48C4-959A-9C6A-1B49C3708A50> /Applications/Adobe InDesign CS5.5/*/Package and Preflight UI
    0xc5eb000 -  0xc7ccfff +com.adobe.InDesign.Package and Preflight (7.5.0.142 - ???) <CB1F2F8F-96BF-051F-C9B4-6333B4CAD819> /Applications/Adobe InDesign CS5.5/*/Package and Preflight
    0xc85e000 -  0xc884ff6 +com.adobe.AXE8SharedExpat (AdobeAXE8SharedExpat 3.5.101.12783 - 3.5.101.12783) <C7FD5306-E881-A19A-0F40-0E3844278526> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedEx pat
    0xc897000 -  0xc97eff7 +com.adobe.InDesign.JBX (7.5.0.142 - ???) <C89E063A-6CEB-5D05-2236-EF3A5583246B> /Applications/Adobe InDesign CS5.5/*/JBX
    0xc9ca000 -  0xc9cefff +com.adobe.InDesign.Script Label Panel (7.5.0.142 - ???) <9AA5C7EC-55AF-E701-8070-DE23BEEF3BE0> /Applications/Adobe InDesign CS5.5/*/Script Label Panel
    0xc9d6000 -  0xc9e0fff +com.adobe.InDesign.Scripts Panel (7.5.0.142 - ???) <C9012B5C-D6C0-01EA-F136-A59A242C6A2E> /Applications/Adobe InDesign CS5.5/*/Scripts Panel
    0xc9ec000 -  0xcaaaff4 +com.adobe.InDesign.Tables UI (7.5.0.142 - ???) <719DEE31-4B66-7535-F300-7184CDC20202> /Applications/Adobe InDesign CS5.5/*/Tables UI
    0xcaf3000 -  0xcb79fff +com.adobe.InDesign.TableStylesUI (7.5.0.142 - ???) <BE9CAD5D-FC93-EFA8-76FD-0AFBA5B464B0> /Applications/Adobe InDesign CS5.5/*/TableStylesUI
    0xcbb4000 -  0xcc0dff7 +com.adobe.InDesign.Character Panel (7.5.0.142 - ???) <1BF90423-A0FC-A785-43C7-18DA74390B1B> /Applications/Adobe InDesign CS5.5/*/Character Panel
    0xcc3d000 -  0xcc63fff +com.adobe.InDesign.Conditional Text UI (7.5.0.142 - ???) <56DD9952-ED8F-2A17-B2DE-B2A15AF88BFA> /Applications/Adobe InDesign CS5.5/*/Conditional Text UI
    0xcc7c000 -  0xcc94fff +com.adobe.InDesign.Create Outlines (7.5.0.142 - ???) <C277D20D-88B0-F370-D3F3-929533F03A70> /Applications/Adobe InDesign CS5.5/*/Create Outlines
    0xcca2000 -  0xcda8fff +com.adobe.InDesign.Find and Change Panel (7.5.0.142 - ???) <80657A57-C9C1-FDCD-9D77-024CADB1A567> /Applications/Adobe InDesign CS5.5/*/Find and Change Panel
    0xce09000 -  0xce2aff7 +com.adobe.InDesign.Find Change Format Panel (7.5.0.142 - ???) <35063658-0BBC-3577-159F-7812E0079C49> /Applications/Adobe InDesign CS5.5/*/Find Change Format Panel
    0xce3e000 -  0xce5fff4 +com.adobe.InDesign.Font Usage Dialog (7.5.0.142 - ???) <D5FDF872-6E06-FE47-D95D-FC9435EAAC47> /Applications/Adobe InDesign CS5.5/*/Font Usage Dialog
    0xce72000 -  0xcef9ff3 +com.adobe.InDesign.Glyphs Panel (7.5.0.142 - ???) <97C48673-A157-E6B5-0812-B8D04908590C> /Applications/Adobe InDesign CS5.5/*/Glyphs Panel
    0xcf24000 -  0xcf2cfff +com.adobe.InDesign.Hyphenation Panel (7.5.0.142 - ???) <D7F0B7B5-71C6-6EF0-F44E-A095BCFFDE1F> /Applications/Adobe InDesign CS5.5/*/Hyphenation Panel
    0xcf38000 -  0xcf46ffd +com.adobe.InDesign.Indents and Tabs (7.5.0.142 - ???) <055B8559-981A-E215-17FD-B521D3F195B6> /Applications/Adobe InDesign CS5.5/*/Indents and Tabs
    0xcf53000 -  0xcf5afff +com.adobe.InDesign.Justification Panel (7.5.0.142 - ???) <A02761B6-D255-6344-BB33-EF3CB44D6D31> /Applications/Adobe InDesign CS5.5/*/Justification Panel
    0xcf63000 -  0xcf68fff +com.adobe.InDesign.Keeps Panel (7.5.0.142 - ???) <F1D47ADF-F500-F83E-76C7-7A67C0824FF3> /Applications/Adobe InDesign CS5.5/*/Keeps Panel
    0xcf70000 -  0xcf90fff +com.adobe.InDesign.Optical Kerning (7.5.0.142 - ???) <51283B52-E431-9E16-4180-93E80FD8BB31> /Applications/Adobe InDesign CS5.5/*/Optical Kerning
    0xcf9d000 -  0xcfc5fff +com.adobe.InDesign.Paragraph Panel (7.5.0.142 - ???) <97AB38C6-9D3C-010B-B449-3188640A24D7> /Applications/Adobe InDesign CS5.5/*/Paragraph Panel
    0xcfdc000 -  0xcfe9ff3 +com.adobe.InDesign.Paragraph Rules Panel (7.5.0.142 - ???) <16D32543-34DE-63A3-E4C1-A33310CF1DFC> /Applications/Adobe InDesign CS5.5/*/Paragraph Rules Panel
    0xcff4000 -  0xd006ffb +com.adobe.InDesign.Path Type UI (7.5.0.142 - ???) <C2B3C78F-E74F-2BAB-3EE9-5865853E5C36> /Applications/Adobe InDesign CS5.5/*/Path Type UI
    0xd015000 -  0xd01dff3 +PathTypeLib.dylib (??? - ???) <8609265F-D811-48ED-CAEE-E20A68D4E6FE> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/PathTypeLib.dylib
    0xd024000 -  0xd048ff5 +com.adobe.InDesign.RunIn Styles Panel (7.5.0.142 - ???) <0558D75D-ACE2-2606-DAB3-CE6369457EEA> /Applications/Adobe InDesign CS5.5/*/RunIn Styles Panel
    0xd05c000 -  0xd071fff +com.adobe.InDesign.SING (7.5.0.142 - ???) <3BD4DC0E-7E4F-1537-8188-C36C98E857BB> /Applications/Adobe InDesign CS5.5/*/SING
    0xd07f000 -  0xd087ff7 +com.adobe.InDesign.Span Columns Panel (7.5.0.142 - ???) <79FE9D3F-46FE-302B-8E5C-6CF6CC017F03> /Applications/Adobe InDesign CS5.5/*/Span Columns Panel
    0xd08f000 -  0xd0ceffc +com.adobe.InDesign.Spelling Panel (7.5.0.142 - ???) <0C30B312-6573-7EEE-9825-8D0CB3C64518> /Applications/Adobe InDesign CS5.5/*/Spelling Panel
    0xd0f0000 -  0xd0feff8 +com.adobe.InDesign.Story Panel (7.5.0.142 - ???) <F84CD6FE-CA5D-D03F-3A4C-35638C613687> /Applications/Adobe InDesign CS5.5/*/Story Panel
    0xd10a000 -  0xd168ff1 +com.adobe.InDesign.Style Panel (7.5.0.142 - ???) <6DF69466-8FD4-810D-CF07-2A42833967AB> /Applications/Adobe InDesign CS5.5/*/Style Panel
    0xd19a000 -  0xd1a3ff1 +com.adobe.InDesign.Text Color Panel (7.5.0.142 - ???) <E98B468E-0C78-47CD-6CB6-192F5D722E4A> /Applications/Adobe InDesign CS5.5/*/Text Color Panel
    0xd1ac000 -  0xd1c7ff1 +com.adobe.InDesign.Text Frame Options (7.5.0.142 - ???) <56D3F8E7-BDC2-B6AC-AA8C-8AC1282A1147> /Applications/Adobe InDesign CS5.5/*/Text Frame Options
    0xd1d7000 -  0xd225fff +com.adobe.InDesign.Text Panel (7.5.0.142 - ???) <70374F1B-6312-E7E4-2463-0928185FCC04> /Applications/Adobe InDesign CS5.5/*/Text Panel
    0xd247000 -  0xd260fff +com.adobe.InDesign.Text Preferences (7.5.0.142 - ???) <043DE411-5DB1-B56B-244C-FC5CEBDE7559> /Applications/Adobe InDesign CS5.5/*/Text Preferences
    0xd26f000 -  0xd28bff4 +com.adobe.InDesign.Text Ruler (7.5.0.142 - ???) <E7D9E814-793C-31FC-933E-BEDAA412C47D> /Applications/Adobe InDesign CS5.5/*/Text Ruler
    0xd29a000 -  0xd2b3ff7 +com.adobe.InDesign.Text Style Panel (7.5.0.142 - ???) <55B96E20-55FE-3F28-CFED-EDA64CAFDE27> /Applications/Adobe InDesign CS5.5/*/Text Style Panel
    0xd2c4000 -  0xd2e6ffb +com.adobe.InDesign.Article Panel (7.5.0.142 - ???) <3F8CC922-73E1-90BA-27EA-82893A236018> /Applications/Adobe InDesign CS5.5/*/Article Panel
    0xd2fe000 -  0xd328ff7 +com.adobe.InDesign.CSXS (7.5.0.142 - ???) <FD5944C2-FB7F-F0FF-4172-CFCD7C7D41F2> /Applications/Adobe InDesign CS5.5/*/CSXS
    0xd341000 -  0xd4bbfe3 +com.adobe.PlugPlug (2.5.0.232 - 2.5.0.232) <04C90B5C-DC6D-A2B5-BE9B-193466222BE7> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/PlugPlug.framework/Versions/A/PlugPlug
    0xd564000 -  0xd58dff4 +com.adobe.InDesign.Galley Preferences (7.5.0.142 - ???) <607D8E33-AE26-16CA-27CA-E6921AA1DE13> /Applications/Adobe InDesign CS5.5/*/Galley Preferences
    0xd5a7000 -  0xd5c2ffb +com.adobe.InDesign.GapTool (7.5.0.142 - ???) <8C72126D-E27D-8735-8664-9EA0D24A7DE9> /Applications/Adobe InDesign CS5.5/*/GapTool
    0xd5d0000 -  0xd5d7ffa +com.adobe.InDesign.General Preferences Panel (7.5.0.142 - ???) <20EF82D5-70FC-5B9B-EFD3-FB16C500632B> /Applications/Adobe InDesign CS5.5/*/General Preferences Panel
    0xd5e0000 -  0xd5f4ff8 +com.adobe.InDesign.Performance UI (7.5.0.142 - ???) <902E14C3-93CA-07AA-704A-6D4618ED5341> /Applications/Adobe InDesign CS5.5/*/Performance UI
    0xd605000 -  0xd60bff3 +com.adobe.InDesign.SharedContentUI (7.5.0.142 - ???) <DCB6A1E5-4F80-2442-7275-144941787B5D> /Applications/Adobe InDesign CS5.5/*/SharedContentUI
    0xd613000 -  0xd62ffff +com.adobe.InDesign.Shortcut Editor Dialog (7.5.0.142 - ???) <092E0768-B013-3493-7AA0-75908B94C559> /Applications/Adobe InDesign CS5.5/*/Shortcut Editor Dialog
    0xd640000 -  0xd651ff3 +com.adobe.InDesign.Tool Box (7.5.0.142 - ???) <26722C8F-A8C2-4540-E5E3-59FBD502ABED> /Applications/Adobe InDesign CS5.5/*/Tool Box
    0xd661000 -  0xd66bfff +com.adobe.InDesign.Tool Tips (7.5.0.142 - ???) <CA662EC3-519A-0DD5-4B1B-933403825D7B> /Applications/Adobe InDesign CS5.5/*/Tool Tips
    0xd677000 -  0xd67cfff +com.adobe.InDesign.Track Changes Preferences (7.5.0.142 - ???) <8E374159-04BE-7472-D942-D53558CC9E59> /Applications/Adobe InDesign CS5.5/*/Track Changes Preferences
    0xd684000 -  0xd694fff +com.adobe.InDesign.Track Changes UI (7.5.0.142 - ???) <1F091295-C6A8-6691-A708-C3C9D78A4F6B> /Applications/Adobe InDesign CS5.5/*/Track Changes UI
    0xd69e000 -  0xd6a5fff +com.adobe.InDesign.PerformanceMetrics (7.5.0.142 - ???) <C6738047-427F-E6FE-E1DB-C592B99DEDAD> /Applications/Adobe InDesign CS5.5/*/PerformanceMetrics
    0xd6ad000 -  0xd6baff1 +com.adobe.InDesign.Metadata UI (7.5.0.142 - ???) <592C522C-34DD-6384-EA0F-B5923739F3B4> /Applications/Adobe InDesign CS5.5/*/Metadata UI
    0xd6c4000 -  0xd731fef +com.adobe.FileInfo.framework (Adobe XMP FileInfo 5.2 -i 1 [debug] - 61.141987) <ABF47D32-C58A-F9CE-E753-F0F906B13F7E> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
    0xd74e000 -  0xd755ff5 +com.adobe.InDesign.Workgroup UI (7.5.0.142 - ???) <810B1485-961F-2FDC-9FD6-7CC9077FBA7D> /Applications/Adobe InDesign CS5.5/*/Workgroup UI
    0xd75d000 -  0xd79ffff +com.adobe.InDesign.Snippet (7.5.0.142 - ???) <7FBCB227-BCC5-2E33-2638-C5881B0D96EC> /Applications/Adobe InDesign CS5.5/*/Snippet
    0xd7be000 -  0xd8b7fff +com.adobe.InDesign.XMedia UI (7.5.0.142 - ???) <D32C6D40-A119-FBCD-9F02-51D57282C6DF> /Applications/Adobe InDesign CS5.5/*/XMedia UI
    0xd921000 -  0xd969ff3 +com.adobe.InDesign.Actions (7.5.0.142 - ???) <A277E3F1-4472-8607-0935-4B5F3E95F3E8> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Actions.InDesignPlugin/Actions
    0xd986000 -  0xdb1afe7 +com.adobe.InDesign.AppFramework (7.5.0.142 - ???) <8D408CDA-B256-926D-33BF-F9FE8BA6BF52> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/AppFramework.InDesignPlugin/AppFramework
    0xdba3000 -  0xde05feb +com.adobe.InDesign.Application UI (7.5.0.142 - ???) <6C7D1595-0A3F-F4CC-4A05-9AB25904E679> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Application UI.InDesignPlugin/Application UI
    0xdf0b000 -  0xdfa3fff +com.adobe.AdobeExtendScript (ExtendScript 4.1.28 - 4.1.28.13048) <A9394CC7-8E48-FE0F-FDB5-37D0FE77435B> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendScript
    0xe004000 -  0xe091ff7 +com.adobe.AdobeScCore (ScCore 4.1.28 - 4.1.28.13048) <68FB7168-645E-BD55-5EAA-007315B53997> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
    0xe0d8000 -  0xe12effb +com.adobe.headlights.LogSessionFramework (??? - 2.1.2.1263) <5B594BC9-5222-651B-6B70-7AD067035B1A> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
    0xe177000 -  0xe197fff +com.adobe.InDesign.Article (7.5.0.142 - ???) <8CA3C714-805A-D593-C62D-17B1FC21CA44> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Article.InDesignPlugin/Article
    0xe1a9000 -  0xe22afe7 +com.adobe.InDesign.Assignments (7.5.0.142 - ???) <6B3E75B0-9182-FF85-D32C-E222EB250B6C> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Assignments.InDesignPlugin/Assignments
    0xe25e000 -  0xe304ff3 +com.adobe.AdobeXMPFiles (Adobe XMP Files 5.2 -f 17 - 61.141987) <963C6B68-E97E-A983-A716-6A8FA37E9D2D> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeXMPFiles.framework/Versions/A/AdobeXMPFiles
    0xe342000 -  0xe37dffb +com.adobe.InDesign.AWS (7.5.0.142 - ???) <0DC62D0E-284B-7306-BF47-F5CFD8E03BF9> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/AWS.InDesignPlugin/AWS
    0xe39b000 -  0xe3c3ff7 +com.adobe.InDesign.AWSUI (7.5.0.142 - ???) <E9203DE7-CD7C-B9C6-4D65-0425A1B82331> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/AWSUI.InDesignPlugin/AWSUI
    0xe3db000 -  0xe40cffb +com.adobe.InDesign.Basic Tools (7.5.0.142 - ???) <824B5528-5647-C891-30B5-45656EF00CD6> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Basic Tools.InDesignPlugin/Basic Tools
    0xe428000 -  0xe479ff7 +com.adobe.InDesign.Behavior (7.5.0.142 - ???) <10573684-DA3A-E5BB-FA1D-ED74D92CAF3B> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Behavior.InDesignPlugin/Behavior
    0xe4a3000 -  0xe547fe1 +com.adobe.InDesign.BNCore (7.5.0.142 - ???) <578D6272-20A6-ED7F-2C78-63358CEE37CA> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/BNCore.InDesignPlugin/BNCore
    0xe57d000 -  0xe5d0ff3 +com.adobe.InDesign.Book (7.5.0.142 - ???) <B4885AFB-B2D0-7334-1989-9524FD4FC6A4> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Book.InDesignPlugin/Book
    0xe5f5000 -  0xe603fff +com.adobe.InDesign.Buzzword Access (7.5.0.142 - ???) <863BF7E8-CECA-DD5F-50B0-7682936AA058> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Buzzword Access.InDesignPlugin/Buzzword Access
    0xe60e000 -  0xe63ffff +com.adobe.InDesign.CellStyles.rpln (7.5.0.142 - ???) <502EA752-4648-0FDE-CEDC-6BA8B14773E7> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/CellStyles.rpln.InDesignPlugin/CellStyles.rpln
    0xe657000 -  0xe6dfffb +com.adobe.InDesign.CJK Text Attributes (7.5.0.142 - ???) <B04E8AE5-F801-D8E4-0C4B-C1C7477C12CF> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/CJK Text Attributes.InDesignPlugin/CJK Text Attributes
    0xe715000 -  0xe787ffa +com.adobe.InDesign.CJKGrid (7.5.0.142 - ???) <1CECF746-B564-53C2-09A7-E88A68EC0B90> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/CJKGrid.InDesignPlugin/CJKGrid
    0xe7b3000 -  0xe889fef +com.adobe.InDesign.Color Management (7.5.0.142 - ???) <E527C98F-07A4-27EA-CBA1-AAA6D9013FEE> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Color Management.InDesignPlugin/Color Management
    0xe8d3000 -  0xe929ff7 +com.adobe.InDesign.CompFontMgr (7.5.0.142 - ???) <306CB6D8-AF98-394F-971E-3E71D66B4D5E> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/CompFontMgr.InDesignPlugin/CompFontMgr
    0xe94a000 -  0xe993ff7 +com.adobe.InDesign.Conditional Text (7.5.0.142 - ???) <30CAB7B8-696D-2F18-5206-557F381C24CA> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Conditional Text.InDesignPlugin/Conditional Text
    0xe9b5000 -  0xe9d1ff3 +com.adobe.InDesign.Dialog Layout (7.5.0.142 - ???) <A7CF2212-1F92-7A3B-5EF1-689EC3F85846> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Dialog Layout.InDesignPlugin/Dialog Layout
    0xe9e2000 -  0xea00ffe +com.adobe.InDesign.Document Actions (7.5.0.142 - ???) <EA164F5E-9FF6-9C78-3304-BD0C44D6EF38> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Document Actions.InDesignPlugin/Document Actions
    0xea12000 -  0xeb9fffb +com.adobe.InDesign.Document Framework (7.5.0.142 - ???) <11303160-46A1-F578-AE66-926F1F903F72> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Document Framework.InDesignPlugin/Document Framework
    0xec19000 -  0xec1ffff +com.adobe.InDesign.Document UI (7.5.0.142 - ???) <E05C2C47-C7C1-7105-845E-A19E866C6582> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Document UI.InDesignPlugin/Document UI
    0xec27000 -  0xef3effd +com.adobe.InDesign.Dynamic Documents (7.5.0.142 - ???) <CBCE694B-97A9-7D4D-C799-05CBEB900FCC> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Dynamic Documents.InDesignPlugin/Dynamic Documents
    0xf01f000 -  0xf100ff4 +com.adobe.AGMFL (AdobeAGMFL 2.1.0.12659 - 2.1.0.12659) <36E18AF4-44A0-8310-FA95-302E59206D56> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/ADBE_AGMFL.framework/Versions/A/ADBE_AGMFL
    0xf135000 -  0xf2c6ff3 +aflamingo (??? - ???) <C4136948-FE16-15C4-F1B9-040E014AF2CA> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/aflamingo.framework/Versions/A/aflamingo
    0xf311000 -  0xf3f5fef +com.adobe.InDesign.EPS Page Item (7.5.0.142 - ???) <E2341852-4E4C-6880-CFC1-FC900BB4F6E4> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/EPS Page Item.InDesignPlugin/EPS Page Item
    0xf43e000 -  0xf53bff7 +com.adobe.InDesign.Font Manager (7.5.0.142 - ???) <C48F8BA3-8E6F-63AF-EE70-8D3B51038ADE> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Font Manager.InDesignPlugin/Font Manager
    0xf578000 -  0xf5f7fff +com.adobe.InDesign.FormField (7.5.0.142 - ???) <04AA4221-098D-1F87-BB24-6B563A648B97> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/FormField.InDesignPlugin/FormField
    0xf62b000 -  0xf67dffb +com.adobe.InDesign.Galley (7.5.0.142 - ???) <BAC0BFF4-6275-0B2C-2A14-D6E0F5740019> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Galley.InDesignPlugin/Galley
    0xf69b000 -  0xf7a9fff +com.adobe.InDesign.GalleyUI (7.5.0.142 - ???) <A23A3454-8582-CDC5-01C2-730CDC7E1FF1> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/GalleyUI.InDesignPlugin/GalleyUI
    0xf7f3000 -  0xf9b8ff7 +com.adobe.InDesign.Generic Page Item (7.5.0.142 - ???) <5BC38A5B-0214-C072-9F58-FB9F32CDAAFE> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Generic Page Item.InDesignPlugin/Generic Page Item
    0xfa50000 -  0xfa5aff7 +com.adobe.InDesign.GenericSettings (7.5.0.142 - ???) <A712DBF0-540D-6F78-BCD0-47820055989D> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/GenericSettings.InDesignPlugin/GenericSettings
    0xfa63000 -  0xfac0ffb +com.adobe.InDesign.Gradient Fill (7.5.0.142 - ???) <A41D8F17-419C-49F3-6579-A405EA311CA7> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Gradient Fill.InDesignPlugin/Gradient Fill
    0xfae7000 -  0xfbb7fe7 +com.adobe.InDesign.Graphics (7.5.0.142 - ???) <DCA66589-8A34-5595-2BD9-F8090563B762> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Graphics.InDesignPlugin/Graphics
    0xfc03000 -  0xfc0cffb +com.adobe.InDesign.Group (7.5.0.142 - ???) <4109367F-5E27-881F-274E-2F9B96C61157> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Group.InDesignPlugin/Group
    0xfc17000 -  0xfc2dfff +com.adobe.InDesign.Guides (7.5.0.142 - ???) <E4AEB43F-629D-AB80-13AD-48400DDD3770> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Guides.InDesignPlugin/Guides
    0xfc3d000 -  0xfd10ff7 +com.adobe.InDesign.Hyperlinks (7.5.0.142 - ???) <E1142D20-690C-F71A-D488-DA475046CAE5> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Hyperlinks.InDesignPlugin/Hyperlinks
    0xfd5c000 -  0xfdb5fef +com.adobe.InDesign.Image Filters (7.5.0.142 - ???) <BF3D1FD7-8F20-0839-3D80-4C2F2E25F158> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Image Filters.InDesignPlugin/Image Filters
    0xfdc4000 -  0xfeb9fe7 +com.adobe.InDesign.Image (7.5.0.142 - ???) <366DF110-9E72-A8BD-5600-DBD7408E9951> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Image.InDesignPlugin/Image
    0xff09000 -  0xff24ffb +com.adobe.InDesign.IME (7.5.0.142 - ???) <13C0D3D0-6290-FAFC-4B37-57835D92293C> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/IME.InDesignPlugin/IME
    0xff36000 -  0xff8aff7 +com.adobe.InDesign.Import Export UI (7.5.0.142 - ???) <798A82C2-D58E-223D-424D-EA0EE1BE14C1> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Import Export UI.InDesignPlugin/Import Export UI
    0xffb5000 - 0x10094fe7 +com.adobe.InDesign.InCopyShared (7.5.0.142 - ???) <3064A755-C8ED-7697-E670-AD641690BB27> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/InCopyShared.InDesignPlugin/InCopyShared
    0x100e6000 - 0x100f0ff3 +com.adobe.InDesign.InCopySharedUI (7.5.0.142 - ???) <D473C4F5-2D25-B841-E5D9-028BF32BC555> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/InCopySharedUI.InDesignPlugin/InCopySharedUI
    0x100fc000 - 0x1017aff3 +com.adobe.InDesign.InCopyWorkflow (7.5.0.142 - ???) <EC780277-4C3A-CA35-768B-C4D3873DFFE8> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/InCopyWorkflow.InDesignPlugin/InCopyWorkflow
    0x101b7000 - 0x10299ff7 +com.adobe.InDesign.Indexing (7.5.0.142 - ???) <FAAEC28E-8BE7-72C8-770C-CD680DB8604D> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Indexing.InDesignPlugin/Indexing
    0x102d7000 - 0x10393fff +com.adobe.InDesign.INXCore (7.5.0.142 - ???) <7E5BEC36-0B3B-DCA6-1850-B74A6474B15A> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/INXCore.InDesignPlugin/INXCore
    0x103d6000 - 0x103fafff +com.adobe.InDesign.Layer (7.5.0.142 - ???) <B35B106C-8EEA-3A91-52C6-CBB3D58BDAC1> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Layer.InDesignPlugin/Layer
    0x1040f000 - 0x1058bff7 +com.adobe.InDesign.Layout UI (7.5.0.142 - ???) <BF79DE26-6FA5-F647-59F9-6492DA99BEF5> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Layout UI.InDesignPlugin/Layout UI
    0x10614000 - 0x10635ff3 +com.adobe.InDesign.Layout (7.5.0.142 - ???) <D3AC0213-DB4C-16C8-BEC4-DE89209A1EF8> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Layout.InDesignPlugin/Layout
    0x10647000 - 0x10689ff7 +com.adobe.InDesign.Linguistics (7.5.0.142 - ???) <878DBFDF-7D69-35A8-2652-DE759858C21F> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Linguistics.InDesignPlugin/Linguistics
    0x106aa000 - 0x107e9ff7 +com.adobe.InDesign.Links (7.5.0.142 - ???) <7ECA5641-B4BD-E368-8962-B4044745BD4A> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Links.InDesignPlugin/Links
    0x1084f000 - 0x108b9ff7 +com.adobe.InDesign.Master Page (7.5.0.142 - ???) <D26C418D-DB9A-EBB4-4683-11788565F9FD> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Master Page.InDesignPlugin/Master Page
    0x108e1000 - 0x10933ff7 +com.adobe.InDesign.Media (7.5.0.142 - ???) <B6786555-0472-9E99-3BD2-FC9D16AE89F7> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Media.InDesignPlugin/Media
    0x10955000 - 0x10956ff3 +com.adobe.InDesign.Metadata Database Filter (7.5.0.142 - ???) <4BBF4896-D573-119F-F44E-2B647F9CA5BF> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Metadata Database Filter.InDesignPlugin/Metadata Database Filter
    0x1095b000 - 0x109d8ff7 +com.adobe.InDesign.Metadata (7.5.0.142 - ???) <05C2EB44-E814-E70E-A17D-C99F81F52DE8> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Metadata.InDesignPlugin/Metadata
    0x10a09000 - 0x10a1efff +com.adobe.InDesign.Movie (7.5.0.142 - ???) <B9AB8E35-D4C9-0FFC-650A-718ABE17607A> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Movie.InDesignPlugin/Movie
    0x10a2e000 - 0x10a62fff +com.adobe.InDesign.Open Place (7.5.0.142 - ???) <4DBD079D-0A13-0D8B-419D-7FEB65FF7FCF> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Open Place.InDesignPlugin/Open Place
    0x10a7c000 - 0x10b3ffff +com.adobe.InDesign.Paragraph Composer (7.5.0.142 - ???) <F840479A-06BD-609C-095B-F39DD694D6E9> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Paragraph Composer.InDesignPlugin/Paragraph Composer
    0x10b60000 - 0x10b99ffb +com.adobe.InDesign.Path Type (7.5.0.142 - ???) <8A3BD04D-2AB4-20B1-99D0-78BE61941918> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Path Type.InDesignPlugin/Path Type
    0x10bb6000 - 0x10d98fff +com.adobe.InDesign.PDF (7.5.0.142 - ???) <75374F8F-15A2-6734-0002-9E3E4BA60536> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/PDF.InDesignPlugin/PDF
    0x10e29000 - 0x10f0cfef +com.adobe.PDFPort (AdobePDFPort 2.1.0.12895 - 2.1.0.12895) <C7CDB72D-081A-E40C-3FF8-284D96F68E57> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobePDFPort.framework/Versions/A/AdobePDFPort
    0x10f44000 - 0x10f5fff9 +AdobePDFSettings (??? - ???) /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobePDFSettings.framework/Versions/A/AdobePDFSettings
    0x10f79000 - 0x10facff7 +com.adobe.InDesign.Photoshop Import Filter (7.5.0.142 - ???) <2DD22890-FBF0-B6D8-82C9-3367B98E74E1> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Photoshop Import Filter.InDesignPlugin/Photoshop Import Filter
    0x10fc4000 - 0x11d55feb +com.adobe.psl (AdobePSL 12.0.0.12659 - 12.0.0.12659) <03D5B098-AD3C-FB84-0D0D-7DE57C025F3F> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobePSL.framework/Versions/A/AdobePSL
    0x120bd000 - 0x120beff1  com.apple.textencoding.unicode (2.4 - 2.4) <4E55D4B9-4E67-3FC9-9407-3E99D1D50F15> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x120c3000 - 0x120f5fe7 +com.adobe.InDesign.PNG Import Filter (7.5.0.142 - ???) <BD12B7F4-90BF-91FA-18DD-E17F18541ABE> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/PNG Import Filter.InDesignPlugin/PNG Import Filter
    0x12200000 - 0x1234cfff +com.adobe.InDesign.Print (7.5.0.142 - ???) <23314410-A1CE-055A-F03A-74D9AB059111> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Print.InDesignPlugin/Print
    0x123ae000 - 0x123c8fff +com.adobe.InDesign.Rulers (7.5.0.142 - ???) <A0397830-63EC-4648-BDA6-D8A8B2B4A2B4> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Rulers.InDesignPlugin/Rulers
    0x123d9000 - 0x12472ff7 +com.adobe.InDesign.Scripting (7.5.0.142 - ???) <37732D36-D9CC-F7A1-989E-8A2B90BC4905> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Scripting.InDesignPlugin/Scripting
    0x124a5000 - 0x124bfff2 +com.adobe.InDesign.Sections (7.5.0.142 - ???) <73FB3557-F4B5-1DA9-0FF5-5A8FFE4E91BA> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Sections.InDesignPlugin/Sections
    0x124cf000 - 0x124f0ff7 +com.adobe.InDesign.SharedContent (7.5.0.142 - ???) <1E9F595E-928D-03EB-7FDD-F2F91C7A8DCD> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/SharedContent.InDesignPlugin/SharedContent
    0x12503000 - 0x12510fff +com.adobe.InDesign.Sound (7.5.0.142 - ???) <12F9F083-586A-6C5E-5F74-B20F197352AC> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Sound.InDesignPlugin/Sound
    0x1251c000 - 0x1252afff +com.adobe.InDesign.Spelling Service (7.5.0.142 - ???) <A65001B0-C39E-001C-FF9A-0C2F42F06F3D> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Spelling Service.InDesignPlugin/Spelling Service
    0x12537000 - 0x12570fff +com.adobe.InDesign.Spline UI (7.5.0.142 - ???) <909F6496-5243-7E94-5A82-CBB7C30CFE89> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Spline UI.InDesignPlugin/Spline UI
    0x12590000 - 0x125ccffb +com.adobe.InDesign.Spline (7.5.0.142 - ???) <8CEFB169-65C7-B546-734E-30CACF084E43> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Spline.InDesignPlugin/Spline
    0x125ea000 - 0x1262fff0 +com.adobe.InDesign.Spread UI (7.5.0.142 - ???) <712A1BE8-B8DE-7800-2528-714CC910369A> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Spread UI.InDesignPlugin/Spread UI
    0x1264b000 - 0x1272efff +com.adobe.InDesign.Spread (7.5.0.142 - ???) <00386BD6-451D-A61B-9CE8-D8C121762D81> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Spread.InDesignPlugin/Spread
    0x1277d000 - 0x127ccffb +com.adobe.InDesign.Stroke and Fill (7.5.0.142 - ???) <B7D31D36-C6B6-78CC-52A6-E5E4C3A65337> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Stroke and Fill.InDesignPlugin/Stroke and Fill
    0x127ea000 - 0x1282efff +com.adobe.InDesign.Support for AppleScript (7.5.0.142 - ???) <72C25DCD-42B9-E9B8-14EB-F0E32F406606> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Support for AppleScript.InDesignPlugin/Support for AppleScript
    0x12849000 - 0x128d3ff7 +com.adobe.InDesign.Support for JavaScript (7.5.0.142 - ???) <BEAE6DA2-21DF-2ED4-BD76-053F665A89C1> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Support for JavaScript.InDesignPlugin/Support for JavaScript
    0x1290e000 - 0x12b08fff +com.adobe.InDesign.Table Model (7.5.0.142 - ???) <19A6AA46-B2FB-1914-08CC-C2DF1EE51CCE> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Table Model.InDesignPlugin/Table Model
    0x12b9a000 - 0x12be1fff +com.adobe.InDesign.TableStyles (7.5.0.142 - ???) <1BC33831-E1AF-2617-746C-0175688A58A0> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/TableStyles.InDesignPlugin/TableStyles
    0x12bfa000 - 0x12c43fff +com.adobe.InDesign.Text Attributes (7.5.0.142 - ???) <97F3EF6E-346A-3B92-1E4C-2DCE6E451DEC&g

    Hi, yes I did the update, but still nO joy. I also uninstalled and reinstalled and did the update and still no joy.
    I have also now discovered that
    1) Photoshop cannot save preferences
    2) Fireworks does not open. It says "Fireworks can not run. A parameter was incorrect"
    3) illustrate crashes when you quit.
    Here is the link for the InDesign crash report: http://pastebin.com/kAWib5QW
    And here is the Illustrator one: http://pastebin.com/EA2qf9Yz
    Again, any help greatly appreciated.
    Thanks,
    Brian

Maybe you are looking for