Breaks when clicking on names in a ListView

So as the title suggests, I am having trouble when I select an item in a list view. If I click on the name of the item in the list, the program will break giving the following error/reason: 
An unhandled exception of type 'System.InvalidCastException' occurred in PresentationFramework.dll
Additional information: Unable to cast object of type 'System.Windows.Controls.ContentPresenter' to type 'System.Windows.Controls.Panel'.
If I click anywhere else on the line the item is on it will select the item just fine.
Another issue I am having is that when I try to check if the item is a directory after it is selected the program will break giving the following exception:
An unhandled exception of type 'System.NullReferenceException' occurred in Information.exe
Additional information: Object reference not set to an instance of an object.
Code:
private void ExploreDirectories2(TreeViewItem item)
var directoryInfo = (DirectoryInfo)null;
if (item.Tag is DriveInfo)
directoryInfo = ((DriveInfo)item.Tag).RootDirectory;
else if (item.Tag is DirectoryInfo)
directoryInfo = (DirectoryInfo)item.Tag;
else if (item.Tag is FileInfo)
directoryInfo = ((FileInfo)item.Tag).Directory;
if (object.ReferenceEquals(directoryInfo, null)) return;
try
foreach (var directory in directoryInfo.GetDirectories())
var isHidden = (directory.Attributes & FileAttributes.Hidden) == FileAttributes.Hidden;
var isSystem = (directory.Attributes & FileAttributes.System) == FileAttributes.System;
if (!isHidden && !isSystem)
expanded_directory.Items.Add(this.GetItem(directory));
catch (IOException)
verify1 = false;
private void ExploreFiles2(TreeViewItem item)
var directoryInfo = (DirectoryInfo)null;
if (item.Tag is DriveInfo)
directoryInfo = ((DriveInfo)item.Tag).RootDirectory;
else if (item.Tag is DirectoryInfo)
directoryInfo = (DirectoryInfo)item.Tag;
else if (item.Tag is FileInfo)
directoryInfo = ((FileInfo)item.Tag).Directory;
if (object.ReferenceEquals(directoryInfo, null)) return;
try
foreach (var file in directoryInfo.GetFiles())
var isHidden = (file.Attributes & FileAttributes.Hidden) == FileAttributes.Hidden;
var isSystem = (file.Attributes & FileAttributes.System) == FileAttributes.System;
if (!isHidden && !isSystem)
expanded_directory.Items.Add(this.GetItem(file));
catch (IOException)
verify2 = false;
private void directory_tree_SelectedItemChanged(object sender, RoutedPropertyChangedEventArgs<object> e)
expanded_directory.Items.Clear();
var tree = (TreeView)sender;
var selected = (TreeViewItem)tree.SelectedItem;
selected.BringIntoView();
ExploreDirectories2(selected);
ExploreFiles2(selected);
private void expanded_directory_SelectionChanged(object sender, SelectionChangedEventArgs e)
try
var list = (ListView)sender;
var selected = (TreeViewItem)list.SelectedItem;
if (selected.Tag is DirectoryInfo)
if (selected.IsExpanded)
list.SelectedIndex = -1;
catch(InvalidCastException)
private void expanded_directory_MouseDoubleClick(object sender, MouseButtonEventArgs e)
var list = (ListView)sender;
var item = (TreeViewItem)list.SelectedItem;
if (item.Tag is DirectoryInfo)
expanded_directory.Items.Clear();
ExploreDirectories2(item);
ExploreFiles2(item);
If you would like to view the entire program you can download it here:  
https://drive.google.com/file/d/0B2h5hXOyNkgfWjU4emlVNlo3ZWc/view?usp=sharing
If you do download it, you may need to comment out the if statement in expanded_directory_SelectionChanged function. That is the one that won't let me check if the item is a directory.
Let me know if you need anything!
Thanks,
Jesse

Please close your previous threads by marking helpful posts as answer before you start a new one.
You seem to adding TreeViewItems directly to a ListView without an ItemTemplate and this doesn't seem to work very well as the exception is thrown from the framework code and not your code.
Why don't you just replace the ListView with a TreeView in FileExplorer?
<TreeView x:Name="expanded_directory" HorizontalAlignment="Left" Height="521" Margin="155,28,0,0"
SelectedItemChanged="expanded_directory_SelectionChanged" MouseDoubleClick="expanded_directory_MouseDoubleClick"
VerticalAlignment="Top" Width="777" Background="#FF2D2D30" BorderBrush="#FF2D2D30" Foreground="#FF0066CC" FontFamily="Microsoft Sans Serif" FontWeight="Bold"/>
private void expanded_directory_MouseDoubleClick(object sender, MouseButtonEventArgs e)
var list = (TreeView)sender;
var item = (TreeViewItem)list.SelectedItem;
if (item.Tag is DirectoryInfo)
expanded_directory.Items.Clear();
ExploreDirectories2(item);
ExploreFiles2(item);
private void expanded_directory_SelectionChanged(object sender, RoutedPropertyChangedEventArgs<object> e)
try
var list = (TreeView)sender;
if (list != null)
var selected = (TreeViewItem)list.SelectedItem;
if (selected != null)
if (selected.Tag is DirectoryInfo)
if (selected.IsExpanded)
selected.IsSelected = false;
list.Focus();
catch (InvalidCastException)
That should solve the problem. You may have to make some additional slight modifications to your code other than the ones listed above but the key here is to replace the ListView with a TreeView.
Hope that helps.
Please remember to close your threads by marking helpful posts as answer and please start a new thread if you have a new question.

Similar Messages

  • When clicking on name in address book -the email address appears different in the email address bar and can't be sent -why?

    I have been using thunderbird for some years - in last month when I have been trying to send some emails I have a problem with some of them in that part of the email address has changed when I insert it ino the address bar and has inverted commas around the first part of the address before the @. I have tried deleting the addresses and re-inserting them but the same thing happens. If I go into the address bar and delete the commas the email is sent - can I overcome this problem without having to go into each email? I send out emails to many people and changing each one that has the problem takes a long time. Not every email address has this problem. Many thanks -Tim

    ok, I've spent some time doing various scenarios.
    I have managed to replicate one scenario which does as you say.
    If my contact in the address book:
    With name details as Peter Foo
    email address: [email protected]
    where there is an inserted space before the name peter, of course this is not instantly noticeable, but it is as if you hit the space bar just before typing the email address.
    Then when I use the Contacts Sidebar in a Write message, it will add the email address like this:
    Peter Foo <" peter"@somewhere.com>
    which of course in invalid.
    but in the address book, if highlight the contact, in the section below the email address in blue -if I click this to send an email the email address is printed exacly with the space and it will send as if nothing is wrong.
    So i'm asking you to check those email addresses which insert incorrectly via the Contacts sidebar. They only do this for me if there is a hidden inserted space at the start of the email address.

  • [BUG-Add to Cart] Causing javascripts to break when clicked

    I tried to use a jquery plugin for the shop but it kept breaking once "Add to Cart" was clicked. I tried deleting all JS & CSS code and just go with a plain html page but same error kept popping up.
    On Firefox i dont get any error message, but the same issue occurs.
    Any ideas?
    This is straight from the chrome console
    Refused to set unsafe header "Connection" prototype-core.ashx:579
    AjaxPro.Request.invokeprototype-core.ashx:579
    AjaxPro.AjaxClass.invokeprototype-core.ashx:690
    Object.extend.Object.extend.ServerSideAddItemToOrderCMS.CatalogueRetrieve,Catalyst.Web.CMS.ashx:6
    AddToCartJava_OnlineShopping.js?vs=b2364.r426701:1
    onclickitem-3:1
    The part chrome is complaining about in prototype-core.ashx:579
    if(!MS.Browser.isIE) {
      this.xmlHttp.setRequestHeader("Connection", "close"); // Mozilla Bug #246651

    Bump.

  • When visiting one particular site my user name is automatically entered when clicking in the required box. I want to prevent this, how?

    This site requires a user name to be filled in a specific box and in another box you have to enter a series of numbers generated by a number generator (so not a password - different series every time you log in).
    However I don't want my username to appear automatically in the first box. When trying to change this in the security settings (extra-options-security), there is a password section where you can choose exceptions to the rule of remembering (if the remember box is marked). When clicking this exceptions box, the url of the site I'm talking about is not shown and it cannot be entered either, since you can only remove here.
    When clicking the "saved passwords" option, neither the site nor the username is listed. I think I have read all the help sections in relation to usernames and passwords, but found no solution.
    How do I prevent this username (so only a username - not the combination usename/password), to appear in the box?

    Hi Elron,
    I believe you can do that using a Firefox Add-on named [https://addons.mozilla.org/en-US/firefox/addon/form-history-control/ Form History Control]. You can download it through that link.

  • JavaMail breaks when attachment names have spaces.

    Hi
    I am reading mail from gmail and wants to save attachment.
    Javamail breaks when i use either getDisposition or getFileName method when attachment name has a space.
    I know its against the spec but it is breaking my code.
    Is there any work around this.
    Regards
    Saurabh

    Hi
    I am reading a gmail account and files with attachments are send by customers and most of the time attachment name have spaces.
    I already set [props.setProperty("mail.mime.parameters.strict", "false");
            props.setProperty("mail.mime.encodeeol.strict", "false");
            props.setProperty("mail.mime.decodetext.strict", "false");]
    but it still gives this exception.
    javax.mail.internet.ParseException: Expected ';', got "Screen"
         at javax.mail.internet.ParameterList.<init>(ParameterList.java:280)
         at javax.mail.internet.ContentDisposition.<init>(ContentDisposition.java:96)
         at javax.mail.internet.MimeBodyPart.getDisposition(MimeBodyPart.java:1063)
    Regards
    Saurabh

  • When log In names are saved and all you have to do is click in the space to get a list of previous log in's. How do you get rid of those previous log in's?

    # Question
    When log In names are saved and all you have to do is click in the space to get a list of previous log in's. How do you get rid of those previous log in's?

    * http://kb.mozillazine.org/Deleting_autocomplete_entries
    Remove saved Password(s): Tools > Options > Security: Passwords: "Saved Passwords" > "Show Passwords"

  • Major bug in Safari 6: previous domain persists in URL bar when clicking a link

    I've noticed an extremely weird and significant bug in Safari 6 / Mountain Lion:
    When I'm navigating through a site, sometimes when clicking a link, Safari tries to open the corresponding URL on a previously visited site's domain instead of the current site.
    For example:
    First, I'm surfing on apple.com. Then, I navigate to another site, say estibot.com. On estibot.com, I click on a link that should take me to:
    http://www.estibot.com/tools.html
    Instead, safari takes me to http://www.apple.com/tools.html, which of course produces a 'not found' error. Nothing wrong with the link; this is purely Safari's doing.
    This happens often, and apparently can happen with any site.
    In other words, the domain name of a previously visited site persists in the URL, and the page that I'm trying to navigate to is added to the domain of the PREVIOUS site, not the actual site I'm using.
    This is a major bug and is often rendering Safari useless for my workflow. How could a bug like this end up in the finished product?
    Cheers
    Esa

    Having the same problem. It is randomly consistent, i.e. some links consistently get redirected to a specific domain. For example, I am experiencing this issue when using Basecamp and links being misdirected to a specific client's website. However, the criteria for why some links redirect and some do not appears random. This issue does not occur in Firefox. This leads me to believe that it is not a DNS issue. May be a Safari/DNS pair issue or solely a Safari issue. We do use an internal DNS (OS X Server) for browsing internal development wbsites which then rolls over to a public DNS. Again, this problem has never occured in Firefox and consistently occurs in Safari.
    Safari Version 6.0 (7536.25)
    Mac OS X Lion 10.7.4
    On a side note...
    Safari's strong-handed rewriting in the address bar as you type is crazy anoying. Or should I say "too helpful?" It seems to break the first rule of usuability: don't change the interface while the user is interacting with it.
    And the unified address/search is rediculously annoying for developers who use non-complient top level domains for internal development (such as .dev)
    And the new inspector seems like a huge step backwards in usuability. (debatable considering I'm probably not as advanced as some developers.)

  • How to put a page break when a value changes

    Hi there, I am very new to BI Publisher. I realize this is a really SIMPLE question, but I can't seem to find a CLEAR answer.
    I have a set of data that I have a repeating group for in my RTF template and it works great. But I want to have a page break each time one of the values changes and I cannot figure out how.
    here is the xml
    <?xml version="1.0" encoding="UTF-8" ?>
    <!-- Generated by Oracle Reports version 6.0.8.28.0 -->
    <PIR05>
    <LIST_G_ITEM_NO>
    <G_ITEM_NO>
    <PAGE_NO>0</PAGE_NO>
    <ITEM_NO>4242301</ITEM_NO>
    <ITEM_DESC1>13MM Aries Cell Assembly</ITEM_DESC1>
    <LOT_NO>123</LOT_NO>
    <LOT_DESC>4242301</LOT_DESC>
    <SUBLOT_NO />
    <LOCATION>2IRE</LOCATION>
    <GRADE_CODE>NONE</GRADE_CODE>
    <ITEM_UM>Each</ITEM_UM>
    <ITEM_UM2 />
    <LINE_NO>614</LINE_NO>
    <COUNT_NO>614</COUNT_NO>
    <P_ITEMUM2LABEL />
    <P_ITEMUM2DASH />
    <F_ITEMUM2>1</F_ITEMUM2>
    <P_CSITEMUM2_LABEL />
    <P_CSITEMUM2_DASH />
    </G_ITEM_NO>
    - <G_ITEM_NO>
    <PAGE_NO>0</PAGE_NO>
    <ITEM_NO>4242301</ITEM_NO>
    <ITEM_DESC1>13MM Aries Cell Assembly</ITEM_DESC1>
    <LOT_NO>1232</LOT_NO>
    <LOT_DESC>4242301</LOT_DESC>
    <SUBLOT_NO />
    <LOCATION>2IRE</LOCATION>
    <GRADE_CODE>NONE</GRADE_CODE>
    <ITEM_UM>Each</ITEM_UM>
    <ITEM_UM2 />
    <LINE_NO>615</LINE_NO>
    <COUNT_NO>615</COUNT_NO>
    <P_ITEMUM2LABEL />
    <P_ITEMUM2DASH />
    <F_ITEMUM2>1</F_ITEMUM2>
    <P_CSITEMUM2_LABEL />
    <P_CSITEMUM2_DASH />
    </G_ITEM_NO>
    <G_ITEM_NO>
    <PAGE_NO>0</PAGE_NO>
    <ITEM_NO>4242301</ITEM_NO>
    <ITEM_DESC1>13MM Aries Cell Assembly</ITEM_DESC1>
    <LOT_NO>562354</LOT_NO>
    <LOT_DESC>4242301</LOT_DESC>
    <SUBLOT_NO />
    <LOCATION>WOR RECV</LOCATION>
    <GRADE_CODE>NONE</GRADE_CODE>
    <ITEM_UM>Each</ITEM_UM>
    <ITEM_UM2 />
    <LINE_NO>603</LINE_NO>
    <COUNT_NO>603</COUNT_NO>
    <P_ITEMUM2LABEL />
    <P_ITEMUM2DASH />
    <F_ITEMUM2>1</F_ITEMUM2>
    <P_CSITEMUM2_LABEL />
    <P_CSITEMUM2_DASH />
    </G_ITEM_NO>
    </LIST_G_ITEM_NO>
    <WHSE_DESC>OPM INVENTORY ORG</WHSE_DESC>
    <CS_NODATA>617</CS_NODATA>
    <CYCLE_NO>000000014</CYCLE_NO>
    </PIR05>
    I want the g_item_no (repeating group) to have a page break each time LOCATION changes.

    You can declare two variables, to hold the previous and current LOCATION values and break the page when it differs.
    Or just before your end-for-each, have this code.
    <?if:position()!=1 and position()!=last() and LOCATION!=following::LOCATION[1]?><xsl:attribute name="break-before">page</xsl:attribute><?end if?>
    Ensure that its placed in a form field.
    This will have a page break when LOCATION changes.

  • How can I call a custom javascript function when clicking on cfgrid cell.

    I would like to call a custom javascript function when
    clicking on a cell in an cfgrid (of html format). The closest thing
    I can find is to use the HREF="" attribute, but it doesn't seem to
    work with javascript inside it.
    Simple example:
    <cfgridcolumn name="Foo" header="Foo"
    href="javascript:customFunction(#ID#);">
    Do I need to tap into the underlying Ext JS funtionality? If
    so, where can I start?
    Thanks!

    Hi,
    According to your post, my understanding is that you want to hide/show list columns based on specify the permission for Users, SharePoint Groups or Active Directory Groups.
    Here is a solution from CodePlex for your reference:
    SharePoint 2013 Column & View Permission
    https://sp2013columnpermission.codeplex.com/
    Best Regards
    Dennis Guo
    TechNet Community Support

  • Error message when clicking on the Shortcuts tab of the Keyboard preferences pane

    Hello everyone,
    I will greatly appreciate your help. When clicking on the Shortcuts tab of the Keyboard preferences pane, a "System Preferences quiet unexpectedly" error message appears. The problem details and system configuration are as follows:
    Process:               System Preferences [841]
    Path:                  /Applications/System Preferences.app/Contents/MacOS/System Preferences
    Identifier:            com.apple.systempreferences
    Version:               14.0 (14.0)
    Build Info:            SystemPrefsApp-281000000000000~3
    Code Type:             X86-64 (Native)
    Parent Process:        ??? [1]
    Responsible:           System Preferences [841]
    User ID:               501
    Date/Time:             2015-03-19 22:47:37.966 -0500
    OS Version:            Mac OS X 10.10.2 (14C1510)
    Report Version:        11
    Anonymous UUID:        246E68B9-7E5D-8DF4-837E-54CE3EA01415
    Time Awake Since Boot: 1600 seconds
    Crashed Thread:        0  Dispatch queue: com.apple.main-thread
    Exception Type:        EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes:       KERN_INVALID_ADDRESS at 0x000053f8426bbec0
    VM Regions Near 0x53f8426bbec0:
        JS JIT generated code  0000335b75801000-0000335b75802000 [    4K] ---/rwx SM=NUL 
    -->
        MALLOC_NANO            0000600000000000-0000600000400000 [ 4096K] rw-/rwx SM=COW 
    Application Specific Information:
    objc_msgSend() selector name: retain
    com.apple.preference.keyboard v.14.0 (Keyboard)
    objc[841]: GC: forcing GC OFF because OBJC_DISABLE_GC is set
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libobjc.A.dylib               0x00007fff861a50dd objc_msgSend + 29
    1   com.apple.CoreFoundation       0x00007fff8ccc798e -[__NSPlaceholderDictionary initWithObjects:forKeys:count:] + 190
    2   com.apple.CoreFoundation       0x00007fff8ccdd6cb +[NSDictionary dictionaryWithObjects:forKeys:count:] + 59
    3   com.apple.preference.keyboard 0x0000000115bbbf68 0x115bb5000 + 28520
    4   com.apple.preference.keyboard 0x0000000115bbb0f0 0x115bb5000 + 24816
    5   com.apple.AppKit               0x00007fff867331d5 -[NSTabView selectTabViewItem:] + 389
    6   com.apple.AppKit               0x00007fff86a9f2b4 -[NSTabView mouseDown:] + 136
    7   com.apple.AppKit               0x00007fff86ba8a18 -[NSWindow _reallySendEvent:] + 12721
    8   com.apple.AppKit               0x00007fff8662f16e -[NSWindow sendEvent:] + 446
    9   com.apple.systempreferences   0x000000010c4f3b12 0x10c4ec000 + 31506
    10  com.apple.AppKit               0x00007fff865e1451 -[NSApplication sendEvent:] + 4183
    11  com.apple.systempreferences   0x000000010c4f2f7b 0x10c4ec000 + 28539
    12  com.apple.AppKit               0x00007fff8646d608 -[NSApplication run] + 711
    13  com.apple.AppKit               0x00007fff86458a14 NSApplicationMain + 1832
    14  libdyld.dylib                 0x00007fff85fbd5c9 start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib         0x00007fff849f4232 kevent64 + 10
    1   libdispatch.dylib             0x00007fff85abaa6a _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib         0x00007fff849f394a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8785d40d start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib         0x00007fff849f394a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8785d40d start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib         0x00007fff849f394a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8785d40d start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib         0x00007fff849ee4de mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff849ed64f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff8cceab34 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff8cce9ffb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff8cce9858 CFRunLoopRunSpecific + 296
    5   com.apple.AppKit               0x00007fff865dd33b _NSEventThread + 137
    6   libsystem_pthread.dylib       0x00007fff8785f268 _pthread_body + 131
    7   libsystem_pthread.dylib       0x00007fff8785f1e5 _pthread_start + 176
    8   libsystem_pthread.dylib       0x00007fff8785d41d thread_start + 13
    Thread 6:
    0   libsystem_kernel.dylib         0x00007fff849f394a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8785d40d start_wqthread + 13
    Thread 7:
    0   libsystem_kernel.dylib         0x00007fff849f394a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8785d40d start_wqthread + 13
    Thread 8:
    0   libsystem_kernel.dylib         0x00007fff849f394a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8785d40d start_wqthread + 13
    Thread 9:
    0   libsystem_kernel.dylib         0x00007fff849f394a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8785d40d start_wqthread + 13
    Thread 10:
    0   libsystem_kernel.dylib         0x00007fff849f394a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8785d40d start_wqthread + 13
    Thread 11:
    0   libsystem_kernel.dylib         0x00007fff849f394a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8785d40d start_wqthread + 13
    Thread 12:
    0   libsystem_kernel.dylib         0x00007fff849f394a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8785d40d start_wqthread + 13
    Thread 13:
    0   libsystem_kernel.dylib         0x00007fff849f394a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8785d40d start_wqthread + 13
    Thread 14:
    0   libsystem_kernel.dylib         0x00007fff849f394a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8785d40d start_wqthread + 13
    Thread 15:
    0   libsystem_kernel.dylib         0x00007fff849f394a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8785d40d start_wqthread + 13
    Thread 16:
    0   libsystem_kernel.dylib         0x00007fff849f394a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8785d40d start_wqthread + 13
    Thread 17:
    0   libsystem_kernel.dylib         0x00007fff849f394a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8785d40d start_wqthread + 13
    Thread 18:
    0   libsystem_kernel.dylib         0x00007fff849f394a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8785d40d start_wqthread + 13
    Thread 19:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib         0x00007fff849f3136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff8c44cc95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff88374984 JSC::BlockAllocator::blockFreeingThreadMain() + 228
    3   com.apple.JavaScriptCore       0x00007fff8836a14f ***::wtfThreadEntryPoint(void*) + 15
    4   libsystem_pthread.dylib       0x00007fff8785f268 _pthread_body + 131
    5   libsystem_pthread.dylib       0x00007fff8785f1e5 _pthread_start + 176
    6   libsystem_pthread.dylib       0x00007fff8785d41d thread_start + 13
    Thread 20:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff849f3136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff8c44cc95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff88374f1b JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff88374d78 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff8836a14f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff8785f268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff8785f1e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff8785d41d thread_start + 13
    Thread 21:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff849f3136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff8c44cc95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff88374f1b JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff88374d78 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff8836a14f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff8785f268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff8785f1e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff8785d41d thread_start + 13
    Thread 22:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff849f3136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff8c44cc95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff88374f1b JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff88374d78 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff8836a14f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff8785f268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff8785f1e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff8785d41d thread_start + 13
    Thread 23:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib         0x00007fff849ee4de mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff849ed64f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff8cceab34 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff8cce9ffb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff8cce9858 CFRunLoopRunSpecific + 296
    5   com.apple.CFNetwork           0x00007fff8473cc80 +[NSURLConnection(Loader) _resourceLoadLoop:] + 434
    6   com.apple.Foundation           0x00007fff8e95390a __NSThread__main__ + 1345
    7   libsystem_pthread.dylib       0x00007fff8785f268 _pthread_body + 131
    8   libsystem_pthread.dylib       0x00007fff8785f1e5 _pthread_start + 176
    9   libsystem_pthread.dylib       0x00007fff8785d41d thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000000000003  rcx: 0xbaddd3f8426bbead  rdx: 0x00007fff73477380
      rdi: 0x00006080002b8b40  rsi: 0x00007fff8c416098  rbp: 0x00007fff53712c70  rsp: 0x00007fff53712be8
       r8: 0x0000000115bd6434   r9: 0x0000000115bd6437  r10: 0x00007fff8c416098  r11: 0x000053f8426bbea8
      r12: 0x0000000000000007  r13: 0x00006080000f7f40  r14: 0x00006080002b8b40  r15: 0x0000000000000002
      rip: 0x00007fff861a50dd  rfl: 0x0000000000010202  cr2: 0x000053f8426bbec0
    Logical CPU:     2
    Error Code:      0x00000004
    Trap Number:     14
    Binary Images:
           0x10c4ec000 -        0x10c50efff  com.apple.systempreferences (14.0 - 14.0) <48050CAA-B059-3B7A-8650-FD2FEFF9A255> /Applications/System Preferences.app/Contents/MacOS/System Preferences
           0x10c765000 -        0x10c76dfff  com.apple.security.ldapdl (4.0 - 55003) <CB35B0B2-4E5D-3CEE-BDD1-000C3CA6C879> /System/Library/Security/ldapdl.bundle/Contents/MacOS/ldapdl
           0x1105d8000 -        0x1105dcfff  com.apple.audio.AppleHDAHALPlugIn (269.25 - 269.25) <D7562B22-F5ED-3FD6-894E-4F4876DE14FF> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
           0x1105f1000 -        0x1105f1fe5 +cl_kernels (???) <3AE4DCE2-B598-48F0-AA2B-C61DA00904A2> cl_kernels
           0x1106fb000 -        0x1106fbfef +cl_kernels (???) <2D17DBA2-3265-44CC-A43B-FBE5A31DEBF3> cl_kernels
           0x110707000 -        0x110707ffe +cl_kernels (???) <14F9814E-B8B4-4725-91DD-CDB46B5A332E> cl_kernels
           0x110709000 -        0x1107effef  unorm8_bgra.dylib (2.4.5) <9423FFD4-6EF3-31BF-9DE9-6D55BA76D59E> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
           0x110831000 -        0x11084cff3  com.apple.security.csparser (3.0 - 57031.10.10) <6AC29346-B10D-3986-B06E-876B57392FC2> /System/Library/Frameworks/Security.framework/PlugIns/csparser.bundle/Contents/ MacOS/csparser
           0x111a47000 -        0x111a4ffff  com.apple.IntlTexts (2.0 - 264) <EB485515-07CD-3751-8865-0584D412BF08> /System/Library/PreferencePanes/Keyboard.prefPane/Contents/Resources/IntlTexts. prefPane/Contents/MacOS/IntlTexts
           0x111a58000 -        0x111ac3ff7  com.apple.InputMethodKit (1.2 - 1.1) <999BE4DB-95CF-385B-9FB5-AA84F8C3B69F> /System/Library/Frameworks/InputMethodKit.framework/Versions/A/InputMethodKit
           0x111b03000 -        0x111b16fff  com.apple.CommonCandidateWindow (1.3 - 1.3) <6EFCFF70-2EBC-3F24-90D1-35885EF94406> /System/Library/PrivateFrameworks/CommonCandidateWindow.framework/Versions/A/Co mmonCandidateWindow
           0x111eeb000 -        0x111efafff  com.apple.IntlKeyboard (2.0 - 264) <43C93674-6AD0-3139-BB33-95CF1680DE03> /System/Library/PreferencePanes/Keyboard.prefPane/Contents/Resources/IntlKeyboa rd.prefPane/Contents/MacOS/IntlKeyboard
           0x111fdb000 -        0x111fdbfe7 +cl_kernels (???) <0198C336-9EFC-428D-8397-F3F8AC07864D> cl_kernels
           0x1129fb000 -        0x1129fdfff  com.apple.framework.machinesettings (11.0 - 11.0) <9B969239-092E-30B4-B37E-8C62AD896649> /System/Library/PrivateFrameworks/MachineSettings.framework/Versions/A/MachineS ettings
           0x112d7d000 -        0x112d7efe5 +cl_kernels (???) <2169356A-8A83-459B-8ED6-3350B3DD94C1> cl_kernels
           0x115882000 -        0x115962ff7  unorm8_rgba.dylib (2.4.5) <2720A91C-F32D-378D-9154-E12A5E214341> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_rgba.dylib
           0x115bb5000 -        0x115bd7fff  com.apple.preference.keyboard (14.0 - 14.0) <A0A734B4-5B44-37C1-B139-6293D88EFC01> /System/Library/PreferencePanes/Keyboard.prefPane/Contents/MacOS/Keyboard
           0x115bed000 -        0x115c27ff7  com.apple.BluetoothUI (4.3.2 - 4.3.2f6) <C1339CCA-9DE4-3CCA-A7E3-8012BBF2C619> /System/Library/Frameworks/IOBluetoothUI.framework/Versions/A/IOBluetoothUI
           0x115c60000 -        0x115c72fff  com.apple.frameworks.preferencepanessupport (13.0 - 13.0) <54F6CB02-9AB2-34CF-B03E-489399D1573F> /System/Library/PrivateFrameworks/PreferencePanesSupport.framework/Versions/A/P referencePanesSupport
           0x115c88000 -        0x115c8cff7  com.apple.UniversalAccess (7.0 - 236.30) <8BA35A06-B175-311A-9619-7C74454D0485> /System/Library/PrivateFrameworks/UniversalAccess.framework/Versions/A/Universa lAccess
           0x115c94000 -        0x115c9bff7  com.apple.ZoomWindowSupport.framework (2.0 - 68) <CE6FB506-1306-3437-BB75-AA2898F225C2> /System/Library/CoreServices/ZoomWindow.app/Contents/Frameworks/ZoomWindowSuppo rt.framework/Versions/A/ZoomWindowSupport
        0x7fff5ff6b000 -     0x7fff5ffa1837  dyld (353.2.1) <65DCCB06-339C-3E25-9702-600A28291D0E> /usr/lib/dyld
        0x7fff81888000 -     0x7fff8189cff7  com.apple.MultitouchSupport.framework (262.33.1 - 262.33.1) <62DF9340-01A1-3E12-A604-C90F6361FD9E> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff8189d000 -     0x7fff818a1fff  com.apple.TCC (1.0 - 1) <61F36A72-B983-3A2D-9D37-A2F194D31E7D> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff818a2000 -     0x7fff81951fe7  libvMisc.dylib (516) <A82F9FE8-70ED-3BC9-9184-1A2B9EE3C010> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff81972000 -     0x7fff81974ff7  libutil.dylib (38) <471AD65E-B86E-3C4A-8ABD-B8665A2BCE3F> /usr/lib/libutil.dylib
        0x7fff81c0c000 -     0x7fff81cf0fff  libcrypto.0.9.8.dylib (52.10.1) <2A2924DE-63FB-37F6-B102-84D69240675B> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff81cf1000 -     0x7fff81cf5fff  libcache.dylib (69) <45E9A2E7-99C4-36B2-BEE3-0C4E11614AD1> /usr/lib/system/libcache.dylib
        0x7fff81d74000 -     0x7fff81d7cfe7  libcldcpuengine.dylib (2.4.5) <F9EF8060-5E40-3E88-BC38-7452649672B2> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
        0x7fff81dc7000 -     0x7fff81df5fff  com.apple.CoreServicesInternal (221.2.2 - 221.2.2) <16F7A7F1-CF1D-35AD-A91F-690A814048DF> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff81df6000 -     0x7fff81e10ff3  com.apple.Ubiquity (1.3 - 313) <DF56A657-CC6E-3BE2-86A0-71F07127724C> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff81e11000 -     0x7fff81e27ff7  libsystem_asl.dylib (267) <F153AC5B-0542-356E-88C8-20A62CA704E2> /usr/lib/system/libsystem_asl.dylib
        0x7fff81e40000 -     0x7fff81e9aff7  com.apple.LanguageModeling (1.0 - 1) <ACA93FE0-A0E3-333E-AE3C-8EB7DE5F362F> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/Languag eModeling
        0x7fff81e9b000 -     0x7fff81e9eff7  com.apple.Mangrove (1.0 - 1) <2AF1CAE9-8BF9-33C4-9C1B-123DBAF1522B> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
        0x7fff81f14000 -     0x7fff81f63ff7  com.apple.opencl (2.4.2 - 2.4.2) <D16CFDE6-B5F7-301A-995E-8B583D8C675A> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff81f79000 -     0x7fff81f79fff  libOpenScriptingUtil.dylib (162) <EFD79173-A9DA-3AE6-BE15-3948938204A6> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff81fc7000 -     0x7fff822aeffb  com.apple.CoreServices.CarbonCore (1108.2 - 1108.2) <FD87F83F-301A-3BD6-8262-5692FC1B4457> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff822af000 -     0x7fff82325fe7  libcorecrypto.dylib (233.1.2) <E1789801-3985-3949-B736-6B3378873301> /usr/lib/system/libcorecrypto.dylib
        0x7fff82333000 -     0x7fff82339fff  libsystem_trace.dylib (72.1.3) <A9E6B7D8-C327-3742-AC54-86C94218B1DF> /usr/lib/system/libsystem_trace.dylib
        0x7fff8233f000 -     0x7fff82342fff  com.apple.IOSurface (97.0.1 - 97.0.1) <0C9ED49D-AADB-3CB9-9A11-F5D765253548> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff82343000 -     0x7fff82353ff7  libbsm.0.dylib (34) <A3A2E56C-2B65-37C7-B43A-A1F926E1A0BB> /usr/lib/libbsm.0.dylib
        0x7fff82381000 -     0x7fff823f9ff7  com.apple.SystemConfiguration (1.14 - 1.14) <E0495F7D-5624-3EF7-B7E5-DA0EE708B6E4> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff82413000 -     0x7fff82459ff7  libauto.dylib (186) <A260789B-D4D8-316A-9490-254767B8A5F1> /usr/lib/libauto.dylib
        0x7fff824ff000 -     0x7fff8252ffff  com.apple.GSS (4.0 - 2.0) <FD154E62-F4CF-339D-B66C-AF4AED6A94A6> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff82530000 -     0x7fff82553fff  com.apple.Sharing (328.3.2 - 328.3.2) <F555679F-1CD1-3EB2-8E01-FCB80EF07330> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
        0x7fff82649000 -     0x7fff826ddfff  com.apple.ink.framework (10.9 - 213) <8E029630-1530-3734-A446-13353F0E7AC5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff826de000 -     0x7fff826e6fff  libMatch.1.dylib (24) <C917279D-33C2-38A8-9BDD-18F3B24E6FBD> /usr/lib/libMatch.1.dylib
        0x7fff8270c000 -     0x7fff82773ff7  com.apple.framework.CoreWiFi (3.0 - 300.4) <19269C1D-EB29-384A-83F3-7DDDEB7D9DAD> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
        0x7fff82774000 -     0x7fff82788ff7  com.apple.ProtectedCloudStorage (1.0 - 1) <52CFE68A-0663-3756-AB5B-B42195026052> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/Pr otectedCloudStorage
        0x7fff82789000 -     0x7fff827a7fff  com.apple.frameworks.preferencepanes (16.0 - 16.0) <C763B730-D6BC-31D3-951A-898BB49C5A3E> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
        0x7fff827a8000 -     0x7fff827e8ff7  com.apple.CloudDocs (1.0 - 280.6) <C1179CEF-E058-3E16-BF90-C059FE7CDE77> /System/Library/PrivateFrameworks/CloudDocs.framework/Versions/A/CloudDocs
        0x7fff827e9000 -     0x7fff82815fff  libsandbox.1.dylib (358.1.1) <BA84BDAF-2C59-3CED-8970-9FB029BD7442> /usr/lib/libsandbox.1.dylib
        0x7fff82816000 -     0x7fff828ecff3  com.apple.DiskImagesFramework (10.10.1 - 396) <E7478685-E829-372A-A945-A512730D3312> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
        0x7fff828ed000 -     0x7fff828eefff  libDiagnosticMessagesClient.dylib (100) <2EE8E436-5CDC-34C5-9959-5BA218D507FB> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff82907000 -     0x7fff82907ff7  liblaunch.dylib (559.10.3) <DFCDEBDF-8247-3DC7-9879-E7E497DDA4B4> /usr/lib/system/liblaunch.dylib
        0x7fff82908000 -     0x7fff82a1aff7  libvDSP.dylib (516) <151B3CCB-77D3-3715-A3D0-7C74CD5C7FFC> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff82a1b000 -     0x7fff82a22fff  com.apple.network.statistics.framework (1.2 - 1) <61B311D1-7F15-35B3-80D4-99B8BE90ACD9> /System/Library/PrivateFrameworks/NetworkStatistics.framework/Versions/A/Networ kStatistics
        0x7fff82a23000 -     0x7fff82a2bff7  com.apple.icloud.FindMyDevice (1.0 - 1) <D198E170-3610-3727-BC87-73AD249CA097> /System/Library/PrivateFrameworks/FindMyDevice.framework/Versions/A/FindMyDevic e
        0x7fff82a2c000 -     0x7fff82a57fff  com.apple.DictionaryServices (1.2 - 229) <6789EC43-CADA-394D-8FE8-FC3A2DD136B9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff82a92000 -     0x7fff82b00ffb  com.apple.Heimdal (4.0 - 2.0) <3E5DA653-A343-3257-ADE1-BA879BAE280F> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff82b01000 -     0x7fff82b82ff3  com.apple.CoreUtils (1.0 - 101.1) <45E5E51B-947E-3F2D-BD9C-480E72555C23> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
        0x7fff82d44000 -     0x7fff82d5eff7  liblzma.5.dylib (7) <1D03E875-A7C0-3028-814C-3C27F7B7C079> /usr/lib/liblzma.5.dylib
        0x7fff82d5f000 -     0x7fff82f44ff3  libicucore.A.dylib (531.31) <B08E00D5-13C6-3391-AB3A-8DE693D3B42E> /usr/lib/libicucore.A.dylib
        0x7fff82f45000 -     0x7fff82f47ff7  libquarantine.dylib (76) <DC041627-2D92-361C-BABF-A869A5C72293> /usr/lib/system/libquarantine.dylib
        0x7fff837d1000 -     0x7fff837e5feb  libCGInterfaces.dylib (294.1) <390D4B3F-B738-3D33-BEDB-07E3F0F6B42C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/Libraries/libCGInterfaces.dylib
        0x7fff837e6000 -     0x7fff837ebffb  libheimdal-asn1.dylib (398.10.1) <A7B6447A-6680-3625-83C3-993B58D5C43F> /usr/lib/libheimdal-asn1.dylib
        0x7fff837ec000 -     0x7fff837f4fff  libsystem_dnssd.dylib (561.1.1) <62B70ECA-E40D-3C63-896E-7F00EC386DDB> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff837f5000 -     0x7fff83828ff7  com.apple.MediaKit (16 - 757) <345EDAFE-3E39-3B0F-8D84-54657EC4396D> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
        0x7fff83829000 -     0x7fff8395bff7  com.apple.MediaControlSender (2.0 - 215.15) <454420EB-E6FE-3074-8D58-67471E1D61E5> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
        0x7fff8395c000 -     0x7fff8399cff7  libGLImage.dylib (11.1.1) <3986BFA3-4F55-380F-B01D-91BA9785D70C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff8399d000 -     0x7fff839a2ff7  com.apple.MediaAccessibility (1.0 - 61) <00A3E0B6-79AC-387E-B282-AADFBD5722F6> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessi bility
        0x7fff839ca000 -     0x7fff839cdfff  com.apple.xpc.ServiceManagement (1.0 - 1) <5EFD45BF-B0CD-39F2-8232-6BA33E63E5D4> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff83a23000 -     0x7fff83a53ff3  com.apple.CoreAVCHD (5.7.5 - 5750.4.1) <3E51287C-E97D-3886-BE88-8F6872400876> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
        0x7fff83a54000 -     0x7fff83a56fff  libUniversalAccess.dylib (236.30) <F8F2A821-00E8-3B3E-A208-9942EB75CE29> /usr/lib/libUniversalAccess.dylib
        0x7fff83a57000 -     0x7fff83d8afff  libmecabra.dylib (666.2) <F757CABA-3EDB-3ABA-A378-A7C574EA233B> /usr/lib/libmecabra.dylib
        0x7fff8436f000 -     0x7fff8438bff7  libsystem_malloc.dylib (53.1.1) <19BCC257-5717-3502-A71F-95D65AFA861B> /usr/lib/system/libsystem_malloc.dylib
        0x7fff8438c000 -     0x7fff8447cfef  libJP2.dylib (1232) <13BFC6A7-E24E-3F29-AD3C-E2D382A1223A> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff8447d000 -     0x7fff84509ff7  libsystem_c.dylib (1044.10.1) <199ED5EB-77A1-3D43-AA51-81779CE0A742> /usr/lib/system/libsystem_c.dylib
        0x7fff8450a000 -     0x7fff84523fff  com.apple.openscripting (1.4 - 162) <80DFF366-B950-3F79-903F-99DA0FFDB570> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff84524000 -     0x7fff8452fff7  libcsfde.dylib (471.10.6) <E1BF5816-3CE6-30CE-B3EE-F68CB6BA1378> /usr/lib/libcsfde.dylib
        0x7fff84530000 -     0x7fff8469bff7  com.apple.audio.toolbox.AudioToolbox (1.12 - 1.12) <5C6DBEB4-F2EA-3262-B9FC-AFB89404C1DA> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff8469c000 -     0x7fff8489fff3  com.apple.CFNetwork (720.2.4 - 720.2.4) <E550C671-930F-3B12-8798-23898473E179> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff848ac000 -     0x7fff848c6ff7  libextension.dylib (55.1) <6D0CF094-85E8-3F5B-A3F1-25ECF60F80D9> /usr/lib/libextension.dylib
        0x7fff8496e000 -     0x7fff84979fff  libcommonCrypto.dylib (60061) <D381EBC6-69D8-31D3-8084-5A80A32CB748> /usr/lib/system/libcommonCrypto.dylib
        0x7fff8497a000 -     0x7fff84982ffb  com.apple.CoreServices.FSEvents (1210 - 1210) <782A9C69-7A45-31A7-8960-D08A36CBD0A7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvent s.framework/Versions/A/FSEvents
        0x7fff84983000 -     0x7fff84995ff7  com.apple.CoreDuetDaemonProtocol (1.0 - 1) <CE9FABB4-1C5D-3F9B-9BB8-5CC50C3E5E31> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/Versions/A/C oreDuetDaemonProtocol
        0x7fff84996000 -     0x7fff849a1fff  libGL.dylib (11.1.1) <1F0EB9FB-4B0F-349B-80DD-93FD3F45B9C7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff849a2000 -     0x7fff849cafff  libsystem_info.dylib (459) <B85A85D5-8530-3A93-B0C3-4DEC41F79478> /usr/lib/system/libsystem_info.dylib
        0x7fff849d4000 -     0x7fff849dcfff  libsystem_platform.dylib (63) <64E34079-D712-3D66-9CE2-418624A5C040> /usr/lib/system/libsystem_platform.dylib
        0x7fff849dd000 -     0x7fff849fafff  libsystem_kernel.dylib (2782.10.72) <97CD7ACD-EA0C-3434-BEFC-FCD013D6BB73> /usr/lib/system/libsystem_kernel.dylib
        0x7fff84b14000 -     0x7fff84b2efff  com.apple.AppleVPAFramework (1.2.10 - 1.2.10) <DC3D5A44-AB1E-32A9-9D22-FC922B52346A> /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA
        0x7fff84b2f000 -     0x7fff84b35fff  com.apple.BezelServicesFW (250.13 - 250.13) <A0FB0595-6806-3372-AFF5-E46B7374ABF5> /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServi ces
        0x7fff84b69000 -     0x7fff84bedfff  com.apple.ViewBridge (103.1 - 103.1) <BABD572C-58AA-362C-B246-D45DCD990D16> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge
        0x7fff84bee000 -     0x7fff84bfaff7  com.apple.OpenDirectory (10.10 - 187) <8B98ECCB-7EFA-3A58-BD2B-A0835D869B1A> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff84bfb000 -     0x7fff84c05ff7  com.apple.CrashReporterSupport (10.10 - 629) <4BCAA6B5-EC7F-365F-9D3F-BC483B7E956C> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff84e17000 -     0x7fff84e28ff3  libsystem_coretls.dylib (35.10.1) <3EAED90A-7AA0-323C-A52B-E16477981D59> /usr/lib/system/libsystem_coretls.dylib
        0x7fff84e29000 -     0x7fff84e7aff7  com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <AF72B06E-C6C1-3FAE-8B47-AF461CAE0E22> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff84e7b000 -     0x7fff84e94ff7  com.apple.CFOpenDirectory (10.10 - 187) <0F9747EF-12A3-3694-984D-0B8352CA6C0F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff84efc000 -     0x7fff84f68fff  com.apple.framework.CoreWLAN (5.0 - 500.35.2) <37551DDD-C07C-31EB-923A-9721F03D7E29> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff84f72000 -     0x7fff84fa2fff  libsystem_m.dylib (3086.1) <1E12AB45-6D96-36D0-A226-F24D9FB0D9D6> /usr/lib/system/libsystem_m.dylib
        0x7fff850d8000 -     0x7fff850daffb  libCGXType.A.dylib (775.16) <B2DC78CA-179F-39A7-8D0B-873DC0ACFE96> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXTy pe.A.dylib
        0x7fff85138000 -     0x7fff8514eff7  com.apple.CoreMediaAuthoring (2.2 - 951) <3EAFC9D1-8D7C-30CF-92C7-903A5C241763> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
        0x7fff8514f000 -     0x7fff85241ff7  libiconv.2.dylib (42) <2A06D02F-8B76-3864-8D96-64EF5B40BC6C> /usr/lib/libiconv.2.dylib
        0x7fff85242000 -     0x7fff85262fff  com.apple.IconServices (47.1 - 47.1) <E83DFE3B-6541-3736-96BB-26DC5D0100F1> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
        0x7fff85263000 -     0x7fff8526dff7  com.apple.NetAuth (5.0 - 5.0) <B9EC5425-D38D-308C-865F-207E0A98BAC7> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff85526000 -     0x7fff85534ff7  com.apple.opengl (11.1.1 - 11.1.1) <F79F5FFF-372E-329E-81FB-EE9BD6A2A7A7> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff85535000 -     0x7fff85551fff  com.apple.GenerationalStorage (2.0 - 209.11) <9FF8DD11-25FB-3047-A5BF-9415339B3EEC> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff8556c000 -     0x7fff85591fff  libPng.dylib (1232) <10DC46CC-A4FD-3B1A-AA23-E4F12938BC13> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff855a7000 -     0x7fff856efff7  com.apple.WebKitLegacy (10600 - 10600.3.18) <91B3E705-1378-3F73-B079-3223E838B629> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebKitLegacy. framework/Versions/A/WebKitLegacy
        0x7fff856f0000 -     0x7fff8596cff3  com.apple.RawCamera.bundle (6.02 - 769) <1F0F0047-682F-39E3-BE26-2467BF5F0E22> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff8596d000 -     0x7fff8596dfff  com.apple.Carbon (154 - 157) <0DF27AD6-ED64-34D7-825D-65297D276652> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff8596e000 -     0x7fff859bbff3  com.apple.CoreMediaIO (601.0 - 4749) <ED45B200-08A1-3E72-8DE9-9901C94A7BCA> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff859bc000 -     0x7fff859f6ffb  com.apple.DebugSymbols (115 - 115) <6F03761D-7C3A-3C80-8031-AA1C1AD7C706> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff859f7000 -     0x7fff859fdff7  com.apple.XPCService (2.0 - 1) <AA4A5393-1F5D-3465-A417-0414B95DC052> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
        0x7fff859fe000 -     0x7fff85a87fff  com.apple.CoreSymbolication (3.1 - 57020) <FDF8F348-164D-38F9-90EB-F42585DD2C77> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff85ab6000 -     0x7fff85ae0ff7  libdispatch.dylib (442.1.4) <502CF32B-669B-3709-8862-08188225E4F0> /usr/lib/system/libdispatch.dylib
        0x7fff85ae1000 -     0x7fff85b72ff7  libCoreStorage.dylib (471.10.6) <892DEEE7-C8C7-35EA-931D-FF9862BDEB2B> /usr/lib/libCoreStorage.dylib
        0x7fff85c50000 -     0x7fff85f16fff  com.apple.WebKit (10600 - 10600.3.18) <F8E36318-4F4C-348B-B1DE-D4BE035036AD> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff85f3c000 -     0x7fff85f51ff7  com.apple.AppContainer (4.0 - 238.10.1) <24A43E31-BCD3-32DB-8023-DE7EEA912E89> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContaine r
        0x7fff85f52000 -     0x7fff85fb9ffb  com.apple.datadetectorscore (6.0 - 396.1.1) <80379385-A4EC-3F9B-AFED-9B1DF781943D> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff85fba000 -     0x7fff85fbdff7  libdyld.dylib (353.2.1) <4E33E416-F1D8-3598-B8CC-6863E2ECD0E6> /usr/lib/system/libdyld.dylib
        0x7fff85fbe000 -     0x7fff86032ff3  com.apple.securityfoundation (6.0 - 55126) <DEC91795-7754-334A-8CDA-B429F41B922D> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff8607e000 -     0x7fff86080fff  com.apple.EFILogin (2.0 - 2) <39895ACB-E756-342C-ABE5-DB7100EF0A69> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
        0x7fff8609e000 -     0x7fff860abfff  com.apple.SpeechRecognitionCore (2.0.32 - 2.0.32) <87F0C88D-502D-3217-8B4A-8388288568BA> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/Sp eechRecognitionCore
        0x7fff860ac000 -     0x7fff860b4ff7  com.apple.AppleSRP (5.0 - 1) <01EC5144-D09A-3D6A-AE35-F6D48585F154> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
        0x7fff861a4000 -     0x7fff8639e46f  libobjc.A.dylib (647) <759E155D-BC42-3D4E-869B-6F57D477177C> /usr/lib/libobjc.A.dylib
        0x7fff863b9000 -     0x7fff863b9ff7  libunc.dylib (29) <5676F7EA-C1DF-329F-B006-D2C3022B7D70> /usr/lib/system/libunc.dylib
        0x7fff86400000 -     0x7fff86409ff7  libsystem_notify.dylib (133.1.1) <61147800-F320-3DAA-850C-BADF33855F29> /usr/lib/system/libsystem_notify.dylib
        0x7fff86456000 -     0x7fff86fa0ff7  com.apple.AppKit (6.9 - 1344.72) <44EF7DEB-3072-3515-9F34-2857D557E828> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff87048000 -     0x7fff87478fff  com.apple.vision.FaceCore (3.1.6 - 3.1.6) <C3B823AA-C261-37D3-B4AC-C59CE91C8241> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
        0x7fff87479000 -     0x7fff8750eff7  com.apple.ColorSync (4.9.0 - 4.9.0) <F06733BD-A10C-3DB3-B050-825351130392> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff8750f000 -     0x7fff87520fff  libcmph.dylib (1) <46EC3997-DB5E-38AE-BBBB-A035A54AD3C0> /usr/lib/libcmph.dylib
        0x7fff87562000 -     0x7fff87656fff  libFontParser.dylib (134.1) <EA8452DB-9221-3608-95BF-496F58106313> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff87657000 -     0x7fff87680ffb  libxslt.1.dylib (13) <AED1143F-B848-3E73-81ED-71356F25F084> /usr/lib/libxslt.1.dylib
        0x7fff876c2000 -     0x7fff876cbfff  libGFXShared.dylib (11.1.1) <7AE7D152-597E-3B27-A52C-8DA76760B61C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff876cc000 -     0x7fff876dfff7  com.apple.CoreBluetooth (1.0 - 1) <FA9B43B3-E183-3040-AE25-66EF9870CF35> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
        0x7fff87713000 -     0x7fff87859fef  libsqlite3.dylib (168) <8B78BED1-7B9B-3943-80DC-0871015AEAC4> /usr/lib/libsqlite3.dylib
        0x7fff8785a000 -     0x7fff8785bfff  liblangid.dylib (117) <B54A4AA0-2E53-3671-90F5-AFF711C0EB9E> /usr/lib/liblangid.dylib
        0x7fff8785c000 -     0x7fff87865fff  libsystem_pthread.dylib (105.10.1) <3103AA7F-3BAE-3673-9649-47FFD7E15C97> /usr/lib/system/libsystem_pthread.dylib
        0x7fff87956000 -     0x7fff87961ff7  com.apple.speech.synthesis.framework (5.3.3 - 5.3.3) <7DF3C68C-B219-3E13-AE72-24B8606A1560> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff8799b000 -     0x7fff879ecff7  com.apple.AppleVAFramework (5.0.31 - 5.0.31) <56AA4060-63DF-3DF0-AB8A-880D0DD6F075> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff87a24000 -     0x7fff87a26fff  com.apple.SecCodeWrapper (4.0 - 238.10.1) <8DAF71DB-C99A-3B72-A639-2C8CBEA84B93> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
        0x7fff87c83000 -     0x7fff87c9eff7  com.apple.aps.framework (4.0 - 4.0) <F3C3C246-101E-3E81-9608-D2D6E9352532> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
        0x7fff87c9f000 -     0x7fff87d30ff7  com.apple.cloudkit.CloudKit (259.2.5 - 259.2.5) <241EB647-C917-32F7-956A-6E505827048C> /System/Library/Frameworks/CloudKit.framework/Versions/A/CloudKit
        0x7fff87d31000 -     0x7fff87d3aff3  com.apple.CommonAuth (4.0 - 2.0) <BA9F5A09-D200-3D18-9F4A-20C789291A30> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff87d3b000 -     0x7fff87d84ff3  com.apple.HIServices (1.22 - 520.12) <8EAC82AB-6A7D-3606-AF6F-60A9410D1278> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff87d85000 -     0x7fff87d87fff  libsystem_configuration.dylib (699.1.5) <5E14864E-089A-3D84-85A4-980B776427A8> /usr/lib/system/libsystem_configuration.dylib
        0x7fff880c4000 -     0x7fff8832cff3  com.apple.security (7.0 - 57031.10.10) <79C37E73-271B-3BEF-A96E-CDB83FF12CF0> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff8832d000 -     0x7fff8835fff3  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <C6DB0A07-F8E4-3837-BCA9-225F460EDA81> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
        0x7fff88360000 -     0x7fff88873ff3  com.apple.JavaScriptCore (10600 - 10600.3.13) <C0C3246C-D26F-3440-AC75-81CFFA4F9C91> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff88875000 -     0x7fff88877ff7  libsystem_coreservices.dylib (9) <41B7C578-5A53-31C8-A96F-C73E030B0938> /usr/lib/system/libsystem_coreservices.dylib
        0x7fff891ba000 -     0x7fff891c0fff  com.apple.speech.recognition.framework (5.0.9 - 5.0.9) <BB2D573F-0A01-379F-A2BA-3C454EDCB111> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff891ec000 -     0x7fff895c3fe7  com.apple.CoreAUC (211.0.0 - 211.0.0) <C8B2470F-3994-37B8-BE10-6F78667604AC> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff8960e000 -     0x7fff8962ffff  com.apple.framework.Apple80211 (10.1 - 1010.64) <A7378C4B-FFD3-35B9-93E8-0534A2A7B51F> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff89630000 -     0x7fff89635ff7  libsystem_stats.dylib (163.10.18) <9B8CCF24-DDDB-399A-9237-4BEC225D2E8C> /usr/lib/system/libsystem_stats.dylib
        0x7fff89636000 -     0x7fff8963aff7  libGIF.dylib (1232) <3C70FBBC-FBA5-3013-A440-05D68B63885F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff89694000 -     0x7fff89696fff  com.apple.loginsupport (1.0 - 1) <21DBC18C-F260-39FC-B52F-04A5AA84523A> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsu pport.framework/Versions/A/loginsupport
        0x7fff89697000 -     0x7fff896a4fff  com.apple.ProtocolBuffer (1 - 225.1) <2D502FBB-D2A0-3937-A5C5-385FA65B3874> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
        0x7fff896a5000 -     0x7fff896a9fff  libCoreVMClient.dylib (79) <FC4E08E3-749E-32FF-B5E9-211F29864831> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff896aa000 -     0x7fff896abfff  libsystem_secinit.dylib (18) <581DAD0F-6B63-3A48-B63B-917AF799ABAA> /usr/lib/system/libsystem_secinit.dylib
        0x7fff896c5000 -     0x7fff896c7fff  libCVMSPluginSupport.dylib (11.1.1) <DA0706C5-F02A-3F3D-8EBA-18C04313CA2C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff896c8000 -     0x7fff896d5ff7  libxar.1.dylib (254) <CE10EFED-3066-3749-838A-6A15AC0DBCB6> /usr/lib/libxar.1.dylib
        0x7fff89c00000 -     0x7fff89c01fff  com.apple.TrustEvaluationAgent (2.0 - 25) <2D61A2C3-C83E-3A3F-8EC1-736DBEC250AB> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff89c02000 -     0x7fff89c09ff7  libcompiler_rt.dylib (35) <BF8FC133-EE10-3DA6-9B90-92039E28678F> /usr/lib/system/libcompiler_rt.dylib
        0x7fff89c0a000 -     0x7fff89c69ff3  com.apple.AE (681 - 681) <7F544183-A515-31A8-B45F-89A167F56216> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff89d3d000 -     0x7fff8a14aff7  libLAPACK.dylib (1128) <F9201AE7-B031-36DB-BCF8-971E994EF7C1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff8a1f4000 -     0x7fff8a206fff  libsasl2.2.dylib (193) <E523DD05-544B-3430-8AA9-672408A5AF8B> /usr/lib/libsasl2.2.dylib
        0x7fff8a20d000 -     0x7fff8a233ff7  com.apple.ChunkingLibrary (2.1 - 163.1) <3514F2A4-38BD-3849-9286-B3B991057742> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
        0x7fff8a234000 -     0x7fff8a54ffcf  com.apple.vImage (8.0 - 8.0) <1183FE6A-FDB6-3B3B-928D-50C7909F2308> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff8a550000 -     0x7fff8a557fff  com.apple.NetFS (6.0 - 4.0) <1581D25F-CC07-39B0-90E8-5D4F3CF84EBA> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff8a558000 -     0x7fff8a56fff7  libLinearAlgebra.dylib (1128) <E78CCBAA-A999-3B65-8EC9-06DB15E67C37> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLinearAlgebra.dylib
        0x7fff8a570000 -     0x7fff8a688ffb  com.apple.CoreText (352.0 - 454.3) <B3B8C775-14FA-38F3-9CD5-830422AE9C49> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff8a689000 -     0x7fff8a68cfff  libScreenReader.dylib (390.21) <364E0A52-4076-3F55-8C77-7CC5E085E4C4> /usr/lib/libScreenReader.dylib
        0x7fff8a68d000 -     0x7fff8a690fff  com.apple.help (1.3.3 - 46) <CA4541F4-CEF5-355C-8F1F-EA65DC1B400F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff8a6b9000 -     0x7fff8a6baff7  libsystem_blocks.dylib (65) <9615D10A-FCA7-3BE4-AA1A-1B195DACE1A1> /usr/lib/system/libsystem_blocks.dylib
        0x7fff8a6bb000 -     0x7fff8aa26fff  com.apple.VideoToolbox (1.0 - 1562.107) <2EAFB008-7F19-34C2-A5A6-43B4CD35FEF3> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
        0x7fff8aa27000 -     0x7fff8aa54fff  com.apple.Accounts (113 - 113) <990F0F61-6AC5-3076-932E-02A9A7F75AC4> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
        0x7fff8aa55000 -     0x7fff8aa55fff  com.apple.Accelerate.vecLib (3.10 - vecLib 3.10) <9D749502-A228-3BF1-B52F-A182DEEB2C4D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff8aa56000 -     0x7fff8aa68ff7  com.apple.ImageCapture (9.0 - 9.0) <7FB65DD4-56B5-35C4-862C-7A2DED991D1F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff8aa99000 -     0x7fff8ab0bff7  com.apple.framework.IOKit (2.0.2 - 1050.10.8) <FDFB1FBE-6A0E-3D63-828C-CD53500FCB0F> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff8ab0c000 -     0x7fff8ab0eff7  libsystem_sandbox.dylib (358.1.1) <95312E09-DA28-324A-A084-F3E574D0210E> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff8ab0f000 -     0x7fff8ac37ff7  com.apple.coreui (2.1 - 305.6.1) <B56EC212-73C1-326F-B78C-EB856386296E> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff8ac38000 -     0x7fff8ac39fff  libUAPreferences.dylib (236.30) <BED62DEE-736F-33E4-BF0E-B1E4F4B77561> /System/Library/PrivateFrameworks/UniversalAccess.framework/Versions/A/Librarie s/libUAPreferences.dylib
        0x7fff8ad1a000 -     0x7fff8ad3efef  libJPEG.dylib (1232) <638302B6-369F-3C50-BF63-F8D19C393F47> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff8ad3f000 -     0x7fff8ade1ff7  com.apple.Bluetooth (4.3.2 - 4.3.2f6) <95676652-21AB-3FFA-B53D-EBC8BF4E913E> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
        0x7fff8ade2000 -     0x7fff8ade9fff  libCGCMS.A.dylib (775.16) <8A173E74-7123-35F1-B160-853528C144ED> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
        0x7fff8adea000 -     0x7fff8ae21ffb  com.apple.LDAPFramework (2.4.28 - 194.5) <D22234AA-8B30-3010-8CF0-67516D52CC33> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff8ae22000 -     0x7fff8ae6eff7  libcups.2.dylib (408) <9CECCDE3-51D7-3028-830C-F58BD36E3317> /usr/lib/libcups.2.dylib
        0x7fff8ae6f000 -     0x7fff8aea8fff  com.apple.AirPlaySupport (2.0 - 215.15) <C36CC8AF-27CC-3B18-9C3C-3F845B35FDEC> /System/Library/PrivateFrameworks/AirPlaySupport.framework/Versions/A/AirPlaySu pport
        0x7fff8aec6000 -     0x7fff8af35fff  com.apple.SearchKit (1.4.0 - 1.4.0) <BFD6D876-36BA-3A3B-9F15-3E2F7DE6E89D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff8afa9000 -     0x7fff8b7e2fe3  com.apple.CoreGraphics (1.600.0 - 775.16) <A7BA30E6-A15F-3E48-9718-3837949A0E2E> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff8b7e3000 -     0x7fff8b7e3fff  com.apple.Cocoa (6.8 - 21) <EAC0EA1E-3C62-3B28-A941-5D8B1E085FF8> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff8b7f2000 -     0x7fff8b83eff7  com.apple.corelocation (1486.17 - 1615.21.1) <B81BC475-E215-3491-A750-8B23F05ABF5B> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
        0x7fff8b83f000 -     0x7fff8b8fffff  com.apple.backup.framework (1.6.2 - 1.6.2) <63E8CA47-B7B8-3A63-B505-D1622CE52527> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff8b900000 -     0x7fff8ba22ff7  com.apple.LaunchServices (644.12.4 - 644.12.4) <59E909E8-ED4A-33EA-B85D-D409BADDF854> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff8ba23000 -     0x7fff8ba69ffb  libFontRegistry.dylib (134) <01B8034A-45FD-3360-A347-A1896F591363> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff8baac000 -     0x7fff8bb67ff7  com.apple.DiscRecording (9.0 - 9000.4.2) <9BB46993-311A-3F2E-BD77-3CBEFB71C1F0> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff8bb68000 -     0x7fff8bba9fff  libGLU.dylib (11.1.1) <E9ADAD30-0133-320D-A60E-D1A7F91A7795> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff8bbaa000 -     0x7fff8bbd2ffb  libRIP.A.dylib (775.16) <7711F7A7-1813-3024-AE42-75CA7C5422B7> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A .dylib
        0x7fff8bbd8000 -     0x7fff8be53ff7  com.apple.CoreData (111 - 526.1) <DC4F037B-B7F4-381A-B939-4414489D76BF> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff8be5c000 -     0x7fff8be8bfff  com.apple.securityinterface (10.0 - 55058) <21F38170-2D3D-3FA2-B0EC-379482AFA5E4> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff8be90000 -     0x7fff8bf2fdf7  com.apple.AppleJPEG (1.0 - 1) <9BB3D7DF-630A-3E1C-A124-12D6C4D0DE70> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
        0x7fff8bf30000 -     0x7fff8c41cff7  com.apple.MediaToolbox (1.0 - 1562.107) <F0888EAC-FB6D-35C5-B2FB-AC9A72FE4650> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff8c427000 -     0x7fff8c444ffb  libresolv.9.dylib (57) <26B38E61-298A-3C3A-82C1-3B5E98AD5E29> /usr/lib/libresolv.9.dylib
        0x7fff8c445000 -     0x7fff8c499fff  libc++.1.dylib (120) <1B9530FD-989B-3174-BB1C-BDC159501710> /usr/lib/libc++.1.dylib
        0x7fff8c4f1000 -     0x7fff8c64fffb  com.apple.avfoundation (2.0 - 889.102) <7D2E62AF-CDEA-394C-84B2-656629F00197> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
        0x7fff8c650000 -     0x7fff8c6c4fff  com.apple.ApplicationServices.ATS (360 - 375) <2824D38D-460D-353C-9D18-499B4BEEABB7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff8c6c5000 -     0x7fff8c875ff7  com.apple.QuartzCore (1.10 - 361.15) <72A78C43-30DF-3748-9015-4B28119DB27B> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff8c876000 -     0x7fff8c8aeffb  libsystem_network.dylib (411.1) <2EC3A005-473F-3C36-A665-F88B5BACC7F0> /usr/lib/system/libsystem_network.dylib
        0x7fff8ca98000 -     0x7fff8caf3fef  libTIFF.dylib (1232) <56D444B7-A37A-30BC-80B5-5E702FFAAAAB> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff8caf7000 -     0x7fff8cb32fff  com.apple.Symbolication (1.4 - 56045) <D64571B1-4483-3FE2-BD67-A91360F79727> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff8cb3c000 -     0x7fff8cc76ff7  com.apple.ImageIO.framework (3.3.0 - 1232) <A9682E9F-4917-3926-A035-7FEE7FF9D2AB> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff8cc77000 -     0x7fff8cc77fff  com.apple.ApplicationServices (48 - 48) <5BF7910B-C328-3BF8-BA4F-CE52B574CE01> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff8cc78000 -     0x7fff8d00efff  com.apple.CoreFoundation (6.9 - 1152) <CBD1591C-405E-376E-87E9-B264610EBF49> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff8d00f000 -     0x7fff8d02aff7  libCRFSuite.dylib (34) <D64842BE-7BD4-3D0C-9842-1D202F7C2A51> /usr/lib/libCRFSuite.dylib
        0x7fff8d02b000 -     0x7fff8d078ff3  com.apple.print.framework.PrintCore (10.0 - 451) <3CA58254-D14F-3913-9DFB-CAC499570CC7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff8d079000 -     0x7fff8e030ffb  com.apple.WebCore (10600 - 10600.3.15) <59A28076-26E4-3CE2-B6FC-AF59308C0B95> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff8e089000 -     0x7fff8e08fff7  libsystem_networkextension.dylib (167.1.10) <29AB225B-D7FB-30ED-9600-65D44B9A9442> /usr/lib/system/libsystem_networkextension.dylib
        0x7fff8e090000 -     0x7fff8e0bdfff  com.apple.CoreVideo (1.8 - 145.1) <18DB07E0-B927-3260-A234-636F298D1917> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff8e0be000 -     0x7fff8e0c0fff  com.apple.CoreDuetDebugLogging (1.0 - 1) <9A6E5710-EA99-366E-BF40-9A65EC1B46A1> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/Versions/A/Cor eDuetDebugLogging
        0x7fff8e0c1000 -     0x7fff8e0c1fff  com.apple.CoreServices (62 - 62) <9E4577CA-3FC3-300D-AB00-87ADBDDA2E37> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff8e0c2000 -     0x7fff8e0caffb  libcopyfile.dylib (118.1.2) <0C68D3A6-ACDD-3EF3-991A-CC82C32AB836> /usr/lib/system/libcopyfile.dylib
        0x7fff8e0cb000 -     0x7fff8e0eafff  com.apple.CoreDuet (1.0 - 1) <36AA9FD5-2685-314D-B364-3FA4688D86BD> /System/Library/PrivateFrameworks/CoreDuet.framework/Versions/A/CoreDuet
        0x7fff8e123000 -     0x7fff8e132fff  com.apple.LangAnalysis (1.7.0 - 1.7.0) <D1E527E4-C561-352F-9457-E8C50232793C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff8e13f000 -     0x7fff8e144ff7  libunwind.dylib (35.3) <BE7E51A0-B6EA-3A54-9CCA-9D88F683A6D6> /usr/lib/system/libunwind.dylib
        0x7fff8e199000 -     0x7fff8e49dffb  com.apple.HIToolbox (2.1.1 - 757.3) <D827FC03-5668-3AA4-AF0E-46EEF7358EEA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff8e4a0000 -     0x7fff8e4baff7  com.apple.Kerberos (3.0 - 1) <7760E0C2-A222-3709-B2A6-B692D900CEB1> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff8e530000 -     0x7fff8e5b2fff  com.apple.PerformanceAnalysis (1.0 - 1) <94F08B1A-F6AF-38D5-BE92-4FED34742966> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff8e5b3000 -     0x7fff8e5b3fff  com.apple.audio.units.AudioUnit (1.12 - 1.12) <76EF1C9D-DEA4-3E55-A134-4099B2FD2CF2> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff8e5be000 -     0x7fff8e63bfff  com.apple.CoreServices.OSServices (640.3 - 640.3) <84A91B00-0ED4-350C-B30A-AEAE437AE02A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff8e759000 -     0x7fff8e75dfff  libpam.2.dylib (20) <E805398D-9A92-31F8-8005-8DC188BD8B6E> /usr/lib/libpam.2.dylib
        0x7fff8e783000 -     0x7fff8e821fff  com.apple.Metadata (10.7.0 - 917.1) <46BE997C-B1F4-3BED-9332-FAC87297C87A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff8e8eb000 -     0x7fff8ec19fff  com.apple.Foundation (6.9 - 1152.14) <E3746EDD-DFB1-3ECB-88ED-A91AC0EF3AAA> /System/Library/Frameworks/Foundation.f

    Yeah I finally had to call Adobe and some there did a screen share with me and they took care of it. I am running OSX 10.9.3 my issue was that the latex OSX update didn't communicate with the app. Like I said Adobe did a screen share with me and fixed it for me I think he just uninstalled and reinstalled and I want to say thats what took care of it.

  • HT1338 My Mac keeps Looking for Networks? The ICON in menu when clicked shows the WI- FI (in gray) ON then goes to Looking for Network again. Shutting down the connection.

    My MAC keeps looking for networks? The ICON in menu bar when clicked shows the WI-FI (in grey) it keeps shuting off and disconnecting. Any Ideas???

    Test after taking each of the following steps. Back up all data before making any changes.
    1. Make sure the network is on the preferred list by following these instructions.
    2. Follow the instructions in this support article under the heading "Symptom: The network connection drops unexpectedly."
    3. Make a note of all your settings for Wi-Fi in the Network preference pane, then delete the connection from the connection list and recreate it with the same settings. You do this by clicking the plus-sign icon below the connection list, and selecting Wi-Fi as the interface in the sheet that opens. Select Join other network from the Network Name menu, then select your network. Enter the password when prompted and save it in the keychain.
    4. From the Location menu at the top of the Network preference pane, select Edit Locations. A sheet will drop down. Click the plus-sign button to create a new location. Give it any name you want. In the new location, set up the Wi-Fi service with the same settings you used before. Click Apply and test.
    5. Launch the Keychain Access application. Search for and delete all AirPort network password items that refer to the network. Make a note of the password first.
    6. In some cases, the problem has been resolved by repairing permissions on the startup volume.
    7. Reinstall OS X.

  • How to get the page number when click the(Next page) Icon on Tableview

    Hi all,
           I had implemented a tableview in one of the Views that I had implemented for a BSP application. I am using MVC framework.
    Let us assume when we execute the BSP and a table view got 11 pages.
    How I can keep track of the page number when we click the  (Next page, Previous page, Bottom , Top) Icons on my tableview . Is there any attribute willstore that  corresponding page number of the tableview when we click the corresponding Icon's??
    I had checked both CL_HTMLB_TABLEVIEW and CL_HTMLB_EVENT_TABLEVIEW Classes and i don't find any attribute.
    Any help will be appreciated.
    Thanks in advance.
    Thanks,
    Greetson

    Hi Greetson,
      I was thinking to write a weblog about that.
      But now I would like to have your opinion:
      I coded a generic method in my main controller (but you could also insert it in the application class) that save the firstvisible row in the class  me->firstvisiblerowlist (that is a table)
      DATA: l_firstvisiblerowlist TYPE zmmsp_tableview_1st_visi_row.
      DATA: ff  TYPE ihttpnvp,
            ffs TYPE tihttpnvp.
      me->request->get_form_fields( CHANGING fields = ffs ).
      LOOP AT ffs INTO ff.
        IF ff-name CP 'f*visiblefirstrow'.
          READ TABLE me->firstvisiblerowlist INTO l_firstvisiblerowlist WITH KEY name = ff-name.
          CASE sy-subrc.
            WHEN 0.
              l_firstvisiblerowlist-name  = ff-name.
              l_firstvisiblerowlist-value = ff-value.
              MODIFY me->firstvisiblerowlist FROM l_firstvisiblerowlist INDEX sy-tabix.
            WHEN 4.
              IF sy-tabix = 0.
                l_firstvisiblerowlist-name  = ff-name.
                l_firstvisiblerowlist-value = ff-value.
                APPEND l_firstvisiblerowlist TO me->firstvisiblerowlist.
              ELSE.
                l_firstvisiblerowlist-name  = ff-name.
                l_firstvisiblerowlist-value = ff-value.
                INSERT l_firstvisiblerowlist INTO me->firstvisiblerowlist INDEX sy-tabix.
              ENDIF.
            WHEN 8.
              l_firstvisiblerowlist-name  = ff-name.
              l_firstvisiblerowlist-value = ff-value.
              APPEND l_firstvisiblerowlist TO me->firstvisiblerowlist.
          ENDCASE.
        ENDIF.
      ENDLOOP.
    Than you have to provide a generic method to read the firstvisiblerow for each tableview
    GET_FIRSTVISIBLEROW
    *IM_TABLENAME
    *RE_VALUE
      DATA: l_firstvisiblerow  TYPE zmmsp_tableview_1st_visi_row.
      READ TABLE me->firstvisiblerowlist INTO l_firstvisiblerow WITH KEY name = im_tablename.
      IF sy-subrc = 0.
        re_value =  l_firstvisiblerow-value.
      ELSE.
        re_value =  1.
      ENDIF.
    And in the DO_REQUSET of each controller you could write something like:
    * Paginator
      DATA: l_tab1_visiblefirstrow TYPE sytabix.
      l_tab1_visiblefirstrow = o_bsp_main->get_firstvisiblerow( 'f019id_tab1_visiblefirstrow'    ).
    As usual pass the value to the view via:
      o_page->set_attribute( name = 'tab1visiblefirstrow' value = l_tab1_visiblefirstrow ).
    Did you get it?

  • When clicking on an attachment to an email, it will only save rather than save or open. How can I change the setting to allow me to open an attachment before deciding whether or not to save it?

    There is a dialog box that appears when I click on an email attachment that asks whether to open or save a .pdf document, and whether I always want that action to be taken. However, when clicking a .doc or .docx document, I no longer have the choice. How can I revive the dialog box to choose to 'open' the file rather than being forced to 'save' the file?

    Try to clear the cache.
    * Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    See also:
    * http://kb.mozillazine.org/File_types_and_download_actions
    You can rename such files with a .html file extension and give them a .jpg file extension to make applications see them as an image.<br />
    If Windows is stubborn and keeps the .html file extension and you end up with image.jpg.html then add quotes around the name ("image.jpg")

  • Child topics not appearing when clicked in parent project

    Hello,
    I have generated a Webhelp parent project containing two child projects in RoboHelp 9. The tables of contents appear for all projects correctly, but when I click some of the topics, they will not display, rather I get that message that my webpage cannot be found. Most of the topics work fine when clicked.
    If it helps, it seems that the topics that won't display are ones that are new or have recent edits.
    I've tried regenerating my projects and re-creating the TOCs, but I am not sure what else I can try. When I generate the child projects on their own, all topics work fine, it is only when merged as a child project in the main project that the topics won't show.
    Thanks,
    Maddy

    It looks like I was wrong, it isn't just new topics, it is a mix of old and new topics that aren't appearing.
    When I look into the folders of the generated merged topics, it looks like these topic files are not generating.
    For example:
    I generate parent project GP and its topics work fine.
    I generate parent project LR and its topics work fine.
    I generate project GP as a child project merged in parent project LR, several of child project GP's topic files have not generated.
    I tried to move the missing files from the main GP generated folders into LR's child version of GP where they should appear, but I get this message: "Cannot move file abcd: The filename, directory name, or volume syntax is incorrect".
    The topics that did generate properly, both new and old, do appear to open to the correct pages when clicked in the TOC.

  • When clicking "Save image as" how can I get Firefox to auto add a (1) (2) etc at the end of the filename if an image with the same filename already exists?

    How can I get Firefox to automatically rename images when clicking "Save image as" on the menu, when an image with the same file name already exists in the folder??

    Hello,
    That is not a feature that is supported natively within Firefox but there are various add-ons which I think will do the job you need.
    The one I have used is [https://addons.mozilla.org/en-US/firefox/addon/web-slide-show/?src=search Web Slide Show]. This is primarily an add-on for viewing a slideshow of images when they are presented as thumbnails on a web page. However once you are in the slideshow there is a download button which will download all the images in the slideshow. It will automatically rename the images if an image with the same name already exists in the folder.
    If you don't like that add-on then here are some others that may do the same job:
    * [https://addons.mozilla.org/en-US/firefox/addon/image-download-%E2%85%B1/?src=search Image Download II]
    * [https://addons.mozilla.org/En-us/firefox/addon/image-picker/ Image Picker]
    I hope that helps. Let me know if not.
    Also I notice that you are using Firefox v23. That is now an outdated version. To get the latest security updates I suggest updating to version 24. See the support article here: [[Update Firefox to the latest version]].

Maybe you are looking for