I have a problem with resource level passwod polocies.

Hi,
i have a scenario, i have two password policies for two different resources. for example one of my resource is AD for this resource i set password policy to AD (Warn After one day value to 1). i didnt get any warning while logging into AD machine. is resource level password policy applied to AD user or not.
Thanks,

You can define password policy for OIM Password itself and whenever user will change his password in OIM then it will be reflected in Target System.
If he doesn't change his password then you customize the connector to lock the user in target system iff target system supports locking and unlocking operations.

Similar Messages

  • Problem with Revision level for a Material

    Hi All,
    I have a problem with Revision Levels for a Material.
    I want to know the Revision Level for a particular Material for BOM Creation.
    Can anyone please let me know from which Table or Funtion Module can I get the Rev Level, once I pass MATNR (Material) and AENNR (Change Number).
    <REMOVED BY MODERATOR>
    Thanks and Regards,
    Harish Kalla
    Edited by: Alvaro Tejada Galindo on Apr 14, 2008 4:30 PM

    HI,
    You can use table AEOI.
    Hope this helps.
    <REMOVED BY MODERATOR>
    Regards,
    Sipra
    Edited by: Alvaro Tejada Galindo on Apr 14, 2008 4:30 PM

  • Hi Guys, I have a problem with Rosemount Radar Level Trasnmitter Model 5400 series with Foundation Fieldbus

    Hi Guys, I have a problem with Rosemount Radar Level Trasnmitter Model 5400 series with Foundation Fieldbus, the indication of radar in NI-FBUS software configurator was good no Error, but when I try to connect the segment to the Centum VP DCS, the radar lost in the list, but another device in the segment still in the list, only the radar lost from the list.please your advice what make the radar lost in the list?, Thank you
    Attachments:
    Radar Level Tranmitter 5400FF.pdf ‏516 KB

    Hi Nanda,
    Would you check if the addresses of the device conflicts with one of the new devices in the cascaded segments?
    If this is not the issue, can you try to see what happens if you only use this one device with the same procedure you have done? Just wanna try to narrow down where the problem is. A capture by FBUS Monitor is even better.
    Thanks.

  • I have a problem with JDBC Realm in Tomcat/Oracle/Win XP

    I have a problem with JDBC Realm in Tomcat.
    I have attached my server.xml file located in the
    C:\Program Files\Apache Software Foundation\Tomcat 5.5\conf\server.xml
    The Problem is that when I login I get the user name and password prompt but it does not resolve.
    When I enter in the tomcat-users.xml password with memory realm uncommented it works fine.
    C:\Program Files\Apache Software Foundation\Tomcat 5.5\conf\tomcat-users.xml
    Is there a cache or something I need to reset for the JDBC Realm to work?
    I have attached my tables and contents as well...
    Did I miss something????
    Thanks
    Phil
    server.xml
    <Server port="8005" shutdown="SHUTDOWN">
    <Listener className="org.apache.catalina.mbeans.ServerLifecycleListener" />
    <Listener className="org.apache.catalina.mbeans.GlobalResourcesLifecycleListener" />
    <Listener className="org.apache.catalina.storeconfig.StoreConfigLifecycleListener"/>
    <!-- Global JNDI resources -->
    <GlobalNamingResources>
    <!-- Test entry for demonstration purposes -->
    <Environment name="simpleValue" type="java.lang.Integer" value="30"/>
    </GlobalNamingResources>
    <!-- Define the Tomcat Stand-Alone Service -->
    <Service name="Catalina">
    <!-- Define a non-SSL HTTP/1.1 Connector on port 8080 -->
    <Connector
    port="8080" maxHttpHeaderSize="8192"
    maxThreads="150" minSpareThreads="25" maxSpareThreads="75"
    enableLookups="false" redirectPort="8443" acceptCount="100"
    connectionTimeout="20000" disableUploadTimeout="true" />
    <!-- Define an AJP 1.3 Connector on port 8009 -->
    <Connector port="8009"
    enableLookups="false" redirectPort="8443" protocol="AJP/1.3" />
    <!-- Define the top level container in our container hierarchy -->
    <Engine name="Catalina" defaultHost="localhost">
    <!--
    <Realm className="org.apache.catalina.realm.MemoryRealm" />
    -->
    <Realm className="org.apache.catalina.realm.JDBCRealm"
    driverName="oracle.jdbc.driver.OracleDriver"
    connectionURL="jdbc:oracle:thin:@localhost:1521:orcl"
    connectionName="testName" connectionPassword="testPass"
    userTable="users"
    userNameCol="user_name"
    userCredCol="user_pass"
    userRoleTable="user_roles"
    roleNameCol="role_name" />
    <!-- Define the default virtual host
    Note: XML Schema validation will not work with Xerces 2.2.
    -->
    <Host name="localhost" appBase="webapps"
    unpackWARs="true" autoDeploy="true"
    xmlValidation="false" xmlNamespaceAware="false">
    </Host>
    </Engine>
    </Service>
    </Server>
    Tables
    create table users
    user_name varchar(15) not null primary key,
    user_pass varchar(15) not null
    create table roles
    role_name varchar(15) not null primary key
    create table user_roles
    user_name varchar(15) not null,
    role_name varchar(15) not null,
    primary key( user_name, role_name )
    select * from users;
    ----------------------+
    | user_name | user_pass |
    ----------------------+
    | tomcat | tomcat |
    | user1 | tomcat |
    | user2 | tomcat |
    | user3 | tomcat |
    ----------------------+
    select * from roles;
    | role_name |
    | tomcat |
    | role1 |
    select * from user_roles;
    -----------------------+
    | role_name | user_name |
    -----------------------+
    | tomcat | user1 |
    | role1 | user2 |
    | tomcat | tomcat |
    | role1 | tomcat |
    -----------------------+

    Jan 2, 2008 11:49:35 AM org.apache.coyote.http11.Http11Protocol init
    INFO: Initializing Coyote HTTP/1.1 on http-8080
    Jan 2, 2008 11:49:35 AM org.apache.catalina.startup.Catalina load
    INFO: Initialization processed in 734 ms
    Jan 2, 2008 11:49:35 AM org.apache.catalina.core.StandardService start
    INFO: Starting service Catalina
    Jan 2, 2008 11:49:35 AM org.apache.catalina.core.StandardEngine start
    INFO: Starting Servlet Engine: Apache Tomcat/5.5.9
    Jan 2, 2008 11:49:35 AM org.apache.catalina.realm.JDBCRealm start
    SEVERE: Exception opening database connection
    java.sql.SQLException: oracle.jdbc.driver.OracleDriver
         at org.apache.catalina.realm.JDBCRealm.open(JDBCRealm.java:684)
         at org.apache.catalina.realm.JDBCRealm.start(JDBCRealm.java:758)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1004)
         at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:442)
         at org.apache.catalina.core.StandardService.start(StandardService.java:450)
         at org.apache.catalina.core.StandardServer.start(StandardServer.java:683)
         at org.apache.catalina.startup.Catalina.start(Catalina.java:537)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:271)
         at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:409)
    Jan 2, 2008 11:49:35 AM org.apache.catalina.core.StandardHost start
    INFO: XML validation disabled
    Jan 2, 2008 11:49:36 AM org.apache.catalina.core.StandardContext resourcesStart

  • I have a Problem with Romming Between SSIDs withing the same WLC but with deferent VLAN .

    HI All,
    I have a Problem with Romming Between SSIDs withing the same WLC but with deferent VLAN . the WLC are providing the HQ and one of the Branches the Wireless services .
    Am using all the available 9 SSIDs at the HQ , and am using only 4 of it at the Brnche.
    The problem that i have are happening only at the Branch office as i cant room between the SSIDs within Diferent VLANs but i can do it with the one that pointing to the same VLAN. Once the client ( Laptop/Phone ) connected to one of the SSIDs. it imposiible to have him connected to the other ones with Different VLAN. meanwhile, It says its connected to the other SSID but its not getting IP from that pool.
    here is the Show Run-Config from my WLC .. and the Problem happening between the SSID AMOBILE and ASTAFF. i have the Debug while am switching between the SSIDs if needed .
    =~=~=~=~=~=~=~=~=~=~=~= PuTTY log 2013.11.04 10:20:47 =~=~=~=~=~=~=~=~=~=~=~=
    show run-config
    Press Enter to continue...
    System Inventory
    NAME: "Chassis"   , DESCR: "Cisco 5500 Series Wireless LAN Controller"
    PID: AIR-CT5508-K9, VID: V01, SN: FCW1535L01G
    Burned-in MAC Address............................ 30:E4:DB:1B:99:80
    Power Supply 1................................... Present, OK
    Power Supply 2................................... Absent
    Maximum number of APs supported.................. 12
    Press Enter to continue or <ctrl-z> to abort
    System Information
    Manufacturer's Name.............................. Cisco Systems Inc.
    Product Name..................................... Cisco Controller
    Product Version.................................. 7.0.235.0
    Bootloader Version............................... 1.0.1
    Field Recovery Image Version..................... 6.0.182.0
    Firmware Version................................. FPGA 1.3, Env 1.6, USB console 1.27
    Build Type....................................... DATA + WPS
    System Name...................................... WLAN Controller 5508
    System Location..................................
    System Contact...................................
    System ObjectID.................................. 1.3.6.1.4.1.9.1.1069
    IP Address....................................... 10.125.18.15
    Last Reset....................................... Software reset
    System Up Time................................... 41 days 5 hrs 14 mins 42 secs
    System Timezone Location......................... (GMT -5:00) Eastern Time (US and Canada)
    Current Boot License Level....................... base
    Current Boot License Type........................ Permanent
    Next Boot License Level.......................... base
    Next Boot License Type........................... Permanent
    Configured Country............................... US - United States
    --More or (q)uit current module or <ctrl-z> to abort
    Operating Environment............................ Commercial (0 to 40 C)
    Internal Temp Alarm Limits....................... 0 to 65 C
    Internal Temperature............................. +36 C
    External Temperature............................. +20 C
    Fan Status....................................... OK
    State of 802.11b Network......................... Enabled
    State of 802.11a Network......................... Enabled
    Number of WLANs.................................. 10
    Number of Active Clients......................... 61
    Burned-in MAC Address............................ 30:E4:DB:1B:99:80
    Power Supply 1................................... Present, OK
    Power Supply 2................................... Absent
    Maximum number of APs supported.................. 12
    Press Enter to continue or <ctrl-z> to abort
    AP Bundle Information
    Primary AP Image  Size
    ap3g1             5804
    ap801             5192
    ap802             5232
    c1100             3096
    c1130             4972
    c1140             4992
    c1200             3364
    c1240             4812
    c1250             5512
    c1310             3136
    c1520             6412
    c3201             4324
    c602i             3716
    Secondary AP Image      Size
    ap801             4964
    c1100             3036
    --More or (q)uit current module or <ctrl-z> to abort
    c1130             4884
    c1140             4492
    c1200             3316
    c1240             4712
    c1250             5064
    c1310             3084
    c1520             5244
    c3201             4264
    Press Enter to continue or <ctrl-z> to abort
    Switch Configuration
    802.3x Flow Control Mode......................... Disable
    FIPS prerequisite features....................... Disabled
    secret obfuscation............................... Enabled
    Strong Password Check Features:
           case-check ...........Enabled
           consecutive-check ....Enabled
           default-check .......Enabled
           username-check ......Enabled
    Press Enter to continue or <ctrl-z> to abort
    Network Information
    RF-Network Name............................. OGR
    Web Mode.................................... Disable
    Secure Web Mode............................. Enable
    Secure Web Mode Cipher-Option High.......... Disable
    Secure Web Mode Cipher-Option SSLv2......... Enable
    OCSP........................................ Disabled
    OCSP responder URL..........................
    Secure Shell (ssh).......................... Enable
    Telnet...................................... Disable
    Ethernet Multicast Forwarding............... Disable
    Ethernet Broadcast Forwarding............... Disable
    AP Multicast/Broadcast Mode................. Unicast
    IGMP snooping............................... Disabled
    IGMP timeout................................ 60 seconds
    IGMP Query Interval......................... 20 seconds
    User Idle Timeout........................... 300 seconds
    ARP Idle Timeout............................ 300 seconds
    Cisco AP Default Master..................... Enabled
    AP Join Priority............................ Disable
    Mgmt Via Wireless Interface................. Disable
    Mgmt Via Dynamic Interface.................. Disable
    --More or (q)uit current module or <ctrl-z> to abort
    Bridge MAC filter Config.................... Enable
    Bridge Security Mode........................ EAP
    Mesh Full Sector DFS........................ Enable
    AP Fallback ................................ Enable
    Web Auth Redirect Ports .................... 80
    Web Auth Proxy Redirect ................... Disable
    Fast SSID Change ........................... Enabled
    AP Discovery - NAT IP Only ................. Enabled
    IP/MAC Addr Binding Check .................. Enabled
    Press Enter to continue or <ctrl-z> to abort
    Port Summary
               STP   Admin   Physical   Physical   Link   Link
    Pr Type   Stat   Mode     Mode     Status   Status Trap    POE   SFPType  
    1 Normal Forw Enable Auto       1000 Full Up     Enable N/A     1000BaseTX
    2 Normal Disa Enable Auto       Auto       Down   Enable N/A     Not Present
    3 Normal Disa Enable Auto       Auto       Down   Enable N/A     Not Present
    4 Normal Disa Enable Auto       Auto       Down   Enable N/A     Not Present
    5 Normal Disa Enable Auto       Auto       Down   Enable N/A     Not Present
    6 Normal Disa Enable Auto       Auto       Down   Enable N/A     Not Present
    7 Normal Disa Enable Auto       Auto       Down   Enable N/A     Not Present
    8 Normal Disa Enable Auto       Auto       Down   Enable N/A     Not Present
    Press Enter to continue or <ctrl-z> to abort
    AP Summary
    Number of APs.................................... 8
    Global AP User Name.............................. Not Configured
    Global AP Dot1x User Name........................ Not Configured
    AP Name             Slots AP Model             Ethernet MAC       Location         Port Country Priority
    KNOWLOGY_DC01       2     AIR-LAP1131AG-A-K9   00:1d:45:86:ed:4e KNOWLOGY_DC_Serv 1       US       1
    KNOWLOGY_DC02       2     AIR-LAP1131AG-A-K9   00:21:d8:36:c5:c4 KNOWLOGY_DC_Serv 1       US       1
    KN1252_AP01         2     AIR-LAP1252AG-A-K9   00:21:d8:ef:06:50 Knowlogy Confere 1       US       1
    KN1252_AP02         2     AIR-LAP1252AG-A-K9   00:22:55:8e:2e:d4 Server Room Side 1       US       1
    Anham_AP03           2     AIR-LAP1142N-A-K9     70:81:05:88:15:b5 default location 1       US       1
    ANHAM_AP01          2     AIR-LAP1142N-A-K9     70:81:05:b0:e4:62 Small Conference 1       US       1
    ANHAM_AP04           2     AIR-LAP1131AG-A-K9   00:1d:45:86:e1:b8   Conference room 1       US       1
    ANHAM_AP02           2     AIR-LAP1142N-A-K9     70:81:05:96:7a:49         Copy Room 1       US       1
    AP Tcp-Mss-Adjust Info
    AP Name             TCP State MSS Size
    KNOWLOGY_DC01       disabled   -
    KNOWLOGY_DC02       disabled   -
    --More or (q)uit current module or <ctrl-z> to abort
    KN1252_AP01         disabled   -
    KN1252_AP02         disabled   -
    Anham_AP03           disabled   -
    ANHAM_AP01           disabled   -
    ANHAM_AP04           disabled   -
    ANHAM_AP02           disabled   -
    Press Enter to continue or <ctrl-z> to abort
    AP Location
    Total Number of AP Groups........................ 3  
    Site Name........................................ ANHAM8075
    Site Description................................. ANHAM 8075 Location
    WLAN ID         Interface         Network Admission Control         Radio Policy
    1               knowlogy_ogr         Disabled                         None
    6               knowlogy_ogr         Disabled                         None
    9               knowlogy_ogr         Disabled                         None
    7               knowlogy_ogr         Disabled                         None
    AP Name             Slots AP Model             Ethernet MAC       Location         Port Country Priority
    Anham_AP03           2     AIR-LAP1142N-A-K9   70:81:05:88:15:b5 default location 1     US       1
    ANHAM_AP01           2     AIR-LAP1142N-A-K9   70:81:05:b0:e4:62 Small Conference 1     US       1
    ANHAM_AP04           2     AIR-LAP1131AG-A-K9   00:1d:45:86:e1:b8   Conference room 1     US       1
    ANHAM_AP02           2     AIR-LAP1142N-A-K9   70:81:05:96:7a:49         Copy Room 1     US       1
    Site Name........................................ Knowlogy_DC
    --More or (q)uit current module or <ctrl-z> to abort
    Site Description................................. DC Center Access points
    WLAN ID         Interface         Network Admission Control         Radio Policy
    2               knowlogy_ogr         Disabled                         None
    4               knowlogy_ogr         Disabled                         None
    3               knowlogy_ogr         Disabled                         None
    AP Name             Slots AP Model             Ethernet MAC       Location         Port Country Priority
    KNOWLOGY_DC01       2     AIR-LAP1131AG-A-K9   00:1d:45:86:ed:4e KNOWLOGY_DC_Serv 1     US       1
    KNOWLOGY_DC02       2     AIR-LAP1131AG-A-K9   00:21:d8:36:c5:c4 KNOWLOGY_DC_Serv 1     US       1
    Site Name........................................ OGR
    Site Description................................. 1934 OGR Office
    WLAN ID         Interface         Network Admission Control         Radio Policy
    1               knowlogy_ogr         Disabled                         None
    2               knowlogy_ogr         Disabled                        None
    4               knowlogy_ogr         Disabled                         None
    6               knowlogy_ogr         Disabled                         None
    --More or (q)uit current module or <ctrl-z> to abort
    7               knowlogy_ogr        Disabled                         None
    9               knowlogy_ogr         Disabled                         None
    8               knowlogy_ogr         Disabled                         None
    AP Name             Slots AP Model             Ethernet MAC       Location         Port Country Priority
    KN1252_AP01         2     AIR-LAP1252AG-A-K9   00:21:d8:ef:06:50 Knowlogy Confere 1    US       1
    KN1252_AP02         2     AIR-LAP1252AG-A-K9   00:22:55:8e:2e:d4 Server Room Side 1     US       1
    Site Name........................................ default-group
    Site Description................................. <none>
    WLAN ID        Interface         Network Admission Control         Radio Policy
    1               knowlogy_ogr         Disabled                         None
    2               knowlogy_ogr         Disabled                         None
    3               knowlogy_ogr         Disabled                         None
    4               knowlogy_ogr         Disabled                         None
    5               knowlogy_ogr         Disabled                         None
    6               knowlogy_ogr         Disabled                         None
    7               knowlogy_ogr         Disabled                         None
    8               knowlogy_ogr         Disabled                          None
    --More or (q)uit current module or <ctrl-z> to abort
    9               knowlogy_ogr         Disabled                         None
    10             management           Disabled                         None
    AP Name             Slots AP Model             Ethernet MAC       Location         Port Country Priority
    Press Enter to continue or <ctrl-z> to abort
    AP Config
    Cisco AP Identifier.............................. 6
    Cisco AP Name.................................... KNOWLOGY_DC01
    Country code..................................... US - United States
    Regulatory Domain allowed by Country............. 802.11bg:-A     802.11a:-A
    AP Country code.................................. US - United States
    AP Regulatory Domain............................. -A
    Switch Port Number .............................. 1
    MAC Address...................................... 00:1d:45:86:ed:4e
    IP Address Configuration......................... DHCP
    IP Address....................................... 10.22.1.100
    Gateway IP Addr.................................. 10.22.1.1
    NAT External IP Address.......................... None
    CAPWAP Path MTU.................................. 1485
    Telnet State..................................... Disabled
    Ssh State........................................ Disabled
    Cisco AP Location................................ KNOWLOGY_DC_ServerRoom
    Cisco AP Group Name.............................. Knowlogy_DC
    Primary Cisco Switch Name........................ wireless.knowlogy.com
    Primary Cisco Switch IP Address.................. 10.125.18.15
    Secondary Cisco Switch Name......................
    Secondary Cisco Switch IP Address................ Not Configured
    --More or (q)uit current module or <ctrl-z> to abortIP Address.................. 10.125.18.15
    Tertiary Cisco Switch Name.......................
    Tertiary Cisco Switch IP Address................. Not Configured
    Administrative State ............................ ADMIN_ENABLED
    Operation State ................................. REGISTERED
    Mirroring Mode .................................. Disabled
    AP Mode ......................................... H-Reap
    Public Safety ................................... Disabled
    AP SubMode ...................................... Not Configured
    Remote AP Debug ................................. Disabled
    Logging trap severity level ..................... informational
    Logging syslog facility ......................... kern
    S/W Version .................................... 7.0.235.0
    Boot Version ................................... 12.3.8.0
    Mini IOS Version ................................ 3.0.51.0
    Stats Reporting Period .......................... 180
    LED State........................................ Enabled
    PoE Pre-Standard Switch.......................... Disabled
    PoE Power Injector MAC Addr...................... Disabled
    Power Type/Mode.................................. Power injector / Normal mode
    Number Of Slots.................................. 2
    AP Model......................................... AIR-LAP1131AG-A-K9
    AP Image......................................... C1130-K9W8-M
    IOS Version...................................... 12.4(23c)JA5
    --More or (q)uit current module or <ctrl-z> to abort
    Reset Button..................................... Enabled
    AP Serial Number................................. FTX1134T0QG
    AP Certificate Type.............................. Manufacture Installed
    H-REAP Vlan mode :............................... Enabled
          Native ID :..................................... 22
          WLAN 2 :........................................ 21
          WLAN 4 :........................................ 25
          WLAN 3 :........................................ 25
    H-REAP Backup Auth Radius Servers :
    Static Primary Radius Server.................... Disabled
    Static Secondary Radius Server.................. Disabled
    Group Primary Radius Server..................... Disabled
    Group Secondary Radius Server................... Disabled
    AP User Mode..................................... AUTOMATIC
    AP User Name..................................... Not Configured
    AP Dot1x User Mode............................... Not Configured
    AP Dot1x User Name............................... Not Configured
    Cisco AP system logging host..................... 255.255.255.255
    AP Up Time....................................... 48 days, 20 h 19 m 18 s
    AP LWAPP Up Time................................. 40 days, 13 h 58 m 18 s
    Join Date and Time............................... Tue Sep 24 21:24:33 2013
    Join Taken Time.................................. 0 days, 00 h 10 m 47 s
    --More or (q)uit current module or <ctrl-z> to abort
    Attributes for Slot 0
        Radio Type................................... RADIO_TYPE_80211b
       Administrative State ........................ ADMIN_ENABLED
       Operation State ............................. UP
       Radio Role .................................. ACCESS
       CellId ...................................... 0
       Station Configuration
         Configuration ............................. AUTOMATIC
         Number Of WLANs ........................... 3
         Medium Occupancy Limit .................... 100
         CFP Period ................................ 4
         CFP MaxDuration ........................... 60
         BSSID ..................................... 00:1d:71:09:8f:90
         Operation Rate Set
           1000 Kilo Bits........................... MANDATORY
           2000 Kilo Bits........................... MANDATORY
           5500 Kilo Bits........................... MANDATORY
           11000 Kilo Bits.......................... MANDATORY
         Beacon Period ............................. 100
         Fragmentation Threshold ................... 2346
         Multi Domain Capability Implemented ....... TRUE
    --More or (q)uit current module or <ctrl-z> to abort
         Multi Domain Capability Enabled ........... TRUE
         Country String ............................ US
        Multi Domain Capability
         Configuration ............................. AUTOMATIC
         First Chan Num ............................ 1
         Number Of Channels ........................ 11
       MAC Operation Parameters
         Configuration ............................. AUTOMATIC
         Fragmentation Threshold ................... 2346
         Packet Retry Limit ........................ 64
       Tx Power
         Num Of Supported Power Levels ............. 8
         Tx Power Level 1 .......................... 20 dBm
         Tx Power Level 2 .......................... 17 dBm
         Tx Power Level 3 .......................... 14 dBm
         Tx Power Level 4 .......................... 11 dBm
         Tx Power Level 5 .......................... 8 dBm
         Tx Power Level 6 .......................... 5 dBm
         Tx Power Level 7 .......................... 2 dBm
         Tx Power Level 8 .......................... -1 dBm
    --More or (q)uit current module or <ctrl-z> to abort
         Tx Power Configuration .................... AUTOMATIC
         Current Tx Power Level .................... 1
       Phy DSSS parameters
         Configuration ............................. AUTOMATIC
         Current Channel ........................... 11
         Extension Channel ......................... NONE
         Channel Width.............................. 20 Mhz
         Allowed Channel List....................... 1,2,3,4,5,6,7,8,9,10,11
         Current CCA Mode .......................... 0
         ED Threshold .............................. -50
         Antenna Type............................... INTERNAL_ANTENNA
         Internal Antenna Gain (in .5 dBi units).... 8
         Diversity.................................. DIVERSITY_ENABLED
       Performance Profile Parameters
         Configuration ............................. AUTOMATIC
         Interference threshold..................... 10 %
         Noise threshold............................ -70 dBm
         RF utilization threshold................... 80 %
         Data-rate threshold........................ 1000000 bps
         Client threshold........................... 12 clients
         Coverage SNR threshold..................... 12 dB
    --More or (q)uit current module or <ctrl-z> to abort
         Coverage exception level................... 25 %
         Client minimum exception level............. 3 clients
       Rogue Containment Information
       Containment Count............................ 0
       CleanAir Management Information
           CleanAir Capable......................... No
    Cisco AP Identifier.............................. 6
    Cisco AP Name.................................... KNOWLOGY_DC01
    Country code..................................... US - United States
    Regulatory Domain allowed by Country............. 802.11bg:-A     802.11a:-A
    AP Country code.................................. US - United States
    AP Regulatory Domain............................. -A
    Switch Port Number .............................. 1
    MAC Address...................................... 00:1d:45:86:ed:4e
    IP Address Configuration......................... DHCP
    IP Address....................................... 10.22.1.100
    Gateway IP Addr.................................. 10.22.1.1
    NAT External IP Address.......................... None
    CAPWAP Path MTU.................................. 1485
    Telnet State..................................... Disabled
    Ssh State........................................ Disabled
    --More or (q)uit current module or <ctrl-z> to abort
    Cisco AP Location................................ KNOWLOGY_DC_ServerRoom
    Cisco AP Group Name.............................. Knowlogy_DC
    Primary Cisco Switch Name........................ wireless.knowlogy.com
    Primary Cisco Switch Secondary Cisco Switch Name......................
    Secondary Cisco Switch IP Address................ Not Configured
    Tertiary Cisco Switch Name.......................
    Tertiary Cisco Switch IP Address................. Not Configured
    Administrative State ............................ ADMIN_ENABLED
    Operation State ................................. REGISTERED
    Mirroring Mode .................................. Disabled
    AP Mode ......................................... H-Reap
    Public Safety ................................... Disabled
    AP SubMode ...................................... Not Configured
    Remote AP Debug ................................. Disabled
    Logging trap severity level ..................... informational
    Logging syslog facility ......................... kern
    S/W Version .................................... 7.0.235.0
    Boot Version ................................... 12.3.8.0
    Mini IOS Version ................................ 3.0.51.0
    Stats Reporting Period .......................... 180
    LED State........................................ Enabled
    PoE Pre-Standard Switch.......................... Disabled
    PoE Power Injector MAC Addr...................... Disabled
    --More or (q)uit current module or <ctrl-z> to abort
    Power Type/Mode.................................. Power injector / Normal mode
    Number Of Slots.................................. 2
    AP Model......................................... AIR-LAP1131AG-A-K9
    AP Image......................................... C1130-K9W8-M
    IOS Version...................................... 12.4(23c)JA5
    Reset Button..................................... Enabled
    AP Serial Number................................. FTX1134T0QG
    AP Certificate Type.............................. Manufacture Installed
    H-REAP Vlan mode :............................... Enabled
          Native ID :..................................... 22
          WLAN 2 :........................................ 21
          WLAN 4 :........................................ 25
          WLAN 3 :........................................ 25
    H-REAP Backup Auth Radius Servers :
    Static Primary Radius Server.................... Disabled
    Static Secondary Radius Server.................. Disabled
    Group Primary Radius Server..................... Disabled
    Group Secondary Radius Server................... Disabled
    AP User Mode..................................... AUTOMATIC
    AP User Name..................................... Not Configured
    AP Dot1x User Mode............................... Not Configured
    AP Dot1x User Name............................... Not Configured
    Cisco AP system logging host..................... 255.255.255.255
    --More or (q)uit current module or <ctrl-z> to abort
    AP Up Time....................................... 48 days, 20 h 19 m 18 s
    AP LWAPP Up Time................................. 40 days, 13 h 58 m 18 s
    Join Date and Time............................... Tue Sep 24 21:24:33 2013
    Join Taken Time.................................. 0 days, 00 h 10 m 47 s
    Attributes for Slot 1
       Radio Type................................... RADIO_TYPE_80211a
       Radio Subband................................ RADIO_SUBBAND_ALL
       Administrative State ........................ ADMIN_ENABLED
       Operation State ............................. UP
       Radio Role .................................. ACCESS
       CellId ...................................... 0
       Station Configuration
         Configuration ............................. AUTOMATIC
         Number Of WLANs ........................... 3
         Medium Occupancy Limit .................... 100
         CFP Period ................................ 4
          CFP MaxDuration ........................... 60
         BSSID ..................................... 00:1d:71:09:8f:90
         Operation Rate Set
           6000 Kilo Bits........................... MANDATORY
    --More or (q)uit current module or <ctrl-z> to abort
           9000 Kilo Bits........................... SUPPORTED
           12000 Kilo Bits.......................... MANDATORY
           18000 Kilo Bits.......................... SUPPORTED
           24000 Kilo Bits.......................... MANDATORY
          36000 Kilo Bits.......................... SUPPORTED
           48000 Kilo Bits.......................... SUPPORTED
           54000 Kilo Bits.......................... SUPPORTED
         Beacon Period ............................. 100
         Fragmentation Threshold ................... 2346
         Multi Domain Capability Implemented ....... TRUE
         Multi Domain Capability Enabled ........... TRUE
         Country String ............................ US
       Multi Domain Capability
         Configuration ............................. AUTOMATIC
         First Chan Num ............................ 36
         Number Of Channels ........................ 20
       MAC Operation Parameters
         Configuration ............................. AUTOMATIC
         Fragmentation Threshold ................... 2346
         Packet Retry Limit ........................ 64
    --More or (q)uit current module or <ctrl-z> to abort
       Tx Power
         Num Of Supported Power Levels ............. 7
         Tx Power Level 1 .......................... 15 dBm
         Tx Power Level 2 .......................... 14 dBm
         Tx Power Level 3 .......................... 11 dBm
         Tx Power Level 4 .......................... 8 dBm
         Tx Power Level 5 .......................... 5 dBm
         Tx Power Level 6 .......................... 2 dBm
         Tx Power Level 7 .......................... -1 dBm
         Tx Power Configuration .................... AUTOMATIC
         Current Tx Power Level .................... 1
       Phy OFDM parameters
         Configuration ............................. AUTOMATIC
         Current Channel ........................... 44
         Extension Channel ......................... NONE
         Channel Width.............................. 20 Mhz
         Allowed Channel List....................... 36,40,44,48,52,56,60,64,100,
           ......................................... 104,108,112,116,132,136,140,
           ......................................... 149,153,157,161
         TI Threshold .............................. -50
         Antenna Type............................... INTERNAL_ANTENNA
         Internal Antenna Gain (in .5 dBi units).... 8
    --More or (q)uit current module or <ctrl-z> to abort
         Diversity.................................. DIVERSITY_ENABLED
       Performance Profile Parameters
         Configuration ............................. AUTOMATIC
         Interference threshold..................... 10 %
         Noise threshold............................ -70 dBm
         RF utilization threshold................... 80 %
          Data-rate threshold........................ 1000000 bps
         Client threshold........................... 12 clients
         Coverage SNR threshold..................... 16 dB
         Coverage exception level................... 25 %
         Client minimum exception level............. 3 clients
       Rogue Containment Information
       Containment Count............................ 0
       CleanAir Management Information
           CleanAir Capable......................... No
    Press Enter to continue or <ctrl-z> to abort
    Cisco AP Identifier.............................. 3
    Cisco AP Name.................................... KNOWLOGY_DC02
    Country code..................................... US - United States
    Regulatory Domain allowed by Country............. 802.11bg:-A     802.11a:-A
    AP Country code.................................. US - United States
    AP Regulatory Domain............................. -A
    Switch Port Number .............................. 1
    MAC Address...................................... 00:21:d8:36:c5:c4
    IP Address Configuration......................... DHCP
    IP Address....................................... 10.22.1.101
    Gateway IP Addr.................................. 10.22.1.1
    NAT External IP Address.......................... None
    CAPWAP Path MTU.................................. 1485
    Telnet State..................................... Disabled
    Ssh State........................................ Disabled
    Cisco AP Location................................ KNOWLOGY_DC_ServerRoom
    Cisco AP Group Name.............................. Knowlogy_DC
    Primary Cisco Switch Name........................
    Primary Cisco Switch IP Address.................. Not Configured
    Secondary Cisco Switch Name......................
    Secondary Cisco Switch IP Address................ Not Configured
    Tertiary Cisco Switch Name.......................
    --More or (q)uit current module or <ctrl-z> to abort
    Tertiary Cisco Switch IP Address................. Not Configured
    Administrative State ............................ ADMIN_ENABLED
    Operation State ................................. REGISTERED
    Mirroring Mode .................................. Disabled
    AP Mode ......................................... H-Reap
    Public Safety ................................... Disabled
    AP SubMode ...................................... Not Configured
    Remote AP Debug ................................. Disabled
    Logging trap severity level ..................... informational
    Logging syslog facility ......................... kern
    S/W  Version .................................... 7.0.235.0
    Boot Version ................................... 12.3.8.0
    Mini IOS Version ................................ 3.0.51.0
    Stats Reporting Period .......................... 180
    LED State........................................ Enabled
    PoE Pre-Standard Switch.......................... Enabled
    PoE Power Injector MAC Addr...................... Disabled
    Power Type/Mode.................................. Power injector / Normal mode
    Number Of Slots.................................. 2
    AP Model......................................... AIR-LAP1131AG-A-K9
    AP Image......................................... C1130-K9W8-M
    IOS Version...................................... 12.4(23c)JA5
    Reset Button..................................... Enabled
    --More or (q)uit current module or <ctrl-z> to abort
    AP Serial Number................................. FTX1230T24F
    AP Certificate Type.............................. Manufacture Installed
    H-REAP Vlan mode :............................... Enabled
          Native ID :..................................... 22
          WLAN 2 :........................................ 21
          WLAN 4 :........................................ 25
          WLAN 3 :........................................ 25
    H-REAP Backup Auth Radius Servers :
    Static Primary Radius Server.................... Disabled
    Static Secondary Radius Server.................. Disabled
    Group Primary Radius Server..................... Disabled
    Group Secondary Radius Server................... Disabled
    AP User Mode..................................... AUTOMATIC
    AP User Name..................................... Not Configured
    AP Dot1x User Mode............................... Not Configured
    AP Dot1x User Name............................... Not Configured
    Cisco AP system logging host..................... 255.255.255.255
    AP Up Time....................................... 48 days, 20 h 24 m 41 s
    AP LWAPP Up Time................................. 40 days, 13 h 58 m 18 s
    Join Date and Time............................... Tue Sep 24 21:24:35 2013
    Join Taken Time.................................. 0 days, 00 h 10 m 48 s
    --More or (q)uit current module or <ctrl-z> to abort
    Attributes for Slot 0
       Radio Type................................... RADIO_TYPE_80211b
       Administrative State ........................ ADMIN_ENABLED
       Operation State ............................. UP
       Radio Role .................................. ACCESS
       CellId ...................................... 0
        Station Configuration
         Configuration ............................. AUTOMATIC
         Number Of WLANs ........................... 3
         Medium Occupancy Limit .................... 100
         CFP Period ................................ 4
         CFP MaxDuration ........................... 60
         BSSID ..................................... 00:22:55:a5:0c:30
         Operation Rate Set
           1000 Kilo Bits........................... MANDATORY
           2000 Kilo Bits........................... MANDATORY
           5500 Kilo Bits........................... MANDATORY
           11000 Kilo Bits.......................... MANDATORY
         Beacon Period ............................. 100
         Fragmentation Threshold ................... 2346
         Multi Domain Capability Implemented ....... TRUE
         Multi Domain Capability Enabled ........... TRUE
    --More or (q)uit current module or <ctrl-z> to abort
         Country String ............................ US
       Multi Domain Capability
         Configuration ............................. AUTOMATIC
         First Chan Num ............................ 1
         Number Of Channels ........................ 11
       MAC Operation Parameters
         Configuration ............................. AUTOMATIC
         Fragmentation Threshold ................... 2346
         Packet Retry Limit ........................ 64
       Tx Power
         Num Of Supported Power Levels ............. 8
         Tx Power Level 1 .......................... 20 dBm
         Tx Power Level 2 .......................... 17 dBm
         Tx Power Level 3 .......................... 14 dBm
         Tx Power Level 4 .......................... 11 dBm
         Tx Power Level 5 .......................... 8 dBm
         Tx Power Level 6 .......................... 5 dBm
         Tx Power Level 7 .......................... 2 dBm
         Tx Power Level 8 .......................... -1 dBm
         Tx Power Configuration .................... AUTOMATIC
    --More or (q)uit current module or <ctrl-z> to abort
         Current Tx Power Level .................... 1
       Phy DSSS parameters
         Configuration ............................. AUTOMATIC
         Current Channel ........................... 1
         Extension Channel ......................... NONE
         Channel Width.............................. 20 Mhz
         Allowed Channel List....................... 1,2,3,4,5,6,7,8,9,10,11
         Current CCA Mode .......................... 0
         ED Threshold .............................. -50
         Antenna Type............................... INTERNAL_ANTENNA
         Internal Antenna Gain (in .5 dBi units).... 8
         Diversity.................................. DIVERSITY_ENABLED
       Performance Profile Parameters
         Configuration ............................. AUTOMATIC
         Interference threshold..................... 10 %
         Noise threshold............................ -70 dBm
         RF utilization threshold................... 80 %
         Data-rate threshold........................ 1000000 bps
         Client threshold........................... 12 clients
         Coverage SNR threshold..................... 12 dB
         Coverage exception level................... 25 %
    --More or (q)uit current module or <ctrl-z> to abort
         Client minimum exception level............. 3 clients
       Rogue Containment Information
       Containment Count............................ 0
       CleanAir Management Information
           CleanAir Capable......................... No
    Cisco AP Identifier.............................. 3
    Cisco AP Name.................................... KNOWLOGY_DC02
    Country code..................................... US - United States
    Regulatory Domain allowed by Country............. 802.11bg:-A     802.11a:-A
    AP Country code.................................. US - United States
    AP Regulatory Domain............................. -A
    Switch Port Number .............................. 1
    MAC Address...................................... 00:21:d8:36:c5:c4
    IP Address Configuration......................... DHCP
    IP Address....................................... 10.22.1.101
    Gateway IP Addr.................................. 10.22.1.1
    NAT External IP Address.......................... None
    CAPWAP Path MTU.................................. 1485
    Telnet State..................................... Disabled
    Ssh State........................................ Disabled
    Cisco AP Location................................ KNOWLOGY_DC_ServerRoom
    --More or (q)uit current module or <ctrl-z> to abort
    Cisco AP Group Name.............................. Knowlogy_DC
    Primary Cisco Switch Name........................
    Primary Cisco Switch IP Address.................. Not Configured
    Secondary Cisco Switch Name......................
    Secondary Cisco Switch IP Address................ Not Configured
    Tertiary Cisco Switch Name.......................
    Tertiary Cisco Switch IP Address................. Not Configured
    Administrative State ............................ ADMIN_ENABLED
    Operation State ................................. REGISTERED
    Mirroring Mode .................................. Disabled
    AP Mode ......................................... H-Reap
    Public Safety ................................... Disabled
    AP SubMode ...................................... Not Configured
    Remote AP Debug ................................. Disabled
    Logging trap severity level ..................... informational
    Logging syslog facility ......................... kern
    S/W Version .................................... 7.0.235.0
    Boot Version ................................... 12.3.8.0
    Mini IOS Version ................................ 3.0.51.0
    Stats Reporting Period .......................... 180
    LED State........................................ Enabled
    PoE Pre-Standard Switch.......................... Enabled
    PoE Power Injector MAC Addr...................... Disabled
    --More or (q)uit current module or <ctrl-z> to abort
    Power Type/Mode.................................. Power injector / Normal mode
    Number Of Slots.................................. 2
    AP Model......................................... AIR-LAP1131AG-A-K9
    AP Image......................................... C1130-K9W8-M
    IOS Version...................................... 12.4(23c)JA5
    Reset Button..................................... Enabled
    AP Serial Number................................. FTX1230T24F
    AP Certificate Type.............................. Manufacture Installed
    H-REAP Vlan mode :............................... Enabled
          Native ID :..................................... 22
          WLAN 2 :........................................ 21
          WLAN 4 :........................................ 25
          WLAN 3 :........................................ 25
    H-REAP Backup Auth Radius Servers :
    Static Primary Radius Server.................... Disabled
    Static Secondary Radius Server.................. Disabled
    Group Primary Radius Server..................... Disabled
    Group Secondary Radius Server................... Disabled
    AP User Mode..................................... AUTOMATIC
    AP User Name..................................... Not Configured
    AP Dot1x User Mode............................... Not Configured
    AP Dot1x User Name............................... Not Configured
    Cisco AP system logging host..................... 255.255.255.255
    --More or (q)uit current module or <ctrl-z> to abort
    AP Up Time....................................... 48 days, 20 h 24 m 41 s
    AP LWAPP Up Time................................. 40 days, 13 h 58 m 18 s
    Join Date and Time............................... Tue Sep 24 21:24:35 2013
    Join Taken Time.................................. 0 days, 00 h 10 m 48 s
    Attributes for Slot 1
       Radio Type................................... RADIO_TYPE_80211a
       Radio Subband................................ RADIO_SUBBAND_ALL
       Administrative State ........................ ADMIN_ENABLED
       Operation State ............................. UP
       Radio Role .................................. ACCESS
       CellId ...................................... 0
       Station Configuration
         Configuration ............................. AUTOMATIC
         Number Of WLANs ........................... 3
         Medium Occupancy Limit .................... 100
         CFP Period ................................ 4
         CFP MaxDuration ........................... 60
         BSSID ..................................... 00:22:55:a5:0c:30
         Operation Rate Set
           6000 Kilo Bits........................... MANDATORY
    --More or (q)uit current module or <ctrl-z> to abort
           9000 Kilo Bits........................... SUPPORTED
           12000 Kilo Bits.......................... MANDATORY
           18000 Kilo Bits.......................... SUPPORTED
           24000 Kilo Bits.......................... MANDATORY
           36000 Kilo Bits.......................... SUPPORTED
           48000 Kilo Bits.......................... SUPPORTED
           54000 Kilo Bits.......................... SUPPORTED
         Beacon Period ............................. 100
         Fragmentation Threshold ................... 2346
         Multi Domain Capability Implemented ....... TRUE
         Multi Domain Capability Enabled ........... TRUE
         Country String ............................ US
       Multi Domain Capability
         Configuration ............................. AUTOMATIC
         First Chan Num ............................ 36
         Number Of Channels ........................ 20
       MAC Operation Parameters
         Configuration ............................. AUTOMATIC
         Fragmentation Threshold ................... 2346
         Packet Retry Limit ........................ 64
    --More or (q)uit current module or <ctrl-z> to abort
       Tx Power
         Num Of Supported Power Levels ............. 7
         Tx Power Level 1 .......................... 15 dBm
        Tx Power Level 2 .......................... 14 dBm
         Tx Power Level 3 .......................... 11 dBm
         Tx Power Level 4 .......................... 8 dBm
         Tx Power Level 5 .......................... 5 dBm
         Tx Power Level 6 .......................... 2 dBm
         Tx Power Level 7 .......................... -1 dBm
         Tx Power Configuration .................... AUTOMATIC
         Current Tx Power Level .................... 1
       Phy OFDM parameters
         Configuration ............................. AUTOMATIC
         Current Channel ........................... 36
         Extension Channel ......................... NONE
         Channel Width.............................. 20 Mhz
         Allowed Channel List....................... 36,40,44,48,52,56,60,64,100,
           ......................................... 104,108,112,116,132,136,140,
           ......................................... 149,153,157,161
         TI Threshold .............................. -50
         Antenna Type............................... INTERNAL_ANTENNA
         Internal Antenna Gain (in .5 dBi units).... 8
    --More or (q)uit current module or <ctrl-z> to abort
         Diversity.................................. DIVERSITY_ENABLED
       Performance Profile Parameters
          Configuration ............................. AUTOMATIC
         Interference threshold..................... 10 %
         Noise threshold............................ -70 dBm
         RF utilization threshold................... 80 %
         Data-rate threshold........................ 1000000 bps
         Client threshold........................... 12 clients
         Coverage SNR threshold..................... 16 dB
         Coverage exception level................... 25 %
         Client minimum exception level............. 3 clients
       Rogue Containment Information
       Containment Count............................ 0
       CleanAir Management Information
           CleanAir Capable......................... No
    Press Enter to continue or <ctrl-z> to abort
    Cisco AP Identifier.............................. 5
    Cisco AP Name.................................... KN1252_AP01
    Country code..................................... US - United States
    Regulatory Domain allowed by Country............. 802.11bg:-A     802.11a:-A
    AP Country code.................................. US - United States
    AP Regulatory Domain............................. -A
    Switch Port Number .............................. 1
    MAC Address...................................... 00:21:d8:ef:06:50
    IP Address Configuration......................... DHCP
    IP Address....................................... 10.125.18.101
    IP NetMask....................................... 255.255.255.0
    Gateway IP Addr.................................. 10.125.18.1
    NAT External IP Address.......................... None
    CAPWAP Path MTU.................................. 1485
    Telnet State..................................... Enabled
    Ssh State........................................ Disabled
    Cisco AP Location................................ Knowlogy Conference Rooms Side
    Cisco AP Group Name.............................. OGR
    Primary Cisco Switch Name........................
    Primary Cisco Switch IP Address.................. Not Configured
    Secondary Cisco Switch Name......................
    Secondary Cisco Switch IP Address................ Not Configured
    --More or (q)uit current module or <ctrl-z> to abort
    Tertiary Cisco Switch Name.......................
    Tertiary Cisco Switch IP Address................. Not Configured
    Administrative State ............................ ADMIN_ENABLED
    Operation State ................................. REGISTERED
    Mirroring Mode .................................. Disabled
    AP Mode ......................................... H-Reap
    Public Safety ................................... Disabled
    AP SubMode ...................................... Not Configured
    Remote AP Debug ................................. Disabled
    Logging trap severity level ..................... informational
    Logging syslog facility ......................... kern
    S/W Version .................................... 7.0.235.0
    Boot Version ................................... 12.4.10.0
    Mini IOS Version ................................ 3.0.51.0
    Stats Reporting Period .......................... 180
    LED State........................................ Enabled
    PoE Pre-Standard Switch.......................... Disabled
    PoE Power Injector MAC Addr...................... Disabled
    Power Type/Mode.................................. PoE/Medium Power (15.4 W)
    Number Of Slots.................................. 2
    AP Model......................................... AIR-LAP1252AG-A-K9
    AP Image......................................... C1250-K9W8-M
    IOS Version...................................... 12.4(23c)JA5
    --More or (q)uit current module or <ctrl-z> to abort
    Reset Button..................................... Enabled
    AP Serial Number................................. FTX122990L5
    AP Certificate Type.............................. Manufacture Installed
    H-REAP Vlan mode :............................... Enabled
          Native ID :..................................... 118
          WLAN 1 :........................................ 111
          WLAN 2 :........................................ 111
          WLAN 4 :........................................ 112
          WLAN 6 :........................................ 112
          WLAN 7 :........................................ 111
          WLAN 9 :........................................ 112
          WLAN 8 :........................................ 112
    H-REAP Backup Auth Radius Servers :
    Static Primary Radius Server.................... Disabled
    Static Secondary Radius Server.................. Disabled
    Group Primary Radius Server..................... Disabled
    Group Secondary Radius Server................... Disabled
    AP User Mode..................................... AUTOMATIC
    AP User Name..................................... Not Configured
    AP Dot1x User Mode............................... Not Configured
    AP Dot1x User Name............................... Not Configured
    Cisco AP system logging host..................... 255.255.255.255
    AP Up Time....................................... 26 days, 00 h 24 m 39 s
    --More or (q)uit current module or <ctrl-z> to abort
    AP LWAPP Up Time................................. 26 days, 00 h 23 m 48 s
    Join Date and Time............................... Wed Oct 9 10:59:07 2013
    Join Taken Time.................................. 0 days, 00 h 00 m 50 s
    Attributes for Slot 0
       Radio Type................................... RADIO_TYPE_80211n-2.4
       Administrative State ........................ ADMIN_ENABLED
       Operation State ............................. UP
       Radio Role .................................. ACCESS
       CellId ...................................... 0
       Station Configuration
         Configuration ............................. AUTOMATIC
         Number Of WLANs ........................... 7
         Medium Occupancy Limit .................... 100
         CFP Period ................................ 4
         CFP MaxDuration ........................... 60
         BSSID ..................................... 00:22:55:df:a5:90
         Operation Rate Set
           1000 Kilo Bits........................... MANDATORY
           2000 Kilo Bits........................... MANDATORY
           5500 Kilo Bits........................... MANDATORY
    --More or (q)uit current module or <ctrl-z> to abort
           11000 Kilo Bits.......................... MANDATORY
         MCS Set
           MCS 0.................................... SUPPORTED
           MCS 1.................................... SUPPORTED
           MCS 2.................................... SUPPORTED
           MCS 3.................................... SUPPORTED
           MCS 4.................................... SUPPORTED
           MCS 5.................................... SUPPORTED
           MCS 6.................................... SUPPORTED
           MCS 7.................................... SUPPORTED
           MCS 8.................................... SUPPORTED
            MCS 9.................................... SUPPORTED
           MCS 10................................... SUPPORTED
           MCS 11................................... SUPPORTED
           MCS 12................................... SUPPORTED
           MCS 13................................... SUPPORTED
           MCS 14................................... SUPPORTED
           MCS 15................................... SUPPORTED
         Beacon Period ............................. 100
         Fragmentation Threshold ................... 2346
         Multi Domain Capability Implemented ....... TRUE
         Multi Domain Capability Enabled ........... TRUE
         Country String ............................ US
    --More or (q)uit current module or <ctrl-z> to abort
       Multi Domain Capability
         Configuration ............................. AUTOMATIC
         First Chan Num ............................ 1
         Number Of Channels ........................ 11
       MAC Operation Parameters
         Configuration ............................. AUTOMATIC
         Fragmentation Threshold ................... 2346
         Packet Retry Limit ........................ 64
       Tx Power
         Num Of Supported Power Levels ............. 8
         Tx Power Level 1 .......................... 20 dBm
         Tx Power Level 2 .......................... 17 dBm
         Tx Power Level 3 .......................... 14 dBm
         Tx Power Level 4 ..........

    Well you need to understand the behavior of h-reap or what it's called now, FlexConnect. In this mode, the clients are still remembers on the WLC until the session timer/idle timer expires. So switching between SSID's in h-reap will not be the same when switching when the AP's are in local mode.
    Take a look at the client when connected in FlexConnect in the WLC GUI monitor tab. Thus will show you what ssid and vlan the client is on. Now switch to a different ssid and compare this. It's probably the same because the client has not timed out. Now go back to the other ssid and look again. Now on the WLC, remove or delete the client and then switch to the other ssid at the same time. Or switch SSID's and then remove the client. The client will join the new ssid and in the monitor tab, you should see the info.
    There is no need to have clients have multiple SSID's unless your testing. Devices should only have one ssid profile configured to eliminate any connectivity issues from the device wanting to switch SSID's.
    Sent from Cisco Technical Support iPhone App

  • I  have a problem with the synchronisation of my iPhone and iPad with Outlook 2007 on my 64-bit Windows 7  PC. For several years, I have had no problems with the synchronisation by cord connection and iTunes between these programmes. However, a few months

    I  have a problem with the synchronisation of my iPhone and iPad with Outlook 2007 on my 64-bit Windows 7  PC. For several years,
    I have had no problems with the synchronisation by cord connection and iTunes between these programmes. However, a few months ago I decided to use Mobile Me. However, there were problems with duplication of calendars and then “rogue events” – which could not be deleted – even if deleted on Outlook and on the iPhone (or both at the same time) – they would just reappear after the next synchronisation.  All other synchronisation areas (eg Contacts, Notes etc) work fine.
    I have looked for help through the Apple Support Community and tried many things.  I have repaired my Outlook. I have repaired my .pst file in Windows. I have re-installed the latest version of iTunes on my PC. I have re-installed the firmware on my iPhone. I have tried many permutations on my iPhone. I have closed down all Mobile Me functions on the iPhone. I have spent upwards of 24 hours trying to solve this problem.
    What am I left with? Outlook works seamlessly on my PC. My iPhone calendar now has no events from  my calendar, but does not synchronise through iTunes. Nor does it send events initiated on the iPhone to the Outlook. I am at the point of abandoning iPhones and iPads altogether.  I need to have a properly synchronising calendar on my phone.  Do you have any suggestions?

    In the control panel goto the "Lenovo - Power Manager" and click the battery tab, there is a maintenance button in there that will let you change the charging profile for your battery.   (from memory, so exact wording may be off)
     The lower the numbers you use there, the longer the battery *should* last.    These batteries degrade faster at higher charge levels, however storing them at too low of levels is also not good for them... I've read that 40% is optimal, but just not realistic if you use your computer.
    --- ThinkPad T61 / Win 7 / Core 2 / 4gb RAM / Nvidia / Still used daily --- ThinkPad Edge 15/ i5 / Win 7 / TrueCrypt / 8gb RAM / Hated it, died at 1 yr 1 mo old --- ThinkPad T510 / Win 7 / TrueCrypt / i5 / 8gb RAM / Nvidia / Current primary machine --- ThinkPad X220 / i7 / IPS / 4gb / TrueCrypt / My Road Machine

  • I have a problem with two PDF's when trying to open them through a link on a web page. The two PDF's open fine with Adobe on my own PC and on the server I have copied it to but when they are opened through a link on a web page (pointing to the server wher

    I have a problem with two PDF's when trying to open them through a link on a web page. The two PDF's open fine with Adobe on my own PC and on the server I have copied it to but when they are opened through a link on a web page (pointing to the server where the PDFs open fine) I get an error 'There was an error processing a page. Invalid function resource' The other one just doesn't open at all. Can anyone help with this please?

    Hello,
    Are the pdf linked correctly in the website? Is this a public website? If yes, please post the link here.
    ~Deepak

  • I have a problem with iMovie since the last update to 9.0.7

    I have a problem with iMovie since the last update to 9.0.7 when you press the camera button to import iMovie vypíče stops and an error message. Or he'll file> import from camera so iMovie also quits.

    Process:         iMovie [892]
    Path:            /Applications/iMovie.app/Contents/MacOS/iMovie
    Identifier:      com.apple.iMovieApp
    Version:         9.0.7 (1768)
    Build Info:      iMovieApp-1768000000000000~2
    App Item ID:     408981434
    App External ID: 9556074
    Code Type:       X86 (Native)
    Parent Process:  launchd [268]
    User ID:         501
    Date/Time:       2012-07-29 20:23:32.029 +0200
    OS Version:      Mac OS X 10.8 (12A269)
    Report Version:  10
    Interval Since Last Report:          8984 sec
    Crashes Since Last Report:           14
    Per-App Interval Since Last Report:  280 sec
    Per-App Crashes Since Last Report:   14
    Anonymous UUID:                      0EBB5AAE-B67D-4EFD-AA84-E30FBE793426
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x000000007bef5184
    VM Regions Near 0x7bef5184:
        __LINKEDIT             000000007016d000-00000000701d2000 [  404K] r--/rwx SM=COW  /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    --> MALLOC_TINY            000000007be00000-000000007bf00000 [ 1024K] rw-/rwx SM=COW 
        MALLOC_SMALL           000000007c000000-000000007c800000 [ 8192K] rw-/rwx SM=PRV 
    Application Specific Information:
    Performing @selector(a_noCaptureDevicesAvailable:) from sender MediumButton 0x7cd87010
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   ???                           0x7bef5184 0 + 2079281540
    1   com.apple.CMIOQTUnits         0x0eeff19b 0xeed4000 + 176539
    2   com.apple.CMIOQTUnits         0x0eeff5bf 0xeed4000 + 177599
    3   com.apple.CMIOQTUnits         0x0eedca8c 0xeed4000 + 35468
    4   com.apple.CMIOQTUnits         0x0eef9caa 0xeed4000 + 154794
    5   com.apple.QTKit               0x9a4e936c +[QTCaptureVDIGDevice _refreshDevices] + 470
    6   com.apple.QTKit               0x9a4e8ff4 +[QTCaptureVDIGDevice devicesWithIOType:] + 78
    7   com.apple.QTKit               0x9a44c8c6 +[QTCaptureDevice devicesWithIOType:] + 199
    8   com.apple.QTKit               0x9a439508 +[QTCaptureDevice inputDevices] + 41
    9   com.apple.QTKit               0x9a43944f +[QTCaptureDevice inputDevicesWithMediaType:] + 36
    10  com.apple.iMovieApp           0x000b5d83 0xaa000 + 48515
    11  com.apple.iMovieApp           0x000b4195 0xaa000 + 41365
    12  com.apple.iMovieApp           0x000ca004 0xaa000 + 131076
    13  com.apple.iMovieApp           0x000cc720 0xaa000 + 141088
    14  com.apple.iMovieApp           0x000c9cac 0xaa000 + 130220
    15  com.apple.iMovieApp           0x000cc9b8 0xaa000 + 141752
    16  com.apple.iMovieApp           0x000baa8b 0xaa000 + 68235
    17  com.apple.iMovieApp           0x000e32a3 0xaa000 + 234147
    18  libobjc.A.dylib               0x9a3285d3 -[NSObject performSelector:withObject:] + 70
    19  com.apple.AppKit              0x94f019a2 -[NSApplication sendAction:to:from:] + 436
    20  com.ecamm.iglasses            0x054d14ef newsendAction + 63
    21  com.apple.iMovieApp           0x000fbbdc 0xaa000 + 334812
    22  com.apple.AppKit              0x94f017b0 -[NSControl sendAction:to:] + 102
    23  com.apple.AppKit              0x94f016bf -[NSCell _sendActionFrom:] + 159
    24  com.apple.AppKit              0x94effc30 -[NSCell trackMouse:inRect:ofView:untilMouseUp:] + 1895
    25  com.apple.AppKit              0x94eff46f -[NSButtonCell trackMouse:inRect:ofView:untilMouseUp:] + 511
    26  com.apple.AppKit              0x94efeb89 -[NSControl mouseDown:] + 867
    27  com.apple.AppKit              0x94ef6841 -[NSWindow sendEvent:] + 6968
    28  com.apple.iMovieApp           0x002219db 0xaa000 + 1538523
    29  com.apple.AppKit              0x94ef181f -[NSApplication sendEvent:] + 4278
    30  com.apple.iMovieApp           0x000fb90c 0xaa000 + 334092
    31  com.apple.AppKit              0x94e0b73c -[NSApplication run] + 951
    32  com.apple.AppKit              0x94dae8e6 NSApplicationMain + 1053
    33  com.apple.iMovieApp           0x000ac62a 0xaa000 + 9770
    34  com.apple.iMovieApp           0x000ac195 0xaa000 + 8597
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib        0x97819c02 __select_nocancel + 10
    1   libdispatch.dylib             0x9a006a5c _dispatch_mgr_invoke + 376
    2   libdispatch.dylib             0x9a0067fd _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib        0x9781a0ee __workq_kernreturn + 10
    1   libsystem_c.dylib             0x92f7004c _pthread_workq_return + 45
    2   libsystem_c.dylib             0x92f6fe19 _pthread_wqthread + 448
    3   libsystem_c.dylib             0x92f57cca start_wqthread + 30
    Thread 3:
    0   libsystem_kernel.dylib        0x9781a0ee __workq_kernreturn + 10
    1   libsystem_c.dylib             0x92f7004c _pthread_workq_return + 45
    2   libsystem_c.dylib             0x92f6fe19 _pthread_wqthread + 448
    3   libsystem_c.dylib             0x92f57cca start_wqthread + 30
    Thread 4:
    0   libsystem_kernel.dylib        0x978177d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib        0x97816cb0 mach_msg + 68
    2   com.apple.CoreFoundation      0x984efcc9 __CFRunLoopServiceMachPort + 185
    3   com.apple.CoreFoundation      0x984f56af __CFRunLoopRun + 1247
    4   com.apple.CoreFoundation      0x984f4d6a CFRunLoopRunSpecific + 378
    5   com.apple.CoreFoundation      0x98504781 CFRunLoopRun + 129
    6   com.apple.FWAVCPrivate        0x039c672f AVS::AVCVideoServicesThreadStart(AVS::AVCVideoServicesThreadParams*) + 266
    7   libsystem_c.dylib             0x92f6d557 _pthread_start + 344
    8   libsystem_c.dylib             0x92f57cee thread_start + 34
    Thread 5:
    0   libsystem_kernel.dylib        0x9781a0ee __workq_kernreturn + 10
    1   libsystem_c.dylib             0x92f7004c _pthread_workq_return + 45
    2   libsystem_c.dylib             0x92f6fe19 _pthread_wqthread + 448
    3   libsystem_c.dylib             0x92f57cca start_wqthread + 30
    Thread 6:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib        0x97819be6 __select + 10
    1   com.apple.CoreFoundation      0x98539320 __CFSocketManager + 1632
    2   libsystem_c.dylib             0x92f6d557 _pthread_start + 344
    3   libsystem_c.dylib             0x92f57cee thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib        0x978198e2 __psynch_cvwait + 10
    1   libsystem_c.dylib             0x92f72289 _pthread_cond_wait + 938
    2   libsystem_c.dylib             0x92f72512 pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore 0x987e36b9 TSWaitOnConditionTimedRelative + 177
    4   com.apple.CoreServices.CarbonCore 0x987e3190 TSWaitOnSemaphoreCommon + 272
    5   com.apple.CoreServices.CarbonCore 0x987e3419 TSWaitOnSemaphoreRelative + 24
    6   ???                           0x9412758c 0 + 2484237708
    7   libsystem_c.dylib             0x92f6d557 _pthread_start + 344
    8   libsystem_c.dylib             0x92f57cee thread_start + 34
    Thread 8:: com.apple.audio.IOThread.client
    0   libsystem_kernel.dylib        0x978177d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib        0x97816cb0 mach_msg + 68
    2   com.apple.audio.CoreAudio     0x959e3536 HALB_MachPort::SendMessageWithReply(unsigned int, unsigned int, unsigned long, unsigned long, mach_msg_header_t*, bool, unsigned int) + 138
    3   com.apple.audio.CoreAudio     0x959de07c HALB_MachPort::SendSimpleMessageWithSimpleReply(unsigned int, unsigned int, int, int&, bool, unsigned int) + 70
    4   com.apple.audio.CoreAudio     0x959dc8bb HALC_ProxyIOContext::IOWorkLoop() + 1389
    5   com.apple.audio.CoreAudio     0x959dc2a1 HALC_ProxyIOContext::IOThreadEntry(void*) + 145
    6   com.apple.audio.CoreAudio     0x959e626a ___ZN19HALC_ProxyIOContextC2Emj_block_invoke_0 + 20
    7   com.apple.audio.CoreAudio     0x959dc1c3 HALB_IOThread::Entry(void*) + 69
    8   libsystem_c.dylib             0x92f6d557 _pthread_start + 344
    9   libsystem_c.dylib             0x92f57cee thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib        0x9781780e semaphore_wait_trap + 10
    1   ???                           0x945e17ce 0 + 2489194446
    2   ???                           0x94195e06 0 + 2484690438
    3   ???                           0x945e1560 0 + 2489193824
    4   libsystem_c.dylib             0x92f6d557 _pthread_start + 344
    5   libsystem_c.dylib             0x92f57cee thread_start + 34
    Thread 10:
    0   libsystem_kernel.dylib        0x978198e2 __psynch_cvwait + 10
    1   libsystem_c.dylib             0x92f72289 _pthread_cond_wait + 938
    2   libsystem_c.dylib             0x92f72512 pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore 0x987e36b9 TSWaitOnConditionTimedRelative + 177
    4   com.apple.CoreServices.CarbonCore 0x987e3190 TSWaitOnSemaphoreCommon + 272
    5   com.apple.CoreServices.CarbonCore 0x987e3419 TSWaitOnSemaphoreRelative + 24
    6   com.apple.CoreServices.CarbonCore 0x9878481a AIOFileThread(void*) + 892
    7   libsystem_c.dylib             0x92f6d557 _pthread_start + 344
    8   libsystem_c.dylib             0x92f57cee thread_start + 34
    Thread 11:: jpegdecompress_MPLoop
    0   libsystem_kernel.dylib        0x978198e2 __psynch_cvwait + 10
    1   libsystem_c.dylib             0x92f72289 _pthread_cond_wait + 938
    2   libsystem_c.dylib             0x92fffb08 pthread_cond_wait + 48
    3   ???                           0x9423e536 0 + 2485380406
    4   libsystem_c.dylib             0x92f6d557 _pthread_start + 344
    5   libsystem_c.dylib             0x92f57cee thread_start + 34
    Thread 12:
    0   libsystem_kernel.dylib        0x978198e2 __psynch_cvwait + 10
    1   libsystem_c.dylib             0x92f72289 _pthread_cond_wait + 938
    2   libsystem_c.dylib             0x92f72512 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation          0x91fb4506 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation          0x91fb432d -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation          0x91fb9880 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proapps.MIO         0x0de5c487 -[PluginLockPair scanPaths] + 540
    7   com.apple.Foundation          0x91f86318 -[NSThread main] + 45
    8   com.apple.Foundation          0x91f8629b __NSThread__main__ + 1396
    9   libsystem_c.dylib             0x92f6d557 _pthread_start + 344
    10  libsystem_c.dylib             0x92f57cee thread_start + 34
    Thread 13:
    0   libsystem_kernel.dylib        0x978198e2 __psynch_cvwait + 10
    1   libsystem_c.dylib             0x92f72289 _pthread_cond_wait + 938
    2   libsystem_c.dylib             0x92f72512 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation          0x91fb4506 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation          0x91fb432d -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation          0x91fb9880 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proapps.MIO         0x0de5c487 -[PluginLockPair scanPaths] + 540
    7   com.apple.Foundation          0x91f86318 -[NSThread main] + 45
    8   com.apple.Foundation          0x91f8629b __NSThread__main__ + 1396
    9   libsystem_c.dylib             0x92f6d557 _pthread_start + 344
    10  libsystem_c.dylib             0x92f57cee thread_start + 34
    Thread 14:
    0   libsystem_kernel.dylib        0x978177d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib        0x97816cb0 mach_msg + 68
    2   com.apple.framework.IOKit     0x9227ccd6 io_connect_method + 404
    3   com.apple.framework.IOKit     0x9222503d IOConnectCallMethod + 520
    4   com.apple.framework.IOKit     0x922252f1 IOConnectCallStructMethod + 84
    5   com.apple.iokit.SCSITaskLib   0x0ee92a8a MMCDeviceUserClientClass::ModeSense10(unsigned char, unsigned char, unsigned char, unsigned char, void*, unsigned short, SCSITaskStatus*, SCSI_Sense_Data*) + 220
    6   com.apple.iokit.SCSITaskLib   0x0ee91e77 MMCDeviceUserClientClass::sModeSense10(void*, unsigned char, unsigned char, unsigned char, unsigned char, void*, unsigned short, SCSITaskStatus*, SCSI_Sense_Data*) + 81
    7   com.apple.DiscRecording       0x95e07f43 DRDevicePlugIn::ExecuteMMCDeviceTask(DRExecuteSCSITaskParam*, __DRSenseInfo*) + 815
    8   com.apple.DiscRecording       0x95e07b13 DRDevicePlugIn::ExecuteSCSITask(DRExecuteSCSITaskParam*, __DRSenseInfo*) + 71
    9   com.apple.DiscRecording       0x95e07984 DROpticalDevice::ExecuteSCSITask(DRExecuteSCSITaskParam*, __DRSenseInfo*) + 250
    10  com.apple.DiscRecording       0x95e0761b DROpticalDevice::ModeSense10(unsigned char, void*, unsigned short*) + 323
    11  com.apple.DiscRecording       0x95e074a8 DROpticalDevice::GetCDCapabilitiesPage(__CDCapabilitiesPage*) + 120
    12  com.apple.DiscRecording       0x95e0629a DROpticalDevice::InitializeState() + 924
    13  com.apple.DiscRecording       0x95e00c78 DROpticalDevice::Initialize(void*, __CFData const*, __CFString const*) + 228
    14  com.apple.DiscRecording       0x95e008e0 _DRDeviceCreate(void*, __CFData const*, __CFString const*, __CFDictionary const*) + 253
    15  com.apple.DiscRecording       0x95e007c0 -[DRDevice(InternalBridgeMethods) initWithRegistryPath:forGUID:usingProfile:] + 46
    16  com.apple.DiscRecording       0x95e0078d -[DRDevice(InternalBridgeMethods) initWithRegistryPath:forGUID:] + 55
    17  com.apple.DiscRecording       0x95e41ad6 _DRDeviceCreate + 172
    18  com.apple.DiscRecording       0x95dffd14 DROpticalDevice::Create(__CFData const*, __CFString const*) + 24
    19  com.apple.DiscRecording       0x95dffc53 DRDeviceManager::RegisterAuthoringDevice(__CFData const*, __CFString const*) + 57
    20  com.apple.DiscRecording       0x95dffba7 DRDeviceManager::IOCDDeviceMatched(DRDeviceManager*, unsigned int) + 209
    21  com.apple.DiscRecording       0x95dff812 DRDeviceManager::DRDeviceManager() + 402
    22  com.apple.DiscRecording       0x95dff666 DRDeviceManager::Create() + 30
    23  com.apple.DiscRecording       0x95dfe1a9 DRAutoInit::Initialize() + 759
    24  com.apple.DiscRecording       0x95dfdcdf DRDeviceCopyDeviceForBSDName + 126
    25  com.apple.MPEG2PSRADPlugin    0x0e73067d FenwayIsFolderSupported + 613
    26  com.apple.MPEG2PSRADPlugin    0x0e723c71 -[FenRAD pathIsValidVolume:] + 120
    27  com.apple.proapps.MIO         0x0de5c642 -[PluginLockPair mountPath:] + 290
    28  com.apple.proapps.MIO         0x0de5c3d6 -[PluginLockPair scanPaths] + 363
    29  com.apple.Foundation          0x91f86318 -[NSThread main] + 45
    30  com.apple.Foundation          0x91f8629b __NSThread__main__ + 1396
    31  libsystem_c.dylib             0x92f6d557 _pthread_start + 344
    32  libsystem_c.dylib             0x92f57cee thread_start + 34
    Thread 15:: com.apple.bdplayback-DVDEventCallbackThread
    0   libsystem_kernel.dylib        0x9781780e semaphore_wait_trap + 10
    1   com.apple.AVCHDPlugin         0x0dfcdc9a semaphore_wait(viona_semaphore_t*) + 42
    2   com.apple.AVCHDPlugin         0x0dfdb2bd WinPortServer::ProcessMessages() + 133
    3   com.apple.AVCHDPlugin         0x0dfcd300 ST20Thread::Run(PThreadRunParams*) + 38
    4   libsystem_c.dylib             0x92f71014 _pthread_body + 72
    Thread 16:: com.apple.bdplayback-TFThread
    0   libsystem_kernel.dylib        0x978198e2 __psynch_cvwait + 10
    1   libsystem_c.dylib             0x92f72220 _pthread_cond_wait + 833
    2   libsystem_c.dylib             0x92ff80ad pthread_cond_wait$UNIX2003 + 71
    3   com.apple.AVCHDPlugin         0x0e0eb58c WindowsEvent::Wait(int) + 86
    4   com.apple.AVCHDPlugin         0x0e11b4e1 IdleFiberEntry(void*) + 305
    5   com.apple.AVCHDPlugin         0x0dfcd300 ST20Thread::Run(PThreadRunParams*) + 38
    6   libsystem_c.dylib             0x92f71014 _pthread_body + 72
    Thread 17:: com.apple.bdplayback-OSXMessageThread
    0   libsystem_kernel.dylib        0x9781780e semaphore_wait_trap + 10
    1   com.apple.AVCHDPlugin         0x0dfcdc9a semaphore_wait(viona_semaphore_t*) + 42
    2   com.apple.AVCHDPlugin         0x0dfdb2bd WinPortServer::ProcessMessages() + 133
    3   com.apple.AVCHDPlugin         0x0dfcd300 ST20Thread::Run(PThreadRunParams*) + 38
    4   libsystem_c.dylib             0x92f71014 _pthread_body + 72
    Thread 18:: com.apple.bdplayback-DDPTask
    0   libsystem_kernel.dylib        0x9781780e semaphore_wait_trap + 10
    1   com.apple.AVCHDPlugin         0x0dfcdc9a semaphore_wait(viona_semaphore_t*) + 42
    2   com.apple.AVCHDPlugin         0x0dfdb2bd WinPortServer::ProcessMessages() + 133
    3   com.apple.AVCHDPlugin         0x0df88bc1 ScheduleRoutine + 81
    4   com.apple.AVCHDPlugin         0x0dfcd300 ST20Thread::Run(PThreadRunParams*) + 38
    5   libsystem_c.dylib             0x92f71014 _pthread_body + 72
    Thread 19:
    0   libsystem_kernel.dylib        0x9781991a __psynch_mutexwait + 10
    1   libsystem_c.dylib             0x92f7313b pthread_mutex_lock + 595
    2   com.apple.DiscRecording       0x95dfdefc DRAutoInit::Initialize() + 74
    3   com.apple.DiscRecording       0x95dffa40 DRDiskArbitor::DiskAppearedCallback(__DADisk*, void*) + 30
    4   com.apple.DiskArbitration     0x902f6b8b _DADispatchCallback + 99
    5   com.apple.DiskArbitration     0x902f68c0 _DASessionCallback + 320
    6   com.apple.CoreFoundation      0x984c01ef __CFMachPortPerform + 303
    7   com.apple.CoreFoundation      0x984c00a5 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ + 53
    8   com.apple.CoreFoundation      0x984bfcd2 __CFRunLoopDoSource1 + 146
    9   com.apple.CoreFoundation      0x984f59c6 __CFRunLoopRun + 2038
    10  com.apple.CoreFoundation      0x984f4d6a CFRunLoopRunSpecific + 378
    11  com.apple.CoreFoundation      0x98504781 CFRunLoopRun + 129
    12  com.apple.DiscRecording       0x95dff285 DRWorkLoop::WorkLoop() + 273
    13  com.apple.DiscRecording       0x95dff15d DRWorkLoop::WorkLoopEntry(DRWorkLoop*) + 17
    14  com.apple.DiscRecording       0x95dfeefe DRThreadObject::StartRoutine(DRThreadObject*) + 142
    15  com.apple.DiscRecording       0x95dfee6f DRThreadObject::SymbolRoutine(DRThreadObject*) + 17
    16  libsystem_c.dylib             0x92f6d557 _pthread_start + 344
    17  libsystem_c.dylib             0x92f57cee thread_start + 34
    Thread 20:
    0   libsystem_kernel.dylib        0x978177d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib        0x97816cb0 mach_msg + 68
    2   com.apple.CoreFoundation      0x984efcc9 __CFRunLoopServiceMachPort + 185
    3   com.apple.CoreFoundation      0x984f56af __CFRunLoopRun + 1247
    4   com.apple.CoreFoundation      0x984f4d6a CFRunLoopRunSpecific + 378
    5   com.apple.CoreFoundation      0x984f4bdb CFRunLoopRunInMode + 123
    6   com.apple.CoreMediaIO         0x92f1139f CMIO::DAL::RunLoop::OwnThread(void*) + 151
    7   com.apple.CoreMediaIO         0x92f08938 CAPThread::Entry(CAPThread*) + 176
    8   libsystem_c.dylib             0x92f6d557 _pthread_start + 344
    9   libsystem_c.dylib             0x92f57cee thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x008505a7  ebx: 0x0eefc77d  ecx: 0x0ef386a0  edx: 0x0ef3869c
      edi: 0x857aa140  esi: 0x00000000  ebp: 0xbff55388  esp: 0xbff54b3c
       ss: 0x00000023  efl: 0x00010246  eip: 0x7bef5184   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x7bef5184
    Logical CPU: 0
    Binary Images:
       0xaa000 -   0x52ffef  com.apple.iMovieApp (9.0.7 - 1768) <5BA2C2F7-B62A-3813-AC63-01FF73AF04A0> /Applications/iMovie.app/Contents/MacOS/iMovie
      0x5f2000 -   0x608ff3  com.apple.iLifeFaceRecognition (1.0 - 21.1) <B06AF65E-3188-3361-BD75-3EE9B2DF4A68> /Applications/iMovie.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/iLifeFaceRecognition
      0x618000 -   0x619ff3  com.apple.Helium (3.1.0 - 18567.3) <72A242AC-3BA7-3DD5-A043-000C7A9DCD11> /Applications/iMovie.app/Contents/Frameworks/Helium.framework/Versions/A/Helium
      0x61e000 -   0x64cfe3  com.apple.MPEG2TSDecoder (1.0 - 84) <7E230E93-F7F6-34A2-8B60-E6F79E353426> /Applications/iMovie.app/Contents/Frameworks/Mpeg2TsDecoder.framework/Versions/ A/Mpeg2TsDecoder
      0x686000 -   0x705ff7  com.apple.iLifeMediaBrowser (2.7.1 - 543) <679D1492-6CE0-3A36-85E7-B0B612CED18F> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
      0x749000 -   0x867ff3  com.apple.WebKit (8536 - 8536.25) <5365AA39-A1A7-315D-AA1C-0C564909C0E0> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
      0x919000 -   0x91aff7 +com.bensyverson.dvmatte.autopicker (1.0 - 1.0) <EB13CAE4-1A5F-7C8E-F4FA-39C5B0A22636> /Applications/iMovie.app/Contents/Frameworks/DVMAutopick.framework/Versions/A/D VMAutopick
      0x922000 -   0x923fff +eOkaoCom.dylib (1) <2DE16B47-23E7-73DB-1297-C928E40DFC31> /Applications/iMovie.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoCom.dylib
      0x928000 -   0x94dff2 +eOkaoPt.dylib (1) <831D49D0-43A0-21A0-2662-2207E3BE0FF6> /Applications/iMovie.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoPt.dylib
      0x955000 -   0x989fe7 +eOkaoDt.dylib (1) <5693A28E-8C94-0F5F-150E-3B17CF753F64> /Applications/iMovie.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoDt.dylib
      0x98f000 -   0xaf6fff +eOkaoFr.dylib (1) <E355FB47-C5EF-50CF-621A-9B17A50E2850> /Applications/iMovie.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoFr.dylib
      0xafd000 -   0xd00feb  com.apple.Helium.HeliumRender (2.1.0 - 18567.3) <A20BE37C-2987-3BB8-AA52-0607FE7CCF8C> /Applications/iMovie.app/Contents/Frameworks/Helium.framework/Versions/A/Framew orks/HeliumRender.framework/Versions/A/HeliumRender
      0xd56000 -   0xdd7fe7  com.apple.Helium.Heliumfilters (2.1.0 - 18567.3) <3DCC7DCF-8734-31A0-9B6F-0139CC6CB71C> /Applications/iMovie.app/Contents/Frameworks/Helium.framework/Versions/A/Framew orks/HeliumFilters.framework/Versions/A/HeliumFilters
    0x110e000 -  0x12cbfeb  com.apple.Helium.HeliumSensoCore (2.0.2 - 18567.3) <BFA19728-C6DD-3D2D-BFF5-1099CBB20679> /Applications/iMovie.app/Contents/Frameworks/Helium.framework/Versions/A/Framew orks/HeliumSensoCore.framework/Versions/A/HeliumSensoCore
    0x1301000 -  0x1f8bff3  com.apple.WebCore (8536 - 8536.24) <06F7EC1E-A7F2-37F1-ADC6-687284E661D8> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x39c2000 -  0x39f3ff3  com.apple.FWAVCPrivate (52.47 - 47) <14C9A9D3-4065-3395-A8BC-C0535162017E> /System/Library/PrivateFrameworks/FWAVCPrivate.framework/FWAVCPrivate
    0x3a69000 -  0x3a76ffb  com.apple.Librarian (1.1 - 1) <C8D82AA3-AE5E-3B6D-A8D1-847856057186> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
    0x3ab9000 -  0x3abcfef  com.apple.LiveType.component (2.1.3 - 2.1.3) /Library/QuickTime/LiveType.component/Contents/MacOS/LiveType
    0x3ac1000 -  0x3b26fde  com.apple.LiveType.framework (2.1.3 - 2.1.3) /System/Library/PrivateFrameworks/LiveType.framework/Versions/A/LiveType
    0x3b9e000 -  0x3b9ffff +com.ecamm.pluginloader (Ecamm Plugin Loader v1.0.5 - 1.0.5) /Library/InputManagers/*/Ecamm Plugin Loader.bundle/Contents/MacOS/Ecamm Plugin Loader
    0x3bac000 -  0x3badffe  com.apple.AddressBook.LocalSourceBundle (2.0 - 1143) <2D6A1C52-95F6-3BDF-BBEF-74A09A2642C1> /System/Library/Address Book Plug-Ins/LocalSource.sourcebundle/Contents/MacOS/LocalSource
    0x3bb2000 -  0x3bb5ffe  com.apple.DirectoryServicesSource (2.0 - 1143) <74F9B668-8028-334F-AC25-6A4588C5AFC9> /System/Library/Address Book Plug-Ins/DirectoryServices.sourcebundle/Contents/MacOS/DirectoryServices
    0x4478000 -  0x447fffc  com.apple.AppleGVAHW.component (1.1 - 1) <FC1BC394-2ACC-3611-B476-C3E991A901DE> /System/Library/QuickTime/AppleGVAHW.component/Contents/MacOS/AppleGVAHW
    0x4527000 -  0x4549ffe  libssl.0.9.7.dylib (106) <FC1F6C04-EAD3-39D1-8E25-B1192E89D98B> /usr/lib/libssl.0.9.7.dylib
    0x54cc000 -  0x5500ff7 +com.ecamm.iglasses (v2.1.5 - 2.1.5) <3472A39E-58E9-1A03-6F10-E90966DE5D96> /Library/InputManagers/*/iGlasses.plugin/Contents/MacOS/iGlasses
    0x551b000 -  0x5563ffb  com.apple.CoreMediaIOServices (171.0 - 3244) <9563BB38-F23A-3FC6-855D-05487E700465> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/CoreMediaIOServ ices
    0x5584000 -  0x55abff7  com.apple.CoreMediaPrivate (20.0 - 20.0) <D963392A-4B4C-3B81-A873-E1C06C6829E6> /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/CoreMediaPrivate
    0x5869000 -  0x58bafff  com.apple.AddressBook.CardDAVPlugin (10.8 - 320) <8A8BD10E-04F2-385A-B93B-CD03E13BA4B6> /System/Library/Address Book Plug-Ins/CardDAVPlugin.sourcebundle/Contents/MacOS/CardDAVPlugin
    0x58d7000 -  0x5937fff  com.apple.coredav (1.0.1 - 179.4) <3E62FDFC-D3A7-3196-A11F-93F54FF44EB8> /System/Library/PrivateFrameworks/CoreDAV.framework/Versions/A/CoreDAV
    0x5970000 -  0x597dffb  com.apple.KerberosHelper (4.0 - 1.0) <6CB4B091-3415-301A-87B2-D9D374D0FC17> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
    0x5987000 -  0x5996ffd  com.apple.NSServerNotificationCenter (5.0 - 5.0) <A9BF8310-F1D2-38EC-AA1A-5ECB479B89CE> /System/Library/Frameworks/ServerNotification.framework/Versions/A/ServerNotifi cation
    0x59a1000 -  0x59a8ff7  com.apple.AOSNotification (1.7.0 - 636.2) <F68F735D-0B5C-3F27-9E39-FB296CF82958> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
    0x59b2000 -  0x5a0efff  com.apple.corelocation (1.0 - 1239.35) <6E266E57-FA31-3B35-9CFD-29AA45B52C7B> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
    0x5a3b000 -  0x5a6dff3  com.apple.GeoServices (1.0 - 1) <5D61BA20-171C-373D-A8F0-BCC02AD1DD81> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
    0x5a7f000 -  0x5a88fff  com.apple.ProtocolBuffer (2 - 104) <BFA598AA-2E77-3578-B079-2C89796811B3> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
    0x8cda000 -  0x8e66ff8  GLEngine (8.5) <23C1BECF-D0EF-339D-B312-EFACB26C5983> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x8e9d000 -  0x8feeff7  libGLProgrammability.dylib (8.5) <27E2DAE2-DECE-364C-A1C2-138735A3869E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x901c000 -  0x9028ffb  libGPUSupport.dylib (8.5) <DCEDB13E-6E2C-3D14-965E-70522403723B> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupport.dylib
    0x902f000 -  0x905bffa  GLRendererFloat (8.5) <1E69D3D7-1782-3FF8-AB52-3F23DC4F617B> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x9064000 -  0x906cff2  libcldcpuengine.dylib (2.1.16) <61717F57-9AAC-31B4-8894-27A1BF7987B9> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
    0x9073000 -  0x9075fff  libCoreFSCache.dylib (24.4) <A089ED2E-0156-3937-BE32-5BED76DF4066> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache .dylib
    0x90f6000 -  0x91b4ff3  ColorSyncDeprecated.dylib (400) <35E3054C-5DF1-30D4-A368-C4FDB0992373> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x94a1000 -  0x94a1fff  com.apple.iLMBAppDefPlugin (2.7.1 - 327) <F64F0E0D-1124-30F2-8964-A930DC52448D> /Library/Application Support/iLifeMediaBrowser/*/iLMBAppDefPlugin
    0x94a6000 -  0x94a7fff  com.apple.iLMBFolderPlugin (2.7.1 - 327) <2B5245FC-4009-3AF0-9046-3CA2CC9382BE> /Library/Application Support/iLifeMediaBrowser/*/iLMBFolderPlugin
    0x94ae000 -  0x94b5ff8  com.apple.iLMBAperturePlugin (2.7.1 - 327) <CF4434CB-6D74-3D2A-9763-A9E510C117CA> /Library/Application Support/iLifeMediaBrowser/*/iLMBAperturePlugin
    0x94bc000 -  0x94bffff  com.apple.iLMBGarageBandPlugin (2.7.1 - 327) <79CFDFDA-6C6C-3005-8B93-C0DDFEB091A6> /Library/Application Support/iLifeMediaBrowser/*/iLMBGarageBandPlugin
    0x9523000 -  0x9672ff7  com.apple.iLMBAperture31Plugin (2.7.1 - 327) <E019FCC1-82E9-3B5C-8857-C400E2A0C542> /Library/Application Support/iLifeMediaBrowser/*/iLMBAperture31Plugin
    0x96ba000 -  0x985effb  com.apple.iLMBAperturePlugin2012 (2.7.1 - 327) <B478A96B-9977-38B0-90CF-6295DEAD35AC> /Library/Application Support/iLifeMediaBrowser/*/iLMBAperturePlugin2012
    0x98de000 -  0x98e7ffd  com.apple.iLMBFinalCutPlugin (2.7.1 - 327) <AADD0E89-19B5-3B28-97F8-7EB1D3415D42> /Library/Application Support/iLifeMediaBrowser/*/iLMBFinalCutPlugin
    0x98ee000 -  0x98f9ffd  com.apple.iLMBiMoviePlugin (2.7.1 - 327) <9D46F8D8-DF2B-3FC5-A370-7E9392D82181> /Library/Application Support/iLifeMediaBrowser/*/iLMBiMoviePlugin
    0x9901000 -  0x9914fff  com.apple.iLMBiPhoto8Plugin (2.7.1 - 327) <AF08A61A-B994-34C5-A266-E53382D3C3B5> /Library/Application Support/iLifeMediaBrowser/*/iLMBiPhoto8Plugin
    0x991c000 -  0x9a6dfff  com.apple.iLMBiPhoto9Plugin (2.7.1 - 327) <23389FAA-EF09-3E96-9E56-9599C7C777D5> /Library/Application Support/iLifeMediaBrowser/*/iLMBiPhoto9Plugin
    0x9ab5000 -  0x9abdffb  com.apple.iLMBiPhotoPlugin (2.7.1 - 327) <0BCB9184-2CF4-3E30-AB5B-BC54CA0A459D> /Library/Application Support/iLifeMediaBrowser/*/iLMBiPhotoPlugin
    0x9ac4000 -  0x9c69ff3  com.apple.iLMBiPhotoPlugin2012 (2.7.1 - 327) <A10C2006-1338-3D88-A367-5AE4A0AB7BAB> /Library/Application Support/iLifeMediaBrowser/*/iLMBiPhotoPlugin2012
    0x9cc4000 -  0x9cccffe  com.apple.iLMBiTunesPlugin (2.7.1 - 327) <E7755FD8-BEAA-3A4C-973F-273432FBA0CD> /Library/Application Support/iLifeMediaBrowser/*/iLMBiTunesPlugin
    0x9cd3000 -  0x9d8aff7  com.apple.iTunesAccess (10.6.3 - 10.6.3) <20F54184-69D0-468A-CEA5-1665192AF5BA> /System/Library/PrivateFrameworks/iTunesAccess.framework/iTunesAccess
    0x9dba000 -  0x9dbbfff  com.apple.iLMBMoviesFolderPlugin (2.7.1 - 327) <9EDCCFF3-FEA7-3F34-8711-A1078D1DE025> /Library/Application Support/iLifeMediaBrowser/*/iLMBMoviesFolderPlugin
    0x9dc0000 -  0x9dc2ffb  com.apple.iLMBPhotoBooth2Plugin (2.7.1 - 327) <98886D3A-BB21-3939-9DA2-0793D05B799A> /Library/Application Support/iLifeMediaBrowser/*/iLMBPhotoBooth2Plugin
    0x9dc8000 -  0x9dc9ffd  com.apple.iLMBPhotoBoothPlugin (2.7.1 - 327) <5C980E93-FB91-31E0-849F-F403A1B9A898> /Library/Application Support/iLifeMediaBrowser/*/iLMBPhotoBoothPlugin
    0xa5af000 -  0xa5c1fd9  com.apple.FCP Uncompressed 422.component (1.5 - 1.5) /Library/QuickTime/FCP Uncompressed 422.component/Contents/MacOS/FCP Uncompressed 422
    0xb28b000 -  0xb290fff  com.apple.audio.AppleHDAHALPlugIn (2.3.0 - 2.3.0f2) <D971DBC9-B1D6-3F20-A6EA-B165C32A4E69> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0xbf30000 -  0xbf30ff7 +cl_

  • Finder crashes when opening external HDD. Disk Utility does not have a problem with it. Any solutions?

    Finder crashes when opening external HDD. Disk Utility does not have a problem with it. Any solutions? All my backed up work is in it
    This is the crash log
    Process:    
    Finder [316]
    Path:       
    /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
    Identifier: 
    com.apple.finder
    Version:    
    10.7.5 (10.7.5)
    Build Info: 
    Finder_FE-751005001000000~21
    Code Type:  
    X86-64 (Native)
    Parent Process:  launchd [116]
    Date/Time:  
    2013-04-16 19:35:31.063 +0800
    OS Version: 
    Mac OS X 10.7.5 (11G63)
    Report Version:  9
    Interval Since Last Report:     
    1530 sec
    Crashes Since Last Report:      
    136
    Per-App Interval Since Last Report:  7692792 sec
    Per-App Crashes Since Last Report:   660
    Anonymous UUID:                 
    2EA62802-6DCB-48AF-BD8B-D7F62DA4D1F4
    Crashed Thread:  2  Dispatch queue: TNodeEngine 0x104c7fe20
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000000
    VM Regions Near 0:
    -->
    __TEXT            
    000000010456a000-0000000104a73000 [ 5156K] r-x/rwx SM=COW  /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
    Application Specific Information:
    objc[316]: garbage collection is OFF
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib   
    0x00007fff8614e67a mach_msg_trap + 10
    1   libsystem_kernel.dylib   
    0x00007fff8614dd71 mach_msg + 73
    2   com.apple.CoreFoundation 
    0x00007fff8ff7250c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation 
    0x00007fff8ff7ac74 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation 
    0x00007fff8ff7a486 CFRunLoopRunSpecific + 230
    5   com.apple.HIToolbox      
    0x00007fff8756c2bf RunCurrentEventLoopInMode + 277
    6   com.apple.HIToolbox      
    0x00007fff8757356d ReceiveNextEventCommon + 355
    7   com.apple.HIToolbox      
    0x00007fff875733fa BlockUntilNextEventMatchingListInMode + 62
    8   com.apple.AppKit         
    0x00007fff8c51f779 _DPSNextEvent + 659
    9   com.apple.AppKit         
    0x00007fff8c51f07d -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 135
    10  com.apple.AppKit         
    0x00007fff8c7d3735 -[NSApplication _realDoModalLoop:peek:] + 610
    11  com.apple.AppKit         
    0x00007fff8c7d3369 -[NSApplication runModalForWindow:] + 120
    12  com.apple.AppKit         
    0x00007fff8c7c69cd -[NSAlert runModal] + 159
    13  com.apple.AppKit         
    0x00007fff8c54e59b __-[NSPersistentUIManager promptToIgnorePersistentState]_block_invoke_1 + 815
    14  com.apple.AppKit         
    0x00007fff8c7cc782 -[NSApplication _suppressFinishLaunchingFromEventHandlersWhilePerformingBlock:] + 31
    15  com.apple.AppKit         
    0x00007fff8c54e234 -[NSPersistentUIManager promptToIgnorePersistentState] + 178
    16  com.apple.AppKit         
    0x00007fff8c5229ec -[NSApplication _reopenWindowsAsNecessaryIncludingRestorableState:registeringAsReady:completion Handler:] + 180
    17  com.apple.AppKit         
    0x00007fff8c523ca9 -[NSApplication _sendFinishLaunchingNotification] + 358
    18  com.apple.AppKit         
    0x00007fff8c51fac3 _DPSNextEvent + 1501
    19  com.apple.AppKit         
    0x00007fff8c51f07d -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 135
    20  com.apple.AppKit         
    0x00007fff8c51b9b9 -[NSApplication run] + 470
    21  com.apple.AppKit         
    0x00007fff8c797eac NSApplicationMain + 867
    22  com.apple.finder         
    0x000000010457012f 0x10456a000 + 24879
    23  com.apple.finder         
    0x00000001045700f4 0x10456a000 + 24820
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib   
    0x00007fff861507e6 kevent + 10
    1   libdispatch.dylib        
    0x00007fff8bccf786 _dispatch_mgr_invoke + 923
    2   libdispatch.dylib        
    0x00007fff8bcce316 _dispatch_mgr_thread + 54
    Thread 2 Crashed:: Dispatch queue: TNodeEngine 0x104c7fe20
    0   com.apple.DesktopServices
    0x00007fff8535b438 BTreeIterator::PushForward(Page*) + 30
    1   com.apple.DesktopServices
    0x00007fff8535b3f3 BTreeIterator::BuildStack(IAOrderedStorable const*) + 81
    2   com.apple.DesktopServices
    0x00007fff8535b377 BTreeIterator::BTreeIterator(BTree*) + 31
    3   com.apple.DesktopServices
    0x00007fff8535b338 BTree::MakeIterator() + 34
    4   com.apple.DesktopServices
    0x00007fff8535940e TPropertyInfo::MakeProperties(TPropertyInfoList*, unsigned char*, unsigned int, bool) + 216
    5   com.apple.DesktopServices
    0x00007fff853e4cf4 TPropertyInfo::CreatePropertyList(TCountedPtr<TFSInfo> const&, double&, long long&, bool, bool, TPropertyInfoList*) + 422
    6   com.apple.DesktopServices
    0x00007fff853e4afa TPropertyInfo::CreatePropertyList(TCountedPtr<TCFURLInfo> const&, double&, long long&, bool, bool, TPropertyInfoList*) + 154
    7   com.apple.DesktopServices
    0x00007fff8535924e THFSPlusPropertyStore::Open(bool, bool) const + 130
    8   com.apple.DesktopServices
    0x00007fff853591ae THFSPlusPropertyStore::GetProperties(bool) const + 38
    9   com.apple.DesktopServices
    0x00007fff85358aa4 TNode::GetExtendedPropertyStore(bool) const + 208
    10  com.apple.DesktopServices
    0x00007fff85358917 TNode::GetExtendedProperty(unsigned int, TPropertyReference&, bool) const + 39
    11  com.apple.DesktopServices
    0x00007fff85357566 TNode::GetProperty(unsigned int, TPropertyReference&, unsigned int) const + 578
    12  com.apple.DesktopServices
    0x00007fff853570b6 TNode::GetProperty(unsigned int, TPropertyReference&, OpaqueNodeRequest* const&, unsigned int) const + 68
    13  com.apple.DesktopServices
    0x00007fff85357017 GetNodeProperty(OpaqueNodeRef*, unsigned int, TPropertyReference&, OpaqueNodeRequest*, unsigned int) + 162
    14  com.apple.DesktopServices
    0x00007fff8535eeed GetNodePropertyAsBoolean + 75
    15  com.apple.finder         
    0x000000010458c6e4 0x10456a000 + 141028
    16  com.apple.finder         
    0x000000010458c669 0x10456a000 + 140905
    17  com.apple.finder         
    0x000000010458c618 0x10456a000 + 140824
    18  com.apple.finder         
    0x00000001045b4f75 0x10456a000 + 307061
    19  com.apple.finder         
    0x00000001045b2fb3 0x10456a000 + 298931
    20  com.apple.finder         
    0x00000001045b2e91 0x10456a000 + 298641
    21  com.apple.finder         
    0x000000010458b968 0x10456a000 + 137576
    22  libdispatch.dylib        
    0x00007fff8bccda82 _dispatch_call_block_and_release + 18
    23  libdispatch.dylib        
    0x00007fff8bccf2d2 _dispatch_queue_drain + 264
    24  libdispatch.dylib        
    0x00007fff8bccf12e _dispatch_queue_invoke + 54
    25  libdispatch.dylib        
    0x00007fff8bcce928 _dispatch_worker_thread2 + 198
    26  libsystem_c.dylib        
    0x00007fff888003da _pthread_wqthread + 316
    27  libsystem_c.dylib        
    0x00007fff88801b85 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib   
    0x00007fff86150192 __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x00007fff88800594 _pthread_wqthread + 758
    2   libsystem_c.dylib        
    0x00007fff88801b85 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib   
    0x00007fff86150192 __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x00007fff88800594 _pthread_wqthread + 758
    2   libsystem_c.dylib        
    0x00007fff88801b85 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib   
    0x00007fff86150192 __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x00007fff88800594 _pthread_wqthread + 758
    2   libsystem_c.dylib        
    0x00007fff88801b85 start_wqthread + 13
    Thread 6:
    0   libsystem_kernel.dylib   
    0x00007fff86150192 __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x00007fff88800594 _pthread_wqthread + 758
    2   libsystem_c.dylib        
    0x00007fff88801b85 start_wqthread + 13
    Thread 7:
    0   libsystem_kernel.dylib   
    0x00007fff86150192 __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x00007fff88800594 _pthread_wqthread + 758
    2   libsystem_c.dylib        
    0x00007fff88801b85 start_wqthread + 13
    Thread 8:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib   
    0x00007fff8614fdf2 __select + 10
    1   com.apple.CoreFoundation 
    0x00007fff8ffc3c8b __CFSocketManager + 1355
    2   libsystem_c.dylib        
    0x00007fff887fe8bf _pthread_start + 335
    3   libsystem_c.dylib        
    0x00007fff88801b75 thread_start + 13
    Thread 2 crashed with X86 Thread State (64-bit):
      rax: 0x00007fce76d18ac0  rbx: 0x00007fce76d0f5b0  rcx: 0x0000000000000000  rdx: 0x0000000000000000
      rdi: 0x0000000104b71000  rsi: 0x0000000000000000  rbp: 0x0000000104e808a0  rsp: 0x0000000104e80880
       r8: 0x000000000000000e   r9: 0x000000000000018a  r10: 0x0000000000000000  r11: 0x00007fce76d18ac0
      r12: 0x0000000000000000  r13: 0x000000000000a804  r14: 0x00007fff74121c80  r15: 0x00007fce76d1faf0
      rip: 0x00007fff8535b438  rfl: 0x0000000000010297  cr2: 0x0000000000000000
    Logical CPU: 2
    Binary Images:
    0x10456a000 -   
    0x104a72ff7  com.apple.finder (10.7.5 - 10.7.5) <83F36736-790D-3582-AC9D-91EFCC3DDB9D> /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
    0x10510a000 -   
    0x10511ffff  com.apple.frameworks.preferencepanessupport (1.0 - 1.0) <B7E1A6D7-5C75-3626-ACD9-682B6CBC3EBF> /System/Library/PrivateFrameworks/PreferencePanesSupport.framework/Versions/A/P referencePanesSupport
    0x7fff6416a000 -
    0x7fff6419ebaf  dyld (195.6 - ???) <C58DAD8A-4B00-3676-8637-93D6FDE73147> /usr/lib/dyld
    0x7fff84021000 -
    0x7fff84027ff7  com.apple.phonenumbers (1.0 - 47) <BC6C2FE2-99C0-3AD6-AA9C-C88780FFFCCF> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
    0x7fff84028000 -
    0x7fff84107fff  com.apple.ImageIO.framework (3.1.2 - 3.1.2) <047DFE61-500F-3F11-9881-D0844D2FCE5F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x7fff84108000 -
    0x7fff84aa6a27  com.apple.CoreGraphics (1.600.0 - ???) <576777EA-921B-3D94-98C3-40A9CF8EBD18> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff85174000 -
    0x7fff8519ffff  libpcre.0.dylib (1.1.0 - compatibility 1.0.0) <7D3CDB0A-840F-3856-8F84-B4A50E66431B> /usr/lib/libpcre.0.dylib
    0x7fff851a0000 -
    0x7fff851f4ff7  com.apple.ScalableUserInterface (1.0 - 1) <33563775-C662-313D-B7FA-3D575A9F3D41> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
    0x7fff851f5000 -
    0x7fff851f9fff  libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <FF83AFF7-42B2-306E-90AF-D539C51A4542> /usr/lib/system/libmathCommon.A.dylib
    0x7fff851fa000 -
    0x7fff85223ff7  com.apple.framework.Apple80211 (7.4.1 - 741.1) <F60DA830-84ED-3473-8DE8-611A9D9B56FF> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x7fff85224000 -
    0x7fff85224fff  com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <C06A140F-6114-3B8B-B080-E509303145B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x7fff85225000 -
    0x7fff85280ff7  com.apple.opencl (2.0.19 - 2.0.19) <B05BF605-73B8-328F-A228-6FA59E1FC73A> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff85281000 -
    0x7fff85288fff  com.apple.NetFS (4.0 - 4.0) <433EEE54-E383-3505-9154-45B909FD3AF0> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff85289000 -
    0x7fff8531cfff  com.apple.PDFKit (2.6.5 - 2.6.5) <9CC30317-E89D-3DDF-9069-F3A9CEE4B9A1> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x7fff85329000 -
    0x7fff8533fff7  com.apple.ImageCapture (7.1.0 - 7.1.0) <1AD40E02-2126-377B-A0D2-CBB21D932558> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x7fff85340000 -
    0x7fff85459fff  com.apple.DesktopServices (1.6.5 - 1.6.5) <5E7DD5F4-B4DA-3F75-A14A-3494E81CFBA0> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x7fff855e5000 -
    0x7fff85d8dfff  com.apple.CoreAUC (6.16.12 - 6.16.12) <EF535959-14FE-3B61-9C32-DF4C54B8F12D> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x7fff85d8e000 -
    0x7fff85dc9fff  libsystem_info.dylib (??? - ???) <35F90252-2AE1-32C5-8D34-782C614D9639> /usr/lib/system/libsystem_info.dylib
    0x7fff85e1f000 -
    0x7fff85e43fff  com.apple.Kerberos (1.0 - 1) <1F826BCE-DA8F-381D-9C4C-A36AA0EA1CB9> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff85e44000 -
    0x7fff85ee5fff  com.apple.LaunchServices (480.40 - 480.40) <C936A07F-0CF8-3F8E-BDB3-76AA7611B4CA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x7fff85f0f000 -
    0x7fff85f1cfff  libCSync.A.dylib (600.0.0 - compatibility 64.0.0) <72C53E7B-C222-3BE5-9984-FDC328CC4846> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x7fff85f1d000 -
    0x7fff86022fff  libFontParser.dylib (??? - ???) <D2E56B6E-3182-3667-A78C-4172C435523A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x7fff86038000 -
    0x7fff86044fff  com.apple.CoreBluetooth (100.7 - 1) <988DB0FD-7759-3BA0-AE5F-B6DA2BDB3FF5> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/Frameworks/CoreBlue tooth.framework/Versions/A/CoreBluetooth
    0x7fff8605a000 -
    0x7fff86138fff  com.apple.DiscRecording (6.0.4 - 6040.4.1) <E6D5835F-EE3C-3814-A2EE-6962B5570EF1> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x7fff86139000 -
    0x7fff86159fff  libsystem_kernel.dylib (1699.32.7 - compatibility 1.0.0) <66C9F9BD-C7B3-30D4-B1A0-03C8A6392351> /usr/lib/system/libsystem_kernel.dylib
    0x7fff86173000 -
    0x7fff86257ff7  com.apple.CoreServices.OSServices (478.50 - 478.50) <3D6AA4EF-C601-36C7-8F3A-A00964F01759> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x7fff86258000 -
    0x7fff8627ffff  com.apple.framework.internetaccounts (1.2 - 3) <28D44E21-54F2-366B-B9D9-1DB788EF0278> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
    0x7fff86280000 -
    0x7fff862a8fff  com.apple.PerformanceAnalysis (1.11 - 11) <8D4C6382-DD92-37A2-BCFC-E89951320848> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x7fff862a9000 -
    0x7fff862acfff  com.apple.AppleSystemInfo (1.0 - 1) <111B6F69-3FBD-3860-BCF8-1DF02D9BED28> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
    0x7fff8631b000 -
    0x7fff86320fff  libpam.2.dylib (3.0.0 - compatibility 3.0.0) <D952F17B-200A-3A23-B9B2-7C1F7AC19189> /usr/lib/libpam.2.dylib
    0x7fff86321000 -
    0x7fff86595fff  com.apple.CoreImage (7.99.1 - 1.0.1) <4BB09B79-275B-364C-9466-0FF36ABB1218> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x7fff865ef000 -
    0x7fff865f0ff7  libsystem_sandbox.dylib (??? - ???) <5422BA4A-4C96-3BC1-AF83-14F0CED0ECB5> /usr/lib/system/libsystem_sandbox.dylib
    0x7fff866d8000 -
    0x7fff86704ff7  com.apple.CoreServicesInternal (113.19 - 113.19) <74532B3B-EDE0-3553-9BED-F02B9CDF1FF7> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
    0x7fff86705000 -
    0x7fff86756ff7  com.apple.CoreMediaIO (216.0 - 3199.8) <4D3FE512-E943-34E3-A7A5-2EC2E3854E28> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x7fff86757000 -
    0x7fff86840fff  com.apple.Bluetooth (4.0.8 - 4.0.8f17) <46F432D0-7E25-3900-A5B2-DDB4C2781036> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x7fff86841000 -
    0x7fff868acff7  com.apple.framework.IOKit (2.0 - ???) <FE838BB6-D42E-3291-A1A0-6F53FC970261> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff868ad000 -
    0x7fff868b0fff  com.apple.help (1.3.2 - 42) <BF14DE49-F7E8-336F-81FB-BBDF2DB3AC09> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x7fff868b1000 -
    0x7fff868b6fff  libGIF.dylib (??? - ???) <58A4492D-AAE7-3B8F-8B06-62867471A3EE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff868b7000 -
    0x7fff868d4ff7  com.apple.openscripting (1.3.3 - ???) <F5E34F54-CE85-334B-8F25-53581D43960C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x7fff868d5000 -
    0x7fff868d5fff  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <61EFED6A-A407-301E-B454-CD18314F0075> /usr/lib/system/libkeymgr.dylib
    0x7fff868de000 -
    0x7fff868f0ff7  libbsm.0.dylib (??? - ???) <349BB16F-75FA-363F-8D98-7A9C3FA90A0D> /usr/lib/libbsm.0.dylib
    0x7fff868f1000 -
    0x7fff868f3ff7  com.apple.print.framework.Print (7.4 - 247.3) <626C58D5-2841-3329-8C32-9F4A8353F3E7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x7fff868f4000 -
    0x7fff868fafff  libmacho.dylib (800.0.0 - compatibility 1.0.0) <165514D7-1BFA-38EF-A151-676DCD21FB64> /usr/lib/system/libmacho.dylib
    0x7fff868fb000 -
    0x7fff86a86ff7  com.apple.QTKit (7.7.1 - 2339) <2BC2CF44-CEAF-3D3B-A250-CA59D6AFB0B0> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x7fff86afb000 -
    0x7fff86b7fff7  com.apple.ApplicationServices.ATS (317.12.0 - ???) <BE3C156D-8326-37AA-BC4E-D3C0D31BF976> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x7fff86b80000 -
    0x7fff86b83fff  libCoreVMClient.dylib (??? - ???) <28CB0F3F-A202-391F-8CAC-FC9A1398A962> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x7fff86bb5000 -
    0x7fff86bf0fff  com.apple.LDAPFramework (3.2 - 120.2) <275D4298-C435-3E98-AA25-95D9D0A56550> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x7fff86bfb000 -
    0x7fff870c2fff  FaceCoreLight (1.4.7 - compatibility 1.0.0) <BDD0E1DE-CF33-3AF8-B33B-4D1574CCC19D> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
    0x7fff87104000 -
    0x7fff87107ff7  com.apple.securityhi (4.0 - 1) <D0ABB03B-CEF9-39E0-A139-AA9484DBBC07> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x7fff87108000 -
    0x7fff8718dff7  com.apple.Heimdal (2.2 - 2.0) <FF0BD9A4-6FB0-31E3-ABFB-563FBBEC45FC> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x7fff8718e000 -
    0x7fff8718efff  com.apple.vecLib (3.7 - vecLib 3.7) <9A58105C-B36E-35B5-812C-4ED693F2618F> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff871b8000 -
    0x7fff87233ff7  com.apple.print.framework.PrintCore (7.1 - 366.3) <C5F39A82-0E77-3AD6-906A-20DD2EE8D374> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x7fff87234000 -
    0x7fff87280ff7  com.apple.SystemConfiguration (1.11.3 - 1.11) <0A7F1982-B4EA-3424-A0C7-FE46C6224F03> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x7fff87281000 -
    0x7fff87326fff  com.apple.ink.framework (10.7.5 - 113) <1AE6676D-490A-36C2-B6CC-00F93AEB31DE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x7fff87327000 -
    0x7fff87354fe7  libSystem.B.dylib (159.1.0 - compatibility 1.0.0) <DA79E5BA-BBA3-3768-AAD8-B34BA877EF03> /usr/lib/libSystem.B.dylib
    0x7fff87355000 -
    0x7fff8736afff  com.apple.FileSync.framework (6.0.1 - 502.2) <65A5CD1B-766D-33F8-8AC1-0984499838E9> /System/Library/PrivateFrameworks/FileSync.framework/Versions/A/FileSync
    0x7fff8736b000 -
    0x7fff8738cfff  libPng.dylib (??? - ???) <E2B52527-4D0C-3595-BB13-8E8EF364E998> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff87396000 -
    0x7fff87490ff7  com.apple.DiskImagesFramework (10.7.4 - 331.7) <BEBA6D78-08E0-3B99-B77B-A5CBF3344834> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x7fff87491000 -
    0x7fff874adfff  com.apple.frameworks.preferencepanes (15.0 - 15.0) <A1ABA9DB-2C8A-3C96-976A-21E63194F7B2> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
    0x7fff874b2000 -
    0x7fff874bdfff  com.apple.CommonAuth (2.2 - 2.0) <77E6F0D0-85B6-30B5-B99C-F57104DD2EBA> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x7fff874be000 -
    0x7fff874c0fff  libCVMSPluginSupport.dylib (??? - ???) <982F1ED4-3CBB-3161-8BEA-8A980C27FCC1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x7fff874dd000 -
    0x7fff87538fff  com.apple.ImageCaptureCore (3.1.0 - 3.1.0) <9F7C4D81-5CC7-3D66-AC66-81EA9A5EAB94> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x7fff8756a000 -
    0x7fff87896fff  com.apple.HIToolbox (1.9 - ???) <CCB32DEA-D0CA-35D1-8019-E599C8007AB6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x7fff878fe000 -
    0x7fff87933fff  com.apple.securityinterface (5.0 - 55022.6) <4D6DAF8F-7873-3992-A6D6-478C7664FA39> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x7fff87934000 -
    0x7fff87ad4ff7  com.apple.QuartzCore (1.7 - 270.5) <19E5E0AB-DAA9-3F97-988C-D9A46AFB9C04> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff87ad5000 -
    0x7fff87adcfff  libGFXShared.dylib (??? - ???) <D3598924-B167-372E-8C9F-1BBF68852542> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x7fff87b1b000 -
    0x7fff87b72fff  com.apple.Suggestions (1.1 - 85.1) <DE511C42-D2F2-309C-80EE-53862245DE22> /System/Library/PrivateFrameworks/Suggestions.framework/Versions/A/Suggestions
    0x7fff87b73000 -
    0x7fff87cdafff  com.apple.CFNetwork (520.5.1 - 520.5.1) <08F70E26-5456-3BFB-8192-00D3CE40D3C9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x7fff87cdb000 -
    0x7fff87cf7ff7  com.apple.GenerationalStorage (1.0 - 126.1) <509F52ED-E54B-3FEF-B3C2-759387B826E6> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x7fff87cfa000 -
    0x7fff87d27fff  com.apple.quartzfilters (1.7.0 - 1.7.0) <CE1EDD58-7273-38F9-AD33-871A8BA7ABF3> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x7fff87d28000 -
    0x7fff87e1dfff  libiconv.2.dylib (7.0.0 - compatibility 7.0.0) <5C40E880-0706-378F-B864-3C2BD922D926> /usr/lib/libiconv.2.dylib
    0x7fff87e1e000 -
    0x7fff87e4eff7  com.apple.DictionaryServices (1.2.1 - 158.3) <5E2EBBFD-D520-3379-A431-11DAA844B8D6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x7fff87e4f000 -
    0x7fff87e8efff  com.apple.AE (527.7 - 527.7) <B82F7ABC-AC8B-3507-B029-969DD5CA813D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x7fff87e8f000 -
    0x7fff87e98ff7  libsystem_notify.dylib (80.1.0 - compatibility 1.0.0) <A4D651E3-D1C6-3934-AD49-7A104FD14596> /usr/lib/system/libsystem_notify.dylib
    0x7fff87e99000 -
    0x7fff87e99fff  com.apple.Accelerate (1.7 - Accelerate 1.7) <82DDF6F5-FBC3-323D-B71D-CF7ABC5CF568> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff887b0000 -
    0x7fff8888dfef  libsystem_c.dylib (763.13.0 - compatibility 1.0.0) <41B43515-2806-3FBC-ACF1-A16F35B7E290> /usr/lib/system/libsystem_c.dylib
    0x7fff888c4000 -
    0x7fff888d8ff7  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
    0x7fff888d9000 -
    0x7fff8892dfff  libFontRegistry.dylib (??? - ???) <60FF9C2C-5E44-3C49-8A08-F26101898F21> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff889ab000 -
    0x7fff889abfff  com.apple.ApplicationServices (41 - 41) <89B6AD5B-5C75-3E83-8C2B-AA7F4C55E400> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x7fff889ac000 -
    0x7fff88a1cfff  com.apple.datadetectorscore (3.0 - 179.4) <9C01D16F-75A9-3BDD-B91A-F0F32261A2E7> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x7fff88a39000 -
    0x7fff88a44ff7  com.apple.DisplayServicesFW (2.5.4 - 323.3) <5E7F7A88-9313-3C31-87BD-80F3361DA338> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x7fff88a45000 -
    0x7fff88c6ffe7  com.apple.CoreData (104.1 - 358.14) <6BB64605-8DA7-337D-A2AB-A3346A421CBD> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff88c70000 -
    0x7fff89254fff  libBLAS.dylib (??? - ???) <C34F6D88-187F-33DC-8A68-C0C9D1FA36DF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x7fff89255000 -
    0x7fff89256fff  libunc.dylib (24.0.0 - compatibility 1.0.0) <337960EE-0A85-3DD0-A760-7134CF4C0AFF> /usr/lib/system/libunc.dylib
    0x7fff89305000 -
    0x7fff89305fff  com.apple.Carbon (153 - 153) <16EA5662-5C2C-3267-B419-66669AE536D7> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x7fff89306000 -
    0x7fff8930afff  libdyld.dylib (195.6.0 - compatibility 1.0.0) <FFC59565-64BD-3B37-90A4-E2C3A422CFC1> /usr/lib/system/libdyld.dylib
    0x7fff8930b000 -
    0x7fff89318fff  com.apple.CrashReporterSupport (10.7.4 - 353) <6044CFB6-939E-3C73-BFBB-A8BBC096F135> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x7fff89319000 -
    0x7fff8931efff  com.apple.OpenDirectory (10.7 - 146) <7960A302-F9AC-3F72-838E-3A382032DCA6> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff89804000 -
    0x7fff89804fff  com.apple.Cocoa (6.6 - ???) <7EC4D759-B2A6-3A99-AC75-809FED1500C6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x7fff89805000 -
    0x7fff8993bfff  com.apple.vImage (5.1 - 5.1) <A08B7582-67BC-3EED-813A-4833645964A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x7fff8993c000 -
    0x7fff89985ff7  com.apple.framework.CoreWLAN (2.1.3 - 213.1) <D2101093-0B35-3B90-B511-E9272400ED9B> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x7fff89986000 -
    0x7fff899d4fff  libauto.dylib (??? - ???) <D8AC8458-DDD0-3939-8B96-B6CED81613EF> /usr/lib/libauto.dylib
    0x7fff89b6e000 -
    0x7fff89b7dff7  libxar-nossl.dylib (??? - ???) <A6ABBFB9-E4ED-38AD-BBBB-F9958B9CEFB5> /usr/lib/libxar-nossl.dylib
    0x7fff89b7e000 -
    0x7fff89ba7fff  libJPEG.dylib (??? - ???) <64D079F9-256A-323B-A837-84628B172F21> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff89ba8000 -
    0x7fff89baefff  com.apple.DiskArbitration (2.4.1 - 2.4.1) <CEA34337-63DE-302E-81AA-10D717E1F699> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff89baf000 -
    0x7fff89bf1ff7  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <BB770C22-8C57-365A-8716-4A3C36AE7BFB> /usr/lib/system/libcommonCrypto.dylib
    0x7fff89c41000 -
    0x7fff89c46fff  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <98ECD5F6-E85C-32A5-98CD-8911230CB66A> /usr/lib/system/libcompiler_rt.dylib
    0x7fff89c4c000 -
    0x7fff89c52fff  IOSurface (??? - ???) <77C6757B-D357-3E34-9424-48F962B5CC9C> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff89c53000 -
    0x7fff89cbbff7  com.apple.audio.CoreAudio (4.0.3 - 4.0.3) <9987DC46-2A96-3BA0-B88B-04E573C0AD9B> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff89ccf000 -
    0x7fff89cd0fff  libDiagnosticMessagesClient.dylib (??? - ???) <3DCF577B-F126-302B-BCE2-4DB9A95B8598> /usr/lib/libDiagnosticMessagesClient.dylib
    0x7fff89ce3000 -
    0x7fff89d24fff  com.apple.QD (3.40 - ???) <47674D2C-BE88-388E-B1B0-03F08BFFE5FD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x7fff8a10a000 -
    0x7fff8a133fff  com.apple.CoreVideo (1.7 - 70.3) <9A9D4058-9935-3B0A-B1A6-27EB78D02249> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff8a134000 -
    0x7fff8a1e7ff7  com.apple.CoreText (220.22.0 - ???) <A7A1096F-A211-3775-BA33-08FE98D27F08> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x7fff8a1e8000 -
    0x7fff8a4ddff7  com.apple.security (7.0 - 55148.6) <4535E500-973A-3BA7-AF65-DF5CF0658F02> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff8a74b000 -
    0x7fff8a784fe7  libssl.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <79AAEC98-1258-3DA4-B1C0-4120049D390B> /usr/lib/libssl.0.9.8.dylib
    0x7fff8a785000 -
    0x7fff8a785fff  com.apple.audio.units.AudioUnit (1.7.3 - 1.7.3) <04C10813-CCE5-3333-8C72-E8E35E417B3B> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff8a786000 -
    0x7fff8a7a5fff  libresolv.9.dylib (46.1.0 - compatibility 1.0.0) <0635C52D-DD53-3721-A488-4C6E95607A74> /usr/lib/libresolv.9.dylib
    0x7fff8a7a6000 -
    0x7fff8abc4ff7  com.apple.SceneKit (125.3 - 125.8) <23382F45-D9CE-3897-B998-5B26337608FD> /System/Library/PrivateFrameworks/SceneKit.framework/Versions/A/SceneKit
    0x7fff8abc5000 -
    0x7fff8abdafff  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
    0x7fff8abdb000 -
    0x7fff8abe9fff  com.apple.NetAuth (3.2 - 3.2) <F0D60E34-37A9-308D-B44E-E3450906173A> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x7fff8abea000 -
    0x7fff8af03fff  com.apple.Foundation (6.7.2 - 833.25) <22AAC369-B63C-3C55-8AC6-C3ECBA44DA7B> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff8af04000 -
    0x7fff8af05fff  libdnsinfo.dylib (395.11.0 - compatibility 1.0.0) <853BAAA5-270F-3FDC-B025-D448DB72E1C3> /usr/lib/system/libdnsinfo.dylib
    0x7fff8af15000 -
    0x7fff8af8bfff  com.apple.ISSupport (1.9.8 - 56) <2BEEF162-893F-356C-BD4E-8668F044A917> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x7fff8af8c000 -
    0x7fff8afdffff  com.apple.AppleVAFramework (5.0.16 - 5.0.16) <6F9A4BCE-8B99-3144-BCF7-B4299B27F6E9> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x7fff8afe0000 -
    0x7fff8b305ff7  com.apple.AddressBook.framework (6.1.3 - 1091) <5A8BEED1-229C-3A9C-8281-581127A1B9B5> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x7fff8b306000 -
    0x7fff8b368ff7  com.apple.Symbolication (1.3 - 91) <0945ACAF-AA0A-3D01-9960-72B51722EC1F> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x7fff8b369000 -
    0x7fff8b36bfff  libquarantine.dylib (36.7.0 - compatibility 1.0.0) <8D9832F9-E4A9-38C3-B880-E5210B2353C7> /usr/lib/system/libquarantine.dylib
    0x7fff8b36c000 -
    0x7fff8b37eff7  libz.1.dylib (1.2.5 - compatibility 1.0.0) <30CBEF15-4978-3DED-8629-7109880A19D4> /usr/lib/libz.1.dylib
    0x7fff8b37f000 -
    0x7fff8b3e7ff7  com.apple.coreui (1.2.2 - 165.11) <9316266A-39CA-3EC7-9C9E-726462CEFF4D> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff8b42e000 -
    0x7fff8b441ff7  libCRFSuite.dylib (??? - ???) <0B76941F-218E-30C8-B6DE-E15919F8DBEB> /usr/lib/libCRFSuite.dylib
    0x7fff8b47b000 -
    0x7fff8b47efff  libRadiance.dylib (??? - ???) <CD89D70D-F177-3BAE-8A26-644EA7D5E28E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x7fff8b47f000 -
    0x7fff8b4b9fe7  com.apple.DebugSymbols (2.1 - 87) <ED2B177C-4146-3715-91DF-D99A8ED5449A> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x7fff8b691000 -
    0x7fff8b6b5fff  com.apple.RemoteViewServices (1.5 - 44.2) <A0417D7F-22E9-3FD8-AC55-67654D8E93EB> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x7fff8b6b6000 -
    0x7fff8b6c2fff  com.apple.DirectoryService.Framework (10.7 - 146) <38778B01-2CF6-3A33-8A7A-FE016774B24C> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x7fff8b6c3000 -
    0x7fff8b71fff7  com.apple.HIServices (1.21 - ???) <B012EE97-D1CD-3F4B-812D-9AC7E6852FE6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x7fff8b720000 -
    0x7fff8b72bff7  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <8FF3D766-D678-36F6-84AC-423C878E6D14> /usr/lib/libc++abi.dylib
    0x7fff8b958000 -
    0x7fff8b963ff7  com.apple.speech.recognition.framework (4.0.21 - 4.0.21) <6540EAF2-E3BF-3D2E-B4C1-F106180D6F20> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x7fff8b964000 -
    0x7fff8b964fff  com.apple.quartzframework (1.5 - 1.5) <2C13AE76-C86B-3D48-A583-121689190F74> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x7fff8ba68000 -
    0x7fff8ba8efff  com.apple.framework.familycontrols (3.0 - 300) <6F0C58C0-22E7-3877-8CFA-1ED0CB3CE38B> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x7fff8bc8b000 -
    0x7fff8bccbfe7  libGLImage.dylib (??? - ???) <0B7DAB2B-F1C6-39C7-B864-61EF683B6656> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x7fff8bccc000 -
    0x7fff8bcdafff  libdispatch.dylib (187.10.0 - compatibility 1.0.0) <8E03C652-922A-3399-93DE-9EA0CBFA0039> /usr/lib/system/libdispatch.dylib
    0x7fff8bd50000 -
    0x7fff8bd67fff  com.apple.CFOpenDirectory (10.7 - 146) <BBB7C97E-7B46-3286-9128-32B5D16B5CBE> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x7fff8bd68000 -
    0x7fff8bddbfff  libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <6BDD43E4-A4B1-379E-9ED5-8C713653DFF2> /usr/lib/libstdc++.6.dylib
    0x7fff8bddc000 -
    0x7fff8bdebfff  com.apple.opengl (1.8.1 - 1.8.1) <51B34133-CEE3-3FC6-82AC-ADF567AE673C> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff8bdec000 -
    0x7fff8be4cfff  libvDSP.dylib (325.4.0 - compatibility 1.0.0) <3A7521E6-5510-3FA7-AB65-79693A7A5839> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x7fff8bed0000 -
    0x7fff8bed0fff  com.apple.CoreServices (53 - 53) <043C8026-8EDD-3241-B090-F589E24062EF> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff8bee1000 -
    0x7fff8bfe8fe7  libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <EE02BB01-64C9-304D-9719-A35F5CD6D04C> /usr/lib/libsqlite3.dylib
    0x7fff8bfe9000 -
    0x7fff8bff0fff  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <0AB51EE2-E914-358C-AC19-47BC024BDAE7> /usr/lib/system/libcopyfile.dylib
    0x7fff8bff1000 -
    0x7fff8c035ff7  libRIP.A.dylib (600.0.0 - compatibility 64.0.0) <B2A38D2C-7E82-34C5-8896-48C37B0E64A3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x7fff8c036000 -
    0x7fff8c037fff  com.apple.ServerInformation (1.0 - 1) <D95BC225-E33B-32BC-9FEE-77423F8D7EBC> /System/Library/PrivateFrameworks/ServerInformation.framework/Versions/A/Server Information
    0x7fff8c038000 -
    0x7fff8c078ff7  libcups.2.dylib (2.9.0 - compatibility 2.0.0) <7D2E5016-A960-3ADE-B042-F74063E79550> /usr/lib/libcups.2.dylib
    0x7fff8c079000 -
    0x7fff8c140ff7  com.apple.ColorSync (4.7.4 - 4.7.4) <590AFCDA-F10E-31FE-9B01-DA5FFE74C2BB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x7fff8c141000 -
    0x7fff8c14fff7  com.apple.AppleFSCompression (37 - 1.0) <61113C2F-564C-3E6C-918C-3179980D599F> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x7fff8c150000 -
    0x7fff8c150fff  libOpenScriptingUtil.dylib (??? - ???) <A7847713-F410-39C0-884F-A7188A18E742> /usr/lib/libOpenScriptingUtil.dylib
    0x7fff8c151000 -
    0x7fff8c16efff  libxpc.dylib (77.19.0 - compatibility 1.0.0) <9F57891B-D7EF-3050-BEDD-21E7C6668248> /usr/lib/system/libxpc.dylib
    0x7fff8c16f000 -
    0x7fff8c211fff  com.apple.securityfoundation (5.0 - 55116) <A9311EF6-B7F7-3DA5-84E8-21BC9B2C3C69> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x7fff8c24a000 -
    0x7fff8c4c2fff  com.apple.imageKit (2.1.2 - 1.0) <23470050-28FB-3B09-8E27-ADC371B0E4B8> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x7fff8c4ca000 -
    0x7fff8c511ff7  com.apple.CoreMedia (1.0 - 705.94) <700C6863-7A8F-34FA-8B1D-7659EC95000B> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x7fff8c512000 -
    0x7fff8c516fff  libCGXType.A.dylib (600.0.0 - compatibility 64.0.0) <35D606B1-7AD9-38E3-A2A9-E92B904BDDE8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x7fff8c517000 -
    0x7fff8d11dfff  com.apple.AppKit (6.7.5 - 1138.51) <44417D02-6123-3FC3-A119-CE51BB4C3006> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff8d17f000 -
    0x7fff8d1d7ff7  libTIFF.dylib (??? - ???) <59353B7F-EA9A-32D5-A501-283443B30C60> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff8d1e3000 -
    0x7fff8d1e4fff  liblangid.dylib (??? - ???) <CACBE3C3-2F7B-3EED-B50E-EDB73F473B77> /usr/lib/liblangid.dylib
    0x7fff8d1e5000 -
    0x7fff8d1f3ff7  libkxld.dylib (??? - ???) <01161870-E3B3-3F87-BA4A-0AA7A081F409> /usr/lib/system/libkxld.dylib
    0x7fff8d1f4000 -
    0x7fff8d20bfff  com.apple.MultitouchSupport.framework (231.4 - 231.4) <10A978D1-8781-33F0-BE45-60C9171F7278> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x7fff8d20c000 -
    0x7fff8d211fff  libcache.dylib (47.0.0 - compatibility 1.0.0) <1571C3AB-BCB2-38CD-B3B2-C5FC3F927C6A> /usr/lib/system/libcache.dylib
    0x7fff8d24e000 -
    0x7fff8d2d1fef  com.apple.Metadata (10.7.0 - 627.37) <B9BEB598-B6F2-3BFF-A8F3-C3C87CD076AB> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x7fff8d62d000 -
    0x7fff8d635fff  libsystem_dnssd.dylib (??? - ???) <584B321E-5159-37CD-B2E7-82E069C70AFB> /usr/lib/system/libsystem_dnssd.dylib
    0x7fff8d648000 -
    0x7fff8d96afff  com.apple.JavaScriptCore (7534.57 - 7534.57.3) <3A04B8FC-CFA6-3AEB-8FDF-B0525B5A4C82> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x7fff8d96b000 -
    0x7fff8dd98fff  libLAPACK.dylib (??? - ???) <4F2E1055-2207-340B-BB45-E4F16171EE0D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x7fff8dd99000 -
    0x7fff8dd9eff7  libsystem_network.dylib (??? - ???) <5DE7024E-1D2D-34A2-80F4-08326331A75B> /usr/lib/system/libsystem_network.dylib
    0x7fff8dd9f000 -
    0x7fff8ddb5fff  libGL.dylib (??? - ???) <A4876AE9-DDFE-3B9A-874E-09BC29D46C39> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff8ddb6000 -
    0x7fff8e027fff  com.apple.QuartzComposer (5.0 - 236.10) <F8560AEC-4E26-3A43-BE0A-B20FCB5B2E7D> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x7fff8e028000 -
    0x7fff8e344fff  com.apple.CoreServices.CarbonCore (960.25 - 960.25) <4FC1AB30-022C-3C67-AC46-FDCBFCB7EEDE> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x7fff8e345000 -
    0x7fff8e347fff  com.apple.TrustEvaluationAgent (2.0 - 1) <1F31CAFF-C1C6-33D3-94E9-11B721761DDF> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x7fff8e3b1000 -
    0x7fff8e3b8ff7  com.apple.CommerceCore (1.0 - 17) <3894FE48-EDCE-30E9-9796-E2F959D92704> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x7fff8e3b9000 -
    0x7fff8e516fff  com.apple.audio.toolbox.AudioToolbox (1.7.3 - 1.7.3) <5F1E4695-BC74-3ADD-8345-627BCD68201A> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff8e74b000 -
    0x7fff8e7e1ff7  libvMisc.dylib (325.4.0 - compatibility 1.0.0) <642D8D54-F9F5-3FBB-A96C-EEFE94C6278B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x7fff8e7e2000 -
    0x7fff8e826ff7  com.apple.MediaKit (12 - 602) <0C2CBEDA-412F-3DDF-9C74-44114E5E0DB9> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x7fff8e827000 -
    0x7fff8e933fff  libcrypto.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <3A8E1F89-5E26-3C8B-B538-81F5D61DBF8A> /usr/lib/libcrypto.0.9.8.dylib
    0x7fff8e934000 -
    0x7fff8e972fff  com.apple.bom (11.0 - 183) <F300B9EC-995E-33A7-9175-9F07D4B68F16> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x7fff8e973000 -
    0x7fff8e981fff  com.apple.Collaboration (63.2 - 63.2) <B76A62A5-EE5E-3D7F-8F1D-F80E8E78FFD8> /System/Library/Frameworks/Collaboration.framework/Versions/A/Collaboration
    0x7fff8e982000 -
    0x7fff8edb5ff7  com.apple.VideoToolbox (1.0 - 705.94) <72AD524C-0616-3C69-BA1F-8D444F97F5A2> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x7fff8ee52000 -
    0x7fff8f0d7ff7  com.apple.RawCamera.bundle (4.04 - 680) <F9A2656C-CE71-326E-BD6D-077487F49D74> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x7fff8f0d8000 -
    0x7fff8f0eaff7  libsasl2.2.dylib (3.15.0 - compatibility 3.0.0) <6245B497-784B-355C-98EF-2DC6B45BF05C> /usr/lib/libsasl2.2.dylib
    0x7fff8f0eb000 -
    0x7fff8f161ff7  libc++.1.dylib (28.4.0 - compatibility 1.0.0) <A24FC3DA-4FFA-3DD2-9DCC-2B8D1B3BF97C> /usr/lib/libc++.1.dylib
    0x7fff8f162000 -
    0x7fff8f166ff7  com.apple.CommonPanels (1.2.5 - 94) <37C6540B-F8D1-355A-806C-F93D8FB522AB> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x7fff8f167000 -
    0x7fff8f1c4ff7  com.apple.QuickLookFramework (3.2 - 500.18) <C36371BF-E1F6-3DF7-83EA-CE96FCDCE4C4> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x7fff8f1c5000 -
    0x7fff8f25fff7  com.apple.SearchKit (1.4.0 - 1.4.0) <4E70C394-773E-3A4B-A93C-59A88ABA9509> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x7fff8f328000 -
    0x7fff8f40ce5f  libobjc.A.dylib (228.0.0 - compatibility 1.0.0) <871E688B-CF57-3BC7-80D6-F6476DFF109B> /usr/lib/libobjc.A.dylib
    0x7fff8f40d000 -
    0x7fff8f41aff7  libbz2.1.0.dylib (1.0.5 - compatibility 1.0.0) <DFAB8CA8-CC9D-3F58-8C12-CE120442AACD> /usr/lib/libbz2.1.0.dylib
    0x7fff8f41b000 -
    0x7fff8f51dfff  libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <AFBB22B7-07AE-3F2E-B88C-70BEEBFB8A86> /usr/lib/libxml2.2.dylib
    0x7fff8f51e000 -
    0x7fff8f528ff7  liblaunch.dylib (392.39.0 - compatibility 1.0.0) <8C235D13-2928-30E5-9E12-2CC3D6324AE2> /usr/lib/system/liblaunch.dylib
    0x7fff8f529000 -
    0x7fff8f57bff7  libGLU.dylib (??? - ???) <DB906997-0F70-3469-BA0E-2F1DDBEAD8D5> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib

    If you have more than one user account, you must be logged in as an administrator to carry out these instructions.
    Triple-click anywhere in the line below to select it:
    sudo rm -i /V*/*/.DS_Store
    Copy the selected text to the Clipboard (command-C).
    Launch the Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Paste into the Terminal window (command-V). You'll be prompted for your login password, which won't be displayed when you type it. If you don’t have a login password, you’ll need to set one before you can run the command. You may get a one-time warning not to screw up. Confirm. You don't need to post the warning. If you see a message that your username "is not in the sudoers file," then you're not logged in as an administrator.
    You may be prompted to remove one or more files named exactly ".DS_Store" (without the quotes.) Press the Y key and then return to confirm. Press the N key and then return if you get any other response, or just close the Terminal window.
    Try again to open the volume window.

  • Does anyone have a problem with a computer virus?

    This is my third attempt at posting on the forums.  I hope it works this time.
    Hello to everyone. 
    I have a Sattelite L455D.   I got  it last November.  It was included in tuition for my online classes at Dawn Career Institute.
    Last weekend the computer got a virus.  toshiba did recovery and it was fine but yesterday it got another virus and they had to do recovery again.
    The virus is the type that try to get yiour passwords and credit card info.  The Norton Security also found a tracking cookie that they fot rid off.  I don't know if that is the same thing.
    The computer is fine now but the security thing said it blocked an attempt to attack my computer.
    Does anyone else have a problem with viruses?  I would like to know what is causing it.
    I am not going on any sites that would cause a problem.  I know not to open spam email if I get it.
    I don't go on any sites that I have not gone on on a Public computer at the library or someone else's house.
    The main sites I use are the school site, my Comcast email, Facebook and Youtube.
    I took all of my applications off of Facebook.  I play Cityville with some friends and family but alot of people play that though.
    I had my resume on Careerbuilder but had to take it down because of getting alot of email about scam jobs.  Could it have come from that?
    I really would like to know what is causing this.  I am very carefull on the computer. I am being extra carefull now.
    My Security trail ends in a month and I am afraid the virus will keep getting back on after that.  I don't have the money to pay for it  myslef right now untill I am done school in August.
    This is the first time I have ever had a home computer and I like having one because it is easy to do my schoolwork but I am getting tired of having to do recovery becuse of getting a virus.
    Any ideas or sugesstions would be appreciated.
    Thank you.
    Solved!
    Go to Solution.

    KHoffman wrote:
    I will try the Microsoft Security Essentials instead of Norton.
    When you uninstall Norton you might want to also use the Norton Removal Tool to uninstall NAV remnants that might be left on the system. It's a free d/l and available from the Symantec Website.
    Just so you know MSE real time detection isn't that good. It sometimes allows malware to get onto your system. If MSE does allow malware onto your system it may be able to clean it during a scan. You have to keep your definitions up to date and run full scans manually. It isn't that great but what do you want for nothing.
    There are other free antivirus programs available for d/l at CNET: AVG, Avira, Avast, Comodo, etc. They're realtime detection is better but they also use more system resources. AVG has a link scanner feature. Reviews of these programs are available on You Tube and other sites. There are also free scanners you can install to run AV scans on the fly. They can provide a second opinion and can also be useful for cleaning the system of malware: Malwarebytes, SuperAntispyware. They have to be uninstalled when your done or they might confilct with your antivirus programs realtime detection and cause slowdowns, etc. Gmer is free and is used to scan and clean the system of rootkits. There are also some utilities you can use to help see what might unexpectedly be running on the system: Task Manager, System Configuration utility, and the System Information utility are built into your OS. Process Explorer, HighJackThis, ShellExview are also free programs. CCleaner is free and it helps to rid the system of temporary files, cookies, and useless registry entries.
    Use Windows Update and the Java Control Panel to make sure your system has the latest patches, and Java version and update Adobe reader. The Java Control panel allows you to delete temporary Java files.
    MS has been using Active X and JAVA script for years and the software has always been exploited by malware through email, attachments, web pages and links.
    http://www.microsoft.com/security/family-safety/default.aspx#Internet-use

  • I have a problem with the touchsmart 420pc, after a running time (2 hour approx) is turned off,

    good afternoon, I have a problem with the touchsmart 420pc, after a running time (2 hour approx) is turned off, probably warming, but this rare, is suddenly going slow parapadear and image.
    also sounds like when damaged ballasts for lamps,
    ANYONE know what could be the cuasa and / or what is causing this.
    greetings and thanks in advance

    Hi,
    Please write your TouchSmart model number, which system are you using and country of purchase.
    Resource:
    How Do I Find My Model Number?
    ** Say thanks by clicking the "Thumb up" icon which is on the left. **
    ** Make it easier for other people to find solutions, by marking my answer with "Accept as Solution" if it solves your issue. **

  • I have  a problem with my credit Card ...

    when i want buy some apps from  App. Store i have a problem with my Master Card , but in Paypal i havn't  any problem ...
    Could you help me ?
    Thx

    You don't say what the problem is with your card.   If your card will not accept the charges, perhaps it is maxed out or suspended, then it would not be acceptable to Apple.   I am pretty sure that Apple would clear cards and credit levels before accepting an account with you.  
    I also believe Apple does not take PayPal.
    If the first situation is close to yours then you will have to find an alternate means of setting up an account.

  • Problems with @Resource

    Hi!
    I have a problem with JMS!
    I use javax.annotation.Resource to obtain reference in this way:
    @Resource(mappedName = "jms/TopicConnectionFactory")
    private static TopicConnectionFactory connectionFactory;
    @Resource(mappedName = "jms/Topic")
    private static Topic topic;
    I use glassfish v.3
    If i use this annotations in class MAIN... and Then I pass references to publisher and subscriber... there aren't problems !
    But if I use this annotations directly into the classes publisher and subscriber... i have this error:
    java.lang.reflect.InvocationTargetException
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.glassfish.appclient.client.acc.AppClientContainer.launch(AppClientContainer.java:424)
    at org.glassfish.appclient.client.AppClientFacade.main(AppClientFacade.java:134)
    Caused by: java.lang.NullPointerException
    at manager.Publisher.<init>(Publisher.java:35)
    at manager.Subscriber.<init>(Subscriber.java:42)
    at manager.MainManager.main(MainManager.java:35)
    ... 6 more
    Java Result: 1
    Where in "Publisher.java:35" there is--> connection = connectionFactory.createTopicConnection();
    Where in "Subscriber.java:42" there is --> Publisher p = new Publisher(subName);
    And Where "ainManager.java:35" there is --> Subscriber s = new Subscriber("nameManager");
    help, please!
    Edited by: user13635722 on 5-gen-2011 23.49

    Ok, I search the information for load backup.
    For the other issue there are a few things you should check:
    1) Are the devices managed in RME?
    Yes, I have 75 devices managed with RME
    2) Do you have syslog enabled on the device to LMS?
    Yes, I is enabled
    3) Are the devices having configs archived successfully?
    I dont now, you can tell me how do this?
    Greatings
    Daniel M

  • I have some problem with In-App Purchases

    Dear Customer Support,
    I have some problem with In-App Purchases
    Because my 4 year-old daughters purchased  In-App when he play
    and i can not Report a Problem  in Itune
    I inadvertently purchased all of this application below.
    Order Number:
    Receipt Date: 16/04/12
    Order Total: $99.99
    Billed To: MasterCard
    Diamond Dash,140000 wooga
    Report a Problem In App Purchase   $99.99
    Payment Card Total $99.99
    Hope I can get help from you as well.
    Best regards
    <Email Edited by Host>

    Hi, ddddda
    I've got the same problem, same rate.
    I called to Apple Support and she recommended me to report by this link.
    http://www.apple.com/asia/support/itunes/contact.html
    (Select topic .. App store)
    Within 6 hrs, Apple replied me with this.
    >>>>>>>>
    Dear Charin,
    Josh here from the iTunes Store.
    I understand your son made a purchase accidentally that you would like refunded. When it comes to your money, I can certainly appreciate how important it is to feel that you are treated fairly, and I would be more than happy to help you out with this today.
    Please read my entire email as I have included information about your refund, what was purchased and how to avoid these type of purchases in the future.
    Charin, the charges in question are for in-app purchases. An in-app purchase is a purchase that can be made within an Application on an iPhone or an iPod Touch.
    In-App purchases are items you can buy that will assist you in advancing in the game you're playing. Some examples of In App Purchases are: bonus game levels or maps, additional experience points, subscriptions, and recurring services.
    The Application "Diamond Dash" was free, and this is the Application that was used to purchase the in-app items. The in-app purchases were for "1000 Gold" to be used when playing "Diamond Dash."
    Please note that there is a 15 minute window after initially entering in your password, where the password is not requested again. Once this time has passed, you will be requested for your password, and also to confirm the purchase by tapping the Buy button.
    To prevent any further in-app purchases from being made unintentionally, please set the in-app restriction on your device(s) as soon as possible. You can set the in-app restriction on an iPod Touch, iPhone or iPad by following these steps;
    1) Click on the "Settings" Application
    2) Now from the list of options click on "General"
    3) Scroll down and click on "Restrictions"
    4) Under the heading "Allowed Content" be sure that "In-App Purchases" is "OFF."
    After reviewing the circumstances of your case, we determined that issuing you a refund for your unintentional purchase of "1000 Gold" is an appropriate exception to the App Store Terms and Conditions, which state that all sales are final. In five to seven business days, a credit of $99.99 should be posted to the credit card that appears on the receipt for that purchase.
    The iTunes Store provides a warning message that asks if you are sure that you want to buy an item. This warning can be turned off. If you would like to make sure that this warning is on, you can reset the warnings in the iTunes Store by following the instructions in this article:
    Resetting iTunes Store warnings
    http://support.apple.com/kb/HT1734
    Additionally, you can make modifications on certain devices that will prevent them from making purchases:
    iPhone, iPad, and iPod touch: Understanding Restrictions
    http://support.apple.com/kb/HT4213
    Please let me know if you require any further assistance with this issue, as if you do, I would be glad to help. Thank you very much for being part of the iTunes Store family, Charin. I hope you have a great day.
    Sincerely,
    Josh
    iTunes Store / Mac App Store Customer Support
    Please Note: I work Sunday 7 AM - 3:15 PM, Monday 4:00 PM - 11:30 PM, Tuesday 3:30 PM - 11:30 PM, and Friday 7:00 AM - 3:15 PM
    All times are EST.
    Thank you for allowing me the opportunity to assist you.
    >>>>>>>>>>>>>>>>>>>>>>>>>>
    Once i've got any development, I'll posted here.
    remark : This app "in-app purchase" no need for password confimation in buying dialogue.

  • I am using ios 7.1 but I still having problems with the level, how can it be solved?

    How to solve the problems with the level?

    The level that we have in the compass app, it still shows me -2

Maybe you are looking for