From SQLDev2.1 and on... Disable Constraint Bug

Hi everyone,
Since SQLDeveloper 2.0 there's a bug in the query generated by the software when you right click a table > constraint > Disable all related constraints
It generates the following:
begin
                              for cur in (select fk.owner, fk.constraint_name , fk.table_name
                                   from all_constraints fk, all_constraints pk
                                   where fk.CONSTRAINT_TYPE = 'R' and
                                   pk.owner = 'OWNER' and
                                   fk.R_CONSTRAINT_NAME = pk.CONSTRAINT_NAME and
                                   pk.TABLE_NAME = 'TABLE_NAME') loop
                              execute immediate 'ALTER TABLE '||cur.owner||'.'||cur.table_name||' MODIFY CONSTRAINT '||'''cur.constraint_name'''||' DISABLE';
                         end loop;
                         end;
when it should be:
begin
                              for cur in (select fk.owner, fk.constraint_name , fk.table_name
                                   from all_constraints fk, all_constraints pk
                                   where fk.CONSTRAINT_TYPE = 'R' and
                                   pk.owner = 'OWNER' and
                                   fk.R_CONSTRAINT_NAME = pk.CONSTRAINT_NAME and
                                   pk.TABLE_NAME = 'TABLE_NAME') loop
                              execute immediate 'ALTER TABLE '||cur.owner||'.'||cur.table_name||' MODIFY CONSTRAINT '||cur.constraint_name||' DISABLE';
                         end loop;
                         end;
[The problem is on cur.constraint_name]
On the new SQLDeveloper 3.0 EA4 this bug its still valid...
To enable the constraint is ok.
Has anyone else seen this?

Hey,
I've tested out the disable constraints script generation on 3.1 EA1 [3.1.05.97] and now it creates the script just fine. Also with the 'fk.r_owner = pk.owner' part that was missing.
The generated script:
begin
                              for cur in (select fk.owner, fk.constraint_name , fk.table_name
                                   from all_constraints fk, all_constraints pk
                                   where fk.CONSTRAINT_TYPE = 'R' and
                                   pk.owner = 'TEST_OWNER' and
              fk.r_owner = pk.owner AND
                                   fk.R_CONSTRAINT_NAME = pk.CONSTRAINT_NAME and
                                   pk.TABLE_NAME = 'TEST_TABLE') loop
                                execute immediate 'ALTER TABLE "'||cur.owner||'"."'||cur.table_name||'" MODIFY CONSTRAINT "'||cur.constraint_name||'" DISABLE';
                            end loop;
                         end;My thanks to everybody of the SQL Developer Team.

Similar Messages

  • Get value from table record and set Disabled property...

    Hi! I have table in my JSPX page. I search for records and then press on one of the records with right click, see: http://my.jetscreenshot.com/2677/20120203-fas1-30kb
    I set disabled property like this of my commandMenuItem:
    #{row.GenResGrupa != 'true'}But as You can see from my picture above, the disabled property do not work. Where I am wrong with my code:
    <af:commandMenuItem text="#{sampleBundle.pases}"
                                                  id="commandMenuItem1"
                                                  action="adfMenu_pasesDati"
                                                  actionListener="#{bindings.setCurrentRowWithKeyValue.execute}"
                                                  disabled="#{row.GenResGrupa != 'true'}"/> Please correct me! If You need some other information, please let me know.
    Best regards, Debuger!

    Dear fedor! Popup is in facet contextMenu. contentDelivery="lazyUncached" for my popup:
    <af:popup id="p1" contentDelivery="lazyUncached">
                            <af:menu text="menu 1" id="menu1">
                              <af:commandMenuItem text="#{sampleBundle.pases}"
                                                  id="commandMenuItem1"
                                                  action="adfMenu_pasesDati"
                                                  actionListener="#{bindings.setCurrentRowWithKeyValue.execute}"
                                                  disabled="#{row.bindings.GenResGrupa.inputValue != 'true'}"/>
                            </af:menu>
                          </af:popup>In my pageDef I have this code:
    <bindings>
        <tree IterBinding="LVAIMeklesanaIterator" id="LVAIMeklesana">
          <nodeDefinition DefName="kokaugi.model.view.LVAIMeklesana"
                          Name="LVAIMeklesana0">
            <AttrNames>
              <Item Value="Accename"/>
              <Item Value="LvaiKolekcijaPk"/>
              <Item Value="Accenumb"/>
              <Item Value="AvsGrupa"/>
              <Item Value="Cropname"/>
              <Item Value="EkspGrupa"/>
              <Item Value="GenResGrupa"/>
              <Item Value="Genus"/>
              <Item Value="Species"/>
              <Item Value="Sinonims"/>
            </AttrNames>
          </nodeDefinition>
        </tree>
        <action IterBinding="LVAIKolekcijaDatiIterator"
                id="setCurrentRowWithKeyValue"
                InstanceName="KokaugiModuleDataControl.LVAIKolekcijaDati"
                DataControl="KokaugiModuleDataControl" RequiresUpdateModel="false"
                Action="setCurrentRowWithKeyValue">
          <NamedData NDName="rowKey" NDValue="#{row.LvaiKolekcijaPk}"
                     NDType="java.lang.String"/>
        </action>
      </bindings>And disabled property is like this:
    disabled="#{row.bindings.GenResGrupa.inputValue != 'true'}"But it is still do not working. I am wrong somewhere? Maybe the only way to correct my problem is like Hohn said?
    Best regards, Debuger!

  • Purchased an ipod touch from previous owner and is disabled how do we reconnect it

    we purchased an ipod touch from a previous owner and it is disabled.  how do we get it working again?

    Hi, meyersrus4.  
    Thank you for visiting Apple Support Communities.
    If your iOS device is disabled, see the steps in the article below.
    Forgot passcode for your iPhone, iPad, or iPod touch, or your device is disabled
    http://support.apple.com/kb/ht1212
    If your device was purchased from another party and is linked to their Apple ID, see the article below.  
    Find My iPhone Activation Lock: Removing a device from a previous owner’s account
    http://support.apple.com/en-us/HT201441
    Cheers,
    Jason H.

  • ALTER TABLE privilege and CREATE/DROP/ENABLE/DISABLE constraint privilege

    Hi,
    I am looking for some detailed info regarding the below previleges
    ALTER TABLE, CREATE CONSTRAINT, DROP CONSTRAINT, ENABLE CONSTRAINT AND DISABLE CONSTRAINT PRiVILEGES.
    I have two schemas 'A' and 'B', I want to provide user 'A' with Alter table, create or drop constraint,Enable or Disable constraint on schema B.
    Please let me know how to make this work.
    Thank you

    I got the answer for my second question, I have an option to grant 'Alter ANY table' privilege to the user.Yes, but you should not do that.
    Regarding question one, Suppose I have two schemas A and B and I want Schema A to have alter table privilege on all tables of Schema B.
    Can I do this in one command No
    or I need to grant alter on each table saperately?Yes
    If I am chosing the second option for each table saperately then whenever a table is added in schema B we need to grant privilege on that table as well.Yes. But nothing strange there. Designing and creating objects includes the privileges on them.
    If user A is granted with alter table privilege on a table which user B owns then can user A drop/create/enable/disable constraints for that table?Yes, isn't that what all this about?
    Again, letting one user alter the objects of another user is generally not such a good idea. Hope you see this from our discussion.
    Alter table privilege includes adding and dropping columns. This is why I suggested writing a procedure that does exactly what you need. And then grant execute on that to A.
    The best thing of course would be NOT TO disable the constraints, they are probably there for a reason.
    I am currently handling an issue where one session doing this, deadlocks with another session doing only selects - From other tables, that is!
    Regards
    Peter

  • How can i set the "Keep the following number of major versions" to a limit suppose 20 and then disable it from the users so that they cannot change the value?

    I want to set the value of "Keep the following number of major versions" in the versiong settings of a documnet library to a limit say 20 and then disable the option from the users so that they cannot them. Is it possible thorugh some custom coding?

    Hi Moumita10,
    Just curious about that how the custom CSS code works in your environment if put it in the “LstSetng.aspx” page.
    In my environment, it hides the "Keep the following number of major versions" setting in the “LstSetng.aspx”
    page after applying the custom CSS style there.
    Thanks
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Bug: Print to pdf from Firefox 5 and Chrome 12 results in crash. What to do?

    Bug: Print to pdf from Firefox 5 and Chrome 12 results in crash. What to do?
    After installing Lion, my usual repeated work task involves saving pdf copies of work documents via print/save to pdf. This now causes both Firefox 5 and Chrome to crash resulting in starting the process over from scratch! Have yet to experiment with Safari.
    Anyone having this problem? I had a few other general and unusual browser crashes, but do not remember the circumstances.

    Process:         Safari [4336]
    Path:            /Applications/Safari.app/Contents/MacOS/Safari
    Identifier:      com.apple.Safari
    Version:         5.1 (7534.48.3)
    Build Info:      WebBrowser-7534048003000000~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [181]
    Date/Time:       2011-08-03 04:33:26.254 -0700
    OS Version:      Mac OS X 10.7 (11A511)
    Report Version:  9
    Interval Since Last Report:          445902 sec
    Crashes Since Last Report:           11
    Per-App Interval Since Last Report:  852863 sec
    Per-App Crashes Since Last Report:   4
    Anonymous UUID:                      19696FB2-9A65-41B7-9035-29145829CC7B
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x00000000686838ef
    VM Regions Near 0x686838ef:
    -->
        __TEXT                 0000000108a7e000-0000000108a7f000 [    4K] r-x/rwx SM=COW  /Applications/Safari.app/Contents/MacOS/Safari
    Application Specific Information:
    objc[4336]: garbage collection is OFF
    Performing @selector(doSaveAsPDF:) from sender NSMenuItem 0x7fc065be37d0
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.DesktopServices               0x00007fff9266a4c6 TNodePtr::operator=(TNodePtr const&) + 32
    1   com.apple.DesktopServices               0x00007fff9266d242 TNode::FindChild(TUString const&) const + 824
    2   com.apple.DesktopServices               0x00007fff9269aa07 TNode::GetNodeFromPathName(TPathName const&, TNodePtr&, unsigned int) + 209
    3   com.apple.DesktopServices               0x00007fff92679324 TNode::GetNodeFromURL(__CFURL const* const&, TNodePtr&, unsigned int) + 1738
    4   com.apple.DesktopServices               0x00007fff92678b58 NodeCopyFromURL + 72
    5   com.apple.FinderKit                     0x00007fff8a81c205 TFENode::TFENode(TString const&, long, unsigned int) + 109
    6   com.apple.FinderKit                     0x00007fff8a8296fd TFENodeFactory::TFENodeFactory() + 617
    7   com.apple.FinderKit                     0x00007fff8a82939c TFENodeFactory::Initialize() + 28
    8   com.apple.FinderKit                     0x00007fff8a961ed1 +[FIFinderViewGutsController initializeCounted] + 71
    9   com.apple.FinderKit                     0x00007fff8a96b070 -[FIFinderView _commonFinderViewInit] + 31
    10  com.apple.FinderKit                     0x00007fff8a96b1e7 -[FIFinderView initWithFrame:] + 111
    11  com.apple.AppKit                        0x00007fff93c2b787 -[NSNavFinderViewFileBrowser initWithFrame:] + 189
    12  com.apple.AppKit                        0x00007fff93c223d7 _NSNavFileBrowserWithFinderKit + 130
    13  com.apple.AppKit                        0x00007fff9391282c -[NSSavePanel(NSSavePanelLayout) _makeFileBrowserView] + 79
    14  com.apple.AppKit                        0x00007fff93910f03 -[NSSavePanel(NSSavePanelLayout) _setupFileBrowserView] + 155
    15  com.apple.AppKit                        0x00007fff93912dfe -[NSSavePanel(NSSavePanelLayout) _initContentView] + 1282
    16  com.apple.AppKit                        0x00007fff9390f7e5 -[NSSavePanel initWithContentRect:styleMask:backing:defer:] + 320
    17  com.apple.AppKit                        0x00007fff93909793 +[NSSavePanel _crunchyRawUnbonedPanel] + 207
    18  com.apple.AppKit                        0x00007fff939096c2 +[NSSavePanel savePanel] + 18
    19  com.apple.print.framework.Print.Private          0x000000010d1813c9 AskUserForFile + 152
    20  com.apple.print.framework.Print.Private          0x000000010d18ad27 0x10d171000 + 105767
    21  com.apple.print.framework.Print.Private          0x000000010d18f598 0x10d171000 + 124312
    22  com.apple.CoreFoundation                0x00007fff94aa411d -[NSObject performSelector:withObject:] + 61
    23  com.apple.AppKit                        0x00007fff934da852 -[NSApplication sendAction:to:from:] + 139
    24  com.apple.Safari.framework              0x00007fff8e1d84d7 -[BrowserApplication sendAction:to:from:] + 80
    25  com.apple.AppKit                        0x00007fff935c734f -[NSMenuItem _corePerformAction] + 399
    26  com.apple.AppKit                        0x00007fff935c7086 -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 125
    27  com.apple.AppKit                        0x00007fff93862e9c -[NSMenu _internalPerformActionForItemAtIndex:] + 38
    28  com.apple.AppKit                        0x00007fff936f53f1 -[NSCarbonMenuImpl _carbonCommandProcessEvent:handlerCallRef:] + 138
    29  com.apple.AppKit                        0x00007fff935410bf NSSLMMenuEventHandler + 339
    30  com.apple.HIToolbox                     0x00007fff88dbb8ec _ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec + 1263
    31  com.apple.HIToolbox                     0x00007fff88dbaef8 _ZL30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14H andlerCallRec + 446
    32  com.apple.HIToolbox                     0x00007fff88dd1d03 SendEventToEventTarget + 76
    33  com.apple.HIToolbox                     0x00007fff88e18249 _ZL18SendHICommandEventjPK9HICommandjjhPKvP20OpaqueEventTargetRefS5_PP14OpaqueE ventRef + 398
    34  com.apple.HIToolbox                     0x00007fff88eff0f1 SendMenuCommandWithContextAndModifiers + 56
    35  com.apple.HIToolbox                     0x00007fff88f455e1 SendMenuItemSelectedEvent + 253
    36  com.apple.HIToolbox                     0x00007fff88e1132d _ZL19FinishMenuSelectionP13SelectionDataP10MenuResultS2_ + 101
    37  com.apple.HIToolbox                     0x00007fff88f3dfed _ZL19PopUpMenuSelectCoreP8MenuData5PointdS1_tjPK4RecttjS4_S4_PK10__CFStringPP13 OpaqueMenuRefPt + 1660
    38  com.apple.HIToolbox                     0x00007fff88f3e2ac _HandlePopUpMenuSelection7 + 621
    39  com.apple.AppKit                        0x00007fff936f80bd _NSSLMPopUpCarbonMenu3 + 3860
    40  com.apple.AppKit                        0x00007fff93a9f02e _NSPopUpCarbonMenu3 + 39
    41  com.apple.AppKit                        0x00007fff936f6222 -[NSCarbonMenuImpl popUpMenu:atLocation:width:forView:withSelectedItem:withFont:withFlags:withOpti ons:] + 322
    42  com.apple.AppKit                        0x00007fff938d3b41 -[NSPopUpButtonCell trackMouse:inRect:ofView:untilMouseUp:] + 564
    43  com.apple.AppKit                        0x00007fff934d8786 -[NSControl mouseDown:] + 786
    44  com.apple.AppKit                        0x00007fff934a366e -[NSWindow sendEvent:] + 6280
    45  com.apple.AppKit                        0x00007fff9343bf19 -[NSApplication sendEvent:] + 5665
    46  com.apple.Safari.framework              0x00007fff8e1d847a -[BrowserApplication sendEvent:] + 822
    47  com.apple.AppKit                        0x00007fff933d242b -[NSApplication run] + 548
    48  com.apple.AppKit                        0x00007fff9365052a NSApplicationMain + 867
    49  com.apple.Safari.framework              0x00007fff8e38a725 SafariMain + 197
    50  com.apple.Safari                        0x0000000108a7ef24 0x108a7e000 + 3876
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff8abcf7e6 kevent + 10
    1   libdispatch.dylib                       0x00007fff910d760e _dispatch_mgr_invoke + 923
    2   libdispatch.dylib                       0x00007fff910d619e _dispatch_mgr_thread + 54
    Thread 2:: Dispatch queue: Query work queue
    0   libsystem_kernel.dylib                  0x00007fff8abcebca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8e6c1274 _pthread_cond_wait + 840
    2   com.apple.Metadata                      0x00007fff94c058c6 _pushNotification + 464
    3   com.apple.Metadata                      0x00007fff94c05c24 processUpdatesLocked + 111
    4   com.apple.Metadata                      0x00007fff94c0841b tryProcessUpdates + 250
    5   com.apple.Metadata                      0x00007fff94c0830d __deferProcessUpdates_block_invoke_2 + 54
    6   libdispatch.dylib                       0x00007fff910da2f1 _dispatch_source_invoke + 614
    7   libdispatch.dylib                       0x00007fff910d6fc7 _dispatch_queue_invoke + 71
    8   libdispatch.dylib                       0x00007fff910d7124 _dispatch_queue_drain + 210
    9   libdispatch.dylib                       0x00007fff910d6fb6 _dispatch_queue_invoke + 54
    10  libdispatch.dylib                       0x00007fff910d67b0 _dispatch_worker_thread2 + 198
    11  libsystem_c.dylib                       0x00007fff8e6bf3da _pthread_wqthread + 316
    12  libsystem_c.dylib                       0x00007fff8e6c0b85 start_wqthread + 13
    Thread 3:: WebCore: IconDatabase
    0   libsystem_kernel.dylib                  0x00007fff8abcebca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8e6c1274 _pthread_cond_wait + 840
    2   com.apple.WebCore                       0x00007fff8c91bda5 WebCore::IconDatabase::syncThreadMainLoop() + 375
    3   com.apple.WebCore                       0x00007fff8c91971d WebCore::IconDatabase::iconDatabaseSyncThread() + 489
    4   com.apple.WebCore                       0x00007fff8c91952b WebCore::IconDatabase::iconDatabaseSyncThreadStart(void*) + 9
    5   libsystem_c.dylib                       0x00007fff8e6bd8bf _pthread_start + 335
    6   libsystem_c.dylib                       0x00007fff8e6c0b75 thread_start + 13
    Thread 4:: CoreAnimation render server
    0   libsystem_kernel.dylib                  0x00007fff8abcd67a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8abccd71 mach_msg + 73
    2   com.apple.QuartzCore                    0x00007fff910e5ce9 CA::Render::Server::server_thread(void*) + 184
    3   com.apple.QuartzCore                    0x00007fff910e5c29 thread_fun + 24
    4   libsystem_c.dylib                       0x00007fff8e6bd8bf _pthread_start + 335
    5   libsystem_c.dylib                       0x00007fff8e6c0b75 thread_start + 13
    Thread 5:: Dispatch queue: TFSVolumeInfo::GetSyncGCDQueue
    0   libsystem_kernel.dylib                  0x00007fff8abceafa __open_nocancel + 10
    1   libsystem_c.dylib                       0x00007fff8e681f7a fopen + 80
    2   com.apple.DesktopServices               0x00007fff926d2cd3 TFSVolumeInfo::GetHiddenList() + 175
    3   com.apple.DesktopServices               0x00007fff926d2549 TFSVolumeInfo::Initialize(TCountedPtr<TVolumeSyncThread> const&, short, unsigned char, bool&) + 1459
    4   com.apple.DesktopServices               0x00007fff926d3c75 TFSVolumeInfo::AddVolume(TCountedPtr<TVolumeSyncThread> const&, short, unsigned char, TCountedPtr<TFSVolumeInfo>&, bool&) + 129
    5   com.apple.DesktopServices               0x00007fff926a3078 TNode::AddVolume(TCountedPtr<TVolumeSyncThread> const&, short, unsigned char, TNodePtr&) + 126
    6   com.apple.DesktopServices               0x00007fff926abf6c TNode::SynchronizeVolumes(bool, TCountedPtr<TVolumeSyncThread> const&) + 502
    7   com.apple.DesktopServices               0x00007fff926ac83e TNode::HandleNodeRequest(TCountedPtr<TNodeTask> const&, TCountedPtr<TVolumeSyncThread> const&) + 894
    8   com.apple.DesktopServices               0x00007fff926d195a __PostNodeTaskRequest_block_invoke_08 + 82
    9   com.apple.DesktopServices               0x00007fff926e51b8 ExceptionSafeBlock(void ( block_pointer)()) + 15
    10  com.apple.DesktopServices               0x00007fff926d1902 __PostNodeTaskRequest_block_invoke_0 + 88
    11  libdispatch.dylib                       0x00007fff910d590a _dispatch_call_block_and_release + 18
    12  libdispatch.dylib                       0x00007fff910d715a _dispatch_queue_drain + 264
    13  libdispatch.dylib                       0x00007fff910d6fb6 _dispatch_queue_invoke + 54
    14  libdispatch.dylib                       0x00007fff910d67b0 _dispatch_worker_thread2 + 198
    15  libsystem_c.dylib                       0x00007fff8e6bf3da _pthread_wqthread + 316
    16  libsystem_c.dylib                       0x00007fff8e6c0b85 start_wqthread + 13
    Thread 6:
    0   libsystem_kernel.dylib                  0x00007fff8abcf192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8e6bf594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff8e6c0b85 start_wqthread + 13
    Thread 7:: Safari: SafeBrowsingManager
    0   libsystem_kernel.dylib                  0x00007fff8abcd67a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8abccd71 mach_msg + 73
    2   com.apple.CoreFoundation                0x00007fff94a4129c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x00007fff94a49a04 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x00007fff94a49216 CFRunLoopRunSpecific + 230
    5   com.apple.Safari.framework              0x00007fff8e345147 Safari::MessageRunLoop::threadBody() + 163
    6   com.apple.Safari.framework              0x00007fff8e34509f Safari::MessageRunLoop::threadCallback(void*) + 9
    7   libsystem_c.dylib                       0x00007fff8e6bd8bf _pthread_start + 335
    8   libsystem_c.dylib                       0x00007fff8e6c0b75 thread_start + 13
    Thread 8:: Safari: SnapshotStore
    0   libsystem_kernel.dylib                  0x00007fff8abcebca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8e6c1274 _pthread_cond_wait + 840
    2   com.apple.JavaScriptCore                0x00007fff8ae1cba0 ***::ThreadCondition::timedWait(***::Mutex&, double) + 64
    3   com.apple.Safari.framework              0x00007fff8e3bc03f Safari::MessageQueue<***::RefPtr<Safari::SnapshotStore::DiskAccessMessage> >::waitForMessage(***::RefPtr<Safari::SnapshotStore::DiskAccessMessage>&) + 125
    4   com.apple.Safari.framework              0x00007fff8e3b97bb Safari::SnapshotStore::diskAccessThreadBody() + 305
    5   com.apple.Safari.framework              0x00007fff8e3b918b Safari::SnapshotStore::diskAccessThreadCallback(void*) + 9
    6   libsystem_c.dylib                       0x00007fff8e6bd8bf _pthread_start + 335
    7   libsystem_c.dylib                       0x00007fff8e6c0b75 thread_start + 13
    Thread 9:
    0   libsystem_kernel.dylib                  0x00007fff8abcf192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8e6bf594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff8e6c0b85 start_wqthread + 13
    Thread 10:: com.apple.appkit-heartbeat
    0   libsystem_kernel.dylib                  0x00007fff8abcee42 __semwait_signal + 10
    1   libsystem_c.dylib                       0x00007fff8e673dea nanosleep + 164
    2   libsystem_c.dylib                       0x00007fff8e673bb5 usleep + 53
    3   com.apple.AppKit                        0x00007fff9360c0b8 -[NSUIHeartBeat _heartBeatThread:] + 1727
    4   com.apple.Foundation                    0x00007fff8edd51ea -[NSThread main] + 68
    5   com.apple.Foundation                    0x00007fff8edd5162 __NSThread__main__ + 1575
    6   libsystem_c.dylib                       0x00007fff8e6bd8bf _pthread_start + 335
    7   libsystem_c.dylib                       0x00007fff8e6c0b75 thread_start + 13
    Thread 11:
    0   libsystem_kernel.dylib                  0x00007fff8abcee06 __select_nocancel + 10
    1   libsystem_info.dylib                    0x00007fff927f2e59 res_send + 3704
    2   libsystem_info.dylib                    0x00007fff927f1544 res_query + 318
    3   com.xerox.opb.print.pde.cocoa.XeroxJobType          0x000000010ceb4a72 mDNS_res_query + 243
    4   com.xerox.opb.print.pde.cocoa.XeroxJobType          0x000000010ceb40be GetPrinterURL + 283
    5   com.xerox.opb.print.pde.cocoa.XeroxJobType          0x000000010ceb01bf -[PrintJobInfo checkPrinterReachability] + 61
    6   com.xerox.opb.print.pde.cocoa.XeroxJobType          0x000000010ceb0126 -[PrintJobInfo queryPrinterThread:] + 39
    7   com.xerox.opb.print.pde.cocoa.XeroxJobType          0x000000010ceb026d -[PrintJobInfo updatePrintJobInfo:] + 140
    8   com.apple.Foundation                    0x00007fff8edd51ea -[NSThread main] + 68
    9   com.apple.Foundation                    0x00007fff8edd5162 __NSThread__main__ + 1575
    10  libsystem_c.dylib                       0x00007fff8e6bd8bf _pthread_start + 335
    11  libsystem_c.dylib                       0x00007fff8e6c0b75 thread_start + 13
    Thread 12:
    0   libsystem_kernel.dylib                  0x00007fff8abcf192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8e6bf594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff8e6c0b85 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x00007fff6867b7f0  rcx: 0x0000000000000800  rdx: 0x00007fc065407f78
      rdi: 0x00007fff6867b8a8  rsi: 0x00007fff6867b7f0  rbp: 0x00007fff6867b790  rsp: 0x00007fff6867b770
       r8: 0x00007fff6867b6fc   r9: 0x00007fff6867b6f8  r10: 0x0000000000000481  r11: 0x00000000fff7ffff
      r12: 0x00007fff79f4add8  r13: 0x0000000000000100  r14: 0x00000000686838ef  r15: 0x00007fff6867b8a8
      rip: 0x00007fff9266a4c6  rfl: 0x0000000000010202  cr2: 0x00000000686838ef
    Logical CPU: 0
    Binary Images:
           0x108a7e000 -        0x108a7efff  com.apple.Safari (5.1 - 7534.48.3) <C23CF439-A7C3-3A27-A80B-DE92FAF9ADE8> /Applications/Safari.app/Contents/MacOS/Safari
           0x10a283000 -        0x10a286ff7  libCoreFSCache.dylib (??? - ???) <783C2402-CA3F-3D9B-B909-0F251145CF1D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache .dylib
           0x10c87b000 -        0x10c881fef  libcldcpuengine.dylib (1.50.61 - compatibility 1.0.0) <EAC03E33-595E-3829-8199-479FA5CD9987> /System/Library/Frameworks/OpenCL.framework/Libraries/libcldcpuengine.dylib
           0x10c892000 -        0x10c892ffd +cl_kernels (??? - ???) <04DAF10B-FF2C-4FA2-BE6C-694B5F614D14> cl_kernels
           0x10c894000 -        0x10c927ff7  unorm8_bgra.dylib (1.50.61 - compatibility 1.0.0) <3ED8B0D5-4A55-3E39-8490-B7BC1780F67B> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_bgra. dylib
           0x10c9cc000 -        0x10c9cdff3 +cl_kernels (??? - ???) <152A7299-4135-47F7-81DC-F33DE670168D> cl_kernels
           0x10c9dc000 -        0x10c9ddff3 +cl_kernels (??? - ???) <BF04B153-D3BC-4CCD-BBB5-0E0C3BC83A6E> cl_kernels
           0x10ca38000 -        0x10ca3ffff +com.xerox.opb.print.pde.cocoa.XeroxPaperOptions (2.0.2 - 1.0) <49C7C961-9C73-DEBD-B835-343CB2F08DAA> /Library/Printers/Xerox/PDEs/XeroxPaperOptions.plugin/Contents/MacOS/XeroxPaper Options
           0x10ca49000 -        0x10ca53fff +com.xerox.opb.print.pde.cocoa.XeroxFinishing (2.0.2 - 1.0) <76A94DAE-6CB7-571A-6C11-D53FC6D3A9AF> /Library/Printers/Xerox/PDEs/XeroxFinishing.plugin/Contents/MacOS/XeroxFinishin g
           0x10ca61000 -        0x10ca61ff5 +cl_kernels (??? - ???) <4374DC18-615A-49AD-9604-B17CE339B1BA> cl_kernels
           0x10ca68000 -        0x10ca69ffc +cl_kernels (??? - ???) <C6983950-DA59-45C2-936D-E9E7AE86F8AE> cl_kernels
           0x10cba9000 -        0x10cba9fff +com.symantec.webkitutils.scradditionSL (1.1 - 22) <036410B7-D57D-648F-8527-B177206FECBE> /Library/ScriptingAdditions/SymWebKitUtilsSL.osax/Contents/MacOS/SymWebKitUtils SL
           0x10cbad000 -        0x10cbb6ff5 +com.symantec.webkitutils (1.1.3 - 30) <B3632311-7B6F-7911-6D4C-C310A7985CEF> /Library/PrivateFrameworks/SymWebKitUtils.framework/SymWebKitUtils
           0x10cbc3000 -        0x10cca6fff  libcrypto.0.9.7.dylib (0.9.7 - compatibility 0.9.7) <358B5B40-43B2-3F92-9FD3-DAA68806E1FF> /usr/lib/libcrypto.0.9.7.dylib
           0x10ccfc000 -        0x10cd08fef +com.symantec.webfraud.webkit2 (1.4.4 - 3) <5DF285E9-7C95-1EBB-7F51-589551CF1D6C> /Library/Application Support/Symantec/*/WebFraud.plugin/Contents/MacOS/WebFraud
           0x10cd15000 -        0x10cd43fef +com.symantec.symbase (2.3 - 15) <D426F45C-18B7-EFF4-A392-D64CB90A65C2> /Library/PrivateFrameworks/SymBase.framework/Versions/B/SymBase
           0x10cd63000 -        0x10cd79fea +com.symantec.framework.confidential (1.4 - 4) /Library/PrivateFrameworks/SymConfidential.framework/Versions/A/SymConfidential
           0x10cd86000 -        0x10cda7ffb +com.symantec.sharedsettings.framework (1.3 - 6) /Library/PrivateFrameworks/SymSharedSettings.framework/Versions/A/SymSharedSett ings
           0x10cdba000 -        0x10cdd3ff7 +com.symantec.internetSecurity.framework (1.3.2 - 5) <8F2D8646-E51E-6301-8731-EF0EB6F2A17F> /Library/PrivateFrameworks/SymInternetSecurity.framework/Versions/A/SymInternet Security
           0x10cde4000 -        0x10cdfbfff +com.symantec.SymAppKitAdditions (2.3 - 15) <19FC3229-A1B6-816D-B22E-F43D1EE7185A> /Library/PrivateFrameworks/SymAppKitAdditions.framework/Versions/B/SymAppKitAdd itions
           0x10ceae000 -        0x10cecbfff +com.xerox.opb.print.pde.cocoa.XeroxJobType (2.0.2 - 1.0) <20CCC8AB-9B5C-F97A-D90E-5F4C12E57D5B> /Library/Printers/Xerox/PDEs/XeroxJobType.plugin/Contents/MacOS/XeroxJobType
           0x10d11a000 -        0x10d14eff7  com.apple.printingprivate.framework.PrintingPrivate (7.0 - 68) <7AA400A0-15A9-3991-B9C3-4BBCE2579798> /System/Library/PrivateFrameworks/PrintingPrivate.framework/Versions/A/Printing Private
           0x10d171000 -        0x10d1a8fff  com.apple.print.framework.Print.Private (7.0 - 378) <9EECB9C5-32C3-3CBE-8D9A-82E929A7D69A> /System/Library/PrivateFrameworks/PrintingPrivate.framework/Versions/Current/Pl ugins/PrintCocoaUI.bundle/Contents/MacOS/PrintCocoaUI
           0x10d1c5000 -        0x10d1daff7 +com.xerox.opb.print.pde.cocoa.XeroxImaging (2.0.2 - 1.0) <C2D8C612-D10B-DE08-D264-99D091B4E202> /Library/Printers/Xerox/PDEs/XeroxImaging.plugin/Contents/MacOS/XeroxImaging
           0x10d365000 -        0x10d3a8ff7  com.apple.print.PrintingCocoaPDEs (7.0 - 378) <1F74062E-9981-3A7C-B018-6053AF0C4F42> /System/Library/PrivateFrameworks/PrintingPrivate.framework/Versions/A/Plugins/ PrintingCocoaPDEs.bundle/Contents/MacOS/PrintingCocoaPDEs
        0x7fff6867e000 -     0x7fff686b2ac7  dyld (195.5 - ???) <4A6E2B28-C7A2-3528-ADB7-4076B9836041> /usr/lib/dyld
        0x7fff889b0000 -     0x7fff88a94def  libobjc.A.dylib (228.0.0 - compatibility 1.0.0) <C5F2392D-B481-3A9D-91BE-3D039FFF4DEC> /usr/lib/libobjc.A.dylib
        0x7fff88ad4000 -     0x7fff88ad8ff7  com.apple.CommonPanels (1.2.5 - 94) <0BB2C436-C9D5-380B-86B5-E355A7711259> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff88b05000 -     0x7fff88c3efef  com.apple.vImage (5.0 - 5.0) <C45D2CBE-FA15-3D13-9E9D-A3BF57B84BBE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff88c3f000 -     0x7fff88d34fff  libiconv.2.dylib (7.0.0 - compatibility 7.0.0) <5C40E880-0706-378F-B864-3C2BD922D926> /usr/lib/libiconv.2.dylib
        0x7fff88d8a000 -     0x7fff88daeff7  com.apple.Kerberos (1.0 - 1) <2FF2569B-F59A-371E-AF33-66297F512CB3> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff88daf000 -     0x7fff88db2fff  libCoreVMClient.dylib (??? - ???) <9E9F7B24-567C-3102-909C-219CF2B191FD> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff88db3000 -     0x7fff890d6fff  com.apple.HIToolbox (1.7 - ???) <10FA3432-6638-39D9-8681-9E95298D239E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff890d7000 -     0x7fff89131fff  com.apple.HIServices (1.9 - ???) <8791E8AA-C034-330D-B2BA-5141154C21CD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff89132000 -     0x7fff89237ff7  libFontParser.dylib (??? - ???) <22AADE96-E54D-3918-9DFA-1967F8B21E54> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff89238000 -     0x7fff89246ff7  libkxld.dylib (??? - ???) <65BE345D-6618-3D1A-9E2B-255E629646AA> /usr/lib/system/libkxld.dylib
        0x7fff89247000 -     0x7fff89286ff7  libcups.2.dylib (2.9.0 - compatibility 2.0.0) <DE681910-3F7F-3502-9937-AB8008CD281A> /usr/lib/libcups.2.dylib
        0x7fff89287000 -     0x7fff89293fff  com.apple.DirectoryService.Framework (10.7 - 144) <067ACB41-E9B7-3177-9EDE-C188D9B352DC> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff89294000 -     0x7fff89299fff  libGIF.dylib (??? - ???) <21851808-BFD2-3141-8354-A419479726BF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff8929a000 -     0x7fff892d9ff7  libGLImage.dylib (??? - ???) <29F82AD9-45F0-3AC5-A4A4-B767EC555D82> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff89a1e000 -     0x7fff89a4bff7  com.apple.opencl (1.50.62 - 1.50.62) <616ADE61-11D1-3816-A255-3F0F80F2EAC8> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff89a9e000 -     0x7fff89b13ff7  libc++.1.dylib (19.0.0 - compatibility 1.0.0) <C0EFFF1B-0FEB-3F99-BE54-506B35B555A9> /usr/lib/libc++.1.dylib
        0x7fff89b14000 -     0x7fff89cbcfff  com.apple.WebKit2 (7534 - 7534.48.3) <9F8CD6D9-3123-3F53-BAC3-D770B0812C25> /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/WebKit2
        0x7fff89d26000 -     0x7fff89dcafef  com.apple.ink.framework (1.3.2 - 110) <F69DBD44-FEC8-3C14-8131-CC0245DBBD42> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff89dcb000 -     0x7fff89dd6fff  com.apple.CommonAuth (2.1 - 2.0) <49949286-61FB-3A7F-BF49-0EBA45E2664E> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff89ddd000 -     0x7fff89e08ff7  libxslt.1.dylib (3.24.0 - compatibility 3.0.0) <8051A3FC-7385-3EA9-9634-78FC616C3E94> /usr/lib/libxslt.1.dylib
        0x7fff89e09000 -     0x7fff89e14ff7  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <8FF3D766-D678-36F6-84AC-423C878E6D14> /usr/lib/libc++abi.dylib
        0x7fff89e15000 -     0x7fff8a3f9faf  libBLAS.dylib (??? - ???) <D62D6A48-5C7A-3ED6-875D-AA3C2C5BF791> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff8a3fa000 -     0x7fff8a411fff  com.apple.CFOpenDirectory (10.7 - 144) <9709423E-8484-3B26-AAE8-EF58D1B8FB3F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff8a412000 -     0x7fff8a42fff7  libxpc.dylib (77.16.0 - compatibility 1.0.0) <0A4B4775-29A9-30D6-956B-3BE1DBF98090> /usr/lib/system/libxpc.dylib
        0x7fff8a430000 -     0x7fff8a492ff7  com.apple.coreui (0.3 - 162) <A752F9D0-1CAE-340F-B2D2-95EEF242B301> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff8a4bb000 -     0x7fff8a4bbfff  com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <4CC14F7C-BCA7-3CAC-BEC9-B06576E5A15B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff8a4bc000 -     0x7fff8a4d9ff7  com.apple.openscripting (1.3.3 - ???) <A64205E6-D3C5-3E12-B1A0-72243151AF7D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff8a4da000 -     0x7fff8a4dbfff  libDiagnosticMessagesClient.dylib (??? - ???) <3DCF577B-F126-302B-BCE2-4DB9A95B8598> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff8a4ec000 -     0x7fff8a534fff  com.apple.framework.CoreWLAN (2.0 - 200.46) <04AFD988-DDFB-330D-B042-C1EB2826A0CC> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff8a535000 -     0x7fff8a637ff7  com.apple.PubSub (1.0.5 - 65.28) <D971543B-C9BE-3C58-8453-B3C69E2D2A6F> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
        0x7fff8a638000 -     0x7fff8a71ffff  com.apple.backup.framework (1.3 - 1.3) <C7F0B3B6-EAC1-3445-A705-E9F18A45D01D> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff8a720000 -     0x7fff8a72aff7  liblaunch.dylib (392.18.0 - compatibility 1.0.0) <39EF04F2-7F0C-3435-B785-BF283727FFBD> /usr/lib/system/liblaunch.dylib
        0x7fff8a72b000 -     0x7fff8a734fff  libnotify.dylib (80.0.0 - compatibility 1.0.0) <BD08553D-8088-38A8-8007-CF5C0B8F0404> /usr/lib/system/libnotify.dylib
        0x7fff8a735000 -     0x7fff8a73bfff  com.apple.DiskArbitration (2.4 - 2.4) <5185FEA6-92CA-3CAA-8442-BD71DBC64AFD> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff8a73c000 -     0x7fff8a73dfff  libsystem_sandbox.dylib (??? - ???) <8D14139B-B671-35F4-9E5A-023B4C523C38> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff8a73e000 -     0x7fff8a73efff  com.apple.ApplicationServices (41 - 41) <03F3FA8F-8D2A-3AB6-A8E3-40B001116339> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff8a73f000 -     0x7fff8a742fff  com.apple.AppleSystemInfo (1.0 - 1) <598ADC13-C994-3579-A885-0D6658DDD564> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff8a775000 -     0x7fff8a77afff  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <98ECD5F6-E85C-32A5-98CD-8911230CB66A> /usr/lib/system/libcompiler_rt.dylib
        0x7fff8a77b000 -     0x7fff8a7c6fff  com.apple.SystemConfiguration (1.11 - 1.11) <0B02FEC4-C36E-32CB-8004-2214B6793AE8> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff8a7c7000 -     0x7fff8ab14ff7  com.apple.FinderKit (1.0 - 1) <906BCBF7-CBE6-36D2-A183-4980E73CA5EF> /System/Library/PrivateFrameworks/FinderKit.framework/Versions/A/FinderKit
        0x7fff8ab15000 -     0x7fff8ab19fff  libCGXType.A.dylib (600.0.0 - compatibility 64.0.0) <5EEAD17D-006C-3855-8093-C7A4A97EE0D0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff8ab1a000 -     0x7fff8ab2ffff  com.apple.FileSync.framework (6.0 - 432) <7DF40003-7A8A-3C42-AC26-FCA0A0DFEE17> /System/Library/PrivateFrameworks/FileSync.framework/Versions/A/FileSync
        0x7fff8ab30000 -     0x7fff8ab38fff  libsystem_dnssd.dylib (??? - ???) <7749128E-D0C5-3832-861C-BC9913F774FA> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff8ab39000 -     0x7fff8ab78fff  com.apple.AE (527.6 - 527.6) <6F8DF9EF-3250-3B7F-8841-FCAD8E323954> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff8ab79000 -     0x7fff8ab7bfff  libCVMSPluginSupport.dylib (??? - ???) <2D21E6BE-CB20-3F76-8DCC-1CB0660A8A5B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff8ab7c000 -     0x7fff8abb7fff  com.apple.LDAPFramework (3.0 - 120.1) <0C23534F-A8E7-3144-B2B2-50F9875101E2> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff8abb8000 -     0x7fff8abd8fff  libsystem_kernel.dylib (1699.22.73 - compatibility 1.0.0) <69F2F501-72D8-3B3B-8357-F4418B3E1348> /usr/lib/system/libsystem_kernel.dylib
        0x7fff8abd9000 -     0x7fff8ac1afff  com.apple.QD (3.12 - ???) <4F3C5629-97C7-3E55-AF3C-ACC524929DA2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff8ac1b000 -     0x7fff8ad74ff7  com.apple.audio.toolbox.AudioToolbox (1.7 - 1.7) <296F10D0-A871-39C1-B8B2-9200AB12B5AF> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff8ad75000 -     0x7fff8ada2fe7  libSystem.B.dylib (159.0.0 - compatibility 1.0.0) <7B4D685D-939C-3ABE-8780-77A1889E0DE9> /usr/lib/libSystem.B.dylib
        0x7fff8add2000 -     0x7fff8ade0fff  com.apple.NetAuth (1.0 - 3.0) <F384FFFD-70F6-3B1C-A886-F5B446E456E7> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff8ae12000 -     0x7fff8b01ffff  com.apple.JavaScriptCore (7534 - 7534.48) <99B60407-592A-3DDC-A3D0-86578B92B3F8> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff8b02c000 -     0x7fff8b039fff  libCSync.A.dylib (600.0.0 - compatibility 64.0.0) <931F40EB-CA75-3A90-AC97-4DB8E210BC76> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff8b040000 -     0x7fff8b092ff7  libGLU.dylib (??? - ???) <C3CE8BA0-470F-3BCE-B17C-A31E70E035F2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff8b093000 -     0x7fff8b097fff  libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <FF83AFF7-42B2-306E-90AF-D539C51A4542> /usr/lib/system/libmathCommon.A.dylib
        0x7fff8b098000 -     0x7fff8b09aff7  com.apple.print.framework.Print (7.0 - 247) <579D7E49-A7F4-3C41-9434-3114B8A9B96C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff8b0e8000 -     0x7fff8b0f4fff  com.apple.CrashReporterSupport (10.7 - 343) <89EFF4A7-D064-3CAE-9BFC-285EE9033197> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff8b0f5000 -     0x7fff8b0f6ff7  libremovefile.dylib (21.0.0 - compatibility 1.0.0) <C6C49FB7-1892-32E4-86B5-25AD165131AA> /usr/lib/system/libremovefile.dylib
        0x7fff8b0f7000 -     0x7fff8b14bff7  com.apple.ImageCaptureCore (3.0 - 3.0) <C829E6A3-3EB6-3E1C-B9B8-759F56E34D3A> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff8b14c000 -     0x7fff8b19aff7  libauto.dylib (??? - ???) <F0004B88-CA01-37D0-A77F-6651C4EC7D8E> /usr/lib/libauto.dylib
        0x7fff8b19b000 -     0x7fff8b19cfff  com.apple.MonitorPanelFramework (1.4.0 - 1.4.0) <0F55CD76-DB24-309B-BD12-62B00C1AAB9F> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
        0x7fff8b19d000 -     0x7fff8b1d7fff  com.apple.DebugSymbols (2.1 - 85) <AEF473A5-25BF-3FB7-9A07-320D9CB85959> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff8b1f1000 -     0x7fff8b275ff7  com.apple.ApplicationServices.ATS (5.0 - ???) <F10B1918-A06E-3ECF-85EF-05F0CF27187E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff8b276000 -     0x7fff8b2affe7  libssl.0.9.8.dylib (0.9.8 - compatibility 0.9.8) <D634E4B6-672F-3F68-8B6F-C5028151A5B4> /usr/lib/libssl.0.9.8.dylib
        0x7fff8b2b0000 -     0x7fff8b326fff  com.apple.ISSupport (1.9.8 - 56) <2CEE7E6B-D841-36D8-BC9F-081B33F6E501> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
        0x7fff8b327000 -     0x7fff8b33cfff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <C061ECBB-7061-3A43-8A18-90633F943295> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff8b33d000 -     0x7fff8b348fff  com.apple.DisplayServicesFW (2.5.0 - 302.1.2) <36377733-C737-3F36-A601-85D6188A2AAA> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff8b349000 -     0x7fff8b350fff  libCGXCoreImage.A.dylib (600.0.0 - compatibility 64.0.0) <40374018-2832-3144-8114-CED417321C76> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
        0x7fff8b35a000 -     0x7fff8b35afff  com.apple.Cocoa (6.6 - ???) <021D4214-9C23-3CD8-AFB2-F331697A4508> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff8b35f000 -     0x7fff8b806ff7  FaceCoreLight (1.4.2 - compatibility 1.0.0) <6F89E9A9-DEB6-32B5-8B50-3B97F5DB597D> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
        0x7fff8b807000 -     0x7fff8b81dff7  com.apple.ImageCapture (7.0 - 7.0) <69E6E2E1-777E-332E-8BCF-4F0611517DD0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff8b81e000 -     0x7fff8b9dffe7  com.apple.CoreData (103 - 358.4) <8D8ABA2E-0161-334D-A7C9-79E5297E188B> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff8b9e0000 -     0x7fff8ba34ff7  com.apple.ScalableUserInterface (1.0 - 1) <1873D7BE-2272-31A1-8F85-F70C4D706B3B> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
        0x7fff8ba35000 -     0x7fff8bad7ff7  com.apple.securityfoundation (5.0 - 55005) <0D59908C-A61B-389E-AF37-741ACBBA6A94> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff8bb1e000 -     0x7fff8bf39fff  com.apple.SceneKit (2.0 - 124) <9E331DDE-BDF4-34C5-A8F9-E7F12ADBB785> /System/Library/PrivateFrameworks/SceneKit.framework/Versions/A/SceneKit
        0x7fff8bfc8000 -     0x7fff8c3e3ff7  com.apple.RawCamera.bundle (3.7.2 - 573) <FF8D349E-E8DF-3D12-91E9-BA00C13D5359> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff8c3e4000 -     0x7fff8c424fff  libtidy.A.dylib (??? - ???) <E500CDB9-C010-3B1A-B995-774EE64F39BE> /usr/lib/libtidy.A.dylib
        0x7fff8c425000 -     0x7fff8c48ffff  com.apple.framework.IOKit (2.0 - ???) <F79E7690-EF97-3D04-BA22-177E256803AF> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff8c49e000 -     0x7fff8c4a4fff  libGFXShared.dylib (??? - ???) <DE6987C5-81AC-3AE6-84F0-138C9636D412> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff8c4a5000 -     0x7fff8c5b1fef  libcrypto.0.9.8.dylib (0.9.8 - compatibility 0.9.8) <3AD29F8D-E3BC-3F49-A438-2C8AAB71DC99> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff8c5fb000 -     0x7fff8c914ff7  com.apple.AddressBook.framework (6.0 - 1043) <A6302279-FD1B-3BB7-8419-362425FC5568> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
        0x7fff8c915000 -     0x7fff8d60efef  com.apple.WebCore (7534 - 7534.48.3) <7C5A681C-3749-382C-9551-C197EF878C22> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff8d60f000 -     0x7fff8d612ff7  com.apple.securityhi (4.0 - 1) <B37B8946-BBD4-36C1-ABC6-18EDBC573F03> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff8d628000 -     0x7fff8d706ff7  com.apple.ImageIO.framework (3.1.0 - 3.1.0) <70228E69-063C-32FF-BBE7-FCCD9C5C0864> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
        0x7fff8d707000 -     0x7fff8d9defff  com.apple.security (7.0 - 55010) <2418B583-D3BD-3BC5-8B07-8289C8A5B43B> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff8d9df000 -     0x7fff8da71fff  com.apple.PDFKit (2.6 - 2.6) <F838E95F-DEE9-354A-A34A-F5335D0AF1E1> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff8da72000 -     0x7fff8da72fff  com.apple.CoreServices (53 - 53) <5946A0A6-393D-3087-86A0-4FFF6A305CC0> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff8da7f000 -     0x7fff8db7bff7  com.apple.avfoundation (2.0 - 180.23) <C4383696-561D-33F3-AD7C-51E672F580B2> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
        0x7fff8db7c000 -     0x7fff8db7dfff  libunc.dylib (24.0.0 - compatibility 1.0.0) <C67B3B14-866C-314F-87FF-8025BEC2CAAC> /usr/lib/system/libunc.dylib
        0x7fff8db7e000 -     0x7fff8dbecfff  com.apple.CoreSymbolication (2.1 - 66) <E1582596-4157-3535-BF1F-3BAE92A0B09F> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff8dbed000 -     0x7fff8dc51fff  com.apple.Symbolication (1.2 - 83.1) <0C6F8907-6829-3409-99AC-ACC62923DE98> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff8de29000 -     0x7fff8de5efff  com.apple.securityinterface (5.0 - 55004) <790DDF7E-6BA9-36DD-B818-2322A712E1F5> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff8de5f000 -     0x7fff8de65fff  IOSurface (??? - ???) <06FA3FDD-E6D5-391F-B60D-E98B169DAB1B> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff8deb0000 -     0x7fff8debdff7  libbz2.1.0.dylib (1.0.5 - compatibility 1.0.0) <8EDE3492-D916-37B2-A066-3E0F054411FD> /usr/lib/libbz2.1.0.dylib
        0x7fff8debe000 -     0x7fff8ded8fff  com.apple.CoreMediaAuthoring (2.0 - 889) <99D8E4C6-DDD3-3B0C-BBFB-A513877F10F6> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
        0x7fff8ded9000 -     0x7fff8deddfff  libdyld.dylib (195.5.0 - compatibility 1.0.0) <F1903B7A-D3FF-3390-909A-B24E09BAD1A5> /usr/lib/system/libdyld.dylib
        0x7fff8dede000 -     0x7fff8df06ff7  com.apple.CoreVideo (1.7 - 70.0) <59D5B407-CCB6-3406-8C55-C1B0168D7DC2> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff8df07000 -     0x7fff8df5efff  libTIFF.dylib (??? - ???) <9E32B490-4C5B-3D96-AF27-9C085C606403> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff8dfbc000 -     0x7fff8e083ff7  com.apple.ColorSync (4.7.0 - 4.7.0) <A29897D7-4B63-3BBB-B66C-710BE9CC01D8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff8e12c000 -     0x7fff8e12efff  com.apple.TrustEvaluationAgent (2.0 - 1) <80AFB5D8-5CC4-3A38-83B9-A7DF5820031A> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff8e12f000 -     0x7fff8e140ff7  SyndicationUI (??? - ???) <2611F56F-81A9-3457-8C87-2700BFD9D4CB> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
        0x7fff8e141000 -     0x7fff8e17ffff  com.apple.bom (11.0 - 183) <841FA160-A37A-368D-B14E-27AA9DD1AEDA> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff8e180000 -     0x7fff8e60afff  com.apple.Safari.framework (7534 - 7534.48.3) <287305A0-D3A2-3D28-8B46-41548687741B> /System/Library/PrivateFrameworks/Safari.framework/Versions/A/Safari
        0x7fff8e60b000 -     0x7fff8e62afff  libresolv.9.dylib (46.0.0 - compatibility 1.0.0) <33263568-E6F3-359C-A4FA-66AD1300F7D4> /usr/lib/libresolv.9.dylib
        0x7fff8e62b000 -     0x7fff8e62bfff  com.apple.Accelerate (1.7 - Accelerate 1.7) <3E4582EB-CFEF-34EA-9DA8-8421F1C3C77D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff8e62c000 -     0x7fff8e633fff  com.apple.NetFS (4.0 - 4.0) <B9F41443-679A-31AD-B0EB-36557DAF782B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff8e634000 -     0x7fff8e639ff7  libsystem_network.dylib (??? - ???) <4ABCEEF3-A3F9-3E06-9682-CE00F17138B7> /usr/lib/system/libsystem_network.dylib
        0x7fff8e63a000 -     0x7fff8e667fff  com.apple.quartzfilters (1.7.0 - 1.7.0) <ED846829-EBF1-3E2F-9EA6-D8743E5A4784> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff8e668000 -     0x7fff8e66afff  libquarantine.dylib (36.0.0 - compatibility 1.0.0) <4C3BFBC7-E592-3939-B376-1C2E2D7C5389> /usr/lib/system/libquarantine.dylib
        0x7fff8e66f000 -     0x7fff8e74cfef  libsystem_c.dylib (763.11.0 - compatibility 1.0.0) <1D61CA57-3C6D-30F7-89CB-CC6F0787B1DC> /usr/lib/system/libsystem_c.dylib
        0x7fff8e74d000 -     0x7fff8e760ff7  libCRFSuite.dylib (??? - ???) <034D4DAA-63F0-35E4-BCEF-338DD7A453DD> /usr/lib/libCRFSuite.dylib
        0x7fff8ea18000 -     0x7fff8ea18fff  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <61EFED6A-A407-301E-B454-CD18314F0075> /usr/lib/system/libkeymgr.dylib
        0x7fff8ea9b000 -     0x7fff8eaa9ff7  com.apple.AppleFSCompression (37 - 1.0) <88C436E8-38AE-3D96-A8C8-2D1805CC47B7> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
        0x7fff8eae0000 -     0x7fff8eae0fff  com.apple.audio.units.AudioUnit (1.7 - 1.7) <D75971EE-0D74-365A-8E52-46558EA49E87> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff8eae1000 -     0x7fff8eb28ff7  com.apple.CoreMedia (1.0 - 705.35) <6BEC7E0A-BC2E-30DA-8E18-7AF6E8A7821F> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff8eb29000 -     0x7fff8eb52ff7  com.apple.framework.Apple80211 (7.0 - 700.57) <0D7D7E08-377B-32F0-AD91-673F992B5CFF> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff8eb53000 -     0x7fff8eb56fff  libRadiance.dylib (??? - ???) <DCDA308D-4856-3631-B6D7-7A8B94169BC0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
        0x7fff8ebe8000 -     0x7fff8ebedfff  libcache.dylib (47.0.0 - compatibility 1.0.0) <B7757E2E-5A7D-362E-AB71-785FE79E1527> /usr/lib/system/libcache.dylib
        0x7fff8ebee000 -     0x7fff8ec21fff  com.apple.GSS (2.1 - 2.0) <A150154E-40D3-345B-A92D-3A023A55AC52> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff8ec22000 -     0x7fff8ec52fff  com.apple.shortcut (2.0 - 2.0) <6E6C9F01-5DAC-35F4-876D-082D915EE782> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
        0x7fff8ec53000 -     0x7fff8ec6afff  com.apple.MultitouchSupport.framework (220.62 - 220.62) <7EF58A7E-CB97-335F-A025-4A0F00AEF896> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff8ec6b000 -     0x7fff8ecfdfff  com.apple.CorePDF (3.0 - 3.0) <6056B710-155A-3543-9373-B9F3E5FC99CE> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff8ed7b000 -     0x7fff8f08dfff  com.apple.Foundation (6.7 - 833.1) <618D7923-3519-3C53-9CBD-CF3C7130CB32> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff8f0f0000 -     0x7fff8f160fff  com.apple.datadetectorscore (3.0 - 179.3) <AFFBD606-91DE-3F91-8E38-C037D9FBFA8B> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff8f1a5000 -     0x7fff8f2b2fff  libJP2.dylib (??? - ???) <D8257CEE-A1C3-394A-8193-6DB7C29A15A8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff8f2d2000 -     0x7fff8f2f5ff7  com.apple.RemoteViewServices (1.0 - 1) <EB549657-8EDC-312A-B8BE-DEC3E160AC3D> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff8f2f6000 -     0x7fff8f60ffff  com.apple.CoreServices.CarbonCore (960.13 - 960.13) <398ABDD7-BB95-3C05-96D2-B54243FC4745> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff8f610000 -     0x7fff8fda4fff  com.apple.CoreAUC (6.11.03 - 6.11.03) <5A56B2DC-A0A6-357B-ADF2-5714AFEBD926> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff8fda5000 -     0x7fff8fde7ff7  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <A5B9778E-11C3-3F61-B740-1F2114E967FB> /usr/lib/system/libcommonCrypto.dylib
        0x7fff8fe45000 -     0x7fff8fec0ff7  com.apple.print.framework.PrintCore (7.0 - 366) <E663DF78-6729-332D-B763-ABB63A6BBB55> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff8fec1000 -     0x7fff90132fff  com.apple.CoreImage (7.77 - 1.0.1) <AB6ECCF3-4B04-3363-9158-08F305BF15FA> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff90133000 -     0x7fff90139ff7  com.apple.phonenumbers (1.0 - 47) <8CE13253-C65B-392F-B87F-D85A15D500D3> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
        0x7fff9013a000 -     0x7fff90148fff  com.apple.HelpData (2.1.0 - 68) <A2C4DDC9-2ECB-37C0-A2E3-D01168EE31F7> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
        0x7fff901fb000 -     0x7fff90280ff7  com.apple.Heimdal (2.1 - 2.0) <E4CD970F-8DE8-31E4-9FC0-BDC97EB924D5> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff90281000 -     0x7fff90295ff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <04C31EF0-912A-3004-A08F-CEC27030E0B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff90296000 -     0x7fff902b3fff  com.apple.frameworks.preferencepanes (15.0 - 15.0) <CC86755A-6CF1-3DDF-A1B0-6F7F5BD7BB39> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
        0x7fff902b4000 -     0x7fff902dffff  libpcre.0.dylib (1.1.0 - compatibility 1.0.0) <7D3CDB0A-840F-3856-8F84-B4A50E66431B> /usr/lib/libpcre.0.dylib
        0x7fff902e0000 -     0x7fff902fcfff  com.apple.ScriptingBridge (1.2.1 - ???) <7DCC43F7-9F5A-388D-A00D-70E2618731BA> /System/Library/Frameworks/ScriptingBridge.framework/Versions/A/ScriptingBridge
        0x7fff902fd000 -     0x7fff902fdfff  com.apple.vecLib (3.7 - vecLib 3.7) <29927F20-262F-379C-9108-68A6C69A03D0> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff902fe000 -     0x7fff90365ff7  com.apple.audio.CoreAudio (4.0.0 - 4.0.0) <0B715012-C8E8-386D-9C6C-90F72AE62A2F> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff90366000 -     0x7fff90a349df  com.apple.CoreGraphics (1.600.0 - ???) <B3C42497-53F5-31BB-987E-D1E76746B0E4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff90a3b000 -     0x7fff90a3cfff  liblangid.dylib (??? - ???) <CACBE3C3-2F7B-3EED-B50E-EDB73F473B77> /usr/lib/liblangid.dylib
        0x7fff90bef000 -     0x7fff90beffff  com.apple.Carbon (153 - 153) <895C2BF2-1666-3A59-A669-311B1F4F368B> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff90bf0000 -     0x7fff90c0dfff  libPng.dylib (??? - ???) <75DA9F95-C2A1-3534-9F8B-14CFFDE2A290> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff90c0e000 -     0x7fff90c20ff7  libsasl2.2.dylib (3.15.0 - compatibility 3.0.0) <6245B497-784B-355C-98EF-2DC6B45BF05C> /usr/lib/libsasl2.2.dylib
        0x7fff90c21000 -     0x7fff90c50fff  com.apple.DictionaryServices (1.2 - 158) <2CE51CD1-EE3D-3618-9507-E39A09C9BB8D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff90c51000 -     0x7fff90cf0fff  com.apple.LaunchServices (480.19 - 480.19) <41ED4C8B-C74B-34EA-A9BF-34DBA5F52307> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff90cf1000 -     0x7fff90cfcff7  com.apple.speech.recognition.framework (4.0.19 - 4.0.19) <7ADAAF5B-1D78-32F2-9FFF-D2E3FBB41C2B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff90d71000 -     0x7fff90e74fff  libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <ED5E84C6-646D-3B70-81D6-7AF957BEB217> /usr/lib/libsqlite3.dylib
        0x7fff90e75000 -     0x7fff90f73ff7  com.apple.QuickLookUIFramework (3.0 - 489.1) <A8A82434-D43D-3F12-9321-B2E8EC9B4B8E> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff90f74000 -     0x7fff90f79fff  libpam.2.dylib (3.0.0 - compatibility 3.0.0) <D952F17B-200A-3A23-B9B2-7C1F7AC19189> /usr/lib/libpam.2.dylib
        0x7fff90f9a000 -     0x7fff9109cff7  libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <D46F371D-6422-31B7-BCE0-D80713069E0E> /usr/lib/libxml2.2.dylib
        0x7fff9109d000 -     0x7fff910a4fff  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <172B1985-F24A-34E9-8D8B-A2403C9A0399> /usr/lib/system/libcopyfile.dylib
        0x7fff910a5000 -     0x7fff910abfff  libmacho.dylib (800.0.0 - compatibility 1.0.0) <D86F63EC-D2BD-32E0-8955-08B5EAFAD2CC> /usr/lib/system/libmacho.dylib
        0x7fff910d4000 -     0x7fff910e2fff  libdispatch.dylib (187.5.0 - compatibility 1.0.0) <698F8EFB-7075-3111-94E3-891156C88172> /usr/lib/system/libdispatch.dylib
        0x7fff910e3000 -     0x7fff91282fff  com.apple.QuartzCore (1.7 - 269.0) <E0AFC745-4AC5-36E3-9827-E5344721071D> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff91283000 -     0x7fff914fdff7  com.apple.imageKit (2.1 - 1.0) <03200568-184B-36E8-AFE9-04D1FACDC926> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff914fe000 -     0x7fff915b0fff  com.apple.CoreText (4.0.0 - ???) <D7BD85FD-277A-3A97-B1AD-5EE14215237E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
        0x7fff915b1000 -     0x7fff915c7fff  libGL.dylib (??? - ???) <22064411-0A62-373C-828B-0AA2BA2A8D34> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff915c8000 -     0x7fff919f5fff  libLAPACK.dylib (??? - ???) <4F2E1055-2207-340B-BB45-E4F16171EE0D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff919f6000 -     0x7fff919f7fff  libffi.dylib (??? - ???) <DB96CC4B-0D38-3102-80AA-91DDE9AF3886> /usr/lib/libffi.dylib
        0x7fff92047000 -     0x7fff9204eff7  com.apple.CommerceCore (1.0 - 17) <AA783B87-48D4-3CA6-8FF6-0316396022F4> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff9204f000 -     0x7fff92050ff7  libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) <8BCA214A-8992-34B2-A8B9-B74DEACA1869> /usr/lib/system/libsystem_blocks.dylib
        0x7fff9222f000 -     0x7fff92234fff  com.apple.OpenDirectory (10.7 - 144) <E8AACF47-C423-3DCE-98F6-A811612B1B46> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff92235000 -     0x7fff92667fe7  com.apple.VideoToolbox (1.0 - 705.35) <B1B9F159-EEE2-38BB-A55E-CDB335A7A226> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
        0x7fff92668000 -     0x7fff9277dfff  com.apple.DesktopServices (1.6.0 - 1.6.0) <208D40FC-8BBE-330F-B999-18771BEA6895> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff927c5000 -     0x7fff927ecfff  com.apple.PerformanceAnalysis (1.10 - 10) <2A058167-292E-3C3A-B1F8-49813336E068> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff927ed000 -     0x7fff92829fff  libsystem_info.dylib (??? - ???) <BC49C624-1DA

  • When I plug in my iPhone to my iMac my computer flashes a box that says my USB device is drawing too much power from my computer and claims one or more of my devices have been disabled.  Then it will not sync my iPhone.  Any solution ideas?

    When I plug in my iPhone to my iMac my computer flashes a box that says my USB device is drawing too much power from my computer and claims one or more of my devices have been disabled.  Then it will not sync my iPhone 5.  Any solution ideas?

    Try unplugging any other USB devices. If you are using a hub, don't, connect the phone directly to a computer USB port.
    None of these are necessarily things you should do, but might help. For instance, if you plug the phone to an already busy hub, the phone might be "the straw that broke the camel's back" and lock out the hub.

  • Hi. I lost my IPad. I left it on a plane. What can be done to locate it and / or remove my information from it  and / or disable it. Thanks

    Hi. I lost my IPad. I left it on a plane. What can be done to locate it and / or remove my information from it  and / or disable it. Thanks
    Thanks

    These links may be helpful.
    How to Track and Report Stolen iPad
    http://www.ipadastic.com/tutorials/how-to-track-and-report-stolen-ipad
    Reporting a lost or stolen Apple product
    http://support.apple.com/kb/ht2526
    Report Stolen iPad Tips and iPad Theft Prevention
    http://www.stolen-property.com/report-stolen-ipad.php
    How to Find a Stolen iPad
    http://www.ehow.com/how_7586429_stolen-ipad.html
    Oops! iForgot My New iPad On the Plane; Now What?
    http://online.wsj.com/article/SB10001424052702303459004577362194012634000.html
     Cheers, Tom

  • Porting an InDesign Plugin from InDesign CC to InDesign CC 2014 the plugin complies successfully with the InDesign CC 2014 SDK but at run time presents this error and is disabled. Does anyone know what might be the issue?

    Porting an InDesign Plugin from InDesign CC to InDesign CC 2014 the plugin complies successfully with the InDesign CC 2014 SDK but at run time presents this error and is disabled. Does anyone know what might be the issue?
    Run TimeError Message Presented when InDesign CC 2014 runs:
    Adobe InDesign cannot load the FastFractions.InDesignPlugin plug-in. The FastFractions.InDesignPlugin plug-in requires the 9.0 version of InDesign. Please contact the vendor to get a compatible version of FastFractions.InDesignPlugin.
    Show this alert again?

    As already told this means that the plugin has not been ported correctly. Some part of it for ex InDesign libraries or frameworks are being referenced from the CC sdk instead of the CC2014 sdk. To troubleshoot it i would advise you to rename the folder containing the CC sdk on your machine and then compile the project, it will fail to compile and you will get to know straightaway what aspects of the ported project are still accessing the old sdk. Fix the errors and your plugin will load fine.
    Thanks,
    Manan

  • Lost all of my outlook groups, music and photos from my PC and iphone and Ipad2 when snycing up...Had to mannually reconfigure Outlook contacts - then deleted Iclound from everything - from other comments there are some bugs here and would warn others wh

    Lost email groups from outlook, photos and music from Iphone four and Ipad2 when snycing to Icloud.  Had to reconfgure Outlook Manually and then deleted Icloud. A warning to others that there are some bugs here or else it is not being exdplained properly to end users

    or... put your photos in "My Pictures" in My Documents, and viola, itunes syncs it to the iphone. only one sentence needed =/
    maybe im missing your point here, the long paragraph is mindboggling

  • Hello, I purchased design premium 4.0 German Windows  (LIZ 390232 from 22.02.2010) from my friend and wanted to installation it. However, the key code does not work. He has the PC is no longer, so he can not  disable the product key. He loaded it, but onl

    Hello, I purchased design premium 4.0 German Windows  (LIZ 390232 from 22.02.2010) from my friend and wanted to installation it. However, the key code does not work. He has the PC is no longer, so he can not  disable the product key. He loaded it, but only in Englisch (trial version?) Please help me for the next step. I have the license agreement in my hand.

    Moving this discussion to the Downloading, Installing, Setting Up forum.
    Jakobh53157856 before you begin the installation process please complete the transfer of license process to transfer the Adobe Creative software license you wish to utilize to your possession,  You can find details regarding the transfer process at Transfer an Adobe product license.

  • TS2446 hi my apple id has been disable, as i has purchased more than 1000$ from app store and i have to update my apps and also i have planning to purchased more apps i will be appreciate if you activate my apple id. i am impatiently waiting for new iphon

    hi
    my apple id has been disable,
    as i has purchased more than 1000$ from app store and i have to update my apps and also i have planning to purchased more apps i will be appreciate if you activate my apple id.
    i am impatiently waiting for new iphone.
    i hope to buy many apps with this apple id and enjoy  them
    Viva Apple

    These are user-to-user forums, you are not talking to Apple here.
    Depending on why it's been disabled, you might be able to re-enable it via this page : http://appleid.apple.com
    Or you might need to contact Apple : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page

  • My ipod 4th gen i got from a friend is permently disabled and when i try to connect it to itunes and restore it it does it for a few minuites then thee ipod goes off that screen and turns on by itself and ive already done this a few time help please??

    my ipod 4th gen which i got from a friend is permanently disabled and when i try to restore it, it starts to restore it then my ipod goes off the "connect to itunes" screen and turns on by itself and doesnt restore i need to know how to fix this problem??
    does anyone have any solutions?

    Try:                                               
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - Try another cable       
    - Try on another computer                            
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
      Apple Retail Store - Genius Bar                              

  • Deadlocks with ALTER TABLE DISABLE CONSTRAINT

    Hello,
    We're deleting millions of redundant rows from a particular table in our live 10g database. This is being done online because the downtime would be unacceptable. The table in question has 30 child tables, so for speed I am disabling the foreign keys using ALTER TABLE DISABLE CONSTRAINT before the deletion (we haven't had any constraint violations for ages). Without this, deletion takes about 1 second per row i.e. a very long time.
    However, we're finding that ALTER TABLE DISABLE CONSTRAINT often reports ORA-00060: deadlock detected. This is causing problems with the live system. Can anyone think of the reason why a deadlock might occur in this situation and what we could do to prevent it happening? Note that any solution has to be doable without downtime unless it takes less than 30 minutes.
    Thanks a lot
    Ed
    Edited by: edwiles on Feb 4, 2009 6:02 AM

    look suggestions in the similar thread:
    Re: Deadlock when deleting a not linked data record in a parent table

  • Disabling constraints on a schema

    Guys and Gurus
    In Oracle 10g, is it possible to temporarily disable all constraints on a particular schema with the view of reenabling them at a later date?
    This would save time in a particularly massive schema.
    Many Thanks
    Message was edited by:
    The Flaz

    I use this script to disable constraints in a schema, might be an easier way not sure tbh.
    PROMPT Please wait while constraints are disabled...
    DECLARE
    l_SQLstatement VARCHAR2(32000);
    CURSOR c_DisableConstraints IS
    SELECT 'alter table '||table_name||' disable constraint '||constraint_name||' cascade' sqlstatement
    FROM USER_CONSTRAINTS;
    BEGIN
    FOR r_DisableConstraints IN c_DisableConstraints LOOP
    l_SQLstatement := r_DisableConstraints.sqlstatement;
    EXECUTE IMMEDIATE (l_SQLstatement);
    END LOOP;
    END;
    /

Maybe you are looking for

  • How much is it to get my iPad 2 screen repaired here at Apple

    How expensive is it and how long would it take?

  • Can't Uninstall Media Center II

    Ok, so I can't make the remote work, and the program closes randomly with different errors, now when i try to uninstall, gives me a "MSIDrvIF.dll error" window pop up. I tried booting in safe mode, but still got same answer. Any help wil be appreciat

  • Attachment According to sales area

    Hi Experts, Can anyone please tell me how can we configure to get the costomer attachments according to sales area of the customer. Thanks.

  • Business partner "ID" does not exist in role Sold-To Party

    Hello everybody! We have already set up a Group in CRM, but when we use the "Relationships" Assignment Block    and click to "New" button and add a Relationship and a Partner we get the error "Business partner "ID" does not exist in role Sold-To Part

  • Crosstab query is it possible in BEX?

    Hi I am working with the Marketing attributes ODS 0ATR_DS01 and I want a query that has the partner in rows with the attribute name in columns showing the attribute values i.e. a crosstab query. I've been playing with BEx trying to create a crosstab