summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2018-10-26 13:15:51 -0700
committerTim Smith <tsmith@chef.io>2018-10-26 13:15:51 -0700
commit39e5a8c13a4b15c94cb64db57ba668ee6e803116 (patch)
tree0113a81a5febe55468362afc44ad6427156fd299
parent84ff1a2fb0fc2ec67a04094161509133b83590ae (diff)
downloadohai-39e5a8c13a4b15c94cb64db57ba668ee6e803116.tar.gz
Remove the deprecated system_profiler plugin
This has been replaced by the hardware plugin on macOS. Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r--.rubocop.yml1
-rw-r--r--lib/ohai/plugins/darwin/system_profiler.rb72
-rw-r--r--spec/unit/plugins/darwin/system_profiler_output.rb79524
-rw-r--r--spec/unit/plugins/darwin/system_profiler_spec.rb40
4 files changed, 0 insertions, 79637 deletions
diff --git a/.rubocop.yml b/.rubocop.yml
index e948a583..18cbf0d7 100644
--- a/.rubocop.yml
+++ b/.rubocop.yml
@@ -3,7 +3,6 @@ AllCops:
- "spec/data/**/*"
- "vendor/**/*"
- "pkg/**/*"
- - "spec/unit/plugins/darwin/system_profiler_output.rb"
# these have shellout examples that need to have the tabs that come with the shellout
Layout/Tab:
diff --git a/lib/ohai/plugins/darwin/system_profiler.rb b/lib/ohai/plugins/darwin/system_profiler.rb
deleted file mode 100644
index ee1ab298..00000000
--- a/lib/ohai/plugins/darwin/system_profiler.rb
+++ /dev/null
@@ -1,72 +0,0 @@
-#
-# Author:: Benjamin Black (<bb@chef.io>)
-# Copyright:: Copyright (c) 2009-2016 Chef Software, Inc.
-# License:: Apache License, Version 2.0
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-
-Ohai.plugin(:SystemProfile) do
- provides "system_profile"
-
- collect_data(:darwin) do
- require "plist"
-
- system_profile Array.new
- items = Array.new
- detail_level = {
- "mini" => %w{
-SPParallelATAData
-SPAudioData
-SPBluetoothData
-SPCardReaderData
-SPDiagnosticsData
-SPDiscBurningData
-SPEthernetData
-SPFibreChannelData
-SPFireWireData
-SPDisplaysData
-SPHardwareRAIDData
-SPMemoryData
-SPModemData
-SPNetworkData
-SPPCIData
-SPParallelSCSIData
-SPPrintersSoftwareData
-SPPrintersData
-SPSASData
-SPSerialATAData
-SPSoftwareData
-SPThunderboltData
-SPUSBData
-SPWWANData
-SPAirPortData},
- "full" => [
- "SPHardwareDataType",
- ],
- }
-
- detail_level.each do |level, data_types|
- so = shell_out("system_profiler -xml -detailLevel #{level} #{data_types.join(' ')}")
- Plist.parse_xml(so.stdout).each do |e|
- # delete some bogus timing data and then keep the rest
- e.delete("_SPCompletionInterval")
- e.delete("_SPResponseTime")
- e.delete("_SPCommandLineArguments")
- items << e
- end
- end
-
- system_profile ( items.sort_by { |h| h["_dataType"] } ) # rubocop: disable Lint/ParenthesesAsGroupedExpression
- end
-end
diff --git a/spec/unit/plugins/darwin/system_profiler_output.rb b/spec/unit/plugins/darwin/system_profiler_output.rb
deleted file mode 100644
index e18d3f57..00000000
--- a/spec/unit/plugins/darwin/system_profiler_output.rb
+++ /dev/null
@@ -1,79524 +0,0 @@
-
-module SystemProfilerOutput
-Mini = <<end_output
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
-<plist version="1.0">
-<array>
- <dict>
- <key>_SPCommandLineArguments</key>
- <array>
- <string>/usr/sbin/system_profiler</string>
- <string>-xml</string>
- <string>-detailLevel</string>
- <string>mini</string>
- <string>SPParallelATADataType</string>
- <string>SPApplicationsDataType</string>
- <string>SPAudioDataType</string>
- <string>SPBluetoothDataType</string>
- <string>SPCardReaderDataType</string>
- <string>SPComponentDataType</string>
- <string>SPDeveloperToolsDataType</string>
- <string>SPDiagnosticsDataType</string>
- <string>SPDiscBurningDataType</string>
- <string>SPEthernetDataType</string>
- <string>SPExtensionsDataType</string>
- <string>SPFibreChannelDataType</string>
- <string>SPFireWireDataType</string>
- <string>SPFirewallDataType</string>
- <string>SPFontsDataType</string>
- <string>SPFrameworksDataType</string>
- <string>SPDisplaysDataType</string>
- <string>SPHardwareRAIDDataType</string>
- <string>SPNetworkLocationDataType</string>
- <string>SPLogsDataType</string>
- <string>SPManagedClientDataType</string>
- <string>SPMemoryDataType</string>
- <string>SPModemDataType</string>
- <string>SPNetworkDataType</string>
- <string>SPPCIDataType</string>
- <string>SPParallelSCSIDataType</string>
- <string>SPPowerDataType</string>
- <string>SPPrefPaneDataType</string>
- <string>SPPrintersSoftwareDataType</string>
- <string>SPPrintersDataType</string>
- <string>SPConfigurationProfileDataType</string>
- <string>SPSASDataType</string>
- <string>SPSerialATADataType</string>
- <string>SPSoftwareDataType</string>
- <string>SPStartupItemDataType</string>
- <string>SPSyncServicesDataType</string>
- <string>SPThunderboltDataType</string>
- <string>SPUSBDataType</string>
- <string>SPUniversalAccessDataType</string>
- <string>SPNetworkVolumeDataType</string>
- <string>SPWWANDataType</string>
- <string>SPAirPortDataType</string>
- </array>
- <key>_SPCompletionInterval</key>
- <real>0.042407035827636719</real>
- <key>_dataType</key>
- <string>SPParallelATADataType</string>
- <key>_detailLevel</key>
- <integer>-1</integer>
- <key>_items</key>
- <array/>
- <key>_parentDataType</key>
- <string>SPHardwareDataType</string>
- <key>_properties</key>
- <dict>
- <key>_name</key>
- <dict>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_isOutlineColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>0</string>
- </dict>
- <key>bsd_name</key>
- <dict>
- <key>_order</key>
- <string>62</string>
- </dict>
- <key>detachable_drive</key>
- <dict>
- <key>_order</key>
- <string>59</string>
- </dict>
- <key>device_manufacturer</key>
- <dict>
- <key>_order</key>
- <string>40</string>
- </dict>
- <key>device_model</key>
- <dict>
- <key>_order</key>
- <string>42</string>
- </dict>
- <key>device_revision</key>
- <dict>
- <key>_order</key>
- <string>44</string>
- </dict>
- <key>disc_burning</key>
- <dict>
- <key>_order</key>
- <string>54</string>
- </dict>
- <key>file_system</key>
- <dict>
- <key>_order</key>
- <string>60</string>
- </dict>
- <key>free_space</key>
- <dict>
- <key>_deprecated</key>
- <true/>
- <key>_order</key>
- <string>12</string>
- </dict>
- <key>free_space_in_bytes</key>
- <dict>
- <key>_isByteSize</key>
- <true/>
- <key>_order</key>
- <string>12</string>
- </dict>
- <key>mount_point</key>
- <dict>
- <key>_order</key>
- <string>64</string>
- </dict>
- <key>optical_drive_type</key>
- <dict>
- <key>_order</key>
- <string>50</string>
- </dict>
- <key>optical_media_type</key>
- <dict>
- <key>_order</key>
- <string>52</string>
- </dict>
- <key>removable_media</key>
- <dict>
- <key>_order</key>
- <string>56</string>
- </dict>
- <key>size</key>
- <dict>
- <key>_deprecated</key>
- <true/>
- <key>_order</key>
- <string>10</string>
- </dict>
- <key>size_in_bytes</key>
- <dict>
- <key>_isByteSize</key>
- <true/>
- <key>_order</key>
- <string>10</string>
- </dict>
- <key>spata_bus</key>
- <dict>
- <key>_order</key>
- <string>22</string>
- </dict>
- <key>spata_device-id</key>
- <dict>
- <key>_order</key>
- <string>30</string>
- </dict>
- <key>spata_lowpowerpolling</key>
- <dict>
- <key>_order</key>
- <string>130</string>
- </dict>
- <key>spata_name</key>
- <dict>
- <key>_order</key>
- <string>20</string>
- </dict>
- <key>spata_poweroff</key>
- <dict>
- <key>_order</key>
- <string>140</string>
- </dict>
- <key>spata_protocol</key>
- <dict>
- <key>_order</key>
- <string>100</string>
- </dict>
- <key>spata_revision-id</key>
- <dict>
- <key>_order</key>
- <string>32</string>
- </dict>
- <key>spata_rom-revision</key>
- <dict>
- <key>_order</key>
- <string>26</string>
- </dict>
- <key>spata_slot_name</key>
- <dict>
- <key>_order</key>
- <string>24</string>
- </dict>
- <key>spata_socket_type</key>
- <dict>
- <key>_order</key>
- <string>120</string>
- </dict>
- <key>spata_unit_number</key>
- <dict>
- <key>_order</key>
- <string>110</string>
- </dict>
- <key>spata_vendor-id</key>
- <dict>
- <key>_order</key>
- <string>28</string>
- </dict>
- <key>volumes_anonymous</key>
- <dict>
- <key>_detailLevel</key>
- <string>-1</string>
- <key>_maxDetailLevel</key>
- <string>-1</string>
- </dict>
- <key>writable</key>
- <dict>
- <key>_order</key>
- <string>58</string>
- </dict>
- </dict>
- <key>_timeStamp</key>
- <date>2012-12-04T21:29:53Z</date>
- <key>_versionInfo</key>
- <dict>
- <key>com.apple.SystemProfiler.SPParallelATAReporter</key>
- <string>2.0.2</string>
- </dict>
- </dict>
- <dict>
- <key>_SPCommandLineArguments</key>
- <array>
- <string>/usr/sbin/system_profiler</string>
- <string>-xml</string>
- <string>-detailLevel</string>
- <string>mini</string>
- <string>SPParallelATADataType</string>
- <string>SPApplicationsDataType</string>
- <string>SPAudioDataType</string>
- <string>SPBluetoothDataType</string>
- <string>SPCardReaderDataType</string>
- <string>SPComponentDataType</string>
- <string>SPDeveloperToolsDataType</string>
- <string>SPDiagnosticsDataType</string>
- <string>SPDiscBurningDataType</string>
- <string>SPEthernetDataType</string>
- <string>SPExtensionsDataType</string>
- <string>SPFibreChannelDataType</string>
- <string>SPFireWireDataType</string>
- <string>SPFirewallDataType</string>
- <string>SPFontsDataType</string>
- <string>SPFrameworksDataType</string>
- <string>SPDisplaysDataType</string>
- <string>SPHardwareRAIDDataType</string>
- <string>SPNetworkLocationDataType</string>
- <string>SPLogsDataType</string>
- <string>SPManagedClientDataType</string>
- <string>SPMemoryDataType</string>
- <string>SPModemDataType</string>
- <string>SPNetworkDataType</string>
- <string>SPPCIDataType</string>
- <string>SPParallelSCSIDataType</string>
- <string>SPPowerDataType</string>
- <string>SPPrefPaneDataType</string>
- <string>SPPrintersSoftwareDataType</string>
- <string>SPPrintersDataType</string>
- <string>SPConfigurationProfileDataType</string>
- <string>SPSASDataType</string>
- <string>SPSerialATADataType</string>
- <string>SPSoftwareDataType</string>
- <string>SPStartupItemDataType</string>
- <string>SPSyncServicesDataType</string>
- <string>SPThunderboltDataType</string>
- <string>SPUSBDataType</string>
- <string>SPUniversalAccessDataType</string>
- <string>SPNetworkVolumeDataType</string>
- <string>SPWWANDataType</string>
- <string>SPAirPortDataType</string>
- </array>
- <key>_SPCompletionInterval</key>
- <real>12.989439010620117</real>
- <key>_dataType</key>
- <string>SPApplicationsDataType</string>
- <key>_detailLevel</key>
- <integer>1</integer>
- <key>_items</key>
- <array>
- <dict>
- <key>_name</key>
- <string>VMware Fusion</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-07T00:10:54Z</date>
- <key>path</key>
- <string>/Applications/VMware Fusion.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>5.0.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Sublime Text 2</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-07-14T00:07:18Z</date>
- <key>path</key>
- <string>/Applications/Sublime Text 2.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>Version 2.0.1, Build 2217</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Google Chrome</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>lastModified</key>
- <date>2012-11-28T01:46:13Z</date>
- <key>path</key>
- <string>/Applications/Google Chrome.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>23.0.1271.95</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Twitter</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>2.1.1, Copyright © 2011 Twitter</string>
- <key>lastModified</key>
- <date>2012-12-01T07:06:09Z</date>
- <key>path</key>
- <string>/Applications/Twitter.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>2.1.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Firefox</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>Firefox 17.0.1</string>
- <key>lastModified</key>
- <date>2012-12-03T21:05:43Z</date>
- <key>path</key>
- <string>/Applications/Firefox.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>17.0.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>GoToMeeting v5</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>info</key>
- <string>GoToMeeting v5.2.0.952, Copyright © 2004-2011 Citrix Online LLC</string>
- <key>lastModified</key>
- <date>2012-04-25T22:19:45Z</date>
- <key>path</key>
- <string>/Applications/GoToMeeting (952).app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>5.2.0.952</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Cisco AnyConnect VPN Client</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>lastModified</key>
- <date>2012-11-30T21:56:11Z</date>
- <key>path</key>
- <string>/Applications/Cisco/Cisco AnyConnect VPN Client.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Microsoft Outlook</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>info</key>
- <string>14.2.0 (120402), © 2010 Microsoft Corporation. All rights reserved.</string>
- <key>lastModified</key>
- <date>2012-12-03T23:13:05Z</date>
- <key>path</key>
- <string>/Applications/Microsoft Office 2011/Microsoft Outlook.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>14.2.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Rdio</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>lastModified</key>
- <date>2012-11-12T20:21:50Z</date>
- <key>path</key>
- <string>/Applications/Rdio.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>2.16</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>iTerm</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>1.0.0.20120724</string>
- <key>lastModified</key>
- <date>2012-07-25T01:45:50Z</date>
- <key>path</key>
- <string>/Applications/iTerm.app</string>
- <key>runtime_environment</key>
- <string>universal</string>
- <key>version</key>
- <string>1.0.0.20120724</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Adium</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>1.5.4, Copyright © 2001-2012 The Adium Team</string>
- <key>lastModified</key>
- <date>2012-11-30T21:16:11Z</date>
- <key>path</key>
- <string>/Applications/Adium.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.5.4</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>HipChat</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>info</key>
- <string>1.20120926103402,</string>
- <key>lastModified</key>
- <date>2012-11-30T17:55:28Z</date>
- <key>path</key>
- <string>/Applications/HipChat.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.20120926103402</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>VLC</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>Copyright © 1996-2012 VLC authors and VideoLAN</string>
- <key>lastModified</key>
- <date>2012-10-16T16:02:25Z</date>
- <key>path</key>
- <string>/Applications/VLC.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>2.0.4</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>7zX</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>info</key>
- <string>7zX 1.7.1 Copyright 2006-2008 Sixty Five, Ltd.</string>
- <key>lastModified</key>
- <date>2008-03-12T08:24:17Z</date>
- <key>path</key>
- <string>/Applications/7zX.app</string>
- <key>runtime_environment</key>
- <string>universal</string>
- <key>version</key>
- <string>1.7.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Logitech</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>info</key>
- <string>Logitech Registration 1.03.0006, Copyright © 2009 Leader Technologies/Logitech</string>
- <key>lastModified</key>
- <date>2011-04-04T09:36:05Z</date>
- <key>path</key>
- <string>/Library/Application Support/Logitech.localized/Logitech Webcam Software.localized/Logitech.app</string>
- <key>runtime_environment</key>
- <string>universal</string>
- <key>version</key>
- <string>1.03.0006</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Logitech Registration</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>info</key>
- <string>Logitech Registration 1.03.0006, Copyright © 2009 Leader Technologies/Logitech</string>
- <key>lastModified</key>
- <date>2012-12-04T00:59:34Z</date>
- <key>path</key>
- <string>/Library/Application Support/Logitech.localized/Logitech Control Center.localized/Logitech Registration.app</string>
- <key>runtime_environment</key>
- <string>universal</string>
- <key>version</key>
- <string>1.03.0006</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Logitech Webcam Software</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>lastModified</key>
- <date>2012-12-04T01:04:19Z</date>
- <key>path</key>
- <string>/Applications/Logitech/LWS/Logitech Webcam Software.app</string>
- <key>runtime_environment</key>
- <string>universal</string>
- <key>version</key>
- <string>2.2.13</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Installer</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:58Z</date>
- <key>path</key>
- <string>/System/Library/CoreServices/Installer.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>5.0.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Archive Utility</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:58Z</date>
- <key>path</key>
- <string>/System/Library/CoreServices/Archive Utility.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>10.7.4</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Logitech Updater</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>info</key>
- <string>Logitech Updater ()
-© 2010, Logitech, Inc.
-All rights reserved.</string>
- <key>lastModified</key>
- <date>2012-12-04T01:04:20Z</date>
- <key>path</key>
- <string>/Applications/Logitech/LWS/LU/Logitech Updater.app</string>
- <key>runtime_environment</key>
- <string>universal</string>
- <key>version</key>
- <string>1.80.22</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Uninstaller</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>lastModified</key>
- <date>2012-12-04T01:04:20Z</date>
- <key>path</key>
- <string>/Applications/Logitech/LWS/Uninstaller/Uninstaller.app</string>
- <key>runtime_environment</key>
- <string>universal</string>
- <key>version</key>
- <string>2.2.13</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Logitech Updater</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>info</key>
- <string>Logitech Updater 1.6.0 (313)
-© 2009, Logitech, Inc.
-All rights reserved.</string>
- <key>lastModified</key>
- <date>2012-12-04T00:59:34Z</date>
- <key>path</key>
- <string>/Library/Application Support/Logitech.localized/Logitech Updater.localized/Logitech Updater.app</string>
- <key>runtime_environment</key>
- <string>universal</string>
- <key>version</key>
- <string>1.6.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Logitech Unifying Software</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>Logitech Unifying Software 1.1 (301)
-© 2009, Logitech, Inc.
-All rights reserved.</string>
- <key>lastModified</key>
- <date>2012-12-04T00:59:34Z</date>
- <key>path</key>
- <string>/Applications/Utilities/Logitech Unifying Software.app</string>
- <key>runtime_environment</key>
- <string>universal</string>
- <key>version</key>
- <string>1.1-301</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>LCC Connection Utility</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>info</key>
- <string>Logitech Control Center 3.6.0-35
-© 2002-2012, Logitech, Inc.
-All rights reserved.</string>
- <key>lastModified</key>
- <date>2012-12-04T00:59:34Z</date>
- <key>path</key>
- <string>/Applications/Utilities/LCC Connection Utility.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>3.6.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>LCC Uninstaller</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>info</key>
- <string>Logitech Control Center 3.6.0-35
-© 2002-2012, Logitech, Inc.
-All rights reserved.</string>
- <key>lastModified</key>
- <date>2012-12-04T00:59:34Z</date>
- <key>path</key>
- <string>/Applications/Utilities/LCC Uninstaller.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>3.6.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Logitech Device Manager</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>Device Manager 3.6.0-35
-© 2002-2012, Logitech, Inc.
-All rights reserved.</string>
- <key>lastModified</key>
- <date>2012-12-04T00:59:34Z</date>
- <key>path</key>
- <string>/Library/Application Support/Logitech.localized/Logitech Control Center.localized/Device Manager.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>3.6.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Logitech Control Center Daemon</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>Logitech Control Center 3.6.0-35
-© 2002-2012, Logitech, Inc.
-All rights reserved.</string>
- <key>lastModified</key>
- <date>2012-12-04T00:59:34Z</date>
- <key>path</key>
- <string>/Library/Application Support/Logitech.localized/Logitech Control Center.localized/LCCDaemon.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>3.6.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>LCC Pilot</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>info</key>
- <string>Logitech Control Center 3.6.0-35
-© 2002-2012, Logitech, Inc.
-All rights reserved.</string>
- <key>lastModified</key>
- <date>2012-12-04T00:59:34Z</date>
- <key>path</key>
- <string>/Library/Application Support/Logitech.localized/Logitech Control Center.localized/LCC Pilot.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Microsoft Database Utility</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>info</key>
- <string>14.2.0 (120402), © 2010 Microsoft Corporation. All rights reserved.</string>
- <key>lastModified</key>
- <date>2012-12-03T23:13:05Z</date>
- <key>path</key>
- <string>/Applications/Microsoft Office 2011/Office/Microsoft Database Utility.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>14.2.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Remote Desktop Connection</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>info</key>
- <string>2.1.1 (110309), © 2010 Microsoft Corporation. All rights reserved.</string>
- <key>lastModified</key>
- <date>2012-12-03T23:13:05Z</date>
- <key>path</key>
- <string>/Applications/Remote Desktop Connection.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>2.1.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Microsoft AutoUpdate</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>info</key>
- <string>2.3.6 (121012), © 2010 Microsoft Corporation. All rights reserved.</string>
- <key>lastModified</key>
- <date>2012-12-03T23:16:13Z</date>
- <key>path</key>
- <string>/Library/Application Support/Microsoft/MAU2.0/Microsoft AutoUpdate.app</string>
- <key>runtime_environment</key>
- <string>universal</string>
- <key>version</key>
- <string>2.3.6</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Microsoft Office Setup Assistant</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>info</key>
- <string>14.2.0 (120402), © 2010 Microsoft Corporation. All rights reserved.</string>
- <key>lastModified</key>
- <date>2012-12-03T23:13:04Z</date>
- <key>path</key>
- <string>/Applications/Microsoft Office 2011/Office/Microsoft Office Setup Assistant.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>14.2.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Microsoft Error Reporting</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>info</key>
- <string>2.2.8 (111212), © 2010 Microsoft Corporation. All rights reserved.</string>
- <key>lastModified</key>
- <date>2012-12-03T23:13:05Z</date>
- <key>path</key>
- <string>/Library/Application Support/Microsoft/MERP2.0/Microsoft Error Reporting.app</string>
- <key>runtime_environment</key>
- <string>universal</string>
- <key>version</key>
- <string>2.2.8</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Microsoft Ship Asserts</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>info</key>
- <string>1.1.3 (111212), © 2010 Microsoft Corporation. All rights reserved.</string>
- <key>lastModified</key>
- <date>2012-12-03T23:13:05Z</date>
- <key>path</key>
- <string>/Library/Application Support/Microsoft/MERP2.0/Microsoft Ship Asserts.app</string>
- <key>runtime_environment</key>
- <string>universal</string>
- <key>version</key>
- <string>1.1.3</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Microsoft Messenger</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>info</key>
- <string>8.0.1 (110309), © 2010 Microsoft Corporation. All rights reserved.</string>
- <key>lastModified</key>
- <date>2012-12-03T23:13:05Z</date>
- <key>path</key>
- <string>/Applications/Microsoft Messenger.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>8.0.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>My Day</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>info</key>
- <string>14.2.0 (120402), © 2010 Microsoft Corporation. All rights reserved.</string>
- <key>lastModified</key>
- <date>2012-12-03T23:13:05Z</date>
- <key>path</key>
- <string>/Applications/Microsoft Office 2011/Office/My Day.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>14.2.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Microsoft Language Register</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>info</key>
- <string>14.2.0 (120402), © 2010 Microsoft Corporation. All rights reserved.</string>
- <key>lastModified</key>
- <date>2012-12-03T23:13:05Z</date>
- <key>path</key>
- <string>/Applications/Microsoft Office 2011/Additional Tools/Microsoft Language Register/Microsoft Language Register.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>14.2.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Open XML for Excel</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>info</key>
- <string>14.2.0 (120402), © 2010 Microsoft Corporation. All rights reserved.</string>
- <key>lastModified</key>
- <date>2012-12-03T23:13:05Z</date>
- <key>path</key>
- <string>/Applications/Microsoft Office 2011/Office/Open XML for Excel.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>14.2.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>SyncServicesAgent</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>info</key>
- <string>14.2.0 (120402), © 2010 Microsoft Corporation. All rights reserved.</string>
- <key>lastModified</key>
- <date>2012-12-03T23:13:05Z</date>
- <key>path</key>
- <string>/Applications/Microsoft Office 2011/Office/SyncServicesAgent.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>14.2.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Microsoft Upload Center</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>info</key>
- <string>14.2.0 (120402), © 2010 Microsoft Corporation. All rights reserved.</string>
- <key>lastModified</key>
- <date>2012-12-03T23:13:05Z</date>
- <key>path</key>
- <string>/Applications/Microsoft Office 2011/Office/Microsoft Upload Center.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>14.2.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Microsoft Office Reminders</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>info</key>
- <string>14.2.0 (120402), © 2010 Microsoft Corporation. All rights reserved.</string>
- <key>lastModified</key>
- <date>2012-12-03T23:13:05Z</date>
- <key>path</key>
- <string>/Applications/Microsoft Office 2011/Office/Microsoft Office Reminders.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>14.2.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Microsoft Database Daemon</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>info</key>
- <string>14.2.0 (120402), © 2010 Microsoft Corporation. All rights reserved.</string>
- <key>lastModified</key>
- <date>2012-12-03T23:13:05Z</date>
- <key>path</key>
- <string>/Applications/Microsoft Office 2011/Office/Microsoft Database Daemon.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>14.2.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Microsoft Clip Gallery</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>info</key>
- <string>14.2.0 (120402), © 2010 Microsoft Corporation. All rights reserved.</string>
- <key>lastModified</key>
- <date>2012-12-03T23:13:05Z</date>
- <key>path</key>
- <string>/Applications/Microsoft Office 2011/Office/Microsoft Clip Gallery.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>14.2.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Microsoft Alerts Daemon</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>info</key>
- <string>14.2.0 (120402), © 2010 Microsoft Corporation. All rights reserved.</string>
- <key>lastModified</key>
- <date>2012-12-03T23:13:04Z</date>
- <key>path</key>
- <string>/Applications/Microsoft Office 2011/Office/Microsoft Alerts Daemon.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>14.2.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Microsoft Chart Converter</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>info</key>
- <string>14.2.0 (120402), © 2010 Microsoft Corporation. All rights reserved.</string>
- <key>lastModified</key>
- <date>2012-12-03T23:13:04Z</date>
- <key>path</key>
- <string>/Applications/Microsoft Office 2011/Office/Microsoft Chart Converter.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>14.2.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>System Preferences</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:58Z</date>
- <key>path</key>
- <string>/Applications/System Preferences.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>11.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Skype</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>lastModified</key>
- <date>2012-12-03T21:42:58Z</date>
- <key>path</key>
- <string>/Applications/Skype.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>6.0.0.2968</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>App Store</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:54Z</date>
- <key>path</key>
- <string>/Applications/App Store.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.1.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Shush</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-12-03T18:46:40Z</date>
- <key>path</key>
- <string>/Applications/Shush.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>iTerm</string>
- <key>lastModified</key>
- <date>2012-12-03T17:09:41Z</date>
- <key>path</key>
- <string>/opt/chef/embedded/share/terminfo/69/iTerm.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Adobe Flash Player Install Manager</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>lastModified</key>
- <date>2012-12-03T16:04:19Z</date>
- <key>path</key>
- <string>/Applications/Utilities/Adobe Flash Player Install Manager.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>11.5.502.110</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Preview</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>5.5.3, Copyright 2002-2012 Apple Inc.</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:01Z</date>
- <key>path</key>
- <string>/Applications/Preview.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>5.5.3</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>VirtualBox</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>Oracle VM VirtualBox Manager 4.2.4, © 2007-2012 Oracle Corporation</string>
- <key>lastModified</key>
- <date>2012-11-30T19:19:41Z</date>
- <key>path</key>
- <string>/Applications/VirtualBox.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>4.2.4</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MacVim</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>lastModified</key>
- <date>2012-01-02T16:39:05Z</date>
- <key>path</key>
- <string>/Applications/MacVim.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>7.3</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>appmon</string>
- <key>lastModified</key>
- <date>2012-12-01T13:53:11Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B03/lib/erlang/lib/appmon-2.1.14.1/ebin/appmon.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>asn1</string>
- <key>lastModified</key>
- <date>2012-12-01T13:51:20Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B03/lib/erlang/lib/asn1-1.8/ebin/asn1.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>common_test</string>
- <key>lastModified</key>
- <date>2012-12-01T13:53:04Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B03/lib/erlang/lib/common_test-1.6.3/ebin/common_test.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>compiler</string>
- <key>lastModified</key>
- <date>2012-12-01T13:52:40Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B03/lib/erlang/lib/compiler-4.8.2/ebin/compiler.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>cosEvent</string>
- <key>lastModified</key>
- <date>2012-12-01T13:55:01Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B03/lib/erlang/lib/cosEvent-2.1.12/ebin/cosEvent.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>cosEventDomain</string>
- <key>lastModified</key>
- <date>2012-12-01T13:55:37Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B03/lib/erlang/lib/cosEventDomain-1.1.12/ebin/cosEventDomain.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>cosFileTransfer</string>
- <key>lastModified</key>
- <date>2012-12-01T13:55:32Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B03/lib/erlang/lib/cosFileTransfer-1.1.13/ebin/cosFileTransfer.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>cosNotification</string>
- <key>lastModified</key>
- <date>2012-12-01T13:55:09Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B03/lib/erlang/lib/cosNotification-1.1.18/ebin/cosNotification.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>cosProperty</string>
- <key>lastModified</key>
- <date>2012-12-01T13:55:27Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B03/lib/erlang/lib/cosProperty-1.1.15/ebin/cosProperty.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>cosTime</string>
- <key>lastModified</key>
- <date>2012-12-01T13:55:06Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B03/lib/erlang/lib/cosTime-1.1.12/ebin/cosTime.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>cosTransactions</string>
- <key>lastModified</key>
- <date>2012-12-01T13:54:56Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B03/lib/erlang/lib/cosTransactions-1.2.12/ebin/cosTransactions.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>crypto</string>
- <key>lastModified</key>
- <date>2012-12-01T13:54:00Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B03/lib/erlang/lib/crypto-2.2/ebin/crypto.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>debugger</string>
- <key>lastModified</key>
- <date>2012-12-01T13:53:27Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B03/lib/erlang/lib/debugger-3.2.8/ebin/debugger.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>dialyzer</string>
- <key>lastModified</key>
- <date>2012-12-01T13:57:33Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B03/lib/erlang/lib/dialyzer-2.5.3/ebin/dialyzer.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>diameter</string>
- <key>lastModified</key>
- <date>2012-12-01T13:54:53Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B03/lib/erlang/lib/diameter-1.3/ebin/diameter.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>edoc</string>
- <key>lastModified</key>
- <date>2012-12-01T13:57:13Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B03/lib/erlang/lib/edoc-0.7.10/ebin/edoc.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>eldap</string>
- <key>lastModified</key>
- <date>2012-12-01T13:57:27Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B03/lib/erlang/lib/eldap-1.0/ebin/eldap.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>erl_docgen</string>
- <key>lastModified</key>
- <date>2012-12-01T13:57:24Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B03/lib/erlang/lib/erl_docgen-0.3.3/ebin/erl_docgen.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>et</string>
- <key>lastModified</key>
- <date>2012-12-01T13:55:42Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B03/lib/erlang/lib/et-1.4.4.2/ebin/et.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>eunit</string>
- <key>lastModified</key>
- <date>2012-12-01T13:57:14Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B03/lib/erlang/lib/eunit-2.2.3/ebin/eunit.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>gs</string>
- <key>lastModified</key>
- <date>2012-12-01T13:53:35Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B03/lib/erlang/lib/gs-1.5.15.1/ebin/gs.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>hipe</string>
- <key>lastModified</key>
- <date>2012-12-01T13:50:42Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B03/lib/erlang/lib/hipe-3.9.3/ebin/hipe.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ic</string>
- <key>lastModified</key>
- <date>2012-12-01T13:51:50Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B03/lib/erlang/lib/ic-4.2.31/ebin/ic.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>inets</string>
- <key>lastModified</key>
- <date>2012-12-01T13:53:41Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B03/lib/erlang/lib/inets-5.9.2/ebin/inets.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>inviso</string>
- <key>lastModified</key>
- <date>2012-12-01T13:57:22Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B03/lib/erlang/lib/inviso-0.6.3/ebin/inviso.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>kernel</string>
- <key>lastModified</key>
- <date>2012-12-01T13:52:25Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B03/lib/erlang/lib/kernel-2.15.3/ebin/kernel.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>uds_dist</string>
- <key>lastModified</key>
- <date>2012-11-26T14:48:29Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B03/lib/erlang/lib/kernel-2.15.3/examples/uds_dist/src/uds_dist.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>megaco</string>
- <key>lastModified</key>
- <date>2012-12-01T13:55:44Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B03/lib/erlang/lib/megaco-3.16.0.2/ebin/megaco.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>mnesia</string>
- <key>lastModified</key>
- <date>2012-12-01T13:53:59Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B03/lib/erlang/lib/mnesia-4.7.1/ebin/mnesia.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>observer</string>
- <key>lastModified</key>
- <date>2012-12-01T13:54:46Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B03/lib/erlang/lib/observer-1.2/ebin/observer.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>odbc</string>
- <key>lastModified</key>
- <date>2012-12-01T13:54:47Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B03/lib/erlang/lib/odbc-2.10.13/ebin/odbc.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>orber</string>
- <key>lastModified</key>
- <date>2012-12-01T13:54:04Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B03/lib/erlang/lib/orber-3.6.24/ebin/orber.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>os_mon</string>
- <key>lastModified</key>
- <date>2012-12-01T13:54:19Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B03/lib/erlang/lib/os_mon-2.2.10/ebin/os_mon.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>otp_mibs</string>
- <key>lastModified</key>
- <date>2012-12-01T13:53:08Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B03/lib/erlang/lib/otp_mibs-1.0.7/ebin/otp_mibs.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>parsetools</string>
- <key>lastModified</key>
- <date>2012-12-01T13:51:13Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B03/lib/erlang/lib/parsetools-2.0.7/ebin/parsetools.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>percept</string>
- <key>lastModified</key>
- <date>2012-12-01T13:57:26Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B03/lib/erlang/lib/percept-0.8.7/ebin/percept.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>pman</string>
- <key>lastModified</key>
- <date>2012-12-01T13:54:22Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B03/lib/erlang/lib/pman-2.7.1.2/ebin/pman.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>public_key</string>
- <key>lastModified</key>
- <date>2012-12-01T13:54:30Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B03/lib/erlang/lib/public_key-0.17/ebin/public_key.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>reltool</string>
- <key>lastModified</key>
- <date>2012-12-01T13:53:30Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B03/lib/erlang/lib/reltool-0.6.1/ebin/reltool.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>runtime_tools</string>
- <key>lastModified</key>
- <date>2012-12-01T13:53:07Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B03/lib/erlang/lib/runtime_tools-1.8.9/ebin/runtime_tools.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>sasl</string>
- <key>lastModified</key>
- <date>2012-12-01T13:51:43Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B03/lib/erlang/lib/sasl-2.2.1/ebin/sasl.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>snmp</string>
- <key>lastModified</key>
- <date>2012-12-01T13:51:27Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B03/lib/erlang/lib/snmp-4.22.1/ebin/snmp.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ssh</string>
- <key>lastModified</key>
- <date>2012-12-01T13:57:17Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B03/lib/erlang/lib/ssh-2.1.2/ebin/ssh.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ssl</string>
- <key>lastModified</key>
- <date>2012-12-01T13:54:31Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B03/lib/erlang/lib/ssl-5.1.1/ebin/ssl.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>stdlib</string>
- <key>lastModified</key>
- <date>2012-12-01T13:52:12Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B03/lib/erlang/lib/stdlib-1.18.3/ebin/stdlib.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>syntax_tools</string>
- <key>lastModified</key>
- <date>2012-12-01T13:51:55Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B03/lib/erlang/lib/syntax_tools-1.6.9/ebin/syntax_tools.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>test_server</string>
- <key>lastModified</key>
- <date>2012-12-01T13:52:56Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B03/lib/erlang/lib/test_server-3.5.3/ebin/test_server.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>toolbar</string>
- <key>lastModified</key>
- <date>2012-12-01T13:54:36Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B03/lib/erlang/lib/toolbar-1.4.2.2/ebin/toolbar.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>tools</string>
- <key>lastModified</key>
- <date>2012-12-01T13:52:54Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B03/lib/erlang/lib/tools-2.6.8/ebin/tools.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>tv</string>
- <key>lastModified</key>
- <date>2012-12-01T13:54:41Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B03/lib/erlang/lib/tv-2.1.4.9/ebin/tv.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>typer</string>
- <key>lastModified</key>
- <date>2012-12-01T13:57:23Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B03/lib/erlang/lib/typer-0.9.4/ebin/typer.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>webtool</string>
- <key>lastModified</key>
- <date>2012-12-01T13:57:01Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B03/lib/erlang/lib/webtool-0.8.9.1/ebin/webtool.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>xmerl</string>
- <key>lastModified</key>
- <date>2012-12-01T13:57:07Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B03/lib/erlang/lib/xmerl-1.3.2/ebin/xmerl.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Seashore</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>info</key>
- <string>Seashore 0.5.1 - GNU General Public License</string>
- <key>lastModified</key>
- <date>2010-09-06T21:40:40Z</date>
- <key>path</key>
- <string>/Applications/Seashore.app</string>
- <key>runtime_environment</key>
- <string>universal</string>
- <key>version</key>
- <string>0.5.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>SSHKeychain</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>lastModified</key>
- <date>2007-08-24T12:55:02Z</date>
- <key>path</key>
- <string>/Applications/SSHKeychain.app</string>
- <key>runtime_environment</key>
- <string>universal</string>
- <key>version</key>
- <string>0.8.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Alfred</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-08-20T08:54:45Z</date>
- <key>path</key>
- <string>/Applications/Alfred.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.3.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>webmachine</string>
- <key>lastModified</key>
- <date>2012-12-01T01:34:08Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/webmachine/ebin/webmachine.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>iso8601</string>
- <key>lastModified</key>
- <date>2012-12-01T01:26:31Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/erlang_iso8601/ebin/iso8601.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>rabbit</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:35Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/rabbitmq_server-2.7.1/ebin/rabbit.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>xmerl</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:23Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/xmerl/ebin/xmerl.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>wx</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:22Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/wx/ebin/wx.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>webtool</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:22Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/webtool/ebin/webtool.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>typer</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:22Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/typer/ebin/typer.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>tv</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:22Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/tv/ebin/tv.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>tools</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:22Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/tools/ebin/tools.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>toolbar</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:22Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/toolbar/ebin/toolbar.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>test_server</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:22Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/test_server/ebin/test_server.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>syntax_tools</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:22Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/syntax_tools/ebin/syntax_tools.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>archive_script_dummy</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:22Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/stdlib/test/escript_SUITE_data/archive_script/archive_script_dummy/ebin/archive_script_dummy.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>archive_script_dict</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:22Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/stdlib/test/escript_SUITE_data/archive_script/archive_script_dict/ebin/archive_script_dict.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>stdlib</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:22Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/stdlib/ebin/stdlib.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ssl</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:22Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/ssl/ebin/ssl.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ssh</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:22Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/ssh/ebin/ssh.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>snmp</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:21Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/snmp/ebin/snmp.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>stdlib</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:21Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/sasl/test/systools_SUITE_data/lib/stdlib/ebin/stdlib.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>kernel</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:21Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/sasl/test/systools_SUITE_data/lib/kernel/ebin/kernel.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>fe</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:21Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/sasl/test/systools_SUITE_data/d_normal/lib/fe-3.1/ebin/fe.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>fe</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:21Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/sasl/test/systools_SUITE_data/d_normal/lib/fe-2.1/ebin/fe.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>fe</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:21Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/sasl/test/systools_SUITE_data/d_normal/lib/fe-2.1.1/ebin/fe.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>db</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:21Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/sasl/test/systools_SUITE_data/d_normal/lib/db-3.1/ebin/db.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>db</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:21Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/sasl/test/systools_SUITE_data/d_normal/lib/db-2.1/ebin/db.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>db</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:21Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/sasl/test/systools_SUITE_data/d_normal/lib/db-1.1/ebin/db.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>db</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:21Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/sasl/test/systools_SUITE_data/d_normal/lib/db-1.0/ebin/db.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>fe</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:21Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/sasl/test/systools_SUITE_data/d_no_appup/lib/fe-3.1/ebin/fe.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>fe</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:21Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/sasl/test/systools_SUITE_data/d_no_appup/lib/fe-2.1/ebin/fe.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>fe</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:21Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/sasl/test/systools_SUITE_data/d_missing_src/lib/fe-3.1/ebin/fe.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>db</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:21Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/sasl/test/systools_SUITE_data/d_missing_src/lib/db-2.1/ebin/db.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>db</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:21Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/sasl/test/systools_SUITE_data/d_links/lib/db-2.1/ebin/db.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>fe</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:21Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/sasl/test/systools_SUITE_data/d_bad_mod+warn/lib/fe-3.1/ebin/fe.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>db</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:21Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/sasl/test/systools_SUITE_data/d_bad_mod+warn/lib/db-2.1/ebin/db.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>fe</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:21Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/sasl/test/systools_SUITE_data/d_bad_appup/lib/fe-3.1/ebin/fe.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>fe</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:21Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/sasl/test/systools_SUITE_data/d_bad_app_vsn/lib/fe-3.1/ebin/fe.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>db</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:21Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/sasl/test/systools_SUITE_data/d_bad_app_vsn/lib/db-2.1/ebin/db.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>installer</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:21Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/sasl/test/release_handler_SUITE_data/lib/installer-1.0/ebin/installer.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>a</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:21Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/sasl/test/release_handler_SUITE_data/lib/a-1.1/ebin/a.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>a</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:21Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/sasl/test/release_handler_SUITE_data/lib/a-1.0/src/a.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>a</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:21Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/sasl/test/release_handler_SUITE_data/lib/a-1.0/ebin/a.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>c</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:21Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/sasl/test/release_handler_SUITE_data/c/c.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>app2</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:21Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/sasl/test/release_handler_SUITE_data/app1_app2/lib2/app2-1.0/ebin/app2.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>app1</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:21Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/sasl/test/release_handler_SUITE_data/app1_app2/lib2/app1-2.0/ebin/app1.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>app2</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:21Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/sasl/test/release_handler_SUITE_data/app1_app2/lib1/app2-1.0/ebin/app2.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>app1</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:21Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/sasl/test/release_handler_SUITE_data/app1_app2/lib1/app1-1.0/ebin/app1.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>a</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:21Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/sasl/test/release_handler_SUITE_data/P2B/a-2.0/ebin/a.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>sasl</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:21Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/sasl/ebin/sasl.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>runtime_tools</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:21Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/runtime_tools/ebin/runtime_tools.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>y</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:21Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/reltool/test/reltool_server_SUITE_data/otp_9229/y-1.0/ebin/y.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>x</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:21Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/reltool/test/reltool_server_SUITE_data/otp_9229/x-1.0/ebin/x.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>reltool</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:21Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/reltool/ebin/reltool.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>public_key</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:21Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/public_key/ebin/public_key.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>pman</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:20Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/pman/ebin/pman.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>percept</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:20Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/percept/ebin/percept.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>parsetools</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:20Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/parsetools/ebin/parsetools.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>otp_mibs</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:20Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/otp_mibs/ebin/otp_mibs.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>os_mon</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:20Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/os_mon/ebin/os_mon.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>orber</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:20Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/orber/ebin/orber.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>odbc</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:19Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/odbc/ebin/odbc.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>observer</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:19Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/observer/ebin/observer.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>mnesia</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:19Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/mnesia/ebin/mnesia.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>megaco</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:18Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/megaco/ebin/megaco.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>topApp3</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:18Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/kernel/test/topApp3.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>topApp2</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:18Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/kernel/test/topApp2.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>topApp</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:18Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/kernel/test/topApp.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>myApp</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:18Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/kernel/test/myApp.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>primary_archive_dummy</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:18Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/kernel/test/erl_prim_loader_SUITE_data/primary_archive/primary_archive_dummy/ebin/primary_archive_dummy.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>primary_archive_dict</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:18Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/kernel/test/erl_prim_loader_SUITE_data/primary_archive/primary_archive_dict-1.0/ebin/primary_archive_dict.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>on_load_app</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:18Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/kernel/test/code_SUITE_data/on_load_app-1.0/ebin/on_load_app.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>code_archive_dict</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:18Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/kernel/test/code_SUITE_data/code_archive_dict-1.0/ebin/code_archive_dict.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>appinc2top</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:18Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/kernel/test/appinc2top.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>appinc2B</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:18Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/kernel/test/appinc2B.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>appinc2A</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:18Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/kernel/test/appinc2A.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>appinc2</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:18Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/kernel/test/appinc2.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>appinc1x</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:18Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/kernel/test/appinc1x.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>appinc1</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:18Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/kernel/test/appinc1.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>appinc</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:18Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/kernel/test/appinc.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>uds_dist</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:18Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/kernel/examples/uds_dist/src/uds_dist.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>kernel</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:18Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/kernel/ebin/kernel.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>inviso</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:18Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/inviso/ebin/inviso.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>inets</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:17Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/inets/ebin/inets.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ic</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:17Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/ic/ebin/ic.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>gs</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:17Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/gs/ebin/gs.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>eunit</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:17Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/eunit/ebin/eunit.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>et</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:17Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/et/ebin/et.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>erl_docgen</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:17Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/erl_docgen/ebin/erl_docgen.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>edoc</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:16Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/edoc/ebin/edoc.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>docbuilder</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:16Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/docbuilder/ebin/docbuilder.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>diameter</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:16Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/diameter/ebin/diameter.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>dialyzer</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:16Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/dialyzer/ebin/dialyzer.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>debugger</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:16Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/debugger/ebin/debugger.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>crypto</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:16Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/crypto/ebin/crypto.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>cosTransactions</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:16Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/cosTransactions/ebin/cosTransactions.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>cosTime</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:16Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/cosTime/ebin/cosTime.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>cosProperty</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:16Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/cosProperty/ebin/cosProperty.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>cosNotification</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:15Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/cosNotification/ebin/cosNotification.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>cosFileTransfer</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:15Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/cosFileTransfer/ebin/cosFileTransfer.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>cosEventDomain</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:15Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/cosEventDomain/ebin/cosEventDomain.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>cosEvent</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:15Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/cosEvent/ebin/cosEvent.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>compiler</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:15Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/compiler/ebin/compiler.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>common_test</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:15Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/common_test/ebin/common_test.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>asn1</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:14Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/asn1/ebin/asn1.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>appmon</string>
- <key>lastModified</key>
- <date>2012-12-01T01:25:14Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus-pc/source/otp_src_R14B03/lib/appmon/ebin/appmon.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>basho_bench</string>
- <key>lastModified</key>
- <date>2012-12-01T01:15:39Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/bench_nodes/ebin/basho_bench.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>opscode_crypto</string>
- <key>lastModified</key>
- <date>2012-12-01T01:10:00Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/opscode_crypto/ebin/opscode_crypto.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>rabbit</string>
- <key>lastModified</key>
- <date>2012-12-01T01:09:31Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus/source/rabbitmq_server-2.2.0/ebin/rabbit.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>xmerl</string>
- <key>lastModified</key>
- <date>2012-12-01T01:09:30Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus/source/otp_src_R14B02/lib/xmerl/ebin/xmerl.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>wx</string>
- <key>lastModified</key>
- <date>2012-12-01T01:09:30Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus/source/otp_src_R14B02/lib/wx/ebin/wx.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>webtool</string>
- <key>lastModified</key>
- <date>2012-12-01T01:09:30Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus/source/otp_src_R14B02/lib/webtool/ebin/webtool.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>typer</string>
- <key>lastModified</key>
- <date>2012-12-01T01:09:30Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus/source/otp_src_R14B02/lib/typer/ebin/typer.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>tv</string>
- <key>lastModified</key>
- <date>2012-12-01T01:09:30Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus/source/otp_src_R14B02/lib/tv/ebin/tv.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>tools</string>
- <key>lastModified</key>
- <date>2012-12-01T01:09:30Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus/source/otp_src_R14B02/lib/tools/ebin/tools.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>toolbar</string>
- <key>lastModified</key>
- <date>2012-12-01T01:09:30Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus/source/otp_src_R14B02/lib/toolbar/ebin/toolbar.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>test_server</string>
- <key>lastModified</key>
- <date>2012-12-01T01:09:30Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus/source/otp_src_R14B02/lib/test_server/ebin/test_server.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>syntax_tools</string>
- <key>lastModified</key>
- <date>2012-12-01T01:09:30Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus/source/otp_src_R14B02/lib/syntax_tools/ebin/syntax_tools.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>archive_script_dummy</string>
- <key>lastModified</key>
- <date>2012-12-01T01:09:30Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus/source/otp_src_R14B02/lib/stdlib/test/escript_SUITE_data/archive_script/archive_script_dummy/ebin/archive_script_dummy.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>archive_script_dict</string>
- <key>lastModified</key>
- <date>2012-12-01T01:09:30Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus/source/otp_src_R14B02/lib/stdlib/test/escript_SUITE_data/archive_script/archive_script_dict/ebin/archive_script_dict.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>stdlib</string>
- <key>lastModified</key>
- <date>2012-12-01T01:09:30Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus/source/otp_src_R14B02/lib/stdlib/ebin/stdlib.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ssl</string>
- <key>lastModified</key>
- <date>2012-12-01T01:09:30Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus/source/otp_src_R14B02/lib/ssl/ebin/ssl.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ssh</string>
- <key>lastModified</key>
- <date>2012-12-01T01:09:29Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus/source/otp_src_R14B02/lib/ssh/ebin/ssh.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>snmp</string>
- <key>lastModified</key>
- <date>2012-12-01T01:09:29Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus/source/otp_src_R14B02/lib/snmp/ebin/snmp.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>sasl</string>
- <key>lastModified</key>
- <date>2012-12-01T01:09:29Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus/source/otp_src_R14B02/lib/sasl/ebin/sasl.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>runtime_tools</string>
- <key>lastModified</key>
- <date>2012-12-01T01:09:29Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus/source/otp_src_R14B02/lib/runtime_tools/ebin/runtime_tools.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>reltool</string>
- <key>lastModified</key>
- <date>2012-12-01T01:09:29Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus/source/otp_src_R14B02/lib/reltool/ebin/reltool.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>public_key</string>
- <key>lastModified</key>
- <date>2012-12-01T01:09:29Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus/source/otp_src_R14B02/lib/public_key/ebin/public_key.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>pman</string>
- <key>lastModified</key>
- <date>2012-12-01T01:09:29Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus/source/otp_src_R14B02/lib/pman/ebin/pman.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>percept</string>
- <key>lastModified</key>
- <date>2012-12-01T01:09:29Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus/source/otp_src_R14B02/lib/percept/ebin/percept.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>parsetools</string>
- <key>lastModified</key>
- <date>2012-12-01T01:09:29Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus/source/otp_src_R14B02/lib/parsetools/ebin/parsetools.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>otp_mibs</string>
- <key>lastModified</key>
- <date>2012-12-01T01:09:29Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus/source/otp_src_R14B02/lib/otp_mibs/ebin/otp_mibs.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>os_mon</string>
- <key>lastModified</key>
- <date>2012-12-01T01:09:29Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus/source/otp_src_R14B02/lib/os_mon/ebin/os_mon.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>orber</string>
- <key>lastModified</key>
- <date>2012-12-01T01:09:29Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus/source/otp_src_R14B02/lib/orber/ebin/orber.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>odbc</string>
- <key>lastModified</key>
- <date>2012-12-01T01:09:29Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus/source/otp_src_R14B02/lib/odbc/ebin/odbc.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>observer</string>
- <key>lastModified</key>
- <date>2012-12-01T01:09:28Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus/source/otp_src_R14B02/lib/observer/ebin/observer.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>mnesia</string>
- <key>lastModified</key>
- <date>2012-12-01T01:09:28Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus/source/otp_src_R14B02/lib/mnesia/ebin/mnesia.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>megaco</string>
- <key>lastModified</key>
- <date>2012-12-01T01:09:28Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus/source/otp_src_R14B02/lib/megaco/ebin/megaco.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>topApp3</string>
- <key>lastModified</key>
- <date>2012-12-01T01:09:28Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus/source/otp_src_R14B02/lib/kernel/test/topApp3.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>topApp2</string>
- <key>lastModified</key>
- <date>2012-12-01T01:09:28Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus/source/otp_src_R14B02/lib/kernel/test/topApp2.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>topApp</string>
- <key>lastModified</key>
- <date>2012-12-01T01:09:28Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus/source/otp_src_R14B02/lib/kernel/test/topApp.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>myApp</string>
- <key>lastModified</key>
- <date>2012-12-01T01:09:28Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus/source/otp_src_R14B02/lib/kernel/test/myApp.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>primary_archive_dummy</string>
- <key>lastModified</key>
- <date>2012-12-01T01:09:28Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus/source/otp_src_R14B02/lib/kernel/test/erl_prim_loader_SUITE_data/primary_archive/primary_archive_dummy/ebin/primary_archive_dummy.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>primary_archive_dict</string>
- <key>lastModified</key>
- <date>2012-12-01T01:09:28Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus/source/otp_src_R14B02/lib/kernel/test/erl_prim_loader_SUITE_data/primary_archive/primary_archive_dict-1.0/ebin/primary_archive_dict.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>on_load_app</string>
- <key>lastModified</key>
- <date>2012-12-01T01:09:28Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus/source/otp_src_R14B02/lib/kernel/test/code_SUITE_data/on_load_app-1.0/ebin/on_load_app.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>code_archive_dict</string>
- <key>lastModified</key>
- <date>2012-12-01T01:09:28Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus/source/otp_src_R14B02/lib/kernel/test/code_SUITE_data/code_archive_dict-1.0/ebin/code_archive_dict.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>appinc2top</string>
- <key>lastModified</key>
- <date>2012-12-01T01:09:28Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus/source/otp_src_R14B02/lib/kernel/test/appinc2top.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>appinc2B</string>
- <key>lastModified</key>
- <date>2012-12-01T01:09:28Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus/source/otp_src_R14B02/lib/kernel/test/appinc2B.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>appinc2A</string>
- <key>lastModified</key>
- <date>2012-12-01T01:09:28Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus/source/otp_src_R14B02/lib/kernel/test/appinc2A.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>appinc2</string>
- <key>lastModified</key>
- <date>2012-12-01T01:09:28Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus/source/otp_src_R14B02/lib/kernel/test/appinc2.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>appinc1x</string>
- <key>lastModified</key>
- <date>2012-12-01T01:09:28Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus/source/otp_src_R14B02/lib/kernel/test/appinc1x.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>appinc1</string>
- <key>lastModified</key>
- <date>2012-12-01T01:09:28Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus/source/otp_src_R14B02/lib/kernel/test/appinc1.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>appinc</string>
- <key>lastModified</key>
- <date>2012-12-01T01:09:28Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus/source/otp_src_R14B02/lib/kernel/test/appinc.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>uds_dist</string>
- <key>lastModified</key>
- <date>2012-12-01T01:09:28Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus/source/otp_src_R14B02/lib/kernel/examples/uds_dist/src/uds_dist.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>kernel</string>
- <key>lastModified</key>
- <date>2012-12-01T01:09:28Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus/source/otp_src_R14B02/lib/kernel/ebin/kernel.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>inviso</string>
- <key>lastModified</key>
- <date>2012-12-01T01:09:28Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus/source/otp_src_R14B02/lib/inviso/ebin/inviso.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>inets</string>
- <key>lastModified</key>
- <date>2012-12-01T01:09:27Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus/source/otp_src_R14B02/lib/inets/ebin/inets.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ic</string>
- <key>lastModified</key>
- <date>2012-12-01T01:09:27Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus/source/otp_src_R14B02/lib/ic/ebin/ic.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>gs</string>
- <key>lastModified</key>
- <date>2012-12-01T01:09:27Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus/source/otp_src_R14B02/lib/gs/ebin/gs.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>eunit</string>
- <key>lastModified</key>
- <date>2012-12-01T01:09:27Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus/source/otp_src_R14B02/lib/eunit/ebin/eunit.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>et</string>
- <key>lastModified</key>
- <date>2012-12-01T01:09:27Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus/source/otp_src_R14B02/lib/et/ebin/et.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>erl_docgen</string>
- <key>lastModified</key>
- <date>2012-12-01T01:09:27Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus/source/otp_src_R14B02/lib/erl_docgen/ebin/erl_docgen.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>edoc</string>
- <key>lastModified</key>
- <date>2012-12-01T01:09:27Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus/source/otp_src_R14B02/lib/edoc/ebin/edoc.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>docbuilder</string>
- <key>lastModified</key>
- <date>2012-12-01T01:09:27Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus/source/otp_src_R14B02/lib/docbuilder/ebin/docbuilder.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>dialyzer</string>
- <key>lastModified</key>
- <date>2012-12-01T01:09:27Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus/source/otp_src_R14B02/lib/dialyzer/ebin/dialyzer.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>debugger</string>
- <key>lastModified</key>
- <date>2012-12-01T01:09:27Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus/source/otp_src_R14B02/lib/debugger/ebin/debugger.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>crypto</string>
- <key>lastModified</key>
- <date>2012-12-01T01:09:27Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus/source/otp_src_R14B02/lib/crypto/ebin/crypto.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>cosTransactions</string>
- <key>lastModified</key>
- <date>2012-12-01T01:09:27Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus/source/otp_src_R14B02/lib/cosTransactions/ebin/cosTransactions.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>cosTime</string>
- <key>lastModified</key>
- <date>2012-12-01T01:09:26Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus/source/otp_src_R14B02/lib/cosTime/ebin/cosTime.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>cosProperty</string>
- <key>lastModified</key>
- <date>2012-12-01T01:09:26Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus/source/otp_src_R14B02/lib/cosProperty/ebin/cosProperty.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>cosNotification</string>
- <key>lastModified</key>
- <date>2012-12-01T01:09:26Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus/source/otp_src_R14B02/lib/cosNotification/ebin/cosNotification.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>cosFileTransfer</string>
- <key>lastModified</key>
- <date>2012-12-01T01:09:26Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus/source/otp_src_R14B02/lib/cosFileTransfer/ebin/cosFileTransfer.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>cosEventDomain</string>
- <key>lastModified</key>
- <date>2012-12-01T01:09:26Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus/source/otp_src_R14B02/lib/cosEventDomain/ebin/cosEventDomain.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>cosEvent</string>
- <key>lastModified</key>
- <date>2012-12-01T01:09:26Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus/source/otp_src_R14B02/lib/cosEvent/ebin/cosEvent.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>compiler</string>
- <key>lastModified</key>
- <date>2012-12-01T01:09:26Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus/source/otp_src_R14B02/lib/compiler/ebin/compiler.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>common_test</string>
- <key>lastModified</key>
- <date>2012-12-01T01:09:26Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus/source/otp_src_R14B02/lib/common_test/ebin/common_test.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>asn1</string>
- <key>lastModified</key>
- <date>2012-12-01T01:09:26Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus/source/otp_src_R14B02/lib/asn1/ebin/asn1.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>appmon</string>
- <key>lastModified</key>
- <date>2012-12-01T01:09:26Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/omnibus/source/otp_src_R14B02/lib/appmon/ebin/appmon.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>archive_script_dummy</string>
- <key>lastModified</key>
- <date>2012-12-01T00:46:04Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/otp/lib/stdlib/test/escript_SUITE_data/archive_script/archive_script_dummy/ebin/archive_script_dummy.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>archive_script_dict</string>
- <key>lastModified</key>
- <date>2012-12-01T00:46:04Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/otp/lib/stdlib/test/escript_SUITE_data/archive_script/archive_script_dict/ebin/archive_script_dict.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>topApp3</string>
- <key>lastModified</key>
- <date>2012-12-01T00:46:03Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/otp/lib/kernel/test/topApp3.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>topApp2</string>
- <key>lastModified</key>
- <date>2012-12-01T00:46:03Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/otp/lib/kernel/test/topApp2.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>topApp</string>
- <key>lastModified</key>
- <date>2012-12-01T00:46:03Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/otp/lib/kernel/test/topApp.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>myApp</string>
- <key>lastModified</key>
- <date>2012-12-01T00:46:03Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/otp/lib/kernel/test/myApp.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>primary_archive_dummy</string>
- <key>lastModified</key>
- <date>2012-12-01T00:46:03Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/otp/lib/kernel/test/erl_prim_loader_SUITE_data/primary_archive/primary_archive_dummy/ebin/primary_archive_dummy.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>primary_archive_dict</string>
- <key>lastModified</key>
- <date>2012-12-01T00:46:03Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/otp/lib/kernel/test/erl_prim_loader_SUITE_data/primary_archive/primary_archive_dict-1.0/ebin/primary_archive_dict.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>on_load_app</string>
- <key>lastModified</key>
- <date>2012-12-01T00:46:03Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/otp/lib/kernel/test/code_SUITE_data/on_load_app-1.0/ebin/on_load_app.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>code_archive_dict</string>
- <key>lastModified</key>
- <date>2012-12-01T00:46:03Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/otp/lib/kernel/test/code_SUITE_data/code_archive_dict-1.0/ebin/code_archive_dict.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>appinc2top</string>
- <key>lastModified</key>
- <date>2012-12-01T00:46:03Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/otp/lib/kernel/test/appinc2top.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>appinc2B</string>
- <key>lastModified</key>
- <date>2012-12-01T00:46:03Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/otp/lib/kernel/test/appinc2B.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>appinc2A</string>
- <key>lastModified</key>
- <date>2012-12-01T00:46:03Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/otp/lib/kernel/test/appinc2A.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>appinc2</string>
- <key>lastModified</key>
- <date>2012-12-01T00:46:03Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/otp/lib/kernel/test/appinc2.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>appinc1x</string>
- <key>lastModified</key>
- <date>2012-12-01T00:46:03Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/otp/lib/kernel/test/appinc1x.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>appinc1</string>
- <key>lastModified</key>
- <date>2012-12-01T00:46:03Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/otp/lib/kernel/test/appinc1.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>appinc</string>
- <key>lastModified</key>
- <date>2012-12-01T00:46:03Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/otp/lib/kernel/test/appinc.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>uds_dist</string>
- <key>lastModified</key>
- <date>2012-12-01T00:46:03Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/otp/lib/kernel/examples/uds_dist/src/uds_dist.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Adobe Reader</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>info</key>
- <string>Adobe Reader X 11.0.0, ©1984-2012 Adobe Systems Incorporated. All rights reserved.</string>
- <key>lastModified</key>
- <date>2012-12-01T07:11:20Z</date>
- <key>path</key>
- <string>/Applications/Adobe Reader.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>11.0.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>stdlib</string>
- <key>lastModified</key>
- <date>2012-12-01T00:46:00Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/otp/bootstrap/lib/stdlib/ebin/stdlib.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>kernel</string>
- <key>lastModified</key>
- <date>2012-12-01T00:46:00Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/otp/bootstrap/lib/kernel/ebin/kernel.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>compiler</string>
- <key>lastModified</key>
- <date>2012-12-01T00:46:00Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/otp/bootstrap/lib/compiler/ebin/compiler.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>certgen_web</string>
- <key>lastModified</key>
- <date>2012-12-01T00:42:11Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/opscode-cert-erlang/ebin/certgen_web.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>mochiweb</string>
- <key>lastModified</key>
- <date>2012-12-01T00:35:22Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/opscode-authz-internal/deps/mochiweb/src/mochiweb.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>skel</string>
- <key>lastModified</key>
- <date>2012-12-01T00:35:22Z</date>
- <key>path</key>
- <string>/Users/paul/Github/Opscode/opscode-authz-internal/deps/mochiweb/priv/skel/src/skel.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Safari</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>6.0.2, Copyright © 2003-2012 Apple Inc.</string>
- <key>lastModified</key>
- <date>2012-12-01T00:34:00Z</date>
- <key>path</key>
- <string>/Applications/Safari.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>6.0.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>iPhoto</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>lastModified</key>
- <date>2012-12-01T00:34:00Z</date>
- <key>path</key>
- <string>/Applications/iPhoto.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>9.4.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>iMovie</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>info</key>
- <string>9.0.8, Copyright © 1999-2001, 2003-2012 Apple Inc. All rights reserved.</string>
- <key>lastModified</key>
- <date>2012-12-01T00:34:00Z</date>
- <key>path</key>
- <string>/Applications/iMovie.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>9.0.8</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>vpndownloader</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>lastModified</key>
- <date>2012-11-30T21:56:11Z</date>
- <key>path</key>
- <string>/opt/cisco/vpn/bin/vpndownloader.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Uninstall AnyConnect</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>lastModified</key>
- <date>2012-11-30T21:56:11Z</date>
- <key>path</key>
- <string>/Applications/Cisco/Uninstall AnyConnect.app</string>
- <key>runtime_environment</key>
- <string>universal</string>
- <key>version</key>
- <string>1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Xcode</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T19:26:11Z</date>
- <key>path</key>
- <string>/Applications/Xcode.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>4.5.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>iTunes</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>iTunes 11.0, © 2000 -2012 Apple Inc. All rights reserved.</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:04Z</date>
- <key>path</key>
- <string>/Applications/iTunes.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>11.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Migration Assistant</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:03Z</date>
- <key>path</key>
- <string>/Applications/Utilities/Migration Assistant.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>4.1.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>iChat</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:03Z</date>
- <key>path</key>
- <string>/Applications/iChat.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>6.0.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>FaceTime</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:03Z</date>
- <key>path</key>
- <string>/Applications/FaceTime.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.1.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>DVD Player</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>info</key>
- <string>5.5, Copyright © 2001-2011 by Apple Inc. All Rights Reserved.</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:03Z</date>
- <key>path</key>
- <string>/Applications/DVD Player.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>5.5</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Chess</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>2.4.6, Copyright 2003-2012 Apple Inc.</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:03Z</date>
- <key>path</key>
- <string>/Applications/Chess.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>2.4.6</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Console</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:02Z</date>
- <key>path</key>
- <string>/Applications/Utilities/Console.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>10.7</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Bluetooth File Exchange</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>4.0.8, Copyright © 2002-2012 Apple Inc. All rights reserved.</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:02Z</date>
- <key>path</key>
- <string>/Applications/Utilities/Bluetooth File Exchange.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>4.0.8</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Mail</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:02Z</date>
- <key>path</key>
- <string>/Applications/Mail.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>5.3</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Terminal</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:01Z</date>
- <key>path</key>
- <string>/Applications/Utilities/Terminal.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>2.2.3</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Dashboard</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>1.8, Copyright 2006-2009 Apple Inc.</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:01Z</date>
- <key>path</key>
- <string>/Applications/Dashboard.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.8</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Podcast Capture</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>info</key>
- <string>3.0, Copyright © 2007-2011 Apple Inc.</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:00Z</date>
- <key>path</key>
- <string>/Applications/Utilities/Podcast Capture.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>3.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Network Utility</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>Version 1.5, Copyright © 2000-2010 Apple Inc. All rights reserved.</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:00Z</date>
- <key>path</key>
- <string>/Applications/Utilities/Network Utility.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.5</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>TextEdit</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:00Z</date>
- <key>path</key>
- <string>/Applications/TextEdit.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.7.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Stickies</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:00Z</date>
- <key>path</key>
- <string>/Applications/Stickies.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>8.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Automator</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>2.2.4, Copyright © 2004-2012 Apple Inc. All rights reserved.</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:00Z</date>
- <key>path</key>
- <string>/Applications/Automator.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>2.2.4</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>System Information</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>10.8, Copyright 1997-2012 Apple, Inc.</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:59Z</date>
- <key>path</key>
- <string>/Applications/Utilities/System Information.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>10.8</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppleScript Editor</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:59Z</date>
- <key>path</key>
- <string>/Applications/Utilities/AppleScript Editor.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>2.4.3</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Mission Control</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>1.2, Copyright 2007-2009 Apple Inc.</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:59Z</date>
- <key>path</key>
- <string>/Applications/Mission Control.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>VoiceOver Utility</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:58Z</date>
- <key>path</key>
- <string>/Applications/Utilities/VoiceOver Utility.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>4.4</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Audio MIDI Setup</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>3.0.4, Copyright 2002-2011 Apple, Inc.</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:58Z</date>
- <key>path</key>
- <string>/Applications/Utilities/Audio MIDI Setup.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>3.0.4</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Font Book</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>3.0, Copyright © 2003-2012 Apple Inc.</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:58Z</date>
- <key>path</key>
- <string>/Applications/Font Book.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>198.4</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Dictionary</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:58Z</date>
- <key>path</key>
- <string>/Applications/Dictionary.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>2.2.3</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Grapher</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:57Z</date>
- <key>path</key>
- <string>/Applications/Utilities/Grapher.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>2.3</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Grab</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:57Z</date>
- <key>path</key>
- <string>/Applications/Utilities/Grab.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.6.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>DigitalColor Meter</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>4.4, Copyright 2001-2012 Apple Inc. All Rights Reserved.</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:57Z</date>
- <key>path</key>
- <string>/Applications/Utilities/DigitalColor Meter.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>4.4</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ColorSync Utility</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>4.7.5, © Copyright 2012 Apple Inc.</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:57Z</date>
- <key>path</key>
- <string>/Applications/Utilities/ColorSync Utility.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>4.7.5</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Boot Camp Assistant</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>Boot Camp Assistant 4.0.4, Copyright © 2012 Apple Inc. All rights reserved</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:57Z</date>
- <key>path</key>
- <string>/Applications/Utilities/Boot Camp Assistant.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>4.0.4</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Activity Monitor</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:57Z</date>
- <key>path</key>
- <string>/Applications/Utilities/Activity Monitor.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>10.7.4</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Time Machine</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>1.2, Copyright 2007-2009 Apple Inc.</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:57Z</date>
- <key>path</key>
- <string>/Applications/Time Machine.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Image Capture</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>6.1, © Copyright 2000-2011 Apple Inc., all rights reserved.</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:57Z</date>
- <key>path</key>
- <string>/Applications/Image Capture.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>6.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>X11</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>info</key>
- <string>org.x.X11</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:56Z</date>
- <key>path</key>
- <string>/Applications/Utilities/X11.app</string>
- <key>version</key>
- <string>2.6.4</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Podcast Publisher</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>1.0, Copyright © 2007-2011 Apple Inc.</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:56Z</date>
- <key>path</key>
- <string>/Applications/Utilities/Podcast Publisher.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Keychain Access</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:56Z</date>
- <key>path</key>
- <string>/Applications/Utilities/Keychain Access.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>5.4</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Photo Booth</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:56Z</date>
- <key>path</key>
- <string>/Applications/Photo Booth.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>4.0.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Launchpad</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:56Z</date>
- <key>path</key>
- <string>/Applications/Launchpad.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Disk Utility</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:55Z</date>
- <key>path</key>
- <string>/Applications/Utilities/Disk Utility.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>12.1.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>QuickTime Player</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>10.0, Copyright © 2009-2012 Apple Inc. All Rights Reserved.</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:55Z</date>
- <key>path</key>
- <string>/Applications/QuickTime Player.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>10.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>iCal</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:55Z</date>
- <key>path</key>
- <string>/Applications/iCal.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>5.0.3</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Address Book</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:55Z</date>
- <key>path</key>
- <string>/Applications/Address Book.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>6.1.3</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AirPort Utility</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>6.1, Copyright 2001-2012 Apple Inc.</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:54Z</date>
- <key>path</key>
- <string>/Applications/Utilities/AirPort Utility.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>6.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>RAID Utility</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>RAID Utility 1.0 (215), Copyright © 2007-2009 Apple Inc.</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:54Z</date>
- <key>path</key>
- <string>/Applications/Utilities/RAID Utility.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>2.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>GarageBand</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>info</key>
- <string>GarageBand 6.0.5 (428.5), Copyright © 2012 by Apple Inc.</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:54Z</date>
- <key>path</key>
- <string>/Applications/GarageBand.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>6.0.5</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Calculator</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>10.7.1, Copyright © 2001-2012, Apple Inc.</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:54Z</date>
- <key>path</key>
- <string>/Applications/Calculator.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>10.7.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Adobe AIR Application Installer</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>info</key>
- <string>Adobe AIR 3.5</string>
- <key>lastModified</key>
- <date>2012-10-29T03:47:35Z</date>
- <key>path</key>
- <string>/Applications/Utilities/Adobe AIR Application Installer.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>3.5</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Adobe AIR Uninstaller</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>info</key>
- <string>Adobe AIR 3.5</string>
- <key>lastModified</key>
- <date>2012-10-29T04:00:52Z</date>
- <key>path</key>
- <string>/Applications/Utilities/Adobe AIR Uninstaller.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>3.5</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Java VisualVM</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2011-06-03T20:14:22Z</date>
- <key>path</key>
- <string>/usr/share/java/Tools/Java VisualVM.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>14.0.3</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Jar Bundler</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2011-06-03T20:14:21Z</date>
- <key>path</key>
- <string>/usr/share/java/Tools/Jar Bundler.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>14.0.3</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Applet Launcher</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2011-06-03T20:14:08Z</date>
- <key>path</key>
- <string>/usr/share/java/Tools/Applet Launcher.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>14.0.3</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Canon IJ Printer Utility</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2011-02-14T03:00:00Z</date>
- <key>path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Canon IJ Printer Utility</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>info</key>
- <string>Canon IJ Printer Utility version 7.27.0, Copyright CANON INC. 2001-2010 All Rights Reserved.</string>
- <key>lastModified</key>
- <date>2010-02-22T03:00:00Z</date>
- <key>path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/BJPrinterUtility2.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>7.27.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>iDVD Getting Started</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>info</key>
- <string>iDVD Getting Started</string>
- <key>lastModified</key>
- <date>2012-02-26T22:05:00Z</date>
- <key>path</key>
- <string>/Library/Documentation/Applications/iDVD/iDVD Getting Started.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>3.8</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>iWeb</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>info</key>
- <string>3.0.4, Copyright 2007-2011 Apple Inc.</string>
- <key>lastModified</key>
- <date>2012-02-26T22:13:27Z</date>
- <key>path</key>
- <string>/Applications/iWeb.app</string>
- <key>runtime_environment</key>
- <string>universal</string>
- <key>version</key>
- <string>3.0.4</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>iDVD</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>info</key>
- <string>iDVD 7.1.2, Copyright © 2001-2011 Apple Inc. All rights reserved.</string>
- <key>lastModified</key>
- <date>2012-02-26T22:13:27Z</date>
- <key>path</key>
- <string>/Applications/iDVD.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>7.1.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>WebKitPluginHost</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-12-01T00:34:00Z</date>
- <key>path</key>
- <string>/System/Library/StagedFrameworks/Safari/WebKit.framework/WebKitPluginHost.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>7536</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>WebProcess</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>7536.26.17, Copyright 2003-2012 Apple Inc.</string>
- <key>lastModified</key>
- <date>2012-12-01T00:34:00Z</date>
- <key>path</key>
- <string>/System/Library/StagedFrameworks/Safari/WebKit2.framework/WebProcess.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>7536</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>PluginProcess</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>7536.26.17, Copyright 2003-2012 Apple Inc.</string>
- <key>lastModified</key>
- <date>2012-12-01T00:34:00Z</date>
- <key>path</key>
- <string>/System/Library/StagedFrameworks/Safari/WebKit2.framework/PluginProcess.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>7536</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>appmon</string>
- <key>lastModified</key>
- <date>2012-09-18T17:44:56Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B02/lib/erlang/lib/appmon-2.1.14.1/ebin/appmon.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>asn1</string>
- <key>lastModified</key>
- <date>2012-09-18T17:42:27Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B02/lib/erlang/lib/asn1-1.8/ebin/asn1.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>common_test</string>
- <key>lastModified</key>
- <date>2012-09-18T17:44:48Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B02/lib/erlang/lib/common_test-1.6.2/ebin/common_test.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>compiler</string>
- <key>lastModified</key>
- <date>2012-09-18T17:44:17Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B02/lib/erlang/lib/compiler-4.8.2/ebin/compiler.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>cosEvent</string>
- <key>lastModified</key>
- <date>2012-09-18T17:48:07Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B02/lib/erlang/lib/cosEvent-2.1.12/ebin/cosEvent.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>cosEventDomain</string>
- <key>lastModified</key>
- <date>2012-09-18T17:49:08Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B02/lib/erlang/lib/cosEventDomain-1.1.12/ebin/cosEventDomain.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>cosFileTransfer</string>
- <key>lastModified</key>
- <date>2012-09-18T17:49:01Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B02/lib/erlang/lib/cosFileTransfer-1.1.13/ebin/cosFileTransfer.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>cosNotification</string>
- <key>lastModified</key>
- <date>2012-09-18T17:48:20Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B02/lib/erlang/lib/cosNotification-1.1.18/ebin/cosNotification.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>cosProperty</string>
- <key>lastModified</key>
- <date>2012-09-18T17:48:53Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B02/lib/erlang/lib/cosProperty-1.1.15/ebin/cosProperty.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>cosTime</string>
- <key>lastModified</key>
- <date>2012-09-18T17:48:14Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B02/lib/erlang/lib/cosTime-1.1.12/ebin/cosTime.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>cosTransactions</string>
- <key>lastModified</key>
- <date>2012-09-18T17:47:58Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B02/lib/erlang/lib/cosTransactions-1.2.12/ebin/cosTransactions.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>crypto</string>
- <key>lastModified</key>
- <date>2012-09-18T17:46:17Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B02/lib/erlang/lib/crypto-2.2/ebin/crypto.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>debugger</string>
- <key>lastModified</key>
- <date>2012-09-18T17:45:19Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B02/lib/erlang/lib/debugger-3.2.8/ebin/debugger.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>dialyzer</string>
- <key>lastModified</key>
- <date>2012-09-18T17:52:30Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B02/lib/erlang/lib/dialyzer-2.5.2/ebin/dialyzer.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>diameter</string>
- <key>lastModified</key>
- <date>2012-09-18T17:47:54Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B02/lib/erlang/lib/diameter-1.2/ebin/diameter.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>edoc</string>
- <key>lastModified</key>
- <date>2012-09-18T17:52:01Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B02/lib/erlang/lib/edoc-0.7.10/ebin/edoc.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>eldap</string>
- <key>lastModified</key>
- <date>2012-09-18T17:52:21Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B02/lib/erlang/lib/eldap-1.0/ebin/eldap.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>erl_docgen</string>
- <key>lastModified</key>
- <date>2012-09-18T17:52:17Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B02/lib/erlang/lib/erl_docgen-0.3.2/ebin/erl_docgen.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>et</string>
- <key>lastModified</key>
- <date>2012-09-18T17:49:17Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B02/lib/erlang/lib/et-1.4.4.2/ebin/et.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>eunit</string>
- <key>lastModified</key>
- <date>2012-09-18T17:52:03Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B02/lib/erlang/lib/eunit-2.2.3/ebin/eunit.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>gs</string>
- <key>lastModified</key>
- <date>2012-09-18T17:45:33Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B02/lib/erlang/lib/gs-1.5.15.1/ebin/gs.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>hipe</string>
- <key>lastModified</key>
- <date>2012-09-18T17:41:39Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B02/lib/erlang/lib/hipe-3.9.2/ebin/hipe.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ic</string>
- <key>lastModified</key>
- <date>2012-09-18T17:43:08Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B02/lib/erlang/lib/ic-4.2.31/ebin/ic.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>inets</string>
- <key>lastModified</key>
- <date>2012-09-18T17:45:44Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B02/lib/erlang/lib/inets-5.9.1/ebin/inets.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>inviso</string>
- <key>lastModified</key>
- <date>2012-09-18T17:52:15Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B02/lib/erlang/lib/inviso-0.6.3/ebin/inviso.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>kernel</string>
- <key>lastModified</key>
- <date>2012-09-18T17:43:57Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B02/lib/erlang/lib/kernel-2.15.2/ebin/kernel.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>uds_dist</string>
- <key>lastModified</key>
- <date>2012-09-03T09:52:49Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B02/lib/erlang/lib/kernel-2.15.2/examples/uds_dist/src/uds_dist.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>megaco</string>
- <key>lastModified</key>
- <date>2012-09-18T17:49:21Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B02/lib/erlang/lib/megaco-3.16.0.2/ebin/megaco.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>mnesia</string>
- <key>lastModified</key>
- <date>2012-09-18T17:46:14Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B02/lib/erlang/lib/mnesia-4.7.1/ebin/mnesia.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>observer</string>
- <key>lastModified</key>
- <date>2012-09-18T17:47:45Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B02/lib/erlang/lib/observer-1.2/ebin/observer.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>odbc</string>
- <key>lastModified</key>
- <date>2012-09-18T17:47:46Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B02/lib/erlang/lib/odbc-2.10.13/ebin/odbc.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>orber</string>
- <key>lastModified</key>
- <date>2012-09-18T17:46:27Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B02/lib/erlang/lib/orber-3.6.24/ebin/orber.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>os_mon</string>
- <key>lastModified</key>
- <date>2012-09-18T17:46:57Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B02/lib/erlang/lib/os_mon-2.2.10/ebin/os_mon.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>otp_mibs</string>
- <key>lastModified</key>
- <date>2012-09-18T17:44:53Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B02/lib/erlang/lib/otp_mibs-1.0.7/ebin/otp_mibs.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>parsetools</string>
- <key>lastModified</key>
- <date>2012-09-18T17:42:18Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B02/lib/erlang/lib/parsetools-2.0.7/ebin/parsetools.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>percept</string>
- <key>lastModified</key>
- <date>2012-09-18T17:52:21Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B02/lib/erlang/lib/percept-0.8.6.1/ebin/percept.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>pman</string>
- <key>lastModified</key>
- <date>2012-09-18T17:47:05Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B02/lib/erlang/lib/pman-2.7.1.2/ebin/pman.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>public_key</string>
- <key>lastModified</key>
- <date>2012-09-18T17:47:17Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B02/lib/erlang/lib/public_key-0.16/ebin/public_key.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>reltool</string>
- <key>lastModified</key>
- <date>2012-09-18T17:45:24Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B02/lib/erlang/lib/reltool-0.6.1/ebin/reltool.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>runtime_tools</string>
- <key>lastModified</key>
- <date>2012-09-18T17:44:51Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B02/lib/erlang/lib/runtime_tools-1.8.9/ebin/runtime_tools.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>sasl</string>
- <key>lastModified</key>
- <date>2012-09-18T17:42:58Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B02/lib/erlang/lib/sasl-2.2.1/ebin/sasl.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>snmp</string>
- <key>lastModified</key>
- <date>2012-09-18T17:42:37Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B02/lib/erlang/lib/snmp-4.22.1/ebin/snmp.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ssh</string>
- <key>lastModified</key>
- <date>2012-09-18T17:52:08Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B02/lib/erlang/lib/ssh-2.1.1/ebin/ssh.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ssl</string>
- <key>lastModified</key>
- <date>2012-09-18T17:47:18Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B02/lib/erlang/lib/ssl-5.1/ebin/ssl.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>stdlib</string>
- <key>lastModified</key>
- <date>2012-09-18T17:43:41Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B02/lib/erlang/lib/stdlib-1.18.2/ebin/stdlib.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>syntax_tools</string>
- <key>lastModified</key>
- <date>2012-09-18T17:43:18Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B02/lib/erlang/lib/syntax_tools-1.6.9/ebin/syntax_tools.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>test_server</string>
- <key>lastModified</key>
- <date>2012-09-18T17:44:38Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B02/lib/erlang/lib/test_server-3.5.2/ebin/test_server.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>toolbar</string>
- <key>lastModified</key>
- <date>2012-09-18T17:47:26Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B02/lib/erlang/lib/toolbar-1.4.2.2/ebin/toolbar.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>tools</string>
- <key>lastModified</key>
- <date>2012-09-18T17:44:34Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B02/lib/erlang/lib/tools-2.6.8/ebin/tools.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>tv</string>
- <key>lastModified</key>
- <date>2012-09-18T17:47:35Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B02/lib/erlang/lib/tv-2.1.4.9/ebin/tv.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>typer</string>
- <key>lastModified</key>
- <date>2012-09-18T17:52:16Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B02/lib/erlang/lib/typer-0.9.4/ebin/typer.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>webtool</string>
- <key>lastModified</key>
- <date>2012-09-18T17:51:40Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B02/lib/erlang/lib/webtool-0.8.9.1/ebin/webtool.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>xmerl</string>
- <key>lastModified</key>
- <date>2012-09-18T17:51:52Z</date>
- <key>path</key>
- <string>/usr/local/Cellar/erlang/R15B02/lib/erlang/lib/xmerl-1.3.2/ebin/xmerl.app</string>
- <key>runtime_environment</key>
- <string>classic</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Java Web Start</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T21:47:12Z</date>
- <key>path</key>
- <string>/System/Library/CoreServices/Java Web Start.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>14.5.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Jar Launcher</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T21:47:12Z</date>
- <key>path</key>
- <string>/System/Library/CoreServices/Jar Launcher.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>14.5.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Git Gui</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>Git Gui 0.12.0 © 2006-2007 Shawn Pearce, et. al.</string>
- <key>lastModified</key>
- <date>2012-11-30T21:11:25Z</date>
- <key>path</key>
- <string>/usr/share/git-gui/lib/Git Gui.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>0.12.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ManagedClient</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T19:30:09Z</date>
- <key>path</key>
- <string>/System/Library/CoreServices/ManagedClient.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>3.6</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>GoogleVoiceAndVideoUninstaller</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>info</key>
- <string>v3.10.2.10212 Copyright 2007-2010 Google Inc. All rights reserved</string>
- <key>lastModified</key>
- <date>2012-11-30T19:01:04Z</date>
- <key>path</key>
- <string>/Library/Application Support/Google/GoogleVoiceAndVideoUninstaller.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>3.10.2.10212</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>GoogleTalkPlugin</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>info</key>
- <string>v3.10.2.10212 Copyright 2007-2010 Google Inc. All rights reserved</string>
- <key>lastModified</key>
- <date>2012-11-30T19:01:02Z</date>
- <key>path</key>
- <string>/Library/Application Support/Google/GoogleTalkPlugin.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>3.10.2.10212</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppleMobileSync</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:04Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/MobileDevice.framework/Versions/A/AppleMobileSync.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>5.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppleMobileDeviceHelper</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:04Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/MobileDevice.framework/Versions/A/AppleMobileDeviceHelper.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>5.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>CharacterPalette</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:04Z</date>
- <key>path</key>
- <string>/System/Library/Input Methods/CharacterPalette.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>2.0.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ARDAgent</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:04Z</date>
- <key>path</key>
- <string>/System/Library/CoreServices/RemoteManagement/ARDAgent.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>3.6.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ImageCaptureService</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>6.1, © Copyright 2003-2010 Apple Inc., all rights reserved.</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:03Z</date>
- <key>path</key>
- <string>/System/Library/Services/ImageCaptureService.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>6.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ParentalControls</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>2.0, Copyright Apple Inc. 2007-2009</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:03Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/Resources/ParentalControls.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>3.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>CIMUserDictionaryTool</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:03Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/CoreChineseEngine.framework/Versions/A/Resources/CIMUserDictionaryTool.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>TCIM</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>6.2, Copyright © 1997-2006 Apple Computer Inc., All Rights Reserved</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:03Z</date>
- <key>path</key>
- <string>/System/Library/Input Methods/TCIM.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>7.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>KoreanIM</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>6.0, Copyright © 1997-2011 Apple, Inc., All Rights Reserved</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:03Z</date>
- <key>path</key>
- <string>/System/Library/Input Methods/KoreanIM.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>6.3</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Type5Camera</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>7.1.0, © Copyright 2001-2012 Apple Inc. All rights reserved.</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:03Z</date>
- <key>path</key>
- <string>/System/Library/Image Capture/Devices/Type5Camera.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>7.1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Type4Camera</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>7.1.0, © Copyright 2001-2012 Apple Inc. All rights reserved.</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:03Z</date>
- <key>path</key>
- <string>/System/Library/Image Capture/Devices/Type4Camera.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>7.1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>SyncServer</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>© 2002-2003 Apple</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:03Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/SyncServices.framework/Versions/A/Resources/SyncServer.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>6.3</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Ticket Viewer</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:03Z</date>
- <key>path</key>
- <string>/System/Library/CoreServices/Ticket Viewer.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>2.3</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>rcd</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>312</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:03Z</date>
- <key>path</key>
- <string>/System/Library/CoreServices/rcd.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>312</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Problem Reporter</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:03Z</date>
- <key>path</key>
- <string>/System/Library/CoreServices/Problem Reporter.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>10.7.4</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>PreferenceSyncClient</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:03Z</date>
- <key>path</key>
- <string>/System/Library/CoreServices/PreferenceSyncClient.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>6.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>HelpViewer</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:03Z</date>
- <key>path</key>
- <string>/System/Library/CoreServices/HelpViewer.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>5.1.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Dock</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>Dock 1.8</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:03Z</date>
- <key>path</key>
- <string>/System/Library/CoreServices/Dock.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.8</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple80211Agent</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>7.2, Copyright © 2000–2012 Apple Inc. All rights reserved.</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:03Z</date>
- <key>path</key>
- <string>/System/Library/CoreServices/Apple80211Agent.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>7.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>VietnameseIM</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:02Z</date>
- <key>path</key>
- <string>/System/Library/Input Methods/VietnameseIM.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>TamilIM</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>Tamil Input Method 1.2</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:02Z</date>
- <key>path</key>
- <string>/System/Library/Input Methods/TamilIM.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.5</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>PressAndHold</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:02Z</date>
- <key>path</key>
- <string>/System/Library/Input Methods/PressAndHold.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>InkServer</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>info</key>
- <string>10.7.5, Copyright 2012 Apple Inc.</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:02Z</date>
- <key>path</key>
- <string>/System/Library/Input Methods/InkServer.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>10.7.5</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>quicklookd</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>3.2, Copyright Apple Inc. 2007-2011</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:02Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/QuickLook.framework/Versions/A/Resources/quicklookd.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>3.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>SecurityFixer</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:02Z</date>
- <key>path</key>
- <string>/System/Library/CoreServices/SecurityFixer.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>10.7.3</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>RegisterPluginIMApp</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:02Z</date>
- <key>path</key>
- <string>/System/Library/CoreServices/RegisterPluginIMApp.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ODSAgent</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>1.7 (170.1), Copyright © 2007-2009 Apple Inc. All Rights Reserved.</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:02Z</date>
- <key>path</key>
- <string>/System/Library/CoreServices/ODSAgent.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.7</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>loginwindow</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:02Z</date>
- <key>path</key>
- <string>/System/Library/CoreServices/loginwindow.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>7.5.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>CoreServicesUIAgent</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>Copyright © 2009 Apple Inc.</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:02Z</date>
- <key>path</key>
- <string>/System/Library/CoreServices/CoreServicesUIAgent.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>61.13</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>BluetoothAudioAgent</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>4.0.8, Copyright © 2002-2012 Apple Inc. All rights reserved.</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:02Z</date>
- <key>path</key>
- <string>/System/Library/CoreServices/BluetoothAudioAgent.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>4.0.8</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AddressBookUrlForwarder</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:02Z</date>
- <key>path</key>
- <string>/System/Library/CoreServices/AddressBookUrlForwarder.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.5</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Recursive File Processing Droplet</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:02Z</date>
- <key>path</key>
- <string>/Library/Application Support/Script Editor/Templates/Droplets/Recursive File Processing Droplet.app</string>
- <key>version</key>
- <string>1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>SpeakableItems</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:01Z</date>
- <key>path</key>
- <string>/System/Library/Speech/Recognizers/AppleSpeakableItems.SpeechRecognizer/Contents/PlugIns/SpeakableItems.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>4.0.10</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ChineseTextConverterService</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>Chinese Text Converter 1.1</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:01Z</date>
- <key>path</key>
- <string>/System/Library/Services/ChineseTextConverterService.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.4</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>imagent</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:01Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/IMCore.framework/imagent.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>6.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>FindMyMacMessenger</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:01Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/FindMyMac.framework/Versions/A/Resources/FindMyMacMessenger.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>DiskImages UI Agent</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:01Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/Resources/DiskImages UI Agent.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>331.7</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>KeyboardViewer</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>2.0, Copyright © 2004-2009 Apple Inc., All Rights Reserved</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:01Z</date>
- <key>path</key>
- <string>/System/Library/Input Methods/KeyboardViewer.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>3.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>PubSubAgent</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:01Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/PubSub.framework/Versions/A/Resources/PubSubAgent.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0.5</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Speech Startup</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:01Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/Speech Startup.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>4.0.21</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>SpeechSynthesisServer</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:01Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesisServer.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>4.0.74</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Wi-Fi Diagnostics</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>1.0.1, Copyright © 2011 Apple Inc. All rights reserved.</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:01Z</date>
- <key>path</key>
- <string>/System/Library/CoreServices/Wi-Fi Diagnostics.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Memory Slot Utility</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:01Z</date>
- <key>path</key>
- <string>/System/Library/CoreServices/Memory Slot Utility.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.5</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Directory Utility</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:01Z</date>
- <key>path</key>
- <string>/System/Library/CoreServices/Directory Utility.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>3.0.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Database Events</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:01Z</date>
- <key>path</key>
- <string>/System/Library/CoreServices/Database Events.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0.5</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Automator Launcher</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>1.2.1, Copyright ? 2004-2011 Apple Inc. All rights reserved.</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:01Z</date>
- <key>path</key>
- <string>/System/Library/CoreServices/Automator Launcher.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.2.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Droplet with Settable Properties</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:01Z</date>
- <key>path</key>
- <string>/Library/Application Support/Script Editor/Templates/Droplets/Droplet with Settable Properties.app</string>
- <key>version</key>
- <string>1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>VoiceOver Quickstart</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:00Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/ScreenReader.framework/Versions/A/Resources/VoiceOver Quickstart.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>4.4</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Image Capture Extension</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>7.1.0, © Copyright 2000-2012 Apple Inc., all rights reserved.</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:00Z</date>
- <key>path</key>
- <string>/System/Library/Image Capture/Support/Image Capture Extension.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>7.1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>VirtualScanner</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:00Z</date>
- <key>path</key>
- <string>/System/Library/Image Capture/Devices/VirtualScanner.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MakePDF</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>7.0, © Copyright 2003-2010 Apple Inc. All rights reserved.</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:00Z</date>
- <key>path</key>
- <string>/System/Library/Image Capture/Automatic Tasks/MakePDF.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>7.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>kcSync</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:00Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/SecurityFoundation.framework/Versions/A/kcSync.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>4.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ZoomWindow</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:00Z</date>
- <key>path</key>
- <string>/System/Library/CoreServices/ZoomWindow.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>UnmountAssistantAgent</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:00Z</date>
- <key>path</key>
- <string>/System/Library/CoreServices/UnmountAssistantAgent.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>2.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>LocationMenu</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:00Z</date>
- <key>path</key>
- <string>/System/Library/CoreServices/LocationMenu.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Language Chooser</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>System Language Initializer</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:00Z</date>
- <key>path</key>
- <string>/System/Library/CoreServices/Language Chooser.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>23.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Image Events</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:00Z</date>
- <key>path</key>
- <string>/System/Library/CoreServices/Image Events.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.1.5</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Expansion Slot Utility</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:00Z</date>
- <key>path</key>
- <string>/System/Library/CoreServices/Expansion Slot Utility.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.5</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>CoreLocationAgent</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>Copyright © 2009 Apple Inc.</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:00Z</date>
- <key>path</key>
- <string>/System/Library/CoreServices/CoreLocationAgent.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>330.12</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Captive Network Assistant</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:00Z</date>
- <key>path</key>
- <string>/System/Library/CoreServices/Captive Network Assistant.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppleGraphicsWarning</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>Version 2.0.4, Copyright Apple Inc., 2008-2011</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:00Z</date>
- <key>path</key>
- <string>/System/Library/CoreServices/AppleGraphicsWarning.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>2.0.4</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppleFileServer</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:00Z</date>
- <key>path</key>
- <string>/System/Library/CoreServices/AppleFileServer.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AirPort Base Station Agent</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>1.5.5 (155.7), Copyright © 2006-2010 Apple Inc. All Rights Reserved.</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:00Z</date>
- <key>path</key>
- <string>/System/Library/CoreServices/AirPort Base Station Agent.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.5.5</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Display Calibrator</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>4.7.4, Copyright 2012 Apple Computer, Inc.</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:00Z</date>
- <key>path</key>
- <string>/System/Library/ColorSync/Calibrators/Display Calibrator.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>4.7.4</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Show Info</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:00Z</date>
- <key>path</key>
- <string>/Library/Scripts/ColorSync/Show Info.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Set Info</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:00Z</date>
- <key>path</key>
- <string>/Library/Scripts/ColorSync/Set Info.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Rename</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:00Z</date>
- <key>path</key>
- <string>/Library/Scripts/ColorSync/Rename.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Remove</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:00Z</date>
- <key>path</key>
- <string>/Library/Scripts/ColorSync/Remove.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Proof</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:00Z</date>
- <key>path</key>
- <string>/Library/Scripts/ColorSync/Proof.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Match</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:00Z</date>
- <key>path</key>
- <string>/Library/Scripts/ColorSync/Match.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Extract</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:00Z</date>
- <key>path</key>
- <string>/Library/Scripts/ColorSync/Extract.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Embed</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:00Z</date>
- <key>path</key>
- <string>/Library/Scripts/ColorSync/Embed.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MiniTerm</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>Terminal window application for PPP</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:59Z</date>
- <key>path</key>
- <string>/usr/libexec/MiniTerm.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.7</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>WebProcess</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>7534.57.7, Copyright 2003-2012 Apple Inc.</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:59Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/WebKit2.framework/WebProcess.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>7534.57</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>SCIM</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>4.0, Copyright © 1997-2009 Apple Inc., All Rights Reserved</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:59Z</date>
- <key>path</key>
- <string>/System/Library/Input Methods/SCIM.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>5.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Type8Camera</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>7.1.0, © Copyright 2002-2012 Apple Inc. All rights reserved.</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:59Z</date>
- <key>path</key>
- <string>/System/Library/Image Capture/Devices/Type8Camera.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>7.1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MassStorageCamera</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>7.1.0, © Copyright 2000-2012 Apple Inc. All rights reserved.</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:59Z</date>
- <key>path</key>
- <string>/System/Library/Image Capture/Devices/MassStorageCamera.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>7.1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>WebKitPluginHost</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:59Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/WebKit.framework/WebKitPluginHost.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>7534</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>SpeechRecognitionServer</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:59Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognitionServer.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>4.0.21</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>PrinterProxy</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:59Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Plugins/PrinterProxy.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>7.4</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AddressBookManager</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:59Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/AddressBook.framework/Versions/A/Resources/AddressBookManager.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>2.5</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AddressBookLDAPSyncAgent</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:59Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/AddressBook.framework/Versions/A/Resources/AddressBookLDAPSyncAgent.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>2.5</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>SystemUIServer</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>SystemUIServer version 1.7, Copyright 2000-2010 Apple Computer, Inc.</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:59Z</date>
- <key>path</key>
- <string>/System/Library/CoreServices/SystemUIServer.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.7</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Software Update</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>Software Update version 4.0, Copyright © 2000-2009, Apple Inc. All rights reserved.</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:59Z</date>
- <key>path</key>
- <string>/System/Library/CoreServices/Software Update.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>5.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>DiskImageMounter</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:59Z</date>
- <key>path</key>
- <string>/System/Library/CoreServices/DiskImageMounter.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>10.7.4</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Bluetooth Setup Assistant</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>4.0.8, Copyright © 2002-2012 Apple Inc. All rights reserved.</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:59Z</date>
- <key>path</key>
- <string>/System/Library/CoreServices/Bluetooth Setup Assistant.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>4.0.8</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppleScript Runner</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:59Z</date>
- <key>path</key>
- <string>/System/Library/CoreServices/AppleScript Runner.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0.3</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AddPrinter</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:59Z</date>
- <key>path</key>
- <string>/System/Library/CoreServices/AddPrinter.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>7.4</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Cocoa-AppleScript Applet</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:59Z</date>
- <key>path</key>
- <string>/Library/Application Support/Script Editor/Templates/Cocoa-AppleScript Applet.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>IncompatibleAppDisplay</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:58Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/SystemMigration.framework/Versions/A/Resources/IncompatibleAppDisplay.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>402</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>syncuid</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>4.0, Copyright Apple Computer Inc. 2004</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:58Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/SyncServicesUI.framework/Versions/A/Resources/syncuid.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>6.3</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>PluginIM</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:58Z</date>
- <key>path</key>
- <string>/System/Library/Input Methods/PluginIM.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.4</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Kotoeri</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:58Z</date>
- <key>path</key>
- <string>/System/Library/Input Methods/Kotoeri.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>4.3.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>dotmacfx</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:58Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/SecurityFoundation.framework/Versions/A/dotmacfx.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>4.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>QuickLookUIHelper</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>3.2, Copyright Apple Inc. 2007-2011</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:58Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/Versions/A/Resources/QuickLookUIHelper.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>3.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>iCal Helper</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:58Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/CalendarStore.framework/Versions/A/Resources/iCal Helper.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>5.0.3</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AddressBookMobileMeSharingAgent</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:58Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/AddressBook.framework/Versions/A/Resources/AddressBookMobileMeSharingAgent.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>2.5</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>VoiceOver</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:58Z</date>
- <key>path</key>
- <string>/System/Library/CoreServices/VoiceOver.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>4.4</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Network Setup Assistant</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>1.6</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:58Z</date>
- <key>path</key>
- <string>/System/Library/CoreServices/Network Setup Assistant.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>10.7.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>FileSyncAgent</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>© Copyright 2009 Apple Inc., all rights reserved.</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:58Z</date>
- <key>path</key>
- <string>/System/Library/CoreServices/FileSyncAgent.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>6.0.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>File Sync</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>© Copyright 2009 Apple Inc., all rights reserved.</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:58Z</date>
- <key>path</key>
- <string>/System/Library/CoreServices/File Sync.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>6.0.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>FindReaperFiles</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:57Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/SystemMigration.framework/Versions/A/Resources/FindReaperFiles.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>402</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>TrackpadIM</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:57Z</date>
- <key>path</key>
- <string>/System/Library/Input Methods/TrackpadIM.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.3</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>50onPaletteServer</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:57Z</date>
- <key>path</key>
- <string>/System/Library/Input Methods/50onPaletteServer.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0.4</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>SyncDiagnostics</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:57Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/SyncServices.framework/Versions/A/Resources/SyncDiagnostics.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>6.3</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>FontRegistryUIAgent</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>Copyright © 2008-2011 Apple Inc.</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:57Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Support/FontRegistryUIAgent.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>78.16</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Screen Sharing</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:57Z</date>
- <key>path</key>
- <string>/System/Library/CoreServices/Screen Sharing.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.3.3</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>NetAuthAgent</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:57Z</date>
- <key>path</key>
- <string>/System/Library/CoreServices/NetAuthAgent.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>3.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>BluetoothUIServer</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>4.0.8, Copyright © 2002-2012 Apple Inc. All rights reserved.</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:57Z</date>
- <key>path</key>
- <string>/System/Library/CoreServices/BluetoothUIServer.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>4.0.8</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Automator Runner</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>1.1.2, Copyright ? 2006-2011 Apple Inc. All rights reserved.</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:57Z</date>
- <key>path</key>
- <string>/System/Library/CoreServices/Automator Runner.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.1.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>PluginProcess</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>7534.57.7, Copyright 2003-2012 Apple Inc.</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:56Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/WebKit2.framework/PluginProcess.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>7534.57</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Conflict Resolver</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>1.0, Copyright Apple Computer Inc. 2004</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:56Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/SyncServicesUI.framework/Versions/A/Resources/Conflict Resolver.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>6.3</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>store_helper</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:56Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/store_helper.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ScreenSaverEngine</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:56Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/ScreenSaver.framework/Versions/A/Resources/ScreenSaverEngine.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>4.1.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>quicklookd32</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>info</key>
- <string>3.2, Copyright Apple Inc. 2007-2011</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:56Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/QuickLook.framework/Versions/A/Resources/quicklookd32.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>3.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>check_afp</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>AFP Client Session Monitor, Copyright © 2000 - 2012, Apple Inc.</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:56Z</date>
- <key>path</key>
- <string>/System/Library/Filesystems/AppleShare/check_afp.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>2.5.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Printer Setup Utility</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:56Z</date>
- <key>path</key>
- <string>/System/Library/CoreServices/Printer Setup Utility.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>7.4</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>KeyboardSetupAssistant</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:56Z</date>
- <key>path</key>
- <string>/System/Library/CoreServices/KeyboardSetupAssistant.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>10.7</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>iCalAlarm</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:56Z</date>
- <key>path</key>
- <string>/System/Library/CoreServices/iCalAlarm.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>5.0.3</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AVRCPAgent</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>4.0.8, Copyright © 2002-2012 Apple Inc. All rights reserved.</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:56Z</date>
- <key>path</key>
- <string>/System/Library/CoreServices/AVRCPAgent.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>4.0.8</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppleScript Utility</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:56Z</date>
- <key>path</key>
- <string>/System/Library/CoreServices/AppleScript Utility.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.1.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Recursive Image File Processing Droplet</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:56Z</date>
- <key>path</key>
- <string>/Library/Application Support/Script Editor/Templates/Droplets/Recursive Image File Processing Droplet.app</string>
- <key>version</key>
- <string>1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>SummaryService</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>Summary Service Version 2</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:55Z</date>
- <key>path</key>
- <string>/System/Library/Services/SummaryService.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>2.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ScreenReaderUIServer</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:55Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/ScreenReader.framework/Versions/A/Resources/ScreenReaderUIServer.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>4.4</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AOSAlertManager</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:55Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/Resources/AOSAlertManager.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.021</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AutoImporter</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>6.1, © Copyright 2000-2010 Apple Inc., all rights reserved.</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:55Z</date>
- <key>path</key>
- <string>/System/Library/Image Capture/Support/Application/AutoImporter.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>6.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Build Web Page</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>7.0, © Copyright 2003-2010 Apple Inc. All rights reserved.</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:55Z</date>
- <key>path</key>
- <string>/System/Library/Image Capture/Automatic Tasks/Build Web Page.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>7.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>SpeechFeedbackWindow</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:55Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechFeedbackWindow.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>4.0.21</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AddressBookSync</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:55Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/AddressBook.framework/Versions/A/Resources/AddressBookSync.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>2.5</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AddressBookSourceSync</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:55Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/AddressBook.framework/Versions/A/Resources/AddressBookSourceSync.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.4</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>System Events</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:55Z</date>
- <key>path</key>
- <string>/System/Library/CoreServices/System Events.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.3.5</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>OBEXAgent</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>4.0.8, Copyright © 2002-2012 Apple Inc. All rights reserved.</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:55Z</date>
- <key>path</key>
- <string>/System/Library/CoreServices/OBEXAgent.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>4.0.8</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Network Diagnostics</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:55Z</date>
- <key>path</key>
- <string>/System/Library/CoreServices/Network Diagnostics.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.1.5</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Folder Actions Setup</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:55Z</date>
- <key>path</key>
- <string>/System/Library/CoreServices/Folder Actions Setup.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.1.5</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Folder Actions Dispatcher</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:55Z</date>
- <key>path</key>
- <string>/System/Library/CoreServices/Folder Actions Dispatcher.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0.3</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Finder</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>Mac OS X Finder 10.7.5</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:55Z</date>
- <key>path</key>
- <string>/System/Library/CoreServices/Finder.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>10.7.5</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Yahoo! Sync</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:54Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/YahooSync.framework/Versions/A/Resources/Yahoo! Sync.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.5</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>CIMFindInputCodeTool</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:54Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/CoreChineseEngine.framework/Versions/A/Resources/CIMFindInputCodeTool.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>TWAINBridge</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>7.1.0, © Copyright 2000-2012 Apple Inc., all rights reserved.</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:54Z</date>
- <key>path</key>
- <string>/System/Library/Image Capture/Devices/TWAINBridge.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>7.1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>PTPCamera</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>7.1.0, © Copyright 2004-2012 Apple Inc., all rights reserved.</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:54Z</date>
- <key>path</key>
- <string>/System/Library/Image Capture/Devices/PTPCamera.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>7.1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Setup Assistant</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>10.6</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:54Z</date>
- <key>path</key>
- <string>/System/Library/CoreServices/Setup Assistant.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>10.7</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>SecurityAgent</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:54Z</date>
- <key>path</key>
- <string>/System/Library/CoreServices/SecurityAgent.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>6.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Certificate Assistant</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:50:54Z</date>
- <key>path</key>
- <string>/System/Library/CoreServices/Certificate Assistant.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>4.4</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Adobe AIR Updater</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>info</key>
- <string>Adobe AIR 3.5</string>
- <key>lastModified</key>
- <date>2012-10-29T04:00:52Z</date>
- <key>path</key>
- <string>/Library/Frameworks/Adobe AIR.framework/Versions/1.0/Resources/Adobe AIR Updater.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>3.5</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Template</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>info</key>
- <string>Adobe AIR 3.5</string>
- <key>lastModified</key>
- <date>2012-10-29T04:00:14Z</date>
- <key>path</key>
- <string>/Library/Frameworks/Adobe AIR.framework/Versions/1.0/Resources/Template.app</string>
- <key>version</key>
- <string>3.5</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Adobe AIR Application Installer</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>info</key>
- <string>Adobe AIR 3.5</string>
- <key>lastModified</key>
- <date>2012-10-29T03:47:35Z</date>
- <key>path</key>
- <string>/Library/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>3.5</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Spotlight</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-01-19T03:01:04Z</date>
- <key>path</key>
- <string>/System/Library/Services/Spotlight.service</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>3.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>SpeechService</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2011-06-14T11:38:11Z</date>
- <key>path</key>
- <string>/System/Library/Services/SpeechService.service</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>4.0.74</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>eaptlstrust</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2011-07-25T00:42:36Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/EAP8021X.framework/Support/eaptlstrust.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>11.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AirPortDevicesUIAgent</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>1.0 (100.6), Copyright © 2009 Apple Inc. All Rights Reserved.</string>
- <key>lastModified</key>
- <date>2011-05-25T19:56:48Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/AirPortDevices.framework/Versions/A/Resources/AirPortDevicesUIAgent.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Wish</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>Wish Shell 8.5.9,
-Copyright © 1989-2011 Tcl Core Team,
-Copyright © 2002-2011 Daniel A. Steffen,
-Copyright © 2001-2009 Apple Inc.,
-Copyright © 2001-2002 Jim Ingham &amp; Ian Reid</string>
- <key>lastModified</key>
- <date>2011-05-25T20:59:33Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/Tk.framework/Versions/8.5/Resources/Wish.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>8.5.9</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Wish</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>info</key>
- <string>Wish Shell 8.4.19,
-Copyright © 2011 Tcl Core Team,
-Copyright © 2002-2011 Daniel A. Steffen,
-Initial MacOS X Port by Jim Ingham &amp; Ian Reid,
-Copyright © 2001-2002, Apple Computer, Inc.</string>
- <key>lastModified</key>
- <date>2011-05-25T20:45:22Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/Tk.framework/Versions/8.4/Resources/Wish.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>8.4.19</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Python</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>2.7.1, (c) 2004-2010 Python Software Foundation.</string>
- <key>lastModified</key>
- <date>2011-08-01T02:32:55Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>2.7.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Python Launcher</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>2.7.1, © 001-2006 Python Software Foundation</string>
- <key>lastModified</key>
- <date>2011-08-01T02:33:04Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/Python.framework/Versions/2.7/Resources/Python Launcher.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>2.7.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Python</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>2.6.7, (c) 2004-2010 Python Software Foundation.</string>
- <key>lastModified</key>
- <date>2011-08-01T02:32:51Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/Python.framework/Versions/2.6/Resources/Python.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>2.6.7</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Python Launcher</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>2.6.7, © 001-2006 Python Software Foundation</string>
- <key>lastModified</key>
- <date>2011-08-01T02:32:59Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/Python.framework/Versions/2.6/Resources/Python Launcher.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>2.6.7</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Python</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>info</key>
- <string>2.5.6a0, (c) 2004 Python Software Foundation.</string>
- <key>lastModified</key>
- <date>2011-08-01T02:32:35Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/Python.framework/Versions/2.5/Resources/Python.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>2.5.6</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Python Launcher</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>info</key>
- <string>2.5.6, © 001-2006 Python Software Foundation</string>
- <key>lastModified</key>
- <date>2011-08-01T02:32:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/Python.framework/Versions/2.5/Resources/Python Launcher.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>2.5.6</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>IMServicePlugInAgent</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2011-12-16T04:17:52Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/IMServicePlugIn.framework/IMServicePlugInAgent.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>UserNotificationCenter</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2011-05-25T19:58:00Z</date>
- <key>path</key>
- <string>/System/Library/CoreServices/UserNotificationCenter.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>3.2.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>EPSON Scanner</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>5.3.12, Copyright 2003 EPSON</string>
- <key>lastModified</key>
- <date>2009-03-10T01:39:59Z</date>
- <key>path</key>
- <string>/Library/Image Capture/Devices/EPSON Scanner.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>5.3.12</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Canon IJScanner2</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>1.5.0, Copyright CANON INC. 2009-2010 All Rights Reserved</string>
- <key>lastModified</key>
- <date>2010-04-21T03:00:00Z</date>
- <key>path</key>
- <string>/Library/Image Capture/Devices/Canon IJScanner2.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.5.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>iPhoto Library Upgrader</string>
- <key>app_store</key>
- <string>no</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>info</key>
- <string>iPhoto 8.1, Copyright © 2002-2009 Apple Inc.</string>
- <key>lastModified</key>
- <date>2012-02-26T22:05:00Z</date>
- <key>path</key>
- <string>/Library/Application Support/iPhoto/iPhoto Library Upgrader.app</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>8.1</string>
- </dict>
- </array>
- <key>_parentDataType</key>
- <string>SPSoftwareDataType</string>
- <key>_properties</key>
- <dict>
- <key>_name</key>
- <dict>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>0</string>
- </dict>
- <key>app_store</key>
- <dict>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>5</string>
- </dict>
- <key>has64BitIntelCode</key>
- <dict>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>4</string>
- </dict>
- <key>lastModified</key>
- <dict>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>2</string>
- </dict>
- <key>runtime_environment</key>
- <dict>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>3</string>
- </dict>
- <key>version</key>
- <dict>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>1</string>
- </dict>
- <key>volumes_anonymous</key>
- <dict>
- <key>_detailLevel</key>
- <string>-1</string>
- <key>_maxDetailLevel</key>
- <string>-1</string>
- </dict>
- </dict>
- <key>_timeStamp</key>
- <date>2012-12-04T21:29:53Z</date>
- <key>_versionInfo</key>
- <dict>
- <key>com.apple.SystemProfiler.SPApplicationsReporter</key>
- <string>733</string>
- </dict>
- </dict>
- <dict>
- <key>_SPCommandLineArguments</key>
- <array>
- <string>/usr/sbin/system_profiler</string>
- <string>-xml</string>
- <string>-detailLevel</string>
- <string>mini</string>
- <string>SPParallelATADataType</string>
- <string>SPApplicationsDataType</string>
- <string>SPAudioDataType</string>
- <string>SPBluetoothDataType</string>
- <string>SPCardReaderDataType</string>
- <string>SPComponentDataType</string>
- <string>SPDeveloperToolsDataType</string>
- <string>SPDiagnosticsDataType</string>
- <string>SPDiscBurningDataType</string>
- <string>SPEthernetDataType</string>
- <string>SPExtensionsDataType</string>
- <string>SPFibreChannelDataType</string>
- <string>SPFireWireDataType</string>
- <string>SPFirewallDataType</string>
- <string>SPFontsDataType</string>
- <string>SPFrameworksDataType</string>
- <string>SPDisplaysDataType</string>
- <string>SPHardwareRAIDDataType</string>
- <string>SPNetworkLocationDataType</string>
- <string>SPLogsDataType</string>
- <string>SPManagedClientDataType</string>
- <string>SPMemoryDataType</string>
- <string>SPModemDataType</string>
- <string>SPNetworkDataType</string>
- <string>SPPCIDataType</string>
- <string>SPParallelSCSIDataType</string>
- <string>SPPowerDataType</string>
- <string>SPPrefPaneDataType</string>
- <string>SPPrintersSoftwareDataType</string>
- <string>SPPrintersDataType</string>
- <string>SPConfigurationProfileDataType</string>
- <string>SPSASDataType</string>
- <string>SPSerialATADataType</string>
- <string>SPSoftwareDataType</string>
- <string>SPStartupItemDataType</string>
- <string>SPSyncServicesDataType</string>
- <string>SPThunderboltDataType</string>
- <string>SPUSBDataType</string>
- <string>SPUniversalAccessDataType</string>
- <string>SPNetworkVolumeDataType</string>
- <string>SPWWANDataType</string>
- <string>SPAirPortDataType</string>
- </array>
- <key>_SPCompletionInterval</key>
- <real>0.043423950672149658</real>
- <key>_dataType</key>
- <string>SPAudioDataType</string>
- <key>_detailLevel</key>
- <integer>-1</integer>
- <key>_items</key>
- <array>
- <dict>
- <key>_items</key>
- <array>
- <dict>
- <key>_name</key>
- <string>hda_device_hp_out</string>
- <key>hda_connector</key>
- <string>hda_connector_combination_output</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>hda_device_speaker</string>
- <key>hda_connector</key>
- <string>hda_internal</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>hda_device_line_in</string>
- <key>hda_connector</key>
- <string>hda_connector_combination_input</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>hda_device_int_mic_in</string>
- <key>hda_connector</key>
- <string>hda_internal</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>hda_device_spdif_in</string>
- <key>hda_connector</key>
- <string>hda_connector_combination_input</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>hda_device_spdif_out</string>
- <key>hda_connector</key>
- <string>hda_connector_combination_output</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>hda_device_ext_mic_in</string>
- <key>hda_connector</key>
- <string>hda_connector_combination_output</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>hda_display_hdmi_dp</string>
- <key>hda_connector</key>
- <string>hda_display</string>
- </dict>
- </array>
- <key>_name</key>
- <string>hda_compatible_hardware</string>
- <key>hda_audio_id</key>
- <integer>29</integer>
- </dict>
- </array>
- <key>_parentDataType</key>
- <string>SPHardwareDataType</string>
- <key>_properties</key>
- <dict>
- <key>_name</key>
- <dict>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_isOutlineColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>0</string>
- </dict>
- <key>spaudio_bitdepth</key>
- <dict>
- <key>_order</key>
- <string>100</string>
- </dict>
- <key>spaudio_bitwidth</key>
- <dict>
- <key>_order</key>
- <string>110</string>
- </dict>
- <key>spaudio_channels</key>
- <dict>
- <key>_order</key>
- <string>120</string>
- </dict>
- <key>spaudio_codec</key>
- <dict>
- <key>_order</key>
- <string>10</string>
- </dict>
- <key>spaudio_controls</key>
- <dict>
- <key>_order</key>
- <string>220</string>
- </dict>
- <key>spaudio_ismixable</key>
- <dict>
- <key>_order</key>
- <string>130</string>
- </dict>
- <key>spaudio_newtype</key>
- <dict>
- <key>_order</key>
- <string>200</string>
- </dict>
- <key>spaudio_num_inputs</key>
- <dict>
- <key>_order</key>
- <string>40</string>
- </dict>
- <key>spaudio_num_outputs</key>
- <dict>
- <key>_order</key>
- <string>50</string>
- </dict>
- <key>spaudio_oldtype</key>
- <dict>
- <key>_order</key>
- <string>20</string>
- </dict>
- <key>spaudio_playthrough</key>
- <dict>
- <key>_order</key>
- <string>230</string>
- </dict>
- <key>spaudio_pluginid</key>
- <dict>
- <key>_order</key>
- <string>240</string>
- </dict>
- <key>spaudio_sample_rate</key>
- <dict>
- <key>_order</key>
- <string>30</string>
- </dict>
- <key>spaudio_samplerates</key>
- <dict>
- <key>_order</key>
- <string>140</string>
- </dict>
- <key>volumes_anonymous</key>
- <dict>
- <key>_detailLevel</key>
- <string>-1</string>
- <key>_maxDetailLevel</key>
- <string>-1</string>
- </dict>
- </dict>
- <key>_timeStamp</key>
- <date>2012-12-04T21:30:06Z</date>
- <key>_versionInfo</key>
- <dict>
- <key>com.apple.SystemProfiler.SPAudioReporter</key>
- <string>6.1.4f3</string>
- </dict>
- </dict>
- <dict>
- <key>_SPCommandLineArguments</key>
- <array>
- <string>/usr/sbin/system_profiler</string>
- <string>-xml</string>
- <string>-detailLevel</string>
- <string>mini</string>
- <string>SPParallelATADataType</string>
- <string>SPApplicationsDataType</string>
- <string>SPAudioDataType</string>
- <string>SPBluetoothDataType</string>
- <string>SPCardReaderDataType</string>
- <string>SPComponentDataType</string>
- <string>SPDeveloperToolsDataType</string>
- <string>SPDiagnosticsDataType</string>
- <string>SPDiscBurningDataType</string>
- <string>SPEthernetDataType</string>
- <string>SPExtensionsDataType</string>
- <string>SPFibreChannelDataType</string>
- <string>SPFireWireDataType</string>
- <string>SPFirewallDataType</string>
- <string>SPFontsDataType</string>
- <string>SPFrameworksDataType</string>
- <string>SPDisplaysDataType</string>
- <string>SPHardwareRAIDDataType</string>
- <string>SPNetworkLocationDataType</string>
- <string>SPLogsDataType</string>
- <string>SPManagedClientDataType</string>
- <string>SPMemoryDataType</string>
- <string>SPModemDataType</string>
- <string>SPNetworkDataType</string>
- <string>SPPCIDataType</string>
- <string>SPParallelSCSIDataType</string>
- <string>SPPowerDataType</string>
- <string>SPPrefPaneDataType</string>
- <string>SPPrintersSoftwareDataType</string>
- <string>SPPrintersDataType</string>
- <string>SPConfigurationProfileDataType</string>
- <string>SPSASDataType</string>
- <string>SPSerialATADataType</string>
- <string>SPSoftwareDataType</string>
- <string>SPStartupItemDataType</string>
- <string>SPSyncServicesDataType</string>
- <string>SPThunderboltDataType</string>
- <string>SPUSBDataType</string>
- <string>SPUniversalAccessDataType</string>
- <string>SPNetworkVolumeDataType</string>
- <string>SPWWANDataType</string>
- <string>SPAirPortDataType</string>
- </array>
- <key>_SPCompletionInterval</key>
- <real>0.35673099756240845</real>
- <key>_dataType</key>
- <string>SPBluetoothDataType</string>
- <key>_detailLevel</key>
- <integer>-1</integer>
- <key>_items</key>
- <array>
- <dict>
- <key>apple_bluetooth_version</key>
- <string>4.0.8f17</string>
- <key>local_device_title</key>
- <dict>
- <key>general_fw_version</key>
- <string>v41 c821</string>
- <key>general_mfg</key>
- <string>Broadcom</string>
- <key>general_productID</key>
- <string>0x821a</string>
- <key>general_vendorID</key>
- <string>0x5ac</string>
- </dict>
- </dict>
- </array>
- <key>_name</key>
- <string>SPBluetoothDataType</string>
- <key>_parentDataType</key>
- <string>SPHardwareDataType</string>
- <key>_properties</key>
- <dict>
- <key>_name</key>
- <dict>
- <key>_detailLevel</key>
- <string>-1</string>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_isOutlineColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>0</string>
- </dict>
- <key>apple_bluetooth_version</key>
- <dict>
- <key>_detailLevel</key>
- <string>-1</string>
- <key>_order</key>
- <string>100</string>
- </dict>
- <key>cache_title</key>
- <dict>
- <key>_detailLevel</key>
- <string>-1</string>
- <key>_order</key>
- <string>700</string>
- </dict>
- <key>device_manufacturer</key>
- <dict>
- <key>_order</key>
- <string>67</string>
- </dict>
- <key>device_services</key>
- <dict>
- <key>_detailLevel</key>
- <string>-1</string>
- <key>_order</key>
- <string>63</string>
- </dict>
- <key>device_title</key>
- <dict>
- <key>_order</key>
- <string>500</string>
- </dict>
- <key>device_type</key>
- <dict>
- <key>_detailLevel</key>
- <string>-1</string>
- <key>_order</key>
- <string>62</string>
- </dict>
- <key>devices_title</key>
- <dict>
- <key>_order</key>
- <string>80</string>
- </dict>
- <key>general_chipset</key>
- <dict>
- <key>_detailLevel</key>
- <string>-1</string>
- <key>_order</key>
- <string>44</string>
- </dict>
- <key>general_fw_version</key>
- <dict>
- <key>_detailLevel</key>
- <string>-1</string>
- <key>_order</key>
- <string>62</string>
- </dict>
- <key>general_hardware_features</key>
- <dict>
- <key>_detailLevel</key>
- <string>-1</string>
- <key>_order</key>
- <string>50</string>
- </dict>
- <key>general_mfg</key>
- <dict>
- <key>_detailLevel</key>
- <string>-1</string>
- <key>_order</key>
- <string>41</string>
- </dict>
- <key>general_productID</key>
- <dict>
- <key>_detailLevel</key>
- <string>-1</string>
- <key>_order</key>
- <string>91</string>
- </dict>
- <key>general_vendorID</key>
- <dict>
- <key>_detailLevel</key>
- <string>-1</string>
- <key>_order</key>
- <string>90</string>
- </dict>
- <key>local_device_title</key>
- <dict>
- <key>_detailLevel</key>
- <string>-1</string>
- <key>_order</key>
- <string>200</string>
- </dict>
- <key>volumes_anonymous</key>
- <dict>
- <key>_detailLevel</key>
- <string>-1</string>
- <key>_maxDetailLevel</key>
- <string>-1</string>
- </dict>
- </dict>
- <key>_timeStamp</key>
- <date>2012-12-04T21:30:06Z</date>
- <key>_versionInfo</key>
- <dict>
- <key>com.apple.SystemProfiler.SPBluetoothReporter</key>
- <string>4.0.8f17</string>
- </dict>
- </dict>
- <dict>
- <key>_SPCommandLineArguments</key>
- <array>
- <string>/usr/sbin/system_profiler</string>
- <string>-xml</string>
- <string>-detailLevel</string>
- <string>mini</string>
- <string>SPParallelATADataType</string>
- <string>SPApplicationsDataType</string>
- <string>SPAudioDataType</string>
- <string>SPBluetoothDataType</string>
- <string>SPCardReaderDataType</string>
- <string>SPComponentDataType</string>
- <string>SPDeveloperToolsDataType</string>
- <string>SPDiagnosticsDataType</string>
- <string>SPDiscBurningDataType</string>
- <string>SPEthernetDataType</string>
- <string>SPExtensionsDataType</string>
- <string>SPFibreChannelDataType</string>
- <string>SPFireWireDataType</string>
- <string>SPFirewallDataType</string>
- <string>SPFontsDataType</string>
- <string>SPFrameworksDataType</string>
- <string>SPDisplaysDataType</string>
- <string>SPHardwareRAIDDataType</string>
- <string>SPNetworkLocationDataType</string>
- <string>SPLogsDataType</string>
- <string>SPManagedClientDataType</string>
- <string>SPMemoryDataType</string>
- <string>SPModemDataType</string>
- <string>SPNetworkDataType</string>
- <string>SPPCIDataType</string>
- <string>SPParallelSCSIDataType</string>
- <string>SPPowerDataType</string>
- <string>SPPrefPaneDataType</string>
- <string>SPPrintersSoftwareDataType</string>
- <string>SPPrintersDataType</string>
- <string>SPConfigurationProfileDataType</string>
- <string>SPSASDataType</string>
- <string>SPSerialATADataType</string>
- <string>SPSoftwareDataType</string>
- <string>SPStartupItemDataType</string>
- <string>SPSyncServicesDataType</string>
- <string>SPThunderboltDataType</string>
- <string>SPUSBDataType</string>
- <string>SPUniversalAccessDataType</string>
- <string>SPNetworkVolumeDataType</string>
- <string>SPWWANDataType</string>
- <string>SPAirPortDataType</string>
- </array>
- <key>_SPCompletionInterval</key>
- <real>0.01516801118850708</real>
- <key>_dataType</key>
- <string>SPCardReaderDataType</string>
- <key>_detailLevel</key>
- <integer>-1</integer>
- <key>_items</key>
- <array>
- <dict>
- <key>_items</key>
- <array/>
- <key>_name</key>
- <string>spcardreader</string>
- <key>spcardreader_device-id</key>
- <string>0x16bc</string>
- <key>spcardreader_link-speed</key>
- <string>2.5 GT/s</string>
- <key>spcardreader_link-width</key>
- <string>x1</string>
- <key>spcardreader_revision-id</key>
- <string>0x0010</string>
- <key>spcardreader_subsystem-id</key>
- <string>0x0000</string>
- <key>spcardreader_subsystem_vendor-id</key>
- <string>0x14e4</string>
- <key>spcardreader_vendor-id</key>
- <string>0x14e4</string>
- </dict>
- </array>
- <key>_parentDataType</key>
- <string>SPHardwareDataType</string>
- <key>_properties</key>
- <dict>
- <key>_name</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_isOutlineColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>0</string>
- </dict>
- <key>bsd_name</key>
- <dict>
- <key>_order</key>
- <string>260</string>
- </dict>
- <key>detachable_drive</key>
- <dict>
- <key>_order</key>
- <string>240</string>
- </dict>
- <key>file_system</key>
- <dict>
- <key>_order</key>
- <string>250</string>
- </dict>
- <key>free_space</key>
- <dict>
- <key>_deprecated</key>
- <true/>
- <key>_order</key>
- <string>200</string>
- </dict>
- <key>free_space_in_bytes</key>
- <dict>
- <key>_isByteSize</key>
- <true/>
- <key>_order</key>
- <string>200</string>
- </dict>
- <key>mount_point</key>
- <dict>
- <key>_order</key>
- <string>270</string>
- </dict>
- <key>removable_media</key>
- <dict>
- <key>_order</key>
- <string>220</string>
- </dict>
- <key>size</key>
- <dict>
- <key>_deprecated</key>
- <true/>
- <key>_order</key>
- <string>210</string>
- </dict>
- <key>size_in_bytes</key>
- <dict>
- <key>_isByteSize</key>
- <true/>
- <key>_order</key>
- <string>210</string>
- </dict>
- <key>spcardreader</key>
- <dict>
- <key>_order</key>
- <string>10</string>
- </dict>
- <key>spcardreader_card_manufacturer-id</key>
- <dict>
- <key>_order</key>
- <string>140</string>
- </dict>
- <key>spcardreader_card_manufacturing_date</key>
- <dict>
- <key>_order</key>
- <string>170</string>
- </dict>
- <key>spcardreader_card_oemid</key>
- <dict>
- <key>_order</key>
- <string>130</string>
- </dict>
- <key>spcardreader_card_productname</key>
- <dict>
- <key>_order</key>
- <string>120</string>
- </dict>
- <key>spcardreader_card_productrevision</key>
- <dict>
- <key>_order</key>
- <string>150</string>
- </dict>
- <key>spcardreader_card_serialnumber</key>
- <dict>
- <key>_order</key>
- <string>160</string>
- </dict>
- <key>spcardreader_card_specversion</key>
- <dict>
- <key>_order</key>
- <string>180</string>
- </dict>
- <key>spcardreader_device-id</key>
- <dict>
- <key>_order</key>
- <string>50</string>
- </dict>
- <key>spcardreader_link-speed</key>
- <dict>
- <key>_order</key>
- <string>110</string>
- </dict>
- <key>spcardreader_link-width</key>
- <dict>
- <key>_order</key>
- <string>100</string>
- </dict>
- <key>spcardreader_product-id</key>
- <dict>
- <key>_order</key>
- <string>40</string>
- </dict>
- <key>spcardreader_revision-id</key>
- <dict>
- <key>_order</key>
- <string>80</string>
- </dict>
- <key>spcardreader_serialnumber</key>
- <dict>
- <key>_order</key>
- <string>90</string>
- </dict>
- <key>spcardreader_subsystem-id</key>
- <dict>
- <key>_order</key>
- <string>70</string>
- </dict>
- <key>spcardreader_subsystem_vendor-id</key>
- <dict>
- <key>_order</key>
- <string>60</string>
- </dict>
- <key>spcardreader_vendor-id</key>
- <dict>
- <key>_order</key>
- <string>30</string>
- </dict>
- <key>volumes_anonymous</key>
- <dict>
- <key>_detailLevel</key>
- <string>-1</string>
- <key>_maxDetailLevel</key>
- <string>-1</string>
- </dict>
- <key>writable</key>
- <dict>
- <key>_order</key>
- <string>230</string>
- </dict>
- </dict>
- <key>_timeStamp</key>
- <date>2012-12-04T21:30:06Z</date>
- <key>_versionInfo</key>
- <dict>
- <key>com.apple.SystemProfiler.SPCardReaderReporter</key>
- <string>2.0.2</string>
- </dict>
- </dict>
- <dict>
- <key>_SPCommandLineArguments</key>
- <array>
- <string>/usr/sbin/system_profiler</string>
- <string>-xml</string>
- <string>-detailLevel</string>
- <string>mini</string>
- <string>SPParallelATADataType</string>
- <string>SPApplicationsDataType</string>
- <string>SPAudioDataType</string>
- <string>SPBluetoothDataType</string>
- <string>SPCardReaderDataType</string>
- <string>SPComponentDataType</string>
- <string>SPDeveloperToolsDataType</string>
- <string>SPDiagnosticsDataType</string>
- <string>SPDiscBurningDataType</string>
- <string>SPEthernetDataType</string>
- <string>SPExtensionsDataType</string>
- <string>SPFibreChannelDataType</string>
- <string>SPFireWireDataType</string>
- <string>SPFirewallDataType</string>
- <string>SPFontsDataType</string>
- <string>SPFrameworksDataType</string>
- <string>SPDisplaysDataType</string>
- <string>SPHardwareRAIDDataType</string>
- <string>SPNetworkLocationDataType</string>
- <string>SPLogsDataType</string>
- <string>SPManagedClientDataType</string>
- <string>SPMemoryDataType</string>
- <string>SPModemDataType</string>
- <string>SPNetworkDataType</string>
- <string>SPPCIDataType</string>
- <string>SPParallelSCSIDataType</string>
- <string>SPPowerDataType</string>
- <string>SPPrefPaneDataType</string>
- <string>SPPrintersSoftwareDataType</string>
- <string>SPPrintersDataType</string>
- <string>SPConfigurationProfileDataType</string>
- <string>SPSASDataType</string>
- <string>SPSerialATADataType</string>
- <string>SPSoftwareDataType</string>
- <string>SPStartupItemDataType</string>
- <string>SPSyncServicesDataType</string>
- <string>SPThunderboltDataType</string>
- <string>SPUSBDataType</string>
- <string>SPUniversalAccessDataType</string>
- <string>SPNetworkVolumeDataType</string>
- <string>SPWWANDataType</string>
- <string>SPAirPortDataType</string>
- </array>
- <key>_SPCompletionInterval</key>
- <real>1.0745440125465393</real>
- <key>_dataType</key>
- <string>SPComponentDataType</string>
- <key>_detailLevel</key>
- <integer>1</integer>
- <key>_items</key>
- <array>
- <dict>
- <key>_name</key>
- <string>AudioContext</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>AudioContext Channel</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>chnl</string>
- <key>component_type</key>
- <string>acca</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple MPEG Layer 1 Decoder</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>An AudioCodec that decodes MPEG-1 and MPEG-2 Layer I into linear PCM data</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/AudioCodecs.component</string>
- <key>component_subtype</key>
- <string>.mp1</string>
- <key>component_type</key>
- <string>adec</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple MPEG Layer 2 Decoder</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>An AudioCodec that decodes MPEG-1 and MPEG-2 Layer II into linear PCM data</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/AudioCodecs.component</string>
- <key>component_subtype</key>
- <string>.mp2</string>
- <key>component_type</key>
- <string>adec</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple MP3 Decoder</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>An AudioCodec that decodes MPEG-1, MPEG-2, MPEG-2.5 Layer III into linear PCM data</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/AudioCodecs.component</string>
- <key>component_subtype</key>
- <string>.mp3</string>
- <key>component_type</key>
- <string>adec</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>QDesign Music 2 Decoder</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>An AudioCodec that decodes QDesign Music 2 into linear PCM data</string>
- <key>component_manufacturer</key>
- <string>QDes</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/AudioCodecs.component</string>
- <key>component_subtype</key>
- <string>QDM2</string>
- <key>component_type</key>
- <string>adec</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>QDesign Music Decoder</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>An AudioCodec that decodes QDesign Music into linear PCM data</string>
- <key>component_manufacturer</key>
- <string>QDes</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/AudioCodecs.component</string>
- <key>component_subtype</key>
- <string>QDMC</string>
- <key>component_type</key>
- <string>adec</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Qualcomm PureVoice™ Decoder</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>An AudioCodec that decodes Qualcomm PureVoice™ into linear PCM data</string>
- <key>component_manufacturer</key>
- <string>QCOM</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/AudioCodecs.component</string>
- <key>component_subtype</key>
- <string>Qclp</string>
- <key>component_type</key>
- <string>adec</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Qualcomm PureVoice™ VBR Decoder</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>An AudioCodec that decodes Qualcomm PureVoice™ into linear PCM data</string>
- <key>component_manufacturer</key>
- <string>QCOM</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/AudioCodecs.component</string>
- <key>component_subtype</key>
- <string>Qclq</string>
- <key>component_type</key>
- <string>adec</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MPEG-4 AAC Decoder</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>An AudioCodec that decodes MPEG-4 AAC into linear PCM data</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/AudioCodecs.component</string>
- <key>component_subtype</key>
- <string>aac </string>
- <key>component_type</key>
- <string>adec</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MPEG-4 AAC Enhanced Low Delay Decoder</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>An AudioCodec that decodes MPEG-4 AAC Enhanced Low Delay into linear PCM data</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/AudioCodecs.component</string>
- <key>component_subtype</key>
- <string>aace</string>
- <key>component_type</key>
- <string>adec</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MPEG-4 HE AAC Decoder</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>An AudioCodec that decodes MPEG-4 HE AAC into linear PCM data</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/AudioCodecs.component</string>
- <key>component_subtype</key>
- <string>aach</string>
- <key>component_type</key>
- <string>adec</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MPEG-4 AAC Low Delay Decoder</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>An AudioCodec that decodes MPEG-4 AAC Low Delay into linear PCM data</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/AudioCodecs.component</string>
- <key>component_subtype</key>
- <string>aacl</string>
- <key>component_type</key>
- <string>adec</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MPEG-4 HE AAC V2 Decoder</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>An AudioCodec that decodes MPEG-4 HE AAC V2 into linear PCM data</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/AudioCodecs.component</string>
- <key>component_subtype</key>
- <string>aacp</string>
- <key>component_type</key>
- <string>adec</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Lossless Decoder</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>An AudioCodec that decodes Apple Lossless into linear PCM data</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/AudioCodecs.component</string>
- <key>component_subtype</key>
- <string>alac</string>
- <key>component_type</key>
- <string>adec</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple DVI Decoder</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>An AudioCodec that decodes DVI into linear PCM data</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/AudioCodecs.component</string>
- <key>component_subtype</key>
- <string>dvi8</string>
- <key>component_type</key>
- <string>adec</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>iLBC Decoder</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>An AudioCodec that decodes iLBC into linear PCM data</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/AudioCodecs.component</string>
- <key>component_subtype</key>
- <string>ilbc</string>
- <key>component_type</key>
- <string>adec</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple IMA4 Decoder</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>An AudioCodec that decodes IMA4 into linear PCM data</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/AudioCodecs.component</string>
- <key>component_subtype</key>
- <string>ima4</string>
- <key>component_type</key>
- <string>adec</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MS ADPCM Decoder</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>An AudioCodec that decodes MS ADPCM into linear PCM data</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/AudioCodecs.component</string>
- <key>component_subtype</key>
- <string>ms??</string>
- <key>component_type</key>
- <string>adec</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple MS DVI Decoder</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>An AudioCodec that decodes MS DVI into linear PCM data</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/AudioCodecs.component</string>
- <key>component_subtype</key>
- <string>ms??</string>
- <key>component_type</key>
- <string>adec</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MS GSM 6.10 Decoder</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>An AudioCodec that decodes Microsoft GSM 6.10 streams into linear PCM data</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/AudioCodecs.component</string>
- <key>component_subtype</key>
- <string>ms?1</string>
- <key>component_type</key>
- <string>adec</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AMR Decoder</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>An AudioCodec that decodes AMR into linear PCM data</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/AudioCodecs.component</string>
- <key>component_subtype</key>
- <string>samr</string>
- <key>component_type</key>
- <string>adec</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Qualcomm PureVoice™ Encoder</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>An AudioCodec that encodes linear PCM data into Qualcomm PureVoice™</string>
- <key>component_manufacturer</key>
- <string>QCOM</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/AudioCodecs.component</string>
- <key>component_subtype</key>
- <string>Qclp</string>
- <key>component_type</key>
- <string>aenc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MPEG-4 AAC Encoder</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>An AudioCodec that encodes linear PCM data into MPEG-4 AAC</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/AudioCodecs.component</string>
- <key>component_subtype</key>
- <string>aac </string>
- <key>component_type</key>
- <string>aenc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MPEG-4 AAC Enhanced Low Delay Encoder</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>An AudioCodec that encodes linear PCM data into MPEG-4 AAC Enhanced Low Delay</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/AudioCodecs.component</string>
- <key>component_subtype</key>
- <string>aace</string>
- <key>component_type</key>
- <string>aenc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MPEG-4 HE AAC Encoder</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>An AudioCodec that encodes linear PCM data into MPEG-4 HE AAC</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/AudioCodecs.component</string>
- <key>component_subtype</key>
- <string>aach</string>
- <key>component_type</key>
- <string>aenc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MPEG-4 AAC Low Delay Encoder</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>An AudioCodec that encodes linear PCM data into MPEG-4 AAC Low Delay</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/AudioCodecs.component</string>
- <key>component_subtype</key>
- <string>aacl</string>
- <key>component_type</key>
- <string>aenc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MPEG-4 HE AAC V2 Encoder</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>An AudioCodec that encodes linear PCM data into MPEG-4 HE AAC</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/AudioCodecs.component</string>
- <key>component_subtype</key>
- <string>aacp</string>
- <key>component_type</key>
- <string>aenc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Lossless Encoder</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>An AudioCodec that encodes linear PCM data into Apple Lossless</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/AudioCodecs.component</string>
- <key>component_subtype</key>
- <string>alac</string>
- <key>component_type</key>
- <string>aenc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>iLBC Encoder</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>An AudioCodec that encodes linear PCM data into iLBC</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/AudioCodecs.component</string>
- <key>component_subtype</key>
- <string>ilbc</string>
- <key>component_type</key>
- <string>aenc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple IMA4 Encoder</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>An AudioCodec that encodes linear PCM data into IMA4</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/AudioCodecs.component</string>
- <key>component_subtype</key>
- <string>ima4</string>
- <key>component_type</key>
- <string>aenc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Applet</string>
- <key>component_flags</key>
- <string>0x0000017e</string>
- <key>component_info</key>
- <string>The component that runs script applications</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/AppleScript.component</string>
- <key>component_subtype</key>
- <string>scpt</string>
- <key>component_type</key>
- <string>aplt</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple: AUConverter</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>AudioConverter unit</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/CoreAudio.component</string>
- <key>component_subtype</key>
- <string>conv</string>
- <key>component_type</key>
- <string>aufc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple: AUDeferredRenderer</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Apple's deferred renderer</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/CoreAudio.component</string>
- <key>component_subtype</key>
- <string>defr</string>
- <key>component_type</key>
- <string>aufc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple: AUMerger</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Merges 2 Input Buses to 1 Output Bus</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/CoreAudio.component</string>
- <key>component_subtype</key>
- <string>merg</string>
- <key>component_type</key>
- <string>aufc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple: AUNewTimePitch</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Apple's leaner time pitch</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/CoreAudio.component</string>
- <key>component_subtype</key>
- <string>nutp</string>
- <key>component_type</key>
- <string>aufc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple: AURoundTripAAC</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Apple's PCM to AAC to PCM round trip conversion</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/CoreAudio.component</string>
- <key>component_subtype</key>
- <string>raac</string>
- <key>component_type</key>
- <string>aufc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple: AUSplitter</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Splits Input Bus to 2 Output Buses</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/CoreAudio.component</string>
- <key>component_subtype</key>
- <string>splt</string>
- <key>component_type</key>
- <string>aufc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple: AUTimePitch</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Apple's time/pitch processor</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/CoreAudio.component</string>
- <key>component_subtype</key>
- <string>tmpt</string>
- <key>component_type</key>
- <string>aufc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple: AUVarispeed</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Apple's varispeed playback</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/CoreAudio.component</string>
- <key>component_subtype</key>
- <string>vari</string>
- <key>component_type</key>
- <string>aufc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple: AUBandpass</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Apple's bandpass filter unit</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/CoreAudio.component</string>
- <key>component_subtype</key>
- <string>bpas</string>
- <key>component_type</key>
- <string>aufx</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple: AUDynamicsProcessor</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Apple's compressor/expander</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/CoreAudio.component</string>
- <key>component_subtype</key>
- <string>dcmp</string>
- <key>component_type</key>
- <string>aufx</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple: AUDelay</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Apple's time delay unit</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/CoreAudio.component</string>
- <key>component_subtype</key>
- <string>dely</string>
- <key>component_type</key>
- <string>aufx</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple: AUDistortion</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Apple's distortion unit</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/CoreAudio.component</string>
- <key>component_subtype</key>
- <string>dist</string>
- <key>component_type</key>
- <string>aufx</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple: AUFilter</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Apple's multi-band filter</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/CoreAudio.component</string>
- <key>component_subtype</key>
- <string>filt</string>
- <key>component_type</key>
- <string>aufx</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple: AUGraphicEQ</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Apple's graphic EQ unit</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/CoreAudio.component</string>
- <key>component_subtype</key>
- <string>greq</string>
- <key>component_type</key>
- <string>aufx</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple: AUHipass</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Apple's highpass filter unit</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/CoreAudio.component</string>
- <key>component_subtype</key>
- <string>hpas</string>
- <key>component_type</key>
- <string>aufx</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple: AUHighShelfFilter</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Apple's high shelf filter unit</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/CoreAudio.component</string>
- <key>component_subtype</key>
- <string>hshf</string>
- <key>component_type</key>
- <string>aufx</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple: AUPeakLimiter</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Apple's peak limiter unit</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/CoreAudio.component</string>
- <key>component_subtype</key>
- <string>lmtr</string>
- <key>component_type</key>
- <string>aufx</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple: AULowpass</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Apple's lowpass filter unit</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/CoreAudio.component</string>
- <key>component_subtype</key>
- <string>lpas</string>
- <key>component_type</key>
- <string>aufx</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple: AULowShelfFilter</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Apple's low shelf filter unit</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/CoreAudio.component</string>
- <key>component_subtype</key>
- <string>lshf</string>
- <key>component_type</key>
- <string>aufx</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple: AUMultibandCompressor</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Apple's four-band compressor</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/CoreAudio.component</string>
- <key>component_subtype</key>
- <string>mcmp</string>
- <key>component_type</key>
- <string>aufx</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple: AUMatrixReverb</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Apple's matrix reverb unit</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/CoreAudio.component</string>
- <key>component_subtype</key>
- <string>mrev</string>
- <key>component_type</key>
- <string>aufx</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple: AUNetSend</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Transmit audio to AU Network Receiver</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/CoreAudio.component</string>
- <key>component_subtype</key>
- <string>nsnd</string>
- <key>component_type</key>
- <string>aufx</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple: AUParametricEQ</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Apple's parametric EQ unit</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/CoreAudio.component</string>
- <key>component_subtype</key>
- <string>pmeq</string>
- <key>component_type</key>
- <string>aufx</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple: AURogerBeep</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Apple's Roger beep unit</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/CoreAudio.component</string>
- <key>component_subtype</key>
- <string>rogr</string>
- <key>component_type</key>
- <string>aufx</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple: AUSampleDelay</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Delays samples on input by specified number of samples to output</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/CoreAudio.component</string>
- <key>component_subtype</key>
- <string>sdly</string>
- <key>component_type</key>
- <string>aufx</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple: AUPitch</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Apple's pitch-shifter</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/CoreAudio.component</string>
- <key>component_subtype</key>
- <string>tmpt</string>
- <key>component_type</key>
- <string>aufx</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple: AUAudioFilePlayer</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Apple's audio file player</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/CoreAudio.component</string>
- <key>component_subtype</key>
- <string>afpl</string>
- <key>component_type</key>
- <string>augn</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple: AUNetReceive</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Receive audio from AU Network Sender</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/CoreAudio.component</string>
- <key>component_subtype</key>
- <string>nrcv</string>
- <key>component_type</key>
- <string>augn</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple: AUScheduledSoundPlayer</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Apple's scheduled sound player</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/CoreAudio.component</string>
- <key>component_subtype</key>
- <string>sspl</string>
- <key>component_type</key>
- <string>augn</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple: AUSpeechSynthesis</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Speech Synthesis audio generation</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/AUSpeechSynthesis.component</string>
- <key>component_subtype</key>
- <string>ttsp</string>
- <key>component_type</key>
- <string>augn</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple: DLSMusicDevice</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Apple's DLS or SoundFont based software synthesizer</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/CoreAudio.component</string>
- <key>component_subtype</key>
- <string>dls </string>
- <key>component_type</key>
- <string>aumu</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple: AUSampler</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Apple's mono-timbral software sampler/synthesizer</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/CoreAudio.component</string>
- <key>component_subtype</key>
- <string>samp</string>
- <key>component_type</key>
- <string>aumu</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple: AUMixer3D</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Apple's 3D mixer</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/CoreAudio.component</string>
- <key>component_subtype</key>
- <string>3dmx</string>
- <key>component_type</key>
- <string>aumx</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple: AUMultiChannelMixer</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Apple's multichannel mixer</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/CoreAudio.component</string>
- <key>component_subtype</key>
- <string>mcmx</string>
- <key>component_type</key>
- <string>aumx</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple: AUMatrixMixer</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Apple's matrix mixer</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/CoreAudio.component</string>
- <key>component_subtype</key>
- <string>mxmx</string>
- <key>component_type</key>
- <string>aumx</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple: AUMixer</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Apple's stereo and mono mixer unit</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/CoreAudio.component</string>
- <key>component_subtype</key>
- <string>smxr</string>
- <key>component_type</key>
- <string>aumx</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple: DefaultOutputUnit</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Apple's default output unit that redirects its output to the user selected default device</string>
- <key>component_manufacturer</key>
- <string>def </string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/CoreAudio.component</string>
- <key>component_subtype</key>
- <string>out </string>
- <key>component_type</key>
- <string>aunt</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple: SystemOutputUnit</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Apple's system sounds output unit that redirects its output to the user selected system sounds device</string>
- <key>component_manufacturer</key>
- <string>sys </string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/CoreAudio.component</string>
- <key>component_subtype</key>
- <string>out </string>
- <key>component_type</key>
- <string>aunt</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple: AUTimePitch</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Apple's time/pitch processor</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/CoreAudio.component</string>
- <key>component_subtype</key>
- <string>tmpt</string>
- <key>component_type</key>
- <string>auol</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple: AUVarispeed</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Apple's varispeed playback</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/CoreAudio.component</string>
- <key>component_subtype</key>
- <string>vari</string>
- <key>component_type</key>
- <string>auol</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple: AudioDeviceOutput</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>AudioDevice interface output unit</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/CoreAudio.component</string>
- <key>component_subtype</key>
- <string>ahal</string>
- <key>component_type</key>
- <string>auou</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple: DefaultOutputUnit</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Default output unit that redirects its output to the user selected default device</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/CoreAudio.component</string>
- <key>component_subtype</key>
- <string>def </string>
- <key>component_type</key>
- <string>auou</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple: GenericOutput</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>A Generic Output Unit</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/CoreAudio.component</string>
- <key>component_subtype</key>
- <string>genr</string>
- <key>component_type</key>
- <string>auou</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple: SystemOutputUnit</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>System Sounds output unit that redirects its output to the user selected System Sounds device</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/CoreAudio.component</string>
- <key>component_subtype</key>
- <string>sys </string>
- <key>component_type</key>
- <string>auou</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple: AUVoiceProcessor</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Voice processing input/output unit</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/CoreAudio.component</string>
- <key>component_subtype</key>
- <string>vpio</string>
- <key>component_type</key>
- <string>auou</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple: AUSoundFieldPanner</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Apple's sound field panner</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/CoreAudio.component</string>
- <key>component_subtype</key>
- <string>ambi</string>
- <key>component_type</key>
- <string>aupn</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple: HRTFPanner</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Apple's head related transfer function panner</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/CoreAudio.component</string>
- <key>component_subtype</key>
- <string>hrtf</string>
- <key>component_type</key>
- <string>aupn</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple: AUSphericalHeadPanner</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Apple's spherical head panner unit</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/CoreAudio.component</string>
- <key>component_subtype</key>
- <string>sphr</string>
- <key>component_type</key>
- <string>aupn</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple: AUVectorPanner</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Apple's vector based panner</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/CoreAudio.component</string>
- <key>component_subtype</key>
- <string>vbas</string>
- <key>component_type</key>
- <string>aupn</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Authentication Handler</string>
- <key>component_info</key>
- <string>Component for managing HTTP and RTSP authentication</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>http</string>
- <key>component_type</key>
- <string>auth</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Authentication Handler</string>
- <key>component_info</key>
- <string>Component for managing HTTP and RTSP authentication</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>rtsp</string>
- <key>component_type</key>
- <string>auth</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AUDLS View</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>A custom view for the DLS Synth</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/CoreAudio.component</string>
- <key>component_subtype</key>
- <string>dlsv</string>
- <key>component_type</key>
- <string>auvw</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Generic AUView</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Generic View that can be applied to any AudioUnit</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/CoreAudio.component</string>
- <key>component_subtype</key>
- <string>gnrc</string>
- <key>component_type</key>
- <string>auvw</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AUGraphicEQ View</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>A custom view for the GraphicEQ AudioUnit</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/CoreAudio.component</string>
- <key>component_subtype</key>
- <string>greq</string>
- <key>component_type</key>
- <string>auvw</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Movie Grabber</string>
- <key>component_info</key>
- <string>Assists applications recording QuickTime movies</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>0x00000000</string>
- <key>component_type</key>
- <string>barg</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Blend Blitter</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Does Blend Blits</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>blnd</string>
- <key>component_type</key>
- <string>blit</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Chroma Key Blitter</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Does Chroma Key Blits</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>ckey</string>
- <key>component_type</key>
- <string>blit</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Mask Blitter</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Does Mask Blits</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>mask</string>
- <key>component_type</key>
- <string>blit</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Matte Blitter</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Does Matte Blits</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>matt</string>
- <key>component_type</key>
- <string>blit</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>IE Prefs Updater</string>
- <key>component_info</key>
- <string>Updates IE preferences</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>wkie</string>
- <key>component_type</key>
- <string>bwak</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple CoreAudio Output Clock</string>
- <key>component_flags</key>
- <string>0x10000001</string>
- <key>component_info</key>
- <string>Provides a CoreAudio Output Clock for QuickTime</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>caou</string>
- <key>component_type</key>
- <string>clok</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple FireWire Cycle Clock</string>
- <key>component_flags</key>
- <string>0x00000001</string>
- <key>component_info</key>
- <string>Provides an 8k clock synced to FireWire for QuickTime</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeFireWireDV.component</string>
- <key>component_subtype</key>
- <string>fwcy</string>
- <key>component_type</key>
- <string>clok</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple ICM Clock</string>
- <key>component_flags</key>
- <string>0x10000002</string>
- <key>component_info</key>
- <string>Provides timing services for the ICM</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>icm </string>
- <key>component_type</key>
- <string>clok</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Microsecond Clock</string>
- <key>component_flags</key>
- <string>0x10000003</string>
- <key>component_info</key>
- <string>Provides a Microsecond Clock for QuickTime</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>micr</string>
- <key>component_type</key>
- <string>clok</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Audio Sample Clock</string>
- <key>component_flags</key>
- <string>0x00000001</string>
- <key>component_info</key>
- <string>audio sample clock</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>samp</string>
- <key>component_type</key>
- <string>clok</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Sound Clock</string>
- <key>component_flags</key>
- <string>0x00000005</string>
- <key>component_info</key>
- <string>Provides a clock based on the timing of the sound hardware.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/SoundManagerComponents.component</string>
- <key>component_subtype</key>
- <string>soun</string>
- <key>component_type</key>
- <string>clok</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Tick Clock</string>
- <key>component_flags</key>
- <string>0x00000001</string>
- <key>component_info</key>
- <string>Provides a 60th second Clock for QuickTime</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>tick</string>
- <key>component_type</key>
- <string>clok</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>rtp media conductor</string>
- <key>component_info</key>
- <string>rtp media conductor</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>rtp </string>
- <key>component_type</key>
- <string>conm</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>base receive conductor</string>
- <key>component_info</key>
- <string>base receive conductor</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>gnrc</string>
- <key>component_type</key>
- <string>conr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ShoutCast conductor</string>
- <key>component_info</key>
- <string>ShoutCast conductor</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>icy </string>
- <key>component_type</key>
- <string>conr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>rtp receive conductor</string>
- <key>component_info</key>
- <string>rtp receive conductor</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>rtp </string>
- <key>component_type</key>
- <string>conr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>rtsp conductor</string>
- <key>component_info</key>
- <string>rtsp conductor</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>rtsp</string>
- <key>component_type</key>
- <string>conr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>base send conductor</string>
- <key>component_info</key>
- <string>base send conductor</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>gnrc</string>
- <key>component_type</key>
- <string>cons</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>rtp send conductor</string>
- <key>component_info</key>
- <string>rtp send conductor</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>rtp </string>
- <key>component_type</key>
- <string>cons</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>rtsp send conductor</string>
- <key>component_info</key>
- <string>rtsp send conductor</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>rtsp</string>
- <key>component_type</key>
- <string>cons</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Cookie Handler</string>
- <key>component_info</key>
- <string>Component for managing HTTP and RTSP cookies</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>http</string>
- <key>component_type</key>
- <string>cook</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>rtp send media conductor</string>
- <key>component_info</key>
- <string>rtp send media conductor</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>rtp </string>
- <key>component_type</key>
- <string>cosm</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Data Compressor</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Apple Data Compressor service</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>adec</string>
- <key>component_type</key>
- <string>dcom</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Deflate Compressor</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Deflate Compressor service</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>zlib</string>
- <key>component_type</key>
- <string>dcom</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Data Decompressor</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Apple Data Decompressor service</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>adec</string>
- <key>component_type</key>
- <string>ddec</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Inflate Decompressor</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Inflate Decompressor service</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>zlib</string>
- <key>component_type</key>
- <string>ddec</string>
- </dict>
- <dict>
- <key>_name</key>
- <string></string>
- <key>component_info</key>
- <string></string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/IOFWDVComponents.component</string>
- <key>component_subtype</key>
- <string>fwdv</string>
- <key>component_type</key>
- <string>devc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Alias Data Handler</string>
- <key>component_flags</key>
- <string>0x10000001</string>
- <key>component_info</key>
- <string>Manages file access for QuickTime media handlers</string>
- <key>component_manufacturer</key>
- <string>alis</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>ali1</string>
- <key>component_type</key>
- <string>dhlp</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple URL File Data Handler</string>
- <key>component_flags</key>
- <string>0x10000001</string>
- <key>component_info</key>
- <string>Manages file access for QuickTime media handlers</string>
- <key>component_manufacturer</key>
- <string>url </string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>url1</string>
- <key>component_type</key>
- <string>dhlp</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Streaming file data handler</string>
- <key>component_flags</key>
- <string>0x00000002</string>
- <key>component_info</key>
- <string>Writes to disk for movie capture</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>alis</string>
- <key>component_type</key>
- <string>dhlr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Streaming file data handler</string>
- <key>component_flags</key>
- <string>0x00000002</string>
- <key>component_info</key>
- <string>Writes to disk for movie capture</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>alis</string>
- <key>component_type</key>
- <string>dhlr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Alias Data Handler</string>
- <key>component_flags</key>
- <string>0x10000001</string>
- <key>component_info</key>
- <string>Manages file access for QuickTime media handlers</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>alis</string>
- <key>component_type</key>
- <string>dhlr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Cache Data Handler</string>
- <key>component_info</key>
- <string>Data handler for caching ranges of data</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>cach</string>
- <key>component_type</key>
- <string>dhlr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Handle Data Handler</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Manages file access to Handles for QuickTime media handlers</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>hndl</string>
- <key>component_type</key>
- <string>dhlr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Handle Data Handler</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Manages file access to Handles for QuickTime media handlers</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>hndl</string>
- <key>component_type</key>
- <string>dhlr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Null Data Handler</string>
- <key>component_flags</key>
- <string>0x10000007</string>
- <key>component_info</key>
- <string>Allows QuickTime tracks to have duration without any actual media</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>null</string>
- <key>component_type</key>
- <string>dhlr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Null Data Handler</string>
- <key>component_flags</key>
- <string>0x10000007</string>
- <key>component_info</key>
- <string>Allows QuickTime tracks to have duration without any actual media</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>null</string>
- <key>component_type</key>
- <string>dhlr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Pointer Data Handler</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Manages data at arbitrary memory addresses for QuickTime media handlers</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>ptr </string>
- <key>component_type</key>
- <string>dhlr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Pointer Data Handler</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Manages data at arbitrary memory addresses for QuickTime media handlers</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>ptr </string>
- <key>component_type</key>
- <string>dhlr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Resource Data Handler</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Manages file access to Resources for QuickTime media handlers</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>rsrc</string>
- <key>component_type</key>
- <string>dhlr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Resource Data Handler</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Manages file access to Resources for QuickTime media handlers</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>rsrc</string>
- <key>component_type</key>
- <string>dhlr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Stream URL Data Handler</string>
- <key>component_flags</key>
- <string>0x00000004</string>
- <key>component_info</key>
- <string>Stream URL Data Handler</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>url </string>
- <key>component_type</key>
- <string>dhlr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple URL Data Handler</string>
- <key>component_flags</key>
- <string>0x00000003</string>
- <key>component_info</key>
- <string>Manages access to data on FTP and HTTP servers for QuickTime media handlers</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>url </string>
- <key>component_type</key>
- <string>dhlr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MultiMatrix Tween</string>
- <key>component_flags</key>
- <string>0x10000007</string>
- <key>component_info</key>
- <string>Manages file access to Handles for QuickTime media handlers</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>url </string>
- <key>component_type</key>
- <string>dhlr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MultiMatrix Tween</string>
- <key>component_flags</key>
- <string>0x10000007</string>
- <key>component_info</key>
- <string>Manages file access to Handles for QuickTime media handlers</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>url </string>
- <key>component_type</key>
- <string>dhlr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple URL File Data Handler</string>
- <key>component_flags</key>
- <string>0x10000001</string>
- <key>component_info</key>
- <string>Manages file access for QuickTime media handlers</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>url </string>
- <key>component_type</key>
- <string>dhlr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>HTTP Data Handler 2</string>
- <key>component_flags</key>
- <string>0x00000005</string>
- <key>component_info</key>
- <string>HTTP Data Handler 2</string>
- <key>component_manufacturer</key>
- <string>htt2</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>url </string>
- <key>component_type</key>
- <string>dhlr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>HTTP Data Handler</string>
- <key>component_flags</key>
- <string>0x00000005</string>
- <key>component_info</key>
- <string>HTTP Data Handler</string>
- <key>component_manufacturer</key>
- <string>http</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>url </string>
- <key>component_type</key>
- <string>dhlr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>HotPicks</string>
- <key>component_info</key>
- <string>Component that contains the Hot Picks Movie</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>htpk</string>
- <key>component_type</key>
- <string>dtcp</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>SMIL</string>
- <key>component_flags</key>
- <string>0x00044822</string>
- <key>component_info</key>
- <string>Imports a SMIL 1.0 document into a QuickTime Movie</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>.SMI</string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Wave</string>
- <key>component_flags</key>
- <string>0x1014e802</string>
- <key>component_info</key>
- <string>Imports a WAVE sound file into a QuickTime Movie</string>
- <key>component_manufacturer</key>
- <string>soun</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>.WAV</string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>3GP2 Importer</string>
- <key>component_flags</key>
- <string>0x00145c0a</string>
- <key>component_info</key>
- <string>Imports a 3GPP2 Movie file.</string>
- <key>component_manufacturer</key>
- <string>0x00000000</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>3G2 </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>3GPP Movie Importer</string>
- <key>component_flags</key>
- <string>0x00145c0a</string>
- <key>component_info</key>
- <string>Imports a 3GPP Movie file.</string>
- <key>component_manufacturer</key>
- <string>0x00000000</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>3GP </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>3GP2 Importer</string>
- <key>component_flags</key>
- <string>0x00145c0a</string>
- <key>component_info</key>
- <string>Imports a 3GPP2 Movie file.</string>
- <key>component_manufacturer</key>
- <string>0x00000000</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>3GP2</string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>3GPP Movie Importer</string>
- <key>component_flags</key>
- <string>0x00145c0a</string>
- <key>component_info</key>
- <string>Imports a 3GPP Movie file.</string>
- <key>component_manufacturer</key>
- <string>0x00000000</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>3GPP</string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>3GP2 Importer</string>
- <key>component_flags</key>
- <string>0x00164c0a</string>
- <key>component_info</key>
- <string>Imports a 3GPP2 Movie file.</string>
- <key>component_manufacturer</key>
- <string>0x00000000</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>3gp2</string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>3GPP Movie Importer</string>
- <key>component_flags</key>
- <string>0x00164c0a</string>
- <key>component_info</key>
- <string>Imports a 3GPP Movie file.</string>
- <key>component_manufacturer</key>
- <string>0x00000000</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>3gpp</string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Audio Data Transport Stream</string>
- <key>component_flags</key>
- <string>0x00345802</string>
- <key>component_info</key>
- <string>Import audio files into QuickTime movies via CoreAudio AudioFile API</string>
- <key>component_manufacturer</key>
- <string>soun</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>AAC </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AC3 (AC-3 Audio File)</string>
- <key>component_flags</key>
- <string>0x00345802</string>
- <key>component_info</key>
- <string>Import audio files into QuickTime movies via CoreAudio AudioFile API</string>
- <key>component_manufacturer</key>
- <string>soun</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>AC3 </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Audio Data Transport Stream</string>
- <key>component_flags</key>
- <string>0x00345802</string>
- <key>component_info</key>
- <string>Import audio files into QuickTime movies via CoreAudio AudioFile API</string>
- <key>component_manufacturer</key>
- <string>soun</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>ADTS</string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AIFF</string>
- <key>component_flags</key>
- <string>0x1014f802</string>
- <key>component_info</key>
- <string>Imports an AIFF sound file into a QuickTime Movie</string>
- <key>component_manufacturer</key>
- <string>soun</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>AIF </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AIFC</string>
- <key>component_flags</key>
- <string>0x1014f802</string>
- <key>component_info</key>
- <string>Imports a compressed AIFC sound file into a QuickTime Movie</string>
- <key>component_manufacturer</key>
- <string>soun</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>AIFC</string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AIFC</string>
- <key>component_flags</key>
- <string>0x1014e802</string>
- <key>component_info</key>
- <string>Imports a compressed AIFC sound file into a QuickTime Movie</string>
- <key>component_manufacturer</key>
- <string>soun</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>AIFC</string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AIFF</string>
- <key>component_flags</key>
- <string>0x1014f802</string>
- <key>component_info</key>
- <string>Imports an AIFF sound file into a QuickTime Movie</string>
- <key>component_manufacturer</key>
- <string>soun</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>AIFF</string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AIFF</string>
- <key>component_flags</key>
- <string>0x1014e802</string>
- <key>component_info</key>
- <string>Imports an AIFF sound file into a QuickTime Movie</string>
- <key>component_manufacturer</key>
- <string>soun</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>AIFF</string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AMC Importer</string>
- <key>component_flags</key>
- <string>0x00145c0a</string>
- <key>component_info</key>
- <string>Imports a AMC Movie file.</string>
- <key>component_manufacturer</key>
- <string>0x00000000</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>AMC </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AMR</string>
- <key>component_flags</key>
- <string>0x00245a03</string>
- <key>component_info</key>
- <string>Imports an AMR audio file into a QuickTime Movie</string>
- <key>component_manufacturer</key>
- <string>soun</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>AMR </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>VDU Attribute</string>
- <key>component_flags</key>
- <string>0x00241a02</string>
- <key>component_info</key>
- <string>Imports a VDU Attribute file into a QuickTime Movie</string>
- <key>component_manufacturer</key>
- <string>0x00000000</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>ATR </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AU</string>
- <key>component_flags</key>
- <string>0x10047802</string>
- <key>component_info</key>
- <string>Imports an AU file into a QuickTime Movie</string>
- <key>component_manufacturer</key>
- <string>soun</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>AU </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AVI</string>
- <key>component_flags</key>
- <string>0x10347a02</string>
- <key>component_info</key>
- <string>Imports an AVI file into a QuickTime Movie</string>
- <key>component_manufacturer</key>
- <string>0x00000000</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>AVI </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Wave</string>
- <key>component_flags</key>
- <string>0x1014f802</string>
- <key>component_info</key>
- <string>Imports a WAVE sound file into a QuickTime Movie</string>
- <key>component_manufacturer</key>
- <string>soun</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>BWF </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>CAF (CoreAudio File)</string>
- <key>component_flags</key>
- <string>0x00345802</string>
- <key>component_info</key>
- <string>Import audio files into QuickTime movies via CoreAudio AudioFile API</string>
- <key>component_manufacturer</key>
- <string>soun</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>CAF </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Compact Disc Audio (AIFF)</string>
- <key>component_flags</key>
- <string>0x1014f802</string>
- <key>component_info</key>
- <string>Imports a Compact Disc Audio (AIFF) sound file into a QuickTime Movie</string>
- <key>component_manufacturer</key>
- <string>soun</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>CDDA</string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AutoDesk Animator</string>
- <key>component_flags</key>
- <string>0x00245a02</string>
- <key>component_info</key>
- <string>Imports an AutoDesk Animator file into a QuickTime Movie</string>
- <key>component_manufacturer</key>
- <string>vide</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>CEL </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Scenarist Closed Caption Movie Importer</string>
- <key>component_flags</key>
- <string>0x00244a02</string>
- <key>component_info</key>
- <string>Imports a Scenarist Closed Caption (SCC) file into a QuickTime Movie</string>
- <key>component_manufacturer</key>
- <string>clcp</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>CLCP</string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple MPEG Import Component</string>
- <key>component_flags</key>
- <string>0x10143802</string>
- <key>component_info</key>
- <string>Converts MPEG files into QuickTime movies.</string>
- <key>component_manufacturer</key>
- <string>MPEG</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeMPEG.component</string>
- <key>component_subtype</key>
- <string>DAT </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>DV</string>
- <key>component_flags</key>
- <string>0x10047802</string>
- <key>component_info</key>
- <string>Imports a DV file into a QuickTime Movie</string>
- <key>component_manufacturer</key>
- <string>0x00000000</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>DIF </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>DV</string>
- <key>component_flags</key>
- <string>0x10047802</string>
- <key>component_info</key>
- <string>Imports a DV file into a QuickTime Movie</string>
- <key>component_manufacturer</key>
- <string>0x00000000</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>DV </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MXF</string>
- <key>component_flags</key>
- <string>0x00041802</string>
- <key>component_info</key>
- <string>Imports a MXF file into a QuickTime Movie</string>
- <key>component_manufacturer</key>
- <string>0x00000000</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>DVD </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AutoDesk Animator</string>
- <key>component_flags</key>
- <string>0x00245a02</string>
- <key>component_info</key>
- <string>Imports an AutoDesk Animator file into a QuickTime Movie</string>
- <key>component_manufacturer</key>
- <string>vide</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>FLC </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AutoDesk Animator</string>
- <key>component_flags</key>
- <string>0x00245a02</string>
- <key>component_info</key>
- <string>Imports an AutoDesk Animator file into a QuickTime Movie</string>
- <key>component_manufacturer</key>
- <string>vide</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>FLI </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AutoDesk Animator</string>
- <key>component_flags</key>
- <string>0x00244a02</string>
- <key>component_info</key>
- <string>Imports an AutoDesk Animator file into a QuickTime Movie</string>
- <key>component_manufacturer</key>
- <string>vide</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>FLI </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Animated GIF</string>
- <key>component_flags</key>
- <string>0x10045802</string>
- <key>component_info</key>
- <string>Imports an animated GIF file into a QuickTime Movie</string>
- <key>component_manufacturer</key>
- <string>vide</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>GIF </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Animated GIF</string>
- <key>component_flags</key>
- <string>0x10044802</string>
- <key>component_info</key>
- <string>Imports an animated GIF file into a QuickTime Movie</string>
- <key>component_manufacturer</key>
- <string>vide</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>GIFf</string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>GSM Audio Importer</string>
- <key>component_flags</key>
- <string>0x00045802</string>
- <key>component_info</key>
- <string>Apple GSM Audio</string>
- <key>component_manufacturer</key>
- <string>soun</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>GSM </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>GSM Audio Importer</string>
- <key>component_flags</key>
- <string>0x00044802</string>
- <key>component_info</key>
- <string>Apple GSM Audio</string>
- <key>component_manufacturer</key>
- <string>soun</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>GSM </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Standard MIDI</string>
- <key>component_flags</key>
- <string>0x00245a07</string>
- <key>component_info</key>
- <string>Imports a Standard MIDI File into a QuickTime movie</string>
- <key>component_manufacturer</key>
- <string>musi</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>KAR </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Standard MIDI</string>
- <key>component_flags</key>
- <string>0x00245a07</string>
- <key>component_info</key>
- <string>Imports a Standard MIDI File into a QuickTime movie</string>
- <key>component_manufacturer</key>
- <string>musi</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>KAR </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple MPEG Import Component</string>
- <key>component_flags</key>
- <string>0x10143802</string>
- <key>component_info</key>
- <string>Converts MPEG files into QuickTime movies.</string>
- <key>component_manufacturer</key>
- <string>m1v </string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeMPEG.component</string>
- <key>component_subtype</key>
- <string>M15 </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple MPEG Import Component</string>
- <key>component_flags</key>
- <string>0x10143802</string>
- <key>component_info</key>
- <string>Converts MPEG files into QuickTime movies.</string>
- <key>component_manufacturer</key>
- <string>m1a </string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeMPEG.component</string>
- <key>component_subtype</key>
- <string>M1A </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple MPEG Import Component</string>
- <key>component_flags</key>
- <string>0x10142802</string>
- <key>component_info</key>
- <string>Converts MPEG files into QuickTime movies.</string>
- <key>component_manufacturer</key>
- <string>m1a </string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeMPEG.component</string>
- <key>component_subtype</key>
- <string>M1A </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple MPEG Import Component</string>
- <key>component_flags</key>
- <string>0x10143802</string>
- <key>component_info</key>
- <string>Converts MPEG files into QuickTime movies.</string>
- <key>component_manufacturer</key>
- <string>MPEG</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeMPEG.component</string>
- <key>component_subtype</key>
- <string>M1S </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple MPEG Import Component</string>
- <key>component_flags</key>
- <string>0x10143802</string>
- <key>component_info</key>
- <string>Converts MPEG files into QuickTime movies.</string>
- <key>component_manufacturer</key>
- <string>m1v </string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeMPEG.component</string>
- <key>component_subtype</key>
- <string>M1V </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple MPEG Import Component</string>
- <key>component_flags</key>
- <string>0x10142802</string>
- <key>component_info</key>
- <string>Converts MPEG files into QuickTime movies.</string>
- <key>component_manufacturer</key>
- <string>m1v </string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeMPEG.component</string>
- <key>component_subtype</key>
- <string>M1V </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple MPEG Import Component</string>
- <key>component_flags</key>
- <string>0x10143802</string>
- <key>component_info</key>
- <string>Converts MPEG files into QuickTime movies.</string>
- <key>component_manufacturer</key>
- <string>m1a </string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeMPEG.component</string>
- <key>component_subtype</key>
- <string>M2A </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>SMIL</string>
- <key>component_flags</key>
- <string>0x00045822</string>
- <key>component_info</key>
- <string>Imports a SMIL 1.0 document into a QuickTime Movie</string>
- <key>component_manufacturer</key>
- <string>0x00000000</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>M3U </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>SMIL</string>
- <key>component_flags</key>
- <string>0x00045822</string>
- <key>component_info</key>
- <string>Imports a SMIL 1.0 document into a QuickTime Movie</string>
- <key>component_manufacturer</key>
- <string>0x00000000</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>M3U </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AMF movie importer</string>
- <key>component_flags</key>
- <string>0x10265c0a</string>
- <key>component_info</key>
- <string>AMF movie importer</string>
- <key>component_manufacturer</key>
- <string>soun</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>M4A </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AMF movie importer</string>
- <key>component_flags</key>
- <string>0x10245c0a</string>
- <key>component_info</key>
- <string>AMF movie importer</string>
- <key>component_manufacturer</key>
- <string>soun</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>M4B </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AMF movie importer</string>
- <key>component_flags</key>
- <string>0x10245c0a</string>
- <key>component_info</key>
- <string>AMF movie importer</string>
- <key>component_manufacturer</key>
- <string>soun</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>M4B </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AMF movie importer</string>
- <key>component_flags</key>
- <string>0x10245c0a</string>
- <key>component_info</key>
- <string>AMF movie importer</string>
- <key>component_manufacturer</key>
- <string>soun</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>M4P </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AMF movie importer</string>
- <key>component_flags</key>
- <string>0x10245c0a</string>
- <key>component_info</key>
- <string>AMF movie importer</string>
- <key>component_manufacturer</key>
- <string>soun</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>M4P </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AMF movie importer</string>
- <key>component_flags</key>
- <string>0x10245c0a</string>
- <key>component_info</key>
- <string>AMF movie importer</string>
- <key>component_manufacturer</key>
- <string>vide</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>M4V </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AMF movie importer</string>
- <key>component_flags</key>
- <string>0x10245c0a</string>
- <key>component_info</key>
- <string>AMF movie importer</string>
- <key>component_manufacturer</key>
- <string>vide</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>M4V </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple MPEG Import Component</string>
- <key>component_flags</key>
- <string>0x10143802</string>
- <key>component_info</key>
- <string>Converts MPEG files into QuickTime movies.</string>
- <key>component_manufacturer</key>
- <string>m1v </string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeMPEG.component</string>
- <key>component_subtype</key>
- <string>M75 </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Standard MIDI</string>
- <key>component_flags</key>
- <string>0x00245a07</string>
- <key>component_info</key>
- <string>Imports a Standard MIDI File into a QuickTime movie</string>
- <key>component_manufacturer</key>
- <string>musi</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>MID </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Standard MIDI</string>
- <key>component_flags</key>
- <string>0x00245a07</string>
- <key>component_info</key>
- <string>Imports a Standard MIDI File into a QuickTime movie</string>
- <key>component_manufacturer</key>
- <string>musi</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>MID </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Standard MIDI</string>
- <key>component_flags</key>
- <string>0x00245a07</string>
- <key>component_info</key>
- <string>Imports a Standard MIDI File into a QuickTime movie</string>
- <key>component_manufacturer</key>
- <string>musi</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>MIDI</string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Standard MIDI</string>
- <key>component_flags</key>
- <string>0x00245a07</string>
- <key>component_info</key>
- <string>Imports a Standard MIDI File into a QuickTime movie</string>
- <key>component_manufacturer</key>
- <string>musi</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>MIDI</string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Movie</string>
- <key>component_flags</key>
- <string>0x10001802</string>
- <key>component_info</key>
- <string></string>
- <key>component_manufacturer</key>
- <string>0x00000000</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>MOV </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple MPEG Import Component</string>
- <key>component_flags</key>
- <string>0x10143802</string>
- <key>component_info</key>
- <string>Converts MPEG files into QuickTime movies.</string>
- <key>component_manufacturer</key>
- <string>m1a </string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeMPEG.component</string>
- <key>component_subtype</key>
- <string>MP2 </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MPEG Layer-3 Audio</string>
- <key>component_flags</key>
- <string>0x1034ab03</string>
- <key>component_info</key>
- <string>Fraunhofer IIS MPEG Layer-3 Audio</string>
- <key>component_manufacturer</key>
- <string>soun</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>MP3 </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MPEG Layer-3 Audio</string>
- <key>component_flags</key>
- <string>0x1034bb03</string>
- <key>component_info</key>
- <string>Fraunhofer IIS MPEG Layer-3 Audio</string>
- <key>component_manufacturer</key>
- <string>soun</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>MP3 </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MPEG Layer-3 Audio</string>
- <key>component_flags</key>
- <string>0x1034ab03</string>
- <key>component_info</key>
- <string>Fraunhofer IIS MPEG Layer-3 Audio</string>
- <key>component_manufacturer</key>
- <string>soun</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>MP3 </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MPEG Layer-3 Audio</string>
- <key>component_flags</key>
- <string>0x1034bb03</string>
- <key>component_info</key>
- <string>Fraunhofer IIS MPEG Layer-3 Audio</string>
- <key>component_manufacturer</key>
- <string>soun</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>MP3 </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MPEG-4 Importer</string>
- <key>component_flags</key>
- <string>0x10245c0a</string>
- <key>component_info</key>
- <string>Imports an MPEG-4 Movie file.</string>
- <key>component_manufacturer</key>
- <string>0x00000000</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeMPEG4.component</string>
- <key>component_subtype</key>
- <string>MP4 </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple MPEG Import Component</string>
- <key>component_flags</key>
- <string>0x10143802</string>
- <key>component_info</key>
- <string>Converts MPEG files into QuickTime movies.</string>
- <key>component_manufacturer</key>
- <string>m1a </string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeMPEG.component</string>
- <key>component_subtype</key>
- <string>MPA </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MPEG Layer-3 Audio</string>
- <key>component_flags</key>
- <string>0x1034bb03</string>
- <key>component_info</key>
- <string>Fraunhofer IIS MPEG Layer-3 Audio</string>
- <key>component_manufacturer</key>
- <string>soun</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>MPA </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MPEG Layer-3 Audio</string>
- <key>component_flags</key>
- <string>0x1034bb03</string>
- <key>component_info</key>
- <string>Fraunhofer IIS MPEG Layer-3 Audio</string>
- <key>component_manufacturer</key>
- <string>soun</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>MPA </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple MPEG Import Component</string>
- <key>component_flags</key>
- <string>0x10143802</string>
- <key>component_info</key>
- <string>Converts MPEG files into QuickTime movies.</string>
- <key>component_manufacturer</key>
- <string>MPEG</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeMPEG.component</string>
- <key>component_subtype</key>
- <string>MPEG</string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple MPEG Import Component</string>
- <key>component_flags</key>
- <string>0x10146802</string>
- <key>component_info</key>
- <string>Converts MPEG files into QuickTime movies.</string>
- <key>component_manufacturer</key>
- <string>MPEG</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeMPEG.component</string>
- <key>component_subtype</key>
- <string>MPEG</string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple MPEG Import Component</string>
- <key>component_flags</key>
- <string>0x10143802</string>
- <key>component_info</key>
- <string>Converts MPEG files into QuickTime movies.</string>
- <key>component_manufacturer</key>
- <string>m1a </string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeMPEG.component</string>
- <key>component_subtype</key>
- <string>MPEG</string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple MPEG Import Component</string>
- <key>component_flags</key>
- <string>0x10142802</string>
- <key>component_info</key>
- <string>Converts MPEG files into QuickTime movies.</string>
- <key>component_manufacturer</key>
- <string>m1a </string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeMPEG.component</string>
- <key>component_subtype</key>
- <string>MPEG</string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple MPEG Import Component</string>
- <key>component_flags</key>
- <string>0x10143802</string>
- <key>component_info</key>
- <string>Converts MPEG files into QuickTime movies.</string>
- <key>component_manufacturer</key>
- <string>m1v </string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeMPEG.component</string>
- <key>component_subtype</key>
- <string>MPEG</string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple MPEG Import Component</string>
- <key>component_flags</key>
- <string>0x10142802</string>
- <key>component_info</key>
- <string>Converts MPEG files into QuickTime movies.</string>
- <key>component_manufacturer</key>
- <string>m1v </string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeMPEG.component</string>
- <key>component_subtype</key>
- <string>MPEG</string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MPEG Layer-3 Audio</string>
- <key>component_flags</key>
- <string>0x1034ab03</string>
- <key>component_info</key>
- <string>Fraunhofer IIS MPEG Layer-3 Audio</string>
- <key>component_manufacturer</key>
- <string>soun</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>MPEG</string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MPEG Layer-3 Audio</string>
- <key>component_flags</key>
- <string>0x1034ab03</string>
- <key>component_info</key>
- <string>Fraunhofer IIS MPEG Layer-3 Audio</string>
- <key>component_manufacturer</key>
- <string>soun</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>MPEG</string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple MPEG Import Component</string>
- <key>component_flags</key>
- <string>0x10143802</string>
- <key>component_info</key>
- <string>Converts MPEG files into QuickTime movies.</string>
- <key>component_manufacturer</key>
- <string>MPEG</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeMPEG.component</string>
- <key>component_subtype</key>
- <string>MPG </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple MPEG Import Component</string>
- <key>component_flags</key>
- <string>0x10142802</string>
- <key>component_info</key>
- <string>Converts MPEG files into QuickTime movies.</string>
- <key>component_manufacturer</key>
- <string>MPEG</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeMPEG.component</string>
- <key>component_subtype</key>
- <string>MPG </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple MPEG Import Component</string>
- <key>component_flags</key>
- <string>0x10143802</string>
- <key>component_info</key>
- <string>Converts MPEG files into QuickTime movies.</string>
- <key>component_manufacturer</key>
- <string>m1a </string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeMPEG.component</string>
- <key>component_subtype</key>
- <string>MPG </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple MPEG Import Component</string>
- <key>component_flags</key>
- <string>0x10142802</string>
- <key>component_info</key>
- <string>Converts MPEG files into QuickTime movies.</string>
- <key>component_manufacturer</key>
- <string>m1a </string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeMPEG.component</string>
- <key>component_subtype</key>
- <string>MPG </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple MPEG Import Component</string>
- <key>component_flags</key>
- <string>0x10143802</string>
- <key>component_info</key>
- <string>Converts MPEG files into QuickTime movies.</string>
- <key>component_manufacturer</key>
- <string>m1v </string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeMPEG.component</string>
- <key>component_subtype</key>
- <string>MPG </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple MPEG Import Component</string>
- <key>component_flags</key>
- <string>0x10142802</string>
- <key>component_info</key>
- <string>Converts MPEG files into QuickTime movies.</string>
- <key>component_manufacturer</key>
- <string>m1v </string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeMPEG.component</string>
- <key>component_subtype</key>
- <string>MPG </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MPEG Layer-3 Audio</string>
- <key>component_flags</key>
- <string>0x1034bb03</string>
- <key>component_info</key>
- <string>Fraunhofer IIS MPEG Layer-3 Audio</string>
- <key>component_manufacturer</key>
- <string>soun</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>MPG </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MPEG Layer-3 Audio</string>
- <key>component_flags</key>
- <string>0x1034bb03</string>
- <key>component_info</key>
- <string>Fraunhofer IIS MPEG Layer-3 Audio</string>
- <key>component_manufacturer</key>
- <string>soun</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>MPG </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple MPEG Import Component</string>
- <key>component_flags</key>
- <string>0x10142802</string>
- <key>component_info</key>
- <string>Converts MPEG files into QuickTime movies.</string>
- <key>component_manufacturer</key>
- <string>m1a </string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeMPEG.component</string>
- <key>component_subtype</key>
- <string>MPG2</string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MPEG Layer-3 Audio</string>
- <key>component_flags</key>
- <string>0x1034ab03</string>
- <key>component_info</key>
- <string>Fraunhofer IIS MPEG Layer-3 Audio</string>
- <key>component_manufacturer</key>
- <string>soun</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>MPG3</string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MPEG Layer-3 Audio</string>
- <key>component_flags</key>
- <string>0x1034ab03</string>
- <key>component_info</key>
- <string>Fraunhofer IIS MPEG Layer-3 Audio</string>
- <key>component_manufacturer</key>
- <string>soun</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>MPG3</string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple MPEG Import Component</string>
- <key>component_flags</key>
- <string>0x10142802</string>
- <key>component_info</key>
- <string>Converts MPEG files into QuickTime movies.</string>
- <key>component_manufacturer</key>
- <string>m1a </string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeMPEG.component</string>
- <key>component_subtype</key>
- <string>MPGA</string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple MPEG Import Component</string>
- <key>component_flags</key>
- <string>0x10142802</string>
- <key>component_info</key>
- <string>Converts MPEG files into QuickTime movies.</string>
- <key>component_manufacturer</key>
- <string>m1v </string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeMPEG.component</string>
- <key>component_subtype</key>
- <string>MPGV</string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple MPEG Import Component</string>
- <key>component_flags</key>
- <string>0x10142802</string>
- <key>component_info</key>
- <string>Converts MPEG files into QuickTime movies.</string>
- <key>component_manufacturer</key>
- <string>m1a </string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeMPEG.component</string>
- <key>component_subtype</key>
- <string>MPGa</string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple MPEG Import Component</string>
- <key>component_flags</key>
- <string>0x10142802</string>
- <key>component_info</key>
- <string>Converts MPEG files into QuickTime movies.</string>
- <key>component_manufacturer</key>
- <string>m1v </string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeMPEG.component</string>
- <key>component_subtype</key>
- <string>MPGv</string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple MPEG Import Component</string>
- <key>component_flags</key>
- <string>0x10142802</string>
- <key>component_info</key>
- <string>Converts MPEG files into QuickTime movies.</string>
- <key>component_manufacturer</key>
- <string>MPEG</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeMPEG.component</string>
- <key>component_subtype</key>
- <string>MPGx</string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple MPEG Import Component</string>
- <key>component_flags</key>
- <string>0x10143802</string>
- <key>component_info</key>
- <string>Converts MPEG files into QuickTime movies.</string>
- <key>component_manufacturer</key>
- <string>MPEG</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeMPEG.component</string>
- <key>component_subtype</key>
- <string>MPM </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple MPEG Import Component</string>
- <key>component_flags</key>
- <string>0x10143802</string>
- <key>component_info</key>
- <string>Converts MPEG files into QuickTime movies.</string>
- <key>component_manufacturer</key>
- <string>m1v </string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeMPEG.component</string>
- <key>component_subtype</key>
- <string>MPV </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Standard MIDI</string>
- <key>component_flags</key>
- <string>0x00244a07</string>
- <key>component_info</key>
- <string>Imports a Standard MIDI File into a QuickTime movie</string>
- <key>component_manufacturer</key>
- <string>musi</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>Midi</string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MPEG Layer-3 Audio</string>
- <key>component_flags</key>
- <string>0x1034eb03</string>
- <key>component_info</key>
- <string>Fraunhofer IIS MPEG Layer-3 Audio</string>
- <key>component_manufacturer</key>
- <string>soun</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>Mp3 </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Picture</string>
- <key>component_flags</key>
- <string>0x00005047</string>
- <key>component_info</key>
- <string>Imports Pictures into a QuickTime Movie</string>
- <key>component_manufacturer</key>
- <string>vide</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>PCT </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>PDF Image</string>
- <key>component_flags</key>
- <string>0x00045802</string>
- <key>component_info</key>
- <string></string>
- <key>component_manufacturer</key>
- <string>vide</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/PDFImporter.component</string>
- <key>component_subtype</key>
- <string>PDF </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>PDF Image</string>
- <key>component_flags</key>
- <string>0x00044802</string>
- <key>component_info</key>
- <string></string>
- <key>component_manufacturer</key>
- <string>vide</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/PDFImporter.component</string>
- <key>component_subtype</key>
- <string>PDF </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Picture</string>
- <key>component_flags</key>
- <string>0x00005047</string>
- <key>component_info</key>
- <string>Imports Pictures into a QuickTime Movie</string>
- <key>component_manufacturer</key>
- <string>vide</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>PIC </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>PICS</string>
- <key>component_flags</key>
- <string>0x00000006</string>
- <key>component_info</key>
- <string>Imports a PICS file into a QuickTime Movie</string>
- <key>component_manufacturer</key>
- <string>vide</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>PICS</string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Picture</string>
- <key>component_flags</key>
- <string>0x00005047</string>
- <key>component_info</key>
- <string>Imports Pictures into a QuickTime Movie</string>
- <key>component_manufacturer</key>
- <string>vide</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>PICT</string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Picture</string>
- <key>component_flags</key>
- <string>0x00004047</string>
- <key>component_info</key>
- <string>Imports Pictures into a QuickTime Movie</string>
- <key>component_manufacturer</key>
- <string>vide</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>PICT</string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MPEG Layer-3 Audio</string>
- <key>component_flags</key>
- <string>0x1034ab03</string>
- <key>component_info</key>
- <string>Fraunhofer IIS MPEG Layer-3 Audio</string>
- <key>component_manufacturer</key>
- <string>soun</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>PLAY</string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MPEG Layer-3 Audio</string>
- <key>component_flags</key>
- <string>0x1034ab03</string>
- <key>component_info</key>
- <string>Fraunhofer IIS MPEG Layer-3 Audio</string>
- <key>component_manufacturer</key>
- <string>soun</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>PLAY</string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ShoutCast</string>
- <key>component_flags</key>
- <string>0x00045c02</string>
- <key>component_info</key>
- <string>ShoutCast</string>
- <key>component_manufacturer</key>
- <string>strm</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>PLS </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>QUALCOMM PureVoice Importer</string>
- <key>component_flags</key>
- <string>0x00045202</string>
- <key>component_info</key>
- <string>Imports QUALCOMM PureVoice audio files.</string>
- <key>component_manufacturer</key>
- <string>soun</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>QCP </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>HTML document</string>
- <key>component_flags</key>
- <string>0x00045803</string>
- <key>component_info</key>
- <string>Import media elements from HTML documents into QuickTime movies</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>QHT </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>HTML document</string>
- <key>component_flags</key>
- <string>0x00045803</string>
- <key>component_info</key>
- <string>Import media elements from HTML documents into QuickTime movies</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>QHTM</string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>QTPreFlight</string>
- <key>component_flags</key>
- <string>0x00045822</string>
- <key>component_info</key>
- <string>Imports a QuickTime preflight text file.</string>
- <key>component_manufacturer</key>
- <string>0x00000000</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>QTPF</string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Quartz Composer Eater</string>
- <key>component_flags</key>
- <string>0x00245a02</string>
- <key>component_info</key>
- <string>Imports a Quartz composition.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuartzComposer.component</string>
- <key>component_subtype</key>
- <string>QTZ </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple MPEG Import Component</string>
- <key>component_flags</key>
- <string>0x10143842</string>
- <key>component_info</key>
- <string>Converts MPEG files into QuickTime movies.</string>
- <key>component_manufacturer</key>
- <string>MPEG</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeMPEG.component</string>
- <key>component_subtype</key>
- <string>RTF </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Real Time Streaming Protocol</string>
- <key>component_flags</key>
- <string>0x00045802</string>
- <key>component_info</key>
- <string>Real Time Streaming Protocol</string>
- <key>component_manufacturer</key>
- <string>strm</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>RTSP</string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Scenarist Closed Caption Movie Importer</string>
- <key>component_flags</key>
- <string>0x00245a02</string>
- <key>component_info</key>
- <string>Imports a Scenarist Closed Caption (SCC) file into a QuickTime Movie</string>
- <key>component_manufacturer</key>
- <string>clcp</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>SCC </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Sound Designer II</string>
- <key>component_flags</key>
- <string>0x00047802</string>
- <key>component_info</key>
- <string>Imports a Sound Designer II file into a QuickTime Movie</string>
- <key>component_manufacturer</key>
- <string>soun</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>SD2 </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Session Description Protocol</string>
- <key>component_flags</key>
- <string>0x00045802</string>
- <key>component_info</key>
- <string>Session Description Protocol</string>
- <key>component_manufacturer</key>
- <string>strm</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>SDP </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>3GPP Movie Importer</string>
- <key>component_flags</key>
- <string>0x00145c0a</string>
- <key>component_info</key>
- <string>Imports a 3GPP Movie file.</string>
- <key>component_manufacturer</key>
- <string>0x00000000</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>SDV </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Sound</string>
- <key>component_flags</key>
- <string>0x00001002</string>
- <key>component_info</key>
- <string>Imports a System 7 Sound file into a QuickTime Movie</string>
- <key>component_manufacturer</key>
- <string>soun</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>SFIL</string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Skin</string>
- <key>component_flags</key>
- <string>0x00045822</string>
- <key>component_info</key>
- <string>Imports a Skin text file.</string>
- <key>component_manufacturer</key>
- <string>skin</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>SKIN</string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Standard MIDI</string>
- <key>component_flags</key>
- <string>0x00245a07</string>
- <key>component_info</key>
- <string>Imports a Standard MIDI File into a QuickTime movie</string>
- <key>component_manufacturer</key>
- <string>musi</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>SMF </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Standard MIDI</string>
- <key>component_flags</key>
- <string>0x00245a07</string>
- <key>component_info</key>
- <string>Imports a Standard MIDI File into a QuickTime movie</string>
- <key>component_manufacturer</key>
- <string>musi</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>SMF </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>SMIL</string>
- <key>component_flags</key>
- <string>0x00045822</string>
- <key>component_info</key>
- <string>Imports a SMIL 1.0 document into a QuickTime Movie</string>
- <key>component_manufacturer</key>
- <string>0x00000000</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>SMI </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>SMIL</string>
- <key>component_flags</key>
- <string>0x00045822</string>
- <key>component_info</key>
- <string>Imports a SMIL 1.0 document into a QuickTime Movie</string>
- <key>component_manufacturer</key>
- <string>0x00000000</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>SMI </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>SMIL</string>
- <key>component_flags</key>
- <string>0x00044822</string>
- <key>component_info</key>
- <string>Imports a SMIL 1.0 document into a QuickTime Movie</string>
- <key>component_manufacturer</key>
- <string>0x00000000</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>SMIL</string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>SMIL</string>
- <key>component_flags</key>
- <string>0x00045822</string>
- <key>component_info</key>
- <string>Imports a SMIL 1.0 document into a QuickTime Movie</string>
- <key>component_manufacturer</key>
- <string>0x00000000</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>SMIL</string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>SMIL</string>
- <key>component_flags</key>
- <string>0x00044822</string>
- <key>component_info</key>
- <string>Imports a SMIL 1.0 document into a QuickTime Movie</string>
- <key>component_manufacturer</key>
- <string>0x00000000</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>SMIL</string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>SMIL</string>
- <key>component_flags</key>
- <string>0x00045822</string>
- <key>component_info</key>
- <string>Imports a SMIL 1.0 document into a QuickTime Movie</string>
- <key>component_manufacturer</key>
- <string>0x00000000</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>SMIL</string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>SMIL</string>
- <key>component_flags</key>
- <string>0x00045822</string>
- <key>component_info</key>
- <string>Imports a SMIL 1.0 document into a QuickTime Movie</string>
- <key>component_manufacturer</key>
- <string>0x00000000</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>SML </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>SMIL</string>
- <key>component_flags</key>
- <string>0x00045822</string>
- <key>component_info</key>
- <string>Imports a SMIL 1.0 document into a QuickTime Movie</string>
- <key>component_manufacturer</key>
- <string>0x00000000</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>SML </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AU</string>
- <key>component_flags</key>
- <string>0x10047802</string>
- <key>component_info</key>
- <string>Imports an AU file into a QuickTime Movie</string>
- <key>component_manufacturer</key>
- <string>soun</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>SND </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MPEG Layer-3 Audio</string>
- <key>component_flags</key>
- <string>0x1034bb03</string>
- <key>component_info</key>
- <string>Fraunhofer IIS MPEG Layer-3 Audio</string>
- <key>component_manufacturer</key>
- <string>soun</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>SWA </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MPEG Layer-3 Audio</string>
- <key>component_flags</key>
- <string>0x1034bb03</string>
- <key>component_info</key>
- <string>Fraunhofer IIS MPEG Layer-3 Audio</string>
- <key>component_manufacturer</key>
- <string>soun</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>SWA </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Sound Designer II</string>
- <key>component_flags</key>
- <string>0x00046802</string>
- <key>component_info</key>
- <string>Imports a Sound Designer II file into a QuickTime Movie</string>
- <key>component_manufacturer</key>
- <string>soun</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>Sd2f</string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MPEG Layer-3 Audio</string>
- <key>component_flags</key>
- <string>0x1034ab03</string>
- <key>component_info</key>
- <string>Fraunhofer IIS MPEG Layer-3 Audio</string>
- <key>component_manufacturer</key>
- <string>soun</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>SwaT</string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MPEG Layer-3 Audio</string>
- <key>component_flags</key>
- <string>0x1034ab03</string>
- <key>component_info</key>
- <string>Fraunhofer IIS MPEG Layer-3 Audio</string>
- <key>component_manufacturer</key>
- <string>soun</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>SwaT</string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Text</string>
- <key>component_flags</key>
- <string>0x00044847</string>
- <key>component_info</key>
- <string>Imports text into a QuickTime Movie</string>
- <key>component_manufacturer</key>
- <string>text</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>TEXT</string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>TeXML Movie Importer</string>
- <key>component_flags</key>
- <string>0x00254a62</string>
- <key>component_info</key>
- <string>Imports a TeXML file into a QuickTime Movie</string>
- <key>component_manufacturer</key>
- <string>tx3g</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>TEXT</string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Text</string>
- <key>component_flags</key>
- <string>0x00045847</string>
- <key>component_info</key>
- <string>Imports text into a QuickTime Movie</string>
- <key>component_manufacturer</key>
- <string>text</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>TXT </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AU</string>
- <key>component_flags</key>
- <string>0x10046802</string>
- <key>component_info</key>
- <string>Imports an AU file into a QuickTime Movie</string>
- <key>component_manufacturer</key>
- <string>soun</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>ULAW</string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AU</string>
- <key>component_flags</key>
- <string>0x10047802</string>
- <key>component_info</key>
- <string>Imports an AU file into a QuickTime Movie</string>
- <key>component_manufacturer</key>
- <string>soun</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>ULW </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AVI</string>
- <key>component_flags</key>
- <string>0x10347a02</string>
- <key>component_info</key>
- <string>Imports an AVI file into a QuickTime Movie</string>
- <key>component_manufacturer</key>
- <string>0x00000000</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>VFW </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AVI</string>
- <key>component_flags</key>
- <string>0x10346a02</string>
- <key>component_info</key>
- <string>Imports an AVI file into a QuickTime Movie</string>
- <key>component_manufacturer</key>
- <string>0x00000000</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>VfW </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Wave</string>
- <key>component_flags</key>
- <string>0x1014f802</string>
- <key>component_info</key>
- <string>Imports a WAVE sound file into a QuickTime Movie</string>
- <key>component_manufacturer</key>
- <string>soun</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>WAV </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Wave</string>
- <key>component_flags</key>
- <string>0x1014e802</string>
- <key>component_info</key>
- <string>Imports a WAVE sound file into a QuickTime Movie</string>
- <key>component_manufacturer</key>
- <string>soun</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>WAVE</string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AC3 (AC-3 Audio File)</string>
- <key>component_flags</key>
- <string>0x00344802</string>
- <key>component_info</key>
- <string>Import audio files into QuickTime movies via CoreAudio AudioFile API</string>
- <key>component_manufacturer</key>
- <string>soun</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>ac-3</string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Audio Data Transport Stream</string>
- <key>component_flags</key>
- <string>0x00344802</string>
- <key>component_info</key>
- <string>Import audio files into QuickTime movies via CoreAudio AudioFile API</string>
- <key>component_manufacturer</key>
- <string>soun</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>adts</string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AMC Importer</string>
- <key>component_flags</key>
- <string>0x00144c0a</string>
- <key>component_info</key>
- <string>Imports a AMC Movie file.</string>
- <key>component_manufacturer</key>
- <string>0x00000000</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>amc </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AMR</string>
- <key>component_flags</key>
- <string>0x00244a03</string>
- <key>component_info</key>
- <string>Imports an AMR audio file into a QuickTime Movie</string>
- <key>component_manufacturer</key>
- <string>soun</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>amr </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>VDU Attribute</string>
- <key>component_flags</key>
- <string>0x00240a02</string>
- <key>component_info</key>
- <string>Imports a VDU Attribute file into a QuickTime Movie</string>
- <key>component_manufacturer</key>
- <string>0x00000000</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>attr</string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>CAF (CoreAudio File)</string>
- <key>component_flags</key>
- <string>0x00344802</string>
- <key>component_info</key>
- <string>Import audio files into QuickTime movies via CoreAudio AudioFile API</string>
- <key>component_manufacturer</key>
- <string>soun</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>caff</string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Compact Disc Audio (AIFF)</string>
- <key>component_flags</key>
- <string>0x1014e802</string>
- <key>component_info</key>
- <string>Imports a Compact Disc Audio (AIFF) sound file into a QuickTime Movie</string>
- <key>component_manufacturer</key>
- <string>soun</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>cdda</string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>QUALCOMM PureVoice Importer</string>
- <key>component_flags</key>
- <string>0x00044202</string>
- <key>component_info</key>
- <string>Imports QUALCOMM PureVoice audio files.</string>
- <key>component_manufacturer</key>
- <string>soun</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>celp</string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>DV</string>
- <key>component_flags</key>
- <string>0x10046802</string>
- <key>component_info</key>
- <string>Imports a DV file into a QuickTime Movie</string>
- <key>component_manufacturer</key>
- <string>0x00000000</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>dvc!</string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>QuickTime Media Link</string>
- <key>component_flags</key>
- <string>0x00144c20</string>
- <key>component_info</key>
- <string>Imports a QuickTime Media Link file.</string>
- <key>component_manufacturer</key>
- <string>0x00000000</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>embd</string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Graphic Files</string>
- <key>component_flags</key>
- <string>0x10044806</string>
- <key>component_info</key>
- <string>Imports one or more graphic files into a QuickTime Movie</string>
- <key>component_manufacturer</key>
- <string>0x00000000</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>grip</string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Movie</string>
- <key>component_flags</key>
- <string>0x10000001</string>
- <key>component_info</key>
- <string>Imports a Movie into a QuickTime Movie</string>
- <key>component_manufacturer</key>
- <string>0x00000000</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>moov</string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MPEG-4 Importer</string>
- <key>component_flags</key>
- <string>0x10264c0a</string>
- <key>component_info</key>
- <string>Imports an MPEG-4 Movie file.</string>
- <key>component_manufacturer</key>
- <string>0x00000000</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeMPEG4.component</string>
- <key>component_subtype</key>
- <string>mpg4</string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MXF</string>
- <key>component_flags</key>
- <string>0x00040802</string>
- <key>component_info</key>
- <string>Imports a MXF file into a QuickTime Movie</string>
- <key>component_manufacturer</key>
- <string>0x00000000</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>mxfd</string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ShoutCast</string>
- <key>component_flags</key>
- <string>0x00045c02</string>
- <key>component_info</key>
- <string>ShoutCast</string>
- <key>component_manufacturer</key>
- <string>strm</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>pls </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>HTML document</string>
- <key>component_flags</key>
- <string>0x00044803</string>
- <key>component_info</key>
- <string>Import media elements from HTML documents into QuickTime movies</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>qhtm</string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Real Time Streaming Protocol</string>
- <key>component_flags</key>
- <string>0x00044802</string>
- <key>component_info</key>
- <string>Real Time Streaming Protocol</string>
- <key>component_manufacturer</key>
- <string>strm</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>rtsp</string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Session Description Protocol</string>
- <key>component_flags</key>
- <string>0x00044802</string>
- <key>component_info</key>
- <string>Session Description Protocol</string>
- <key>component_manufacturer</key>
- <string>strm</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>sdp </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>3GPP Movie Importer</string>
- <key>component_flags</key>
- <string>0x00144c0a</string>
- <key>component_info</key>
- <string>Imports a 3GPP Movie file.</string>
- <key>component_manufacturer</key>
- <string>0x00000000</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>sdv </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Sound</string>
- <key>component_flags</key>
- <string>0x00000002</string>
- <key>component_info</key>
- <string>Imports a System 7 Sound file into a QuickTime Movie</string>
- <key>component_manufacturer</key>
- <string>soun</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>sfil</string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Sound</string>
- <key>component_flags</key>
- <string>0x00000001</string>
- <key>component_info</key>
- <string>Imports Sound into a QuickTime Movie</string>
- <key>component_manufacturer</key>
- <string>soun</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>snd </string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Text</string>
- <key>component_flags</key>
- <string>0x00044847</string>
- <key>component_info</key>
- <string>Imports text into a QuickTime Movie</string>
- <key>component_manufacturer</key>
- <string>text</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>utxt</string>
- <key>component_type</key>
- <string>eat </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Movie Export Session</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Movie Export Session</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>MooV</string>
- <key>component_type</key>
- <string>exse</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>FullScreen Presentation</string>
- <key>component_info</key>
- <string>Manages a full screen presentation of QuickTime content</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>scrn</string>
- <key>component_type</key>
- <string>full</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>QuickTime HTTP Channel Guide</string>
- <key>component_flags</key>
- <string>0x00000004</string>
- <key>component_info</key>
- <string>QuickTime HTTP Channel Guide</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>qpcg</string>
- <key>component_type</key>
- <string>gide</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>SGI</string>
- <key>component_info</key>
- <string>Exports images to SGI files</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>.SGI</string>
- <key>component_type</key>
- <string>grex</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Photoshop</string>
- <key>component_flags</key>
- <string>0x10000004</string>
- <key>component_info</key>
- <string>Exports images to Photoshop files</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>8BPS</string>
- <key>component_type</key>
- <string>grex</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>BMP</string>
- <key>component_flags</key>
- <string>0x00000004</string>
- <key>component_info</key>
- <string>Exports images to BMP files</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>BMPf</string>
- <key>component_type</key>
- <string>grex</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>JPEG</string>
- <key>component_flags</key>
- <string>0x10000006</string>
- <key>component_info</key>
- <string>Exports images to JPEG files</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>JPEG</string>
- <key>component_type</key>
- <string>grex</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>PICT</string>
- <key>component_flags</key>
- <string>0x00000006</string>
- <key>component_info</key>
- <string>Exports images to PICT files</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>PICT</string>
- <key>component_type</key>
- <string>grex</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>PNG</string>
- <key>component_flags</key>
- <string>0x10000004</string>
- <key>component_info</key>
- <string>Exports images to PNG files</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>PNGf</string>
- <key>component_type</key>
- <string>grex</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MacPaint</string>
- <key>component_info</key>
- <string>Exports images to MacPaint files</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>PNTG</string>
- <key>component_type</key>
- <string>grex</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>TIFF</string>
- <key>component_flags</key>
- <string>0x10000004</string>
- <key>component_info</key>
- <string>Exports images to TIFF files</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>TIFF</string>
- <key>component_type</key>
- <string>grex</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>TGA</string>
- <key>component_flags</key>
- <string>0x00000004</string>
- <key>component_info</key>
- <string>Exports images to TGA files</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>TPIC</string>
- <key>component_type</key>
- <string>grex</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Base</string>
- <key>component_flags</key>
- <string>0x10000001</string>
- <key>component_info</key>
- <string>Internal component used when exporting images</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>base</string>
- <key>component_type</key>
- <string>grex</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>JP2</string>
- <key>component_flags</key>
- <string>0x00000004</string>
- <key>component_info</key>
- <string>Exports an image into a JP2 file</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>jp2 </string>
- <key>component_type</key>
- <string>grex</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>QuickTime Image</string>
- <key>component_flags</key>
- <string>0x10000006</string>
- <key>component_info</key>
- <string>Exports images to QuickTime Image files</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>qtif</string>
- <key>component_type</key>
- <string>grex</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>SGI</string>
- <key>component_flags</key>
- <string>0x00804200</string>
- <key>component_info</key>
- <string></string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>.SGI</string>
- <key>component_type</key>
- <string>grip</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Photoshop</string>
- <key>component_flags</key>
- <string>0x10804200</string>
- <key>component_info</key>
- <string></string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>8BPS</string>
- <key>component_type</key>
- <string>grip</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>BMP</string>
- <key>component_flags</key>
- <string>0x00804200</string>
- <key>component_info</key>
- <string></string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>BMP </string>
- <key>component_type</key>
- <string>grip</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>BMP</string>
- <key>component_flags</key>
- <string>0x00805200</string>
- <key>component_info</key>
- <string></string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>BMP </string>
- <key>component_type</key>
- <string>grip</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>BMP</string>
- <key>component_flags</key>
- <string>0x00804200</string>
- <key>component_info</key>
- <string></string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>BMPf</string>
- <key>component_type</key>
- <string>grip</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>BMP</string>
- <key>component_flags</key>
- <string>0x00804200</string>
- <key>component_info</key>
- <string></string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>BMPp</string>
- <key>component_type</key>
- <string>grip</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>BMP</string>
- <key>component_flags</key>
- <string>0x00805200</string>
- <key>component_info</key>
- <string></string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>DIB </string>
- <key>component_type</key>
- <string>grip</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>FlashPix Image</string>
- <key>component_flags</key>
- <string>0x00805200</string>
- <key>component_info</key>
- <string></string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>FPX </string>
- <key>component_type</key>
- <string>grip</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>FlashPix Image</string>
- <key>component_flags</key>
- <string>0x00805200</string>
- <key>component_info</key>
- <string></string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>FPX </string>
- <key>component_type</key>
- <string>grip</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>FlashPix Image</string>
- <key>component_flags</key>
- <string>0x00804200</string>
- <key>component_info</key>
- <string></string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>FPix</string>
- <key>component_type</key>
- <string>grip</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>GIF</string>
- <key>component_flags</key>
- <string>0x10805200</string>
- <key>component_info</key>
- <string></string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>GIF </string>
- <key>component_type</key>
- <string>grip</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>GIF</string>
- <key>component_flags</key>
- <string>0x10804200</string>
- <key>component_info</key>
- <string></string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>GIF </string>
- <key>component_type</key>
- <string>grip</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>GIF</string>
- <key>component_flags</key>
- <string>0x10804200</string>
- <key>component_info</key>
- <string></string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>GIFf</string>
- <key>component_type</key>
- <string>grip</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>JPEG 2000</string>
- <key>component_flags</key>
- <string>0x10805200</string>
- <key>component_info</key>
- <string></string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>JP2 </string>
- <key>component_type</key>
- <string>grip</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>JFIF</string>
- <key>component_flags</key>
- <string>0x10805200</string>
- <key>component_info</key>
- <string></string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>JPE </string>
- <key>component_type</key>
- <string>grip</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>JFIF</string>
- <key>component_flags</key>
- <string>0x10805200</string>
- <key>component_info</key>
- <string></string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>JPEG</string>
- <key>component_type</key>
- <string>grip</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>JFIF</string>
- <key>component_flags</key>
- <string>0x10804200</string>
- <key>component_info</key>
- <string></string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>JPEG</string>
- <key>component_type</key>
- <string>grip</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>JFIF</string>
- <key>component_flags</key>
- <string>0x10805200</string>
- <key>component_info</key>
- <string></string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>JPG </string>
- <key>component_type</key>
- <string>grip</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MacPaint</string>
- <key>component_flags</key>
- <string>0x00805000</string>
- <key>component_info</key>
- <string></string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>MAC </string>
- <key>component_type</key>
- <string>grip</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Picture</string>
- <key>component_flags</key>
- <string>0x00805240</string>
- <key>component_info</key>
- <string></string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>PCT </string>
- <key>component_type</key>
- <string>grip</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>PDF Image</string>
- <key>component_flags</key>
- <string>0x00845a00</string>
- <key>component_info</key>
- <string></string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/PDFImporter.component</string>
- <key>component_subtype</key>
- <string>PDF </string>
- <key>component_type</key>
- <string>grip</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>PDF Image</string>
- <key>component_flags</key>
- <string>0x00844a00</string>
- <key>component_info</key>
- <string></string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/PDFImporter.component</string>
- <key>component_subtype</key>
- <string>PDF </string>
- <key>component_type</key>
- <string>grip</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Picture</string>
- <key>component_flags</key>
- <string>0x00805240</string>
- <key>component_info</key>
- <string></string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>PIC </string>
- <key>component_type</key>
- <string>grip</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Picture</string>
- <key>component_flags</key>
- <string>0x00805240</string>
- <key>component_info</key>
- <string></string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>PICT</string>
- <key>component_type</key>
- <string>grip</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Picture</string>
- <key>component_flags</key>
- <string>0x00804240</string>
- <key>component_info</key>
- <string></string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>PICT</string>
- <key>component_type</key>
- <string>grip</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>PNG</string>
- <key>component_flags</key>
- <string>0x10804200</string>
- <key>component_info</key>
- <string></string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>PNG </string>
- <key>component_type</key>
- <string>grip</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>PNG</string>
- <key>component_flags</key>
- <string>0x10805200</string>
- <key>component_info</key>
- <string></string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>PNG </string>
- <key>component_type</key>
- <string>grip</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>PNG</string>
- <key>component_flags</key>
- <string>0x10804200</string>
- <key>component_info</key>
- <string></string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>PNGf</string>
- <key>component_type</key>
- <string>grip</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MacPaint</string>
- <key>component_flags</key>
- <string>0x00805000</string>
- <key>component_info</key>
- <string></string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>PNTG</string>
- <key>component_type</key>
- <string>grip</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MacPaint</string>
- <key>component_flags</key>
- <string>0x00804000</string>
- <key>component_info</key>
- <string></string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>PNTG</string>
- <key>component_type</key>
- <string>grip</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Photoshop</string>
- <key>component_flags</key>
- <string>0x10805200</string>
- <key>component_info</key>
- <string></string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>PSD </string>
- <key>component_type</key>
- <string>grip</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>QuickTime Image</string>
- <key>component_flags</key>
- <string>0x10805200</string>
- <key>component_info</key>
- <string></string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>QIF </string>
- <key>component_type</key>
- <string>grip</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>QuickTime Image</string>
- <key>component_flags</key>
- <string>0x10805200</string>
- <key>component_info</key>
- <string></string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>QTI </string>
- <key>component_type</key>
- <string>grip</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>QuickTime Image</string>
- <key>component_flags</key>
- <string>0x10805200</string>
- <key>component_info</key>
- <string></string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>QTIF</string>
- <key>component_type</key>
- <string>grip</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>SGI</string>
- <key>component_flags</key>
- <string>0x00804200</string>
- <key>component_info</key>
- <string></string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>SGI </string>
- <key>component_type</key>
- <string>grip</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>SGI</string>
- <key>component_flags</key>
- <string>0x00805200</string>
- <key>component_info</key>
- <string></string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>SGI </string>
- <key>component_type</key>
- <string>grip</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>TGA</string>
- <key>component_flags</key>
- <string>0x00805000</string>
- <key>component_info</key>
- <string></string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>TGA </string>
- <key>component_type</key>
- <string>grip</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>TIFF</string>
- <key>component_flags</key>
- <string>0x10805200</string>
- <key>component_info</key>
- <string></string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>TIF </string>
- <key>component_type</key>
- <string>grip</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>TIFF</string>
- <key>component_flags</key>
- <string>0x10805200</string>
- <key>component_info</key>
- <string></string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>TIFF</string>
- <key>component_type</key>
- <string>grip</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>TIFF</string>
- <key>component_flags</key>
- <string>0x10804200</string>
- <key>component_info</key>
- <string></string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>TIFF</string>
- <key>component_type</key>
- <string>grip</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>TGA</string>
- <key>component_flags</key>
- <string>0x00804000</string>
- <key>component_info</key>
- <string></string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>TPIC</string>
- <key>component_type</key>
- <string>grip</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Generic</string>
- <key>component_flags</key>
- <string>0x10000001</string>
- <key>component_info</key>
- <string></string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>grip</string>
- <key>component_type</key>
- <string>grip</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>JPEG 2000</string>
- <key>component_flags</key>
- <string>0x10804200</string>
- <key>component_info</key>
- <string></string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>jp2 </string>
- <key>component_type</key>
- <string>grip</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>QuickTime Image</string>
- <key>component_flags</key>
- <string>0x10804200</string>
- <key>component_info</key>
- <string></string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>qtif</string>
- <key>component_type</key>
- <string>grip</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>RTP Hinter Component</string>
- <key>component_info</key>
- <string>RTP Hinter Component</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>rtp </string>
- <key>component_type</key>
- <string>hint</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Slow Movie</string>
- <key>component_flags</key>
- <string>0x10140c10</string>
- <key>component_info</key>
- <string>Imports a SlowMovie file into a QuickTime Movie</string>
- <key>component_manufacturer</key>
- <string>0x00000000</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>hmov</string>
- <key>component_type</key>
- <string>idlr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Movie Fragments</string>
- <key>component_flags</key>
- <string>0x10140c10</string>
- <key>component_info</key>
- <string>Imports a MovieFragments file into a QuickTime Movie</string>
- <key>component_manufacturer</key>
- <string>0x00000000</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>moof</string>
- <key>component_type</key>
- <string>idlr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string></string>
- <key>component_info</key>
- <string></string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/IOFWDVComponents.component</string>
- <key>component_subtype</key>
- <string>dv </string>
- <key>component_type</key>
- <string>ihlr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Planar RGB</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes8</string>
- </array>
- <key>component_info</key>
- <string>Compresses images in the Planar RGB format.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>8BPS</string>
- <key>component_type</key>
- <string>imco</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Sorenson Video™ Compressor</string>
- <key>component_flags</key>
- <array>
- <string>codecInfoDoesRateConstrain</string>
- <string>codecInfoDoesTemporal</string>
- <string>codecInfoDoes32</string>
- </array>
- <key>component_info</key>
- <string>Compresses video using the Sorenson Video™ V2.30.302 compressor from Sorenson™ Media, Inc.</string>
- <key>component_manufacturer</key>
- <string>SVis</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>SVQ1</string>
- <key>component_type</key>
- <string>imco</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Sorenson Video 3 Compressor</string>
- <key>component_flags</key>
- <array>
- <string>codecInfoDoesRateConstrain</string>
- <string>codecInfoDoesTemporal</string>
- </array>
- <key>component_info</key>
- <string>Compresses video using the Sorenson Video® 3 SE V 3.3.302 compressor from Sorenson® Media, Inc.</string>
- <key>component_manufacturer</key>
- <string>SMI </string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>SVQ3</string>
- <key>component_type</key>
- <string>imco</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple BMP</string>
- <key>component_flags</key>
- <array>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes8</string>
- <string>codecInfoDoes4</string>
- <string>codecInfoDoes1</string>
- </array>
- <key>component_info</key>
- <string>Compresses images in the BMP format.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>WRLE</string>
- <key>component_type</key>
- <string>imco</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>H.264</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesRateConstrain</string>
- <string>codecInfoDoesWarp</string>
- <string>codecInfoDoesBlend</string>
- <string>codecInfoDoesTemporal</string>
- <string>codecInfoDoes32</string>
- </array>
- <key>component_info</key>
- <string>Compresses video to the H.264 format.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeH264.component</string>
- <key>component_subtype</key>
- <string>avc1</string>
- <key>component_type</key>
- <string>imco</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Cinepak</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesRateConstrain</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoDoesTemporal</string>
- <string>codecInfoDoes32</string>
- </array>
- <key>component_info</key>
- <string>Compresses images using Apple's Cinepak compression algorithm</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>cvid</string>
- <key>component_type</key>
- <string>imco</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple DVCPRO50 - NTSC</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoes32</string>
- </array>
- <key>component_info</key>
- <string>Compresses an image to DVCPRO50 NTSC format.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>dv5n</string>
- <key>component_type</key>
- <string>imco</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple DVCPRO50 - PAL</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoes32</string>
- </array>
- <key>component_info</key>
- <string>Compresses an image to DVCPRO50 PAL format.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>dv5p</string>
- <key>component_type</key>
- <string>imco</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple DV/DVCPRO - NTSC</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoes32</string>
- </array>
- <key>component_info</key>
- <string>Compresses an image to DV/DVCPRO NTSC format.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>dvc </string>
- <key>component_type</key>
- <string>imco</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple DV - PAL</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoes32</string>
- </array>
- <key>component_info</key>
- <string>Compresses an image to DV PAL format.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>dvcp</string>
- <key>component_type</key>
- <string>imco</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple DVCPRO - PAL</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoes32</string>
- </array>
- <key>component_info</key>
- <string>Compresses an image to DVCPRO PAL format.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>dvpp</string>
- <key>component_type</key>
- <string>imco</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple H.261</string>
- <key>component_flags</key>
- <array>
- <string>codecInfoDoesRateConstrain</string>
- <string>codecInfoDoesTemporal</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- </array>
- <key>component_info</key>
- <string>Compresses images using H.261 compression algorithm</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>h261</string>
- <key>component_type</key>
- <string>imco</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>H.263</string>
- <key>component_flags</key>
- <array>
- <string>codecInfoDoesRateConstrain</string>
- <string>codecInfoDoesTemporal</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- </array>
- <key>component_info</key>
- <string>Compresses images using H.263 compression algorithm</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>h263</string>
- <key>component_type</key>
- <string>imco</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Intermediate Codec</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoes32</string>
- </array>
- <key>component_info</key>
- <string>Compresses to Apple Intermediate Codec format.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/Library/QuickTime/AppleIntermediateCodec.component</string>
- <key>component_subtype</key>
- <string>icod</string>
- <key>component_type</key>
- <string>imco</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Photo - JPEG</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes8</string>
- </array>
- <key>component_info</key>
- <string>Compresses images using the ISO standard baseline JPEG algorithm</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>jpeg</string>
- <key>component_type</key>
- <string>imco</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>JPEG 2000 Encoder</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes8</string>
- </array>
- <key>component_info</key>
- <string>Compresses images to the JPEG 2000 JP2 format.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>mjp2</string>
- <key>component_type</key>
- <string>imco</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Motion JPEG A</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes8</string>
- </array>
- <key>component_info</key>
- <string>Compresses images compressed using Motion JPEG Format A</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>mjpa</string>
- <key>component_type</key>
- <string>imco</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Motion JPEG A</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes8</string>
- </array>
- <key>component_info</key>
- <string>Compresses images compressed using Motion JPEG Format A</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>mjpa</string>
- <key>component_type</key>
- <string>imco</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Motion JPEG B</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes8</string>
- </array>
- <key>component_info</key>
- <string>Compresses images compressed using Motion JPEG Format B</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>mjpb</string>
- <key>component_type</key>
- <string>imco</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Motion JPEG B</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes8</string>
- </array>
- <key>component_info</key>
- <string>Compresses images compressed using Motion JPEG Format B</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>mjpb</string>
- <key>component_type</key>
- <string>imco</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple MPEG4 Compressor</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesRateConstrain</string>
- <string>codecInfoDoesTemporal</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- </array>
- <key>component_info</key>
- <string>Compresses images using MPEG4 compression algorithm</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeMPEG4.component</string>
- <key>component_subtype</key>
- <string>mp4v</string>
- <key>component_type</key>
- <string>imco</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple PNG</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes8</string>
- <string>codecInfoDoes4</string>
- <string>codecInfoDoes2</string>
- <string>codecInfoDoes1</string>
- </array>
- <key>component_info</key>
- <string>Compresses images in the PNG format.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>png </string>
- <key>component_type</key>
- <string>imco</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Pixlet Video</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesRateConstrain</string>
- <string>codecInfoDoes32</string>
- </array>
- <key>component_info</key>
- <string>Apple Pixlet Video Info</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/ApplePixletVideo.component</string>
- <key>component_subtype</key>
- <string>pxlt</string>
- <key>component_type</key>
- <string>imco</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple None</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoDoesRecompress</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- <string>codecInfoDoes4</string>
- <string>codecInfoDoes2</string>
- <string>codecInfoDoes1</string>
- </array>
- <key>component_info</key>
- <string>Stores images without any compression</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>raw </string>
- <key>component_type</key>
- <string>imco</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple None</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoDoesRecompress</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- <string>codecInfoDoes4</string>
- <string>codecInfoDoes2</string>
- <string>codecInfoDoes1</string>
- </array>
- <key>component_info</key>
- <string>Stores images without any compression</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>raw </string>
- <key>component_type</key>
- <string>imco</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Animation</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoDoesRecompress</string>
- <string>codecInfoDoesTemporal</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- <string>codecInfoDoes4</string>
- <string>codecInfoDoes2</string>
- <string>codecInfoDoes1</string>
- </array>
- <key>component_info</key>
- <string>Compresses images using run length encoding</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>rle </string>
- <key>component_type</key>
- <string>imco</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Video</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoDoesRecompress</string>
- <string>codecInfoDoesTemporal</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- </array>
- <key>component_info</key>
- <string>Compresses images using Apple's Video compression algorithm</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>rpza</string>
- <key>component_type</key>
- <string>imco</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Graphics</string>
- <key>component_flags</key>
- <array>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoDoesRecompress</string>
- <string>codecInfoDoesTemporal</string>
- <string>codecInfoDoes8</string>
- </array>
- <key>component_info</key>
- <string>Compresses images using Sean's secret recipe (optimal for 8-bit dithered images)</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>smc </string>
- <key>component_type</key>
- <string>imco</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple TGA</string>
- <key>component_flags</key>
- <array>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- </array>
- <key>component_info</key>
- <string>Compresses images stored into the TGA format.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>tga </string>
- <key>component_type</key>
- <string>imco</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple TIFF</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes8</string>
- <string>codecInfoDoes4</string>
- <string>codecInfoDoes2</string>
- <string>codecInfoDoes1</string>
- </array>
- <key>component_info</key>
- <string>Compresses images in the TIFF format.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>tiff</string>
- <key>component_type</key>
- <string>imco</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Component Video - YUV422</string>
- <key>component_flags</key>
- <array>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoDoes32</string>
- </array>
- <key>component_info</key>
- <string>Compresses an image into YUV format.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>yuv2</string>
- <key>component_type</key>
- <string>imco</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple None</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoDoesWarp</string>
- <string>codecInfoDoesBlend</string>
- <string>codecInfoDoesVertFlip</string>
- <string>codecInfoDoesHorizFlip</string>
- <string>codecInfoDoesRotate</string>
- <string>codecInfoDoesQuarter</string>
- <string>codecInfoDoesHalf</string>
- <string>codecInfoDoesQuad</string>
- <string>codecInfoDoesDouble</string>
- <string>codecInfoDoesMask</string>
- <string>codecInfoDoesShrink</string>
- <string>codecInfoDoesStretch</string>
- <string>codecInfoDoesDither</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- <string>codecInfoDoes4</string>
- <string>codecInfoDoes2</string>
- <string>codecInfoDoes1</string>
- </array>
- <key>component_info</key>
- <string>Displays images stored without any compression</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>0x00000001</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple None</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoDoesWarp</string>
- <string>codecInfoDoesBlend</string>
- <string>codecInfoDoesVertFlip</string>
- <string>codecInfoDoesHorizFlip</string>
- <string>codecInfoDoesRotate</string>
- <string>codecInfoDoesQuarter</string>
- <string>codecInfoDoesHalf</string>
- <string>codecInfoDoesQuad</string>
- <string>codecInfoDoesDouble</string>
- <string>codecInfoDoesMask</string>
- <string>codecInfoDoesShrink</string>
- <string>codecInfoDoesStretch</string>
- <string>codecInfoDoesDither</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- <string>codecInfoDoes4</string>
- <string>codecInfoDoes2</string>
- <string>codecInfoDoes1</string>
- </array>
- <key>component_info</key>
- <string>Displays images stored without any compression</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>0x00000002</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple None</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoDoesWarp</string>
- <string>codecInfoDoesBlend</string>
- <string>codecInfoDoesVertFlip</string>
- <string>codecInfoDoesHorizFlip</string>
- <string>codecInfoDoesRotate</string>
- <string>codecInfoDoesQuarter</string>
- <string>codecInfoDoesHalf</string>
- <string>codecInfoDoesQuad</string>
- <string>codecInfoDoesDouble</string>
- <string>codecInfoDoesMask</string>
- <string>codecInfoDoesShrink</string>
- <string>codecInfoDoesStretch</string>
- <string>codecInfoDoesDither</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- <string>codecInfoDoes4</string>
- <string>codecInfoDoes2</string>
- <string>codecInfoDoes1</string>
- </array>
- <key>component_info</key>
- <string>Displays images stored without any compression</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>0x00000004</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple None</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoDoesWarp</string>
- <string>codecInfoDoesBlend</string>
- <string>codecInfoDoesVertFlip</string>
- <string>codecInfoDoesHorizFlip</string>
- <string>codecInfoDoesRotate</string>
- <string>codecInfoDoesQuarter</string>
- <string>codecInfoDoesHalf</string>
- <string>codecInfoDoesQuad</string>
- <string>codecInfoDoesDouble</string>
- <string>codecInfoDoesMask</string>
- <string>codecInfoDoesShrink</string>
- <string>codecInfoDoesStretch</string>
- <string>codecInfoDoesDither</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- <string>codecInfoDoes4</string>
- <string>codecInfoDoes2</string>
- <string>codecInfoDoes1</string>
- </array>
- <key>component_info</key>
- <string>Displays images stored without any compression</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>0x00000008</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple None</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoDoesWarp</string>
- <string>codecInfoDoesBlend</string>
- <string>codecInfoDoesVertFlip</string>
- <string>codecInfoDoesHorizFlip</string>
- <string>codecInfoDoesRotate</string>
- <string>codecInfoDoesQuarter</string>
- <string>codecInfoDoesHalf</string>
- <string>codecInfoDoesQuad</string>
- <string>codecInfoDoesDouble</string>
- <string>codecInfoDoesMask</string>
- <string>codecInfoDoesShrink</string>
- <string>codecInfoDoesStretch</string>
- <string>codecInfoDoesDither</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- <string>codecInfoDoes4</string>
- <string>codecInfoDoes2</string>
- <string>codecInfoDoes1</string>
- </array>
- <key>component_info</key>
- <string>Displays images stored without any compression</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>0x00000010</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple None</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoDoesWarp</string>
- <string>codecInfoDoesBlend</string>
- <string>codecInfoDoesVertFlip</string>
- <string>codecInfoDoesHorizFlip</string>
- <string>codecInfoDoesRotate</string>
- <string>codecInfoDoesQuarter</string>
- <string>codecInfoDoesHalf</string>
- <string>codecInfoDoesQuad</string>
- <string>codecInfoDoesDouble</string>
- <string>codecInfoDoesMask</string>
- <string>codecInfoDoesShrink</string>
- <string>codecInfoDoesStretch</string>
- <string>codecInfoDoesDither</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- <string>codecInfoDoes4</string>
- <string>codecInfoDoes2</string>
- <string>codecInfoDoes1</string>
- </array>
- <key>component_info</key>
- <string>Displays images stored without any compression</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>0x00000018</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple None</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoDoesWarp</string>
- <string>codecInfoDoesBlend</string>
- <string>codecInfoDoesVertFlip</string>
- <string>codecInfoDoesHorizFlip</string>
- <string>codecInfoDoesRotate</string>
- <string>codecInfoDoesQuarter</string>
- <string>codecInfoDoesHalf</string>
- <string>codecInfoDoesQuad</string>
- <string>codecInfoDoesDouble</string>
- <string>codecInfoDoesMask</string>
- <string>codecInfoDoesShrink</string>
- <string>codecInfoDoesStretch</string>
- <string>codecInfoDoesDither</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- <string>codecInfoDoes4</string>
- <string>codecInfoDoes2</string>
- <string>codecInfoDoes1</string>
- </array>
- <key>component_info</key>
- <string>Displays images stored without any compression</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>??? </string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple None</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoDoesWarp</string>
- <string>codecInfoDoesBlend</string>
- <string>codecInfoDoesVertFlip</string>
- <string>codecInfoDoesHorizFlip</string>
- <string>codecInfoDoesRotate</string>
- <string>codecInfoDoesQuarter</string>
- <string>codecInfoDoesHalf</string>
- <string>codecInfoDoesQuad</string>
- <string>codecInfoDoesDouble</string>
- <string>codecInfoDoesMask</string>
- <string>codecInfoDoesShrink</string>
- <string>codecInfoDoesStretch</string>
- <string>codecInfoDoesDither</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- <string>codecInfoDoes4</string>
- <string>codecInfoDoes2</string>
- <string>codecInfoDoes1</string>
- </array>
- <key>component_info</key>
- <string>Displays images stored without any compression</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>???!</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple None</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoDoesWarp</string>
- <string>codecInfoDoesBlend</string>
- <string>codecInfoDoesVertFlip</string>
- <string>codecInfoDoesHorizFlip</string>
- <string>codecInfoDoesRotate</string>
- <string>codecInfoDoesQuarter</string>
- <string>codecInfoDoesHalf</string>
- <string>codecInfoDoesQuad</string>
- <string>codecInfoDoesDouble</string>
- <string>codecInfoDoesMask</string>
- <string>codecInfoDoesShrink</string>
- <string>codecInfoDoesStretch</string>
- <string>codecInfoDoesDither</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- <string>codecInfoDoes4</string>
- <string>codecInfoDoes2</string>
- <string>codecInfoDoes1</string>
- </array>
- <key>component_info</key>
- <string>Displays images stored without any compression</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>???"</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple None</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoDoesWarp</string>
- <string>codecInfoDoesBlend</string>
- <string>codecInfoDoesVertFlip</string>
- <string>codecInfoDoesHorizFlip</string>
- <string>codecInfoDoesRotate</string>
- <string>codecInfoDoesQuarter</string>
- <string>codecInfoDoesHalf</string>
- <string>codecInfoDoesQuad</string>
- <string>codecInfoDoesDouble</string>
- <string>codecInfoDoesMask</string>
- <string>codecInfoDoesShrink</string>
- <string>codecInfoDoesStretch</string>
- <string>codecInfoDoesDither</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- <string>codecInfoDoes4</string>
- <string>codecInfoDoes2</string>
- <string>codecInfoDoes1</string>
- </array>
- <key>component_info</key>
- <string>Displays images stored without any compression</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>???$</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple None</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoDoesWarp</string>
- <string>codecInfoDoesBlend</string>
- <string>codecInfoDoesVertFlip</string>
- <string>codecInfoDoesHorizFlip</string>
- <string>codecInfoDoesRotate</string>
- <string>codecInfoDoesQuarter</string>
- <string>codecInfoDoesHalf</string>
- <string>codecInfoDoesQuad</string>
- <string>codecInfoDoesDouble</string>
- <string>codecInfoDoesMask</string>
- <string>codecInfoDoesShrink</string>
- <string>codecInfoDoesStretch</string>
- <string>codecInfoDoesDither</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- <string>codecInfoDoes4</string>
- <string>codecInfoDoes2</string>
- <string>codecInfoDoes1</string>
- </array>
- <key>component_info</key>
- <string>Displays images stored without any compression</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>???(</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple SGI</string>
- <key>component_flags</key>
- <array>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes8</string>
- </array>
- <key>component_info</key>
- <string>Decompresses images stored in the SGI format.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>.SGI</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple None</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoDoesWarp</string>
- <string>codecInfoDoesBlend</string>
- <string>codecInfoDoesVertFlip</string>
- <string>codecInfoDoesHorizFlip</string>
- <string>codecInfoDoesRotate</string>
- <string>codecInfoDoesQuarter</string>
- <string>codecInfoDoesHalf</string>
- <string>codecInfoDoesQuad</string>
- <string>codecInfoDoesDouble</string>
- <string>codecInfoDoesMask</string>
- <string>codecInfoDoesShrink</string>
- <string>codecInfoDoesStretch</string>
- <string>codecInfoDoesDither</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- <string>codecInfoDoes4</string>
- <string>codecInfoDoes2</string>
- <string>codecInfoDoes1</string>
- </array>
- <key>component_info</key>
- <string>Displays images stored without any compression</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>24BG</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple YUV422 Codec (2vuy)</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesVertFlip</string>
- <string>codecInfoDoesHorizFlip</string>
- <string>codecInfoDoesQuarter</string>
- <string>codecInfoDoesHalf</string>
- <string>codecInfoDoesQuad</string>
- <string>codecInfoDoesDouble</string>
- <string>codecInfoDoesShrink</string>
- <string>codecInfoDoesStretch</string>
- <string>codecInfoDoesDither</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- </array>
- <key>component_info</key>
- <string>Draws YUV422 (2vuy) data.</string>
- <key>component_manufacturer</key>
- <string>app3</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>2vuy</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>YUV 4:2:2 Hardware Acceleration Codec (yuvs)</string>
- <key>component_flags</key>
- <array>
- <string>codecInfoDoesQuarter</string>
- <string>codecInfoDoesHalf</string>
- <string>codecInfoDoesQuad</string>
- <string>codecInfoDoesDouble</string>
- <string>codecInfoDoesShrink</string>
- <string>codecInfoDoesStretch</string>
- <string>codecInfoDoesDither</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- </array>
- <key>component_info</key>
- <string>Provides acceleration services for onscreen video playback</string>
- <key>component_manufacturer</key>
- <string>appx</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/IOQTComponents.component</string>
- <key>component_subtype</key>
- <string>2vuy</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Planar RGB</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes8</string>
- <string>codecInfoDoes1</string>
- </array>
- <key>component_info</key>
- <string>Decompresses images stored in the Planar RGB format.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>8BPS</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple None</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoDoesWarp</string>
- <string>codecInfoDoesBlend</string>
- <string>codecInfoDoesVertFlip</string>
- <string>codecInfoDoesHorizFlip</string>
- <string>codecInfoDoesRotate</string>
- <string>codecInfoDoesQuarter</string>
- <string>codecInfoDoesHalf</string>
- <string>codecInfoDoesQuad</string>
- <string>codecInfoDoesDouble</string>
- <string>codecInfoDoesMask</string>
- <string>codecInfoDoesShrink</string>
- <string>codecInfoDoesStretch</string>
- <string>codecInfoDoesDither</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- <string>codecInfoDoes4</string>
- <string>codecInfoDoes2</string>
- <string>codecInfoDoes1</string>
- </array>
- <key>component_info</key>
- <string>Displays images stored without any compression</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>ABGR</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple None</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoDoesWarp</string>
- <string>codecInfoDoesBlend</string>
- <string>codecInfoDoesVertFlip</string>
- <string>codecInfoDoesHorizFlip</string>
- <string>codecInfoDoesRotate</string>
- <string>codecInfoDoesQuarter</string>
- <string>codecInfoDoesHalf</string>
- <string>codecInfoDoesQuad</string>
- <string>codecInfoDoesDouble</string>
- <string>codecInfoDoesMask</string>
- <string>codecInfoDoesShrink</string>
- <string>codecInfoDoesStretch</string>
- <string>codecInfoDoesDither</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- <string>codecInfoDoes4</string>
- <string>codecInfoDoes2</string>
- <string>codecInfoDoes1</string>
- </array>
- <key>component_info</key>
- <string>Displays images stored without any compression</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>BGRA</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple None</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoDoesWarp</string>
- <string>codecInfoDoesBlend</string>
- <string>codecInfoDoesVertFlip</string>
- <string>codecInfoDoesHorizFlip</string>
- <string>codecInfoDoesRotate</string>
- <string>codecInfoDoesQuarter</string>
- <string>codecInfoDoesHalf</string>
- <string>codecInfoDoesQuad</string>
- <string>codecInfoDoesDouble</string>
- <string>codecInfoDoesMask</string>
- <string>codecInfoDoesShrink</string>
- <string>codecInfoDoesStretch</string>
- <string>codecInfoDoesDither</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- <string>codecInfoDoes4</string>
- <string>codecInfoDoes2</string>
- <string>codecInfoDoes1</string>
- </array>
- <key>component_info</key>
- <string>Displays images stored without any compression</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>L555</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple None</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoDoesWarp</string>
- <string>codecInfoDoesBlend</string>
- <string>codecInfoDoesVertFlip</string>
- <string>codecInfoDoesHorizFlip</string>
- <string>codecInfoDoesRotate</string>
- <string>codecInfoDoesQuarter</string>
- <string>codecInfoDoesHalf</string>
- <string>codecInfoDoesQuad</string>
- <string>codecInfoDoesDouble</string>
- <string>codecInfoDoesMask</string>
- <string>codecInfoDoesShrink</string>
- <string>codecInfoDoesStretch</string>
- <string>codecInfoDoesDither</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- <string>codecInfoDoes4</string>
- <string>codecInfoDoes2</string>
- <string>codecInfoDoes1</string>
- </array>
- <key>component_info</key>
- <string>Displays images stored without any compression</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>L565</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple MacPaint</string>
- <key>component_flags</key>
- <array>
- <string>codecInfoDoes1</string>
- </array>
- <key>component_info</key>
- <string>Decompresses images stored in the MacPaint format.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>PNTG</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple None</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoDoesWarp</string>
- <string>codecInfoDoesBlend</string>
- <string>codecInfoDoesVertFlip</string>
- <string>codecInfoDoesHorizFlip</string>
- <string>codecInfoDoesRotate</string>
- <string>codecInfoDoesQuarter</string>
- <string>codecInfoDoesHalf</string>
- <string>codecInfoDoesQuad</string>
- <string>codecInfoDoesDouble</string>
- <string>codecInfoDoesMask</string>
- <string>codecInfoDoesShrink</string>
- <string>codecInfoDoesStretch</string>
- <string>codecInfoDoesDither</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- <string>codecInfoDoes4</string>
- <string>codecInfoDoes2</string>
- <string>codecInfoDoes1</string>
- </array>
- <key>component_info</key>
- <string>Displays images stored without any compression</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>RGBA</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Sorenson Video™ Decompressor</string>
- <key>component_flags</key>
- <array>
- <string>codecInfoDoesTemporal</string>
- </array>
- <key>component_info</key>
- <string>Sorenson Video™ V2.30.302 decompressor from Sorenson™ Media, Inc.</string>
- <key>component_manufacturer</key>
- <string>SVis</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>SVQ1</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Sorenson Video 3 Decompressor</string>
- <key>component_flags</key>
- <array>
- <string>codecInfoDoesTemporal</string>
- </array>
- <key>component_info</key>
- <string>Decompresses video using the Sorenson Video® 3 SE V 3.3.303 decompressor from Sorenson® Media, Inc.</string>
- <key>component_manufacturer</key>
- <string>SMI </string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>SVQ3</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple BMP</string>
- <key>component_flags</key>
- <array>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes8</string>
- <string>codecInfoDoes4</string>
- <string>codecInfoDoes1</string>
- </array>
- <key>component_info</key>
- <string>Decompresses images stored in the BMP format.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>WRLE</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple ProRes 4444</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoes32</string>
- </array>
- <key>component_info</key>
- <string>Decompresses from Apple ProRes 4444 format.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/AppleProResDecoder.component</string>
- <key>component_subtype</key>
- <string>ap4h</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple ProRes 422 (HQ)</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoes32</string>
- </array>
- <key>component_info</key>
- <string>Decompresses from Apple ProRes 422 (HQ) format.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/AppleProResDecoder.component</string>
- <key>component_subtype</key>
- <string>apch</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple ProRes 422</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoes32</string>
- </array>
- <key>component_info</key>
- <string>Decompresses from Apple ProRes 422 format.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/AppleProResDecoder.component</string>
- <key>component_subtype</key>
- <string>apcn</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple ProRes 422 (Proxy)</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoes32</string>
- </array>
- <key>component_info</key>
- <string>Decompresses from Apple ProRes 422 (Proxy) format.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/AppleProResDecoder.component</string>
- <key>component_subtype</key>
- <string>apco</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple ProRes 422 (LT)</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoes32</string>
- </array>
- <key>component_info</key>
- <string>Decompresses from Apple ProRes 422 (LT) format.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/AppleProResDecoder.component</string>
- <key>component_subtype</key>
- <string>apcs</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>H.264 Decoder</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesTemporal</string>
- <string>codecInfoDoes32</string>
- </array>
- <key>component_info</key>
- <string>Decompresses images stored in the H.264 format.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeH264.component</string>
- <key>component_subtype</key>
- <string>avc1</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AVA_HD</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesTemporal</string>
- <string>codecInfoDoes32</string>
- </array>
- <key>component_info</key>
- <string>Demonstration AVA_WRAPPERHD Decompressor.</string>
- <key>component_manufacturer</key>
- <string>appx</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/AppleVAH264HW.component</string>
- <key>component_subtype</key>
- <string>avc1</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>GVA</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesTemporal</string>
- <string>codecInfoDoes32</string>
- </array>
- <key>component_info</key>
- <string>GVA QuickTime Decompressor.</string>
- <key>component_manufacturer</key>
- <string>appy</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/AppleGVAHW.component</string>
- <key>component_subtype</key>
- <string>avc1</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple AVR JPEG</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes8</string>
- </array>
- <key>component_info</key>
- <string>Decompresses images compressed using AVR JPEG</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>avr </string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple AVR JPEG</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes8</string>
- </array>
- <key>component_info</key>
- <string>Decompresses images compressed using AVR JPEG</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>avr </string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple 16-bit Gray</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoDoesMask</string>
- <string>codecInfoDoesShrink</string>
- <string>codecInfoDoesStretch</string>
- <string>codecInfoDoes8</string>
- </array>
- <key>component_info</key>
- <string>Decompresses images stored in 16-bit Gray format</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>b16g</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple 32-bit Gray with Alpha</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoDoesMask</string>
- <string>codecInfoDoesShrink</string>
- <string>codecInfoDoesStretch</string>
- <string>codecInfoDoes32</string>
- </array>
- <key>component_info</key>
- <string>Decompresses images stored in 32-bit Gray with Alpha format</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>b32a</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple 48-bit RGB</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoDoesMask</string>
- <string>codecInfoDoesShrink</string>
- <string>codecInfoDoesStretch</string>
- <string>codecInfoDoes32</string>
- </array>
- <key>component_info</key>
- <string>Decompresses images stored in 48-bit RGB format</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>b48r</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple 64-bit ARGB</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoDoesMask</string>
- <string>codecInfoDoesShrink</string>
- <string>codecInfoDoesStretch</string>
- <string>codecInfoDoes32</string>
- </array>
- <key>component_info</key>
- <string>Decompresses images stored in 64-bit ARGB format</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>b64a</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string></string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- </array>
- <key>component_info</key>
- <string></string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>base</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string></string>
- <key>component_flags</key>
- <array>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- </array>
- <key>component_info</key>
- <string></string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>blit</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Alpha Compositor</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoHasEffectParameterList</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- <string>codecInfoDoes4</string>
- <string>codecInfoDoes2</string>
- <string>codecInfoDoes1</string>
- </array>
- <key>component_info</key>
- <string>Composites two sources, blending with the alpha channel of the first</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>blnd</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Blur</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoHasEffectParameterList</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- <string>codecInfoDoes4</string>
- <string>codecInfoDoes2</string>
- <string>codecInfoDoes1</string>
- </array>
- <key>component_info</key>
- <string>Applies a convolution blur to a single source</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>blur</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Blur</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoHasEffectParameterList</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- <string>codecInfoDoes4</string>
- <string>codecInfoDoes2</string>
- <string>codecInfoDoes1</string>
- </array>
- <key>component_info</key>
- <string>Applies a convolution blur to a single source</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>blur</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Brightness and Contrast</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoHasEffectParameterList</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- </array>
- <key>component_info</key>
- <string>Adjusts brightness and contrast</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>brco</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Channel Compositor</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoHasEffectParameterList</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- <string>codecInfoDoes4</string>
- <string>codecInfoDoes2</string>
- <string>codecInfoDoes1</string>
- </array>
- <key>component_info</key>
- <string>Does Channel Compositing Effects</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>chan</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Chroma Key</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoHasEffectParameterList</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- <string>codecInfoDoes4</string>
- <string>codecInfoDoes2</string>
- <string>codecInfoDoes1</string>
- </array>
- <key>component_info</key>
- <string>Does Chroma Key Effects</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>ckey</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Cloud</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoHasEffectParameterList</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- </array>
- <key>component_info</key>
- <string>Generates real time cloud</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>clou</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple CMYK</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoes32</string>
- </array>
- <key>component_info</key>
- <string>Decompresses images stored in CMYK format</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>cmyk</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>QTVR Cubic Codec</string>
- <key>component_flags</key>
- <array>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- </array>
- <key>component_info</key>
- <string>Projects Cubic Images to Planar Views (QTVR Panoramas)</string>
- <key>component_manufacturer</key>
- <string>pano</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeVR.component</string>
- <key>component_subtype</key>
- <string>cupa</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Cinepak</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoDoesHalf</string>
- <string>codecInfoDoesDouble</string>
- <string>codecInfoDoesTemporal</string>
- <string>codecInfoDoesDither</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- </array>
- <key>component_info</key>
- <string>Decompresses images compressed using Apple's Cinepak compression algorithm</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>cvid</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple OpenDML JPEG</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes8</string>
- </array>
- <key>component_info</key>
- <string>Decompresses images compressed using OpenDML JPEG</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>dmb1</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple OpenDML JPEG</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes8</string>
- </array>
- <key>component_info</key>
- <string>Decompresses images compressed using OpenDML JPEG</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>dmb1</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Cross Fade</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoHasEffectParameterList</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- <string>codecInfoDoes4</string>
- <string>codecInfoDoes2</string>
- <string>codecInfoDoes1</string>
- </array>
- <key>component_info</key>
- <string>Does Dissolve or Cross fade Effects</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>dslv</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple DVCPRO50</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoes32</string>
- </array>
- <key>component_info</key>
- <string>Decompresses an image compressed in DVCPRO50 format.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>dv5n</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>DVCPRO50</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoes32</string>
- </array>
- <key>component_info</key>
- <string>This component is the DVCPRO50 Video Out Codec</string>
- <key>component_manufacturer</key>
- <string>gdw </string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeFireWireDV.component</string>
- <key>component_subtype</key>
- <string>dv5n</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple DVCPRO50</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoes32</string>
- </array>
- <key>component_info</key>
- <string>Decompresses an image compressed in DVCPRO50 format.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>dv5p</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>DVCPRO50</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoes32</string>
- </array>
- <key>component_info</key>
- <string>This component is the DVCPRO50 Video Out Codec</string>
- <key>component_manufacturer</key>
- <string>gdw </string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeFireWireDV.component</string>
- <key>component_subtype</key>
- <string>dv5p</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple DV</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoes32</string>
- </array>
- <key>component_info</key>
- <string>Decompresses an image compressed in DV format.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>dvc </string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>DV</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoes32</string>
- </array>
- <key>component_info</key>
- <string>This component is the DV Video Out Codec</string>
- <key>component_manufacturer</key>
- <string>gdw </string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeFireWireDV.component</string>
- <key>component_subtype</key>
- <string>dvc </string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple DV</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoes32</string>
- </array>
- <key>component_info</key>
- <string>Decompresses an image compressed in DV format.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>dvcp</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>DV</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoes32</string>
- </array>
- <key>component_info</key>
- <string>This component is the DV Video Out Codec</string>
- <key>component_manufacturer</key>
- <string>gdw </string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeFireWireDV.component</string>
- <key>component_subtype</key>
- <string>dvcp</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple DVCPRO</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoes32</string>
- </array>
- <key>component_info</key>
- <string>Decompresses an image compressed in DVCPRO format.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>dvpp</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>DVCPRO</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoes32</string>
- </array>
- <key>component_info</key>
- <string>This component is the DVCPRO Video Out Codec</string>
- <key>component_manufacturer</key>
- <string>gdw </string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeFireWireDV.component</string>
- <key>component_subtype</key>
- <string>dvpp</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Edge Detection</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoHasEffectParameterList</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- <string>codecInfoDoes4</string>
- <string>codecInfoDoes2</string>
- <string>codecInfoDoes1</string>
- </array>
- <key>component_info</key>
- <string>Reduces a single source to just its edges</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>edge</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Edge Detection</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoHasEffectParameterList</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- <string>codecInfoDoes4</string>
- <string>codecInfoDoes2</string>
- <string>codecInfoDoes1</string>
- </array>
- <key>component_info</key>
- <string>Reduces a single source to just its edges</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>edge</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Emboss</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoHasEffectParameterList</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- <string>codecInfoDoes4</string>
- <string>codecInfoDoes2</string>
- <string>codecInfoDoes1</string>
- </array>
- <key>component_info</key>
- <string>Embosses a single source</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>embs</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Emboss</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoHasEffectParameterList</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- <string>codecInfoDoes4</string>
- <string>codecInfoDoes2</string>
- <string>codecInfoDoes1</string>
- </array>
- <key>component_info</key>
- <string>Embosses a single source</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>embs</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Fire</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoHasEffectParameterList</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- </array>
- <key>component_info</key>
- <string>Generates real time fire</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>fire</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple FLC</string>
- <key>component_flags</key>
- <array>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- </array>
- <key>component_info</key>
- <string>Decompresses a frame compressed in AutoDesk Animator FLC format.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>flic</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Film Noise</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoHasEffectParameterList</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- <string>codecInfoDoes4</string>
- <string>codecInfoDoes2</string>
- <string>codecInfoDoes1</string>
- </array>
- <key>component_info</key>
- <string>Applies a variety of film age and abuse effects to a single source</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>fmns</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>FlashPix Image</string>
- <key>component_flags</key>
- <array>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoDoes32</string>
- </array>
- <key>component_info</key>
- <string>Decompressors images stored in the FlashPix Image format.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>fpix</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Alpha Gain</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoHasEffectParameterList</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- <string>codecInfoDoes4</string>
- <string>codecInfoDoes2</string>
- <string>codecInfoDoes1</string>
- </array>
- <key>component_info</key>
- <string>Changes the alpha channel of a single source</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>gain</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Special Effects and Filters</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- <string>codecInfoDoes4</string>
- <string>codecInfoDoes2</string>
- <string>codecInfoDoes1</string>
- </array>
- <key>component_info</key>
- <string>Does Generic Effects</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>geff</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>General Convolution</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoHasEffectParameterList</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- <string>codecInfoDoes4</string>
- <string>codecInfoDoes2</string>
- <string>codecInfoDoes1</string>
- </array>
- <key>component_info</key>
- <string>Convolves a single source using the kernel you supply</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>genk</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple GIF</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- </array>
- <key>component_info</key>
- <string>Decompresses images stored in the GIF format.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>gif </string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Glass</string>
- <key>component_flags</key>
- <array>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- </array>
- <key>component_info</key>
- <string>Draws glass distortion effects</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>glas</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple H.261</string>
- <key>component_flags</key>
- <array>
- <string>codecInfoDoesTemporal</string>
- <string>codecInfoDoes32</string>
- </array>
- <key>component_info</key>
- <string>Decompresses images using H.261 compression algorithm</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>h261</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>H.263</string>
- <key>component_flags</key>
- <array>
- <string>codecInfoDoesTemporal</string>
- <string>codecInfoDoes32</string>
- </array>
- <key>component_info</key>
- <string>Decompresses images using H.263 compression algorithm</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>h263</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>HSL Balance</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoHasEffectParameterList</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- <string>codecInfoDoes4</string>
- <string>codecInfoDoes2</string>
- <string>codecInfoDoes1</string>
- </array>
- <key>component_info</key>
- <string>Allows you to modify the HSL balance of a single source</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>hslb</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>HSL Balance</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoHasEffectParameterList</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- <string>codecInfoDoes4</string>
- <string>codecInfoDoes2</string>
- <string>codecInfoDoes1</string>
- </array>
- <key>component_info</key>
- <string>Allows you to modify the HSL balance of a single source</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>hslb</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Intermediate Codec</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoes32</string>
- </array>
- <key>component_info</key>
- <string>Decompresses from Apple Intermediate Codec format.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/Library/QuickTime/AppleIntermediateCodec.component</string>
- <key>component_subtype</key>
- <string>icod</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple YUV420 Codec</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesVertFlip</string>
- <string>codecInfoDoesHorizFlip</string>
- <string>codecInfoDoesQuarter</string>
- <string>codecInfoDoesHalf</string>
- <string>codecInfoDoesQuad</string>
- <string>codecInfoDoesDouble</string>
- <string>codecInfoDoesShrink</string>
- <string>codecInfoDoesStretch</string>
- <string>codecInfoDoesDither</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- </array>
- <key>component_info</key>
- <string>Blits YUV420 data.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>j420</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Photo - JPEG</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes8</string>
- </array>
- <key>component_info</key>
- <string>Decompresses images compressed using the ISO standard baseline JPEG algorithm</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>jpeg</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Photo CD</string>
- <key>component_flags</key>
- <array>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoDoesQuarter</string>
- <string>codecInfoDoesHalf</string>
- <string>codecInfoDoesQuad</string>
- <string>codecInfoDoesDouble</string>
- <string>codecInfoDoesDither</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- </array>
- <key>component_info</key>
- <string>Decompresses images compressed in Photo CD format.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>kpcd</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Lens Flare</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoHasEffectParameterList</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- <string>codecInfoDoes4</string>
- <string>codecInfoDoes2</string>
- <string>codecInfoDoes1</string>
- </array>
- <key>component_info</key>
- <string>Simulates a camera lens flare effect.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>lens</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>QTVR Cylindrical Codec</string>
- <key>component_flags</key>
- <array>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- </array>
- <key>component_info</key>
- <string>Warps Panoramic Cylindrical Images to Planar Views (QTVR Panoramas)</string>
- <key>component_manufacturer</key>
- <string>pano</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeVR.component</string>
- <key>component_subtype</key>
- <string>ltpa</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple MPEG-1 Camcorder Video</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesTemporal</string>
- </array>
- <key>component_info</key>
- <string>Decompresses from MPEG-1 Camcorder Video</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/Library/QuickTime/AppleMPEG2Codec.component</string>
- <key>component_subtype</key>
- <string>m1v1</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple MPEG-2 SD Camcorder Video</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesTemporal</string>
- </array>
- <key>component_info</key>
- <string>Decompresses from MPEG-2 SD Camcorder Video</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/Library/QuickTime/AppleMPEG2Codec.component</string>
- <key>component_subtype</key>
- <string>m2v1</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Gradient Wipe</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoHasEffectParameterList</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- <string>codecInfoDoes4</string>
- <string>codecInfoDoes2</string>
- <string>codecInfoDoes1</string>
- </array>
- <key>component_info</key>
- <string>Does Gradient Wipe Effects</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>matt</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>JPEG 2000 Decoder</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes8</string>
- </array>
- <key>component_info</key>
- <string>Decompresses images stored in the JPEG 2000 JP2 format.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeImporters.component</string>
- <key>component_subtype</key>
- <string>mjp2</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Motion JPEG A</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes8</string>
- </array>
- <key>component_info</key>
- <string>Decompresses images compressed using Motion JPEG Format A</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>mjpa</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Motion JPEG A</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes8</string>
- </array>
- <key>component_info</key>
- <string>Decompresses images compressed using Motion JPEG Format A</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>mjpa</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Motion JPEG B</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes8</string>
- </array>
- <key>component_info</key>
- <string>Decompresses images compressed using Motion JPEG Format B</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>mjpb</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Motion JPEG B</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes8</string>
- </array>
- <key>component_info</key>
- <string>Decompresses images compressed using Motion JPEG Format B</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>mjpb</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple MPEG4 Decompressor</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesTemporal</string>
- <string>codecInfoDoes32</string>
- </array>
- <key>component_info</key>
- <string>Decompresses images using MPEG4 compression algorithm</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeMPEG4.component</string>
- <key>component_subtype</key>
- <string>mp4v</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Implode</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoHasEffectParameterList</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- <string>codecInfoDoes4</string>
- <string>codecInfoDoes2</string>
- <string>codecInfoDoes1</string>
- </array>
- <key>component_info</key>
- <string>Does Implode Effects</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>mplo</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple - Microsoft Video 1</string>
- <key>component_flags</key>
- <array>
- <string>codecInfoDoes32</string>
- </array>
- <key>component_info</key>
- <string>Decompresses images stored in Microsoft Video 1 format</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>msvc</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple YUV420 Codec</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesVertFlip</string>
- <string>codecInfoDoesHorizFlip</string>
- <string>codecInfoDoesQuarter</string>
- <string>codecInfoDoesHalf</string>
- <string>codecInfoDoesQuad</string>
- <string>codecInfoDoesDouble</string>
- <string>codecInfoDoesShrink</string>
- <string>codecInfoDoesStretch</string>
- <string>codecInfoDoesDither</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- </array>
- <key>component_info</key>
- <string>Blits YUV420 data.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>myuv</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Curve</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesWarp</string>
- <string>codecInfoDoesVertFlip</string>
- <string>codecInfoDoesHorizFlip</string>
- <string>codecInfoDoesRotate</string>
- <string>codecInfoDoesQuarter</string>
- <string>codecInfoDoesHalf</string>
- <string>codecInfoDoesQuad</string>
- <string>codecInfoDoesDouble</string>
- <string>codecInfoDoesShrink</string>
- <string>codecInfoDoesStretch</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- <string>codecInfoDoes4</string>
- <string>codecInfoDoes2</string>
- <string>codecInfoDoes1</string>
- </array>
- <key>component_info</key>
- <string>Decompresses a curve.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>path</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>PDF Image</string>
- <key>component_flags</key>
- <array>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- </array>
- <key>component_info</key>
- <string></string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/PDFImporter.component</string>
- <key>component_subtype</key>
- <string>pdf </string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple PNG</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes8</string>
- <string>codecInfoDoes4</string>
- <string>codecInfoDoes2</string>
- <string>codecInfoDoes1</string>
- </array>
- <key>component_info</key>
- <string>Decompresses images stored in the PNG format.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>png </string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Push</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoHasEffectParameterList</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- <string>codecInfoDoes4</string>
- <string>codecInfoDoes2</string>
- <string>codecInfoDoes1</string>
- </array>
- <key>component_info</key>
- <string>Does Push Effects</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>push</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Pixlet Video</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoes32</string>
- </array>
- <key>component_info</key>
- <string>Apple Pixlet Video Info</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/ApplePixletVideo.component</string>
- <key>component_subtype</key>
- <string>pxlt</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple QuickDraw</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoes1</string>
- </array>
- <key>component_info</key>
- <string>Decompresses images stored in the QuickDraw format.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>qdrw</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple r408</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoes32</string>
- </array>
- <key>component_info</key>
- <string>Decompresses images stored in 4:4:4:4 AY'CbCr (rendering) format</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>r408</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple None</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoDoesWarp</string>
- <string>codecInfoDoesBlend</string>
- <string>codecInfoDoesVertFlip</string>
- <string>codecInfoDoesHorizFlip</string>
- <string>codecInfoDoesRotate</string>
- <string>codecInfoDoesQuarter</string>
- <string>codecInfoDoesHalf</string>
- <string>codecInfoDoesQuad</string>
- <string>codecInfoDoesDouble</string>
- <string>codecInfoDoesMask</string>
- <string>codecInfoDoesShrink</string>
- <string>codecInfoDoesStretch</string>
- <string>codecInfoDoesDither</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- <string>codecInfoDoes4</string>
- <string>codecInfoDoes2</string>
- <string>codecInfoDoes1</string>
- </array>
- <key>component_info</key>
- <string>Displays images stored without any compression</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>raw </string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>DV</string>
- <key>component_flags</key>
- <array>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- <string>codecInfoDoes4</string>
- <string>codecInfoDoes2</string>
- <string>codecInfoDoes1</string>
- </array>
- <key>component_info</key>
- <string>This component is the DV Video Out Codec</string>
- <key>component_manufacturer</key>
- <string>res </string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeFireWireDV.component</string>
- <key>component_subtype</key>
- <string>raw </string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple RGB to YUV</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- </array>
- <key>component_info</key>
- <string>Converts RGB to YUV</string>
- <key>component_manufacturer</key>
- <string>yuv </string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>raw </string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>RGB Balance</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoHasEffectParameterList</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- <string>codecInfoDoes4</string>
- <string>codecInfoDoes2</string>
- <string>codecInfoDoes1</string>
- </array>
- <key>component_info</key>
- <string>Allows you to modify the RGB balance of a single source</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>rgbb</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Ripple</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoHasEffectParameterList</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- </array>
- <key>component_info</key>
- <string></string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>ripl</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Animation</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoDoesTemporal</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- <string>codecInfoDoes4</string>
- <string>codecInfoDoes2</string>
- <string>codecInfoDoes1</string>
- </array>
- <key>component_info</key>
- <string>Decompresses images compressed using run length encoding</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>rle </string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Video</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoDoesDouble</string>
- <string>codecInfoDoesTemporal</string>
- <string>codecInfoDoesDither</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- </array>
- <key>component_info</key>
- <string>Decompresses images compressed using Apple's Video compression algorithm</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>rpza</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Scaling Codec</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesVertFlip</string>
- <string>codecInfoDoesHorizFlip</string>
- <string>codecInfoDoesQuarter</string>
- <string>codecInfoDoesHalf</string>
- <string>codecInfoDoesQuad</string>
- <string>codecInfoDoesDouble</string>
- <string>codecInfoDoesShrink</string>
- <string>codecInfoDoesStretch</string>
- <string>codecInfoDoesDither</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- </array>
- <key>component_info</key>
- <string>Constructs scaling information for blitter clients.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>scal</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Sharpen</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoHasEffectParameterList</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- <string>codecInfoDoes4</string>
- <string>codecInfoDoes2</string>
- <string>codecInfoDoes1</string>
- </array>
- <key>component_info</key>
- <string>Applies a convolution sharpen to a single source</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>shrp</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Sharpen</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoHasEffectParameterList</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- <string>codecInfoDoes4</string>
- <string>codecInfoDoes2</string>
- <string>codecInfoDoes1</string>
- </array>
- <key>component_info</key>
- <string>Applies a convolution sharpen to a single source</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>shrp</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Slide</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoHasEffectParameterList</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- <string>codecInfoDoes4</string>
- <string>codecInfoDoes2</string>
- <string>codecInfoDoes1</string>
- </array>
- <key>component_info</key>
- <string>Does Slide Effects</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>slid</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Graphics</string>
- <key>component_flags</key>
- <array>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoDoesTemporal</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- </array>
- <key>component_info</key>
- <string>Decompresses images compressed using Sean's secret recipe</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>smc </string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Iris</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoHasEffectParameterList</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- <string>codecInfoDoes4</string>
- <string>codecInfoDoes2</string>
- <string>codecInfoDoes1</string>
- </array>
- <key>component_info</key>
- <string>Does Iris Effects</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>smp2</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Iris</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoHasEffectParameterList</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- <string>codecInfoDoes4</string>
- <string>codecInfoDoes2</string>
- <string>codecInfoDoes1</string>
- </array>
- <key>component_info</key>
- <string>Does Iris Effects</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>smp2</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Radial</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoHasEffectParameterList</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- <string>codecInfoDoes4</string>
- <string>codecInfoDoes2</string>
- <string>codecInfoDoes1</string>
- </array>
- <key>component_info</key>
- <string>Does Radial Effects</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>smp3</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Radial</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoHasEffectParameterList</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- <string>codecInfoDoes4</string>
- <string>codecInfoDoes2</string>
- <string>codecInfoDoes1</string>
- </array>
- <key>component_info</key>
- <string>Does Radial Effects</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>smp3</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Matrix Wipe</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoHasEffectParameterList</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- <string>codecInfoDoes4</string>
- <string>codecInfoDoes2</string>
- <string>codecInfoDoes1</string>
- </array>
- <key>component_info</key>
- <string>Does Matrix Effects</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>smp4</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Matrix Wipe</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoHasEffectParameterList</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- <string>codecInfoDoes4</string>
- <string>codecInfoDoes2</string>
- <string>codecInfoDoes1</string>
- </array>
- <key>component_info</key>
- <string>Does Matrix Effects</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>smp4</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Wipe</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoHasEffectParameterList</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- <string>codecInfoDoes4</string>
- <string>codecInfoDoes2</string>
- <string>codecInfoDoes1</string>
- </array>
- <key>component_info</key>
- <string>Does Wipe Effects</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>smpt</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Color Style</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoHasEffectParameterList</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- <string>codecInfoDoes4</string>
- <string>codecInfoDoes2</string>
- <string>codecInfoDoes1</string>
- </array>
- <key>component_info</key>
- <string>Allows you to change a single source with various color stylize options.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>solr</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Color Style</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoHasEffectParameterList</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- <string>codecInfoDoes4</string>
- <string>codecInfoDoes2</string>
- <string>codecInfoDoes1</string>
- </array>
- <key>component_info</key>
- <string>Allows you to change a single source with various color stylize options.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>solr</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ColorSync</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoHasEffectParameterList</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- <string>codecInfoDoes4</string>
- <string>codecInfoDoes2</string>
- <string>codecInfoDoes1</string>
- </array>
- <key>component_info</key>
- <string>Color matching of a single source</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>sync</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Sorenson YUV9 Codec</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesVertFlip</string>
- <string>codecInfoDoesHorizFlip</string>
- <string>codecInfoDoesQuarter</string>
- <string>codecInfoDoesHalf</string>
- <string>codecInfoDoesQuad</string>
- <string>codecInfoDoesDouble</string>
- <string>codecInfoDoesShrink</string>
- <string>codecInfoDoesStretch</string>
- <string>codecInfoDoesDither</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- </array>
- <key>component_info</key>
- <string>Blits Sorenson YUV9 data.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>syv9</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Text ATSUI Codec</string>
- <key>component_flags</key>
- <array>
- <string>codecInfoDoes32</string>
- </array>
- <key>component_info</key>
- <string>Draws text using ATSUI</string>
- <key>component_manufacturer</key>
- <string>atsu</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>text</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple TGA</string>
- <key>component_flags</key>
- <array>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- </array>
- <key>component_info</key>
- <string>Decompresses images stored in the TGA format.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>tga </string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple TIFF</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes8</string>
- <string>codecInfoDoes4</string>
- <string>codecInfoDoes2</string>
- <string>codecInfoDoes1</string>
- </array>
- <key>component_info</key>
- <string>Decompresses images stored in the TIFF format.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>tiff</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Color Tint</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoHasEffectParameterList</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- <string>codecInfoDoes4</string>
- <string>codecInfoDoes2</string>
- <string>codecInfoDoes1</string>
- </array>
- <key>component_info</key>
- <string>Allows you to tint a single source with selected colors.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>tint</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Color Tint</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoHasEffectParameterList</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- <string>codecInfoDoes4</string>
- <string>codecInfoDoes2</string>
- <string>codecInfoDoes1</string>
- </array>
- <key>component_info</key>
- <string>Allows you to tint a single source with selected colors.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>tint</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Traveling Matte</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoHasEffectParameterList</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- <string>codecInfoDoes4</string>
- <string>codecInfoDoes2</string>
- <string>codecInfoDoes1</string>
- </array>
- <key>component_info</key>
- <string>Does Traveling Matte Effects</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>trav</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple v408</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoes32</string>
- </array>
- <key>component_info</key>
- <string>Decompresses images stored in 4:4:4:4 CbYCrA format</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>v408</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple v408</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoes32</string>
- </array>
- <key>component_info</key>
- <string>Decompresses images stored in 4:4:4:4 CbYCrA format</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>v408</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Explode</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoHasEffectParameterList</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- <string>codecInfoDoes4</string>
- <string>codecInfoDoes2</string>
- <string>codecInfoDoes1</string>
- </array>
- <key>component_info</key>
- <string>Does Explode Effects</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>xplo</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Explode</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoHasEffectParameterList</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- <string>codecInfoDoes4</string>
- <string>codecInfoDoes2</string>
- <string>codecInfoDoes1</string>
- </array>
- <key>component_info</key>
- <string>Does Explode Effects</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>xplo</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple YUV420 Codec</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesVertFlip</string>
- <string>codecInfoDoesHorizFlip</string>
- <string>codecInfoDoesQuarter</string>
- <string>codecInfoDoesHalf</string>
- <string>codecInfoDoesQuad</string>
- <string>codecInfoDoesDouble</string>
- <string>codecInfoDoesShrink</string>
- <string>codecInfoDoesStretch</string>
- <string>codecInfoDoesDither</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- </array>
- <key>component_info</key>
- <string>Blits YUV420 data.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>y420</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Component Video - YUV422</string>
- <key>component_flags</key>
- <array>
- <string>codecInfoDoesSpool</string>
- <string>codecInfoDoesVertFlip</string>
- <string>codecInfoDoesHorizFlip</string>
- <string>codecInfoDoesQuarter</string>
- <string>codecInfoDoesHalf</string>
- <string>codecInfoDoesQuad</string>
- <string>codecInfoDoesDouble</string>
- <string>codecInfoDoesShrink</string>
- <string>codecInfoDoesStretch</string>
- <string>codecInfoDoesDither</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- </array>
- <key>component_info</key>
- <string>Decompresses an image stored in YUV format.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>yuv2</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple YUV422 Codec (yuvs)</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesVertFlip</string>
- <string>codecInfoDoesHorizFlip</string>
- <string>codecInfoDoesQuarter</string>
- <string>codecInfoDoesHalf</string>
- <string>codecInfoDoesQuad</string>
- <string>codecInfoDoesDouble</string>
- <string>codecInfoDoesShrink</string>
- <string>codecInfoDoesStretch</string>
- <string>codecInfoDoesDither</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- </array>
- <key>component_info</key>
- <string>Draws YUV422 (yuvs) data.</string>
- <key>component_manufacturer</key>
- <string>app3</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>yuvs</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>YUV 4:2:2 Hardware Acceleration Codec (yuvs)</string>
- <key>component_flags</key>
- <array>
- <string>codecInfoDoesQuarter</string>
- <string>codecInfoDoesHalf</string>
- <string>codecInfoDoesQuad</string>
- <string>codecInfoDoesDouble</string>
- <string>codecInfoDoesShrink</string>
- <string>codecInfoDoesStretch</string>
- <string>codecInfoDoesDither</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- </array>
- <key>component_info</key>
- <string>Provides acceleration services for onscreen video playback</string>
- <key>component_manufacturer</key>
- <string>appx</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/IOQTComponents.component</string>
- <key>component_subtype</key>
- <string>yuvs</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple YUV422 Codec (yuvu)</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesVertFlip</string>
- <string>codecInfoDoesHorizFlip</string>
- <string>codecInfoDoesQuarter</string>
- <string>codecInfoDoesHalf</string>
- <string>codecInfoDoesQuad</string>
- <string>codecInfoDoesDouble</string>
- <string>codecInfoDoesShrink</string>
- <string>codecInfoDoesStretch</string>
- <string>codecInfoDoesDither</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- </array>
- <key>component_info</key>
- <string>Draws YUV422 (yuvu) data.</string>
- <key>component_manufacturer</key>
- <string>app3</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>yuvu</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple YUV422 Codec</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoDoesVertFlip</string>
- <string>codecInfoDoesHorizFlip</string>
- <string>codecInfoDoesQuarter</string>
- <string>codecInfoDoesHalf</string>
- <string>codecInfoDoesQuad</string>
- <string>codecInfoDoesDouble</string>
- <string>codecInfoDoesShrink</string>
- <string>codecInfoDoesStretch</string>
- <string>codecInfoDoesDither</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- <string>codecInfoDoes8</string>
- </array>
- <key>component_info</key>
- <string>Blits YUV422 data.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>yuvx</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Zoom</string>
- <key>component_flags</key>
- <array>
- <string>cmpThreadSafe</string>
- <string>codecInfoHasEffectParameterList</string>
- <string>codecInfoDoes32</string>
- <string>codecInfoDoes16</string>
- </array>
- <key>component_info</key>
- <string>Does Zoom Effects</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>zoom</string>
- <key>component_type</key>
- <string>imdc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>RGB Upside down to RGB</string>
- <key>component_info</key>
- <string></string>
- <key>component_manufacturer</key>
- <string>raw </string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>WRAW</string>
- <key>component_type</key>
- <string>imtc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>M-JPEG A to M-JPEG B</string>
- <key>component_info</key>
- <string></string>
- <key>component_manufacturer</key>
- <string>mjpb</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>mjpa</string>
- <key>component_type</key>
- <string>imtc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>M-JPEG B to M-JPEG A</string>
- <key>component_info</key>
- <string></string>
- <key>component_manufacturer</key>
- <string>mjpa</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>mjpb</string>
- <key>component_type</key>
- <string>imtc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>RGB to RGB Upside down</string>
- <key>component_info</key>
- <string></string>
- <key>component_manufacturer</key>
- <string>WRAW</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>raw </string>
- <key>component_type</key>
- <string>imtc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>RGB to RGB Upside down</string>
- <key>component_info</key>
- <string></string>
- <key>component_manufacturer</key>
- <string>WRAW</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>raw </string>
- <key>component_type</key>
- <string>imtc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>FileInstallAction</string>
- <key>component_info</key>
- <string></string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>file</string>
- <key>component_type</key>
- <string>inac</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ThingInstallAction</string>
- <key>component_info</key>
- <string></string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>thng</string>
- <key>component_type</key>
- <string>inac</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple MPEG Media Handler</string>
- <key>component_flags</key>
- <string>0x10000001</string>
- <key>component_info</key>
- <string>Plays MPEG movies</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeMPEG.component</string>
- <key>component_subtype</key>
- <string>MPEG</string>
- <key>component_type</key>
- <string>mhlr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>QTVR Panorama Media Handler</string>
- <key>component_flags</key>
- <string>0x00000001</string>
- <key>component_info</key>
- <string>Data Storage track for Panoramic Media</string>
- <key>component_manufacturer</key>
- <string>zzzz</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeVR.component</string>
- <key>component_subtype</key>
- <string>STpn</string>
- <key>component_type</key>
- <string>mhlr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ASN1 Media</string>
- <key>component_flags</key>
- <string>0x10098010</string>
- <key>component_info</key>
- <string>ASN1 Media</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>asn1</string>
- <key>component_type</key>
- <string>mhlr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Closed Caption Media Handler</string>
- <key>component_flags</key>
- <string>0x10000001</string>
- <key>component_info</key>
- <string>Plays closed captions in QuickTime movies</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>clcp</string>
- <key>component_type</key>
- <string>mhlr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Generic Media Handler</string>
- <key>component_flags</key>
- <string>0x10000001</string>
- <key>component_info</key>
- <string>Assists other QuickTime™ Media Handlers</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>gnrc</string>
- <key>component_type</key>
- <string>mhlr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>hint media handler</string>
- <key>component_flags</key>
- <string>0x00000001</string>
- <key>component_info</key>
- <string>hint media handler</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>hint</string>
- <key>component_type</key>
- <string>mhlr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple elementary audio MPEG Media Handler</string>
- <key>component_flags</key>
- <string>0x10000001</string>
- <key>component_info</key>
- <string>Plays elementary audio MPEG movies</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeMPEG.component</string>
- <key>component_subtype</key>
- <string>m1a </string>
- <key>component_type</key>
- <string>mhlr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple elementary audio MPEG Media Handler</string>
- <key>component_flags</key>
- <string>0x10000001</string>
- <key>component_info</key>
- <string>Plays elementary audio MPEG movies</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeMPEG.component</string>
- <key>component_subtype</key>
- <string>m1s </string>
- <key>component_type</key>
- <string>mhlr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple elementary video MPEG Media Handler</string>
- <key>component_flags</key>
- <string>0x10000001</string>
- <key>component_info</key>
- <string>Plays elementary video MPEG movies</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeMPEG.component</string>
- <key>component_subtype</key>
- <string>m1v </string>
- <key>component_type</key>
- <string>mhlr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple elementary audio MPEG Media Handler</string>
- <key>component_flags</key>
- <string>0x10000001</string>
- <key>component_info</key>
- <string>Plays elementary audio MPEG movies</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeMPEG.component</string>
- <key>component_subtype</key>
- <string>m2a </string>
- <key>component_type</key>
- <string>mhlr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Metadata Media Handler</string>
- <key>component_flags</key>
- <string>0x10000001</string>
- <key>component_info</key>
- <string>Contains Metadata Media Data</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>meta</string>
- <key>component_type</key>
- <string>mhlr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Standard Media Handler</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Assists other QuickTime Media Handlers</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>mhlr</string>
- <key>component_type</key>
- <string>mhlr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Movie Media Handler</string>
- <key>component_flags</key>
- <string>0x00000001</string>
- <key>component_info</key>
- <string>Plays Movies in QuickTime movies (!?!)</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>moov</string>
- <key>component_type</key>
- <string>mhlr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Music Media Handler</string>
- <key>component_flags</key>
- <string>0x00000001</string>
- <key>component_info</key>
- <string>Plays QuickTime music</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>musi</string>
- <key>component_type</key>
- <string>mhlr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>QTVR Object Media Handler</string>
- <key>component_flags</key>
- <string>0x00000001</string>
- <key>component_info</key>
- <string>Data Storage track for Object Media</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeVR.component</string>
- <key>component_subtype</key>
- <string>obje</string>
- <key>component_type</key>
- <string>mhlr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple MPEG-4 ODSM Media Handler</string>
- <key>component_flags</key>
- <string>0x10000001</string>
- <key>component_info</key>
- <string>Contains MPEG-4 ODSM Data</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeMPEG4.component</string>
- <key>component_subtype</key>
- <string>odsm</string>
- <key>component_type</key>
- <string>mhlr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>QTVR Panorama Media Handler</string>
- <key>component_flags</key>
- <string>0x00000001</string>
- <key>component_info</key>
- <string>Data Storage track for Panoramic Media</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeVR.component</string>
- <key>component_subtype</key>
- <string>pano</string>
- <key>component_type</key>
- <string>mhlr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>QTVR Media Handler</string>
- <key>component_flags</key>
- <string>0x00000001</string>
- <key>component_info</key>
- <string>Data Storage track for QTVR Media</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeVR.component</string>
- <key>component_subtype</key>
- <string>qtvr</string>
- <key>component_type</key>
- <string>mhlr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Quartz Composer Media Handler</string>
- <key>component_flags</key>
- <string>0x10000001</string>
- <key>component_info</key>
- <string>Plays Quartz Composer tracks in QuickTime movies</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuartzComposer.component</string>
- <key>component_subtype</key>
- <string>qtz </string>
- <key>component_type</key>
- <string>mhlr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Subtitle Media Handler</string>
- <key>component_flags</key>
- <string>0x10000001</string>
- <key>component_info</key>
- <string>Plays Subtitles in QuickTime movies</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>sbtl</string>
- <key>component_type</key>
- <string>mhlr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Subtitle Media Handler</string>
- <key>component_flags</key>
- <string>0x10000001</string>
- <key>component_info</key>
- <string>Plays Subtitles in QuickTime movies</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>sbtl</string>
- <key>component_type</key>
- <string>mhlr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple MPEG-4 Scene Media Handler</string>
- <key>component_flags</key>
- <string>0x10000001</string>
- <key>component_info</key>
- <string>Contains MPEG-4 Scene Description Data</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeMPEG4.component</string>
- <key>component_subtype</key>
- <string>sdsm</string>
- <key>component_type</key>
- <string>mhlr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Skin Media Handler</string>
- <key>component_flags</key>
- <string>0x00000001</string>
- <key>component_info</key>
- <string>Tracks Skins in QuickTime movies</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>skin</string>
- <key>component_type</key>
- <string>mhlr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Sound Media Handler</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Plays QuickTime sound</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>soun</string>
- <key>component_type</key>
- <string>mhlr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Sprite Animation Media Handler</string>
- <key>component_flags</key>
- <string>0x00000001</string>
- <key>component_info</key>
- <string></string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>sprt</string>
- <key>component_type</key>
- <string>mhlr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>stream media handler</string>
- <key>component_flags</key>
- <string>0x00000001</string>
- <key>component_info</key>
- <string>stream media handler</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>strm</string>
- <key>component_type</key>
- <string>mhlr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Time Code Media Handler</string>
- <key>component_flags</key>
- <string>0x10000001</string>
- <key>component_info</key>
- <string></string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>tc64</string>
- <key>component_type</key>
- <string>mhlr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Time Code Media Handler</string>
- <key>component_flags</key>
- <string>0x10000001</string>
- <key>component_info</key>
- <string></string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>tc64</string>
- <key>component_type</key>
- <string>mhlr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Text Media Handler</string>
- <key>component_flags</key>
- <string>0x00000001</string>
- <key>component_info</key>
- <string>Plays text in QuickTime movies</string>
- <key>component_manufacturer</key>
- <string>app2</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>text</string>
- <key>component_type</key>
- <string>mhlr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Time Code Media Handler</string>
- <key>component_flags</key>
- <string>0x10000001</string>
- <key>component_info</key>
- <string>Tracks TimeCodes in QuickTime movies</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>tmcd</string>
- <key>component_type</key>
- <string>mhlr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Tween Media Handler</string>
- <key>component_flags</key>
- <string>0x00000001</string>
- <key>component_info</key>
- <string>Generates in-between values to send to other media handlers.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>twen</string>
- <key>component_type</key>
- <string>mhlr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Video Media Handler</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Plays QuickTime video</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>vide</string>
- <key>component_type</key>
- <string>mhlr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Sound1 Media Handler</string>
- <key>component_info</key>
- <string>Plays QuickTime sound</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>sou1</string>
- <key>component_type</key>
- <string>mhls</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Video1 Media Handler</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Plays QuickTime video</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>vid1</string>
- <key>component_type</key>
- <string>mhlv</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Mixer</string>
- <key>component_flags</key>
- <string>0x00200c0d</string>
- <key>component_info</key>
- <string>Manages multiple sources of sound component chains. Supports mixing, amplitude scaling, stereo or mono output, 8 or 16 bit data, and calls sound completion routines.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/SoundManagerComponents.component</string>
- <key>component_subtype</key>
- <string>mixw</string>
- <key>component_type</key>
- <string>mixr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Software Music Player</string>
- <key>component_info</key>
- <string>Plays musical notes.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>ss </string>
- <key>component_type</key>
- <string>musi</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>FireWire</string>
- <key>component_info</key>
- <string>This component is the FireWire DV Muxer</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeFireWireDV.component</string>
- <key>component_subtype</key>
- <string>dv </string>
- <key>component_type</key>
- <string>mux </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>NetworkStatus</string>
- <key>component_flags</key>
- <string>0x00000005</string>
- <key>component_info</key>
- <string>NetworkStatus</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>nets</string>
- <key>component_type</key>
- <string>nets</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>http</string>
- <key>component_info</key>
- <string>http</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>http</string>
- <key>component_type</key>
- <string>netw</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>TCP network</string>
- <key>component_info</key>
- <string>TCP network</string>
- <key>component_manufacturer</key>
- <string>cfnw</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>tcp </string>
- <key>component_type</key>
- <string>netw</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>TCP (SOCKS5)</string>
- <key>component_info</key>
- <string>TCP (SOCKS5)</string>
- <key>component_manufacturer</key>
- <string>sck5</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>tcp </string>
- <key>component_type</key>
- <string>netw</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>UDP network</string>
- <key>component_info</key>
- <string>UDP network</string>
- <key>component_manufacturer</key>
- <string>cfnw</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>udp </string>
- <key>component_type</key>
- <string>netw</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>UDP (SOCKS5)</string>
- <key>component_info</key>
- <string>UDP (SOCKS5)</string>
- <key>component_manufacturer</key>
- <string>sck5</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>udp </string>
- <key>component_type</key>
- <string>netw</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Note Allocator</string>
- <key>component_info</key>
- <string>Allocates music-playing resources.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>nota</string>
- <key>component_type</key>
- <string>nota</string>
- </dict>
- <dict>
- <key>_name</key>
- <string></string>
- <key>component_info</key>
- <string></string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>base</string>
- <key>component_type</key>
- <string>null</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppleScript</string>
- <key>component_flags</key>
- <string>0x100001fe</string>
- <key>component_info</key>
- <string>AppleScript.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/AppleScript.component</string>
- <key>component_subtype</key>
- <string>ascr</string>
- <key>component_type</key>
- <string>osa </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Generic Scripting System</string>
- <key>component_flags</key>
- <string>0x100001fe</string>
- <key>component_info</key>
- <string>Transparently supports all installed OSA scripting systems.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/AppleScript.component</string>
- <key>component_subtype</key>
- <string>scpt</string>
- <key>component_type</key>
- <string>osa </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Parser for XML 1.0</string>
- <key>component_info</key>
- <string></string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>xml </string>
- <key>component_type</key>
- <string>pars</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Movie Controller</string>
- <key>component_info</key>
- <string>Assists applications playing and editing QuickTime movies</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>?std</string>
- <key>component_type</key>
- <string>play</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>QTVR 1.0 Panorama Controller</string>
- <key>component_flags</key>
- <string>0x00000001</string>
- <key>component_info</key>
- <string>Implements QTVR movie controller</string>
- <key>component_manufacturer</key>
- <string>zzzz</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeVR.component</string>
- <key>component_subtype</key>
- <string>STpn</string>
- <key>component_type</key>
- <string>play</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>None Movie Controller</string>
- <key>component_info</key>
- <string>Assists applications playing and editing QuickTime movies</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>none</string>
- <key>component_type</key>
- <string>play</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Object Controller</string>
- <key>component_flags</key>
- <string>0x00000003</string>
- <key>component_info</key>
- <string>Controls Object nodes</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeVR.component</string>
- <key>component_subtype</key>
- <string>obje</string>
- <key>component_type</key>
- <string>play</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Panorama Controller</string>
- <key>component_flags</key>
- <string>0x00000003</string>
- <key>component_info</key>
- <string>Controls Panoramic nodes</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeVR.component</string>
- <key>component_subtype</key>
- <string>pano</string>
- <key>component_type</key>
- <string>play</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>QTVR Movie Controller</string>
- <key>component_flags</key>
- <string>0x00000001</string>
- <key>component_info</key>
- <string>Implements QTVR movie controller</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeVR.component</string>
- <key>component_subtype</key>
- <string>qtvr</string>
- <key>component_type</key>
- <string>play</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>QTVR 1.0 Object Controller</string>
- <key>component_flags</key>
- <string>0x00000001</string>
- <key>component_info</key>
- <string>Implements QTVR movie controller</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeVR.component</string>
- <key>component_subtype</key>
- <string>stna</string>
- <key>component_type</key>
- <string>play</string>
- </dict>
- <dict>
- <key>_name</key>
- <string></string>
- <key>component_info</key>
- <string></string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>helo</string>
- <key>component_type</key>
- <string>plug</string>
- </dict>
- <dict>
- <key>_name</key>
- <string></string>
- <key>component_info</key>
- <string></string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>helo</string>
- <key>component_type</key>
- <string>plug</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Browser Plug-in Helper</string>
- <key>component_info</key>
- <string>Helps the browser plug-in</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>hlpr</string>
- <key>component_type</key>
- <string>plug</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Movie Preview Maker</string>
- <key>component_info</key>
- <string>Makes movie file previews</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>MooV</string>
- <key>component_type</key>
- <string>pmak</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Pict Preview Maker</string>
- <key>component_info</key>
- <string>Makes picture file previews</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>PICT</string>
- <key>component_type</key>
- <string>pmak</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>QuickTime Image Preview Maker</string>
- <key>component_flags</key>
- <string>0x00000002</string>
- <key>component_info</key>
- <string>Creates previews for QuickTime Image files</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>qtif</string>
- <key>component_type</key>
- <string>pmak</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>PICS Preview Viewer</string>
- <key>component_flags</key>
- <string>0x00000002</string>
- <key>component_info</key>
- <string>Displays PICS file previews</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>PICS</string>
- <key>component_type</key>
- <string>pnot</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Picture Preview Viewer</string>
- <key>component_info</key>
- <string>Displays picture file previews</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>PICT</string>
- <key>component_type</key>
- <string>pnot</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>QUALCOMM PureVoice Previewer</string>
- <key>component_flags</key>
- <string>0x00000003</string>
- <key>component_info</key>
- <string>Previews QUALCOMM PureVoice audio files.</string>
- <key>component_manufacturer</key>
- <string>QCOM</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>celp</string>
- <key>component_type</key>
- <string>pnot</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Movie Previewer</string>
- <key>component_flags</key>
- <string>0x00000001</string>
- <key>component_info</key>
- <string>Displays movie file previews</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>moov</string>
- <key>component_type</key>
- <string>pnot</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Standard Progress</string>
- <key>component_info</key>
- <string>Provides a default Progress Dialog for applications</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>0x00000000</string>
- <key>component_type</key>
- <string>prog</string>
- </dict>
- <dict>
- <key>_name</key>
- <string></string>
- <key>component_info</key>
- <string></string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeFireWireDV.component</string>
- <key>component_subtype</key>
- <string>dv </string>
- <key>component_type</key>
- <string>qaou</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Cache</string>
- <key>component_info</key>
- <string>Cache</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>http</string>
- <key>component_type</key>
- <string>qtch</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Base Visual Context</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Implements Base Visual Context</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>base</string>
- <key>component_type</key>
- <string>qtvc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>OpenGL Texture Visual Context</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Implements OpenGL Texture Visual Context</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>oglt</string>
- <key>component_type</key>
- <string>qtvc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>PixelBuffer Visual Context</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Implements PixelBuffer Visual Context</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>pixb</string>
- <key>component_type</key>
- <string>qtvc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Base Visual Unit</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Base Visual Unit</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>base</string>
- <key>component_type</key>
- <string>qtvu</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>DeInterlace Visual Unit</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>DeInterlace Visual Unit</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>dint</string>
- <key>component_type</key>
- <string>qtvu</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Image Queue Visual Unit</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Image Queue Visual Unit</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>ique</string>
- <key>component_type</key>
- <string>qtvu</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>QD Image Queue Visual Unit</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>QD Image Queue Visual Unit</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>qdiq</string>
- <key>component_type</key>
- <string>qtvu</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Visual Adjustment Visual Unit</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Visual Adjustment Visual Unit</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>vadj</string>
- <key>component_type</key>
- <string>qtvu</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Visual Compositor Visual Unit</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Visual Compositor Visual Unit</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>vcom</string>
- <key>component_type</key>
- <string>qtvu</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>RTPv2</string>
- <key>component_info</key>
- <string>RTP Version 2</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>v2 </string>
- <key>component_type</key>
- <string>rtp </string>
- </dict>
- <dict>
- <key>_name</key>
- <string>rtp payload map</string>
- <key>component_info</key>
- <string>rtp payload map</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>gnrc</string>
- <key>component_type</key>
- <string>rtpc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>RTP Live Packetizer</string>
- <key>component_info</key>
- <string>RTP Live Packetizer</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>rtpm</string>
- <key>component_type</key>
- <string>rtpl</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>H.263+ Media Packetizer</string>
- <key>component_info</key>
- <string>H.263+ Media Packetizer</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>263+</string>
- <key>component_type</key>
- <string>rtpm</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple MPEG Packetizer</string>
- <key>component_info</key>
- <string>Packetizes MPEG for RTP</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeMPEG.component</string>
- <key>component_subtype</key>
- <string>MPEG</string>
- <key>component_type</key>
- <string>rtpm</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>QDesign Music 2 Packetizer</string>
- <key>component_info</key>
- <string>QDesign Music 2 Packetizer</string>
- <key>component_manufacturer</key>
- <string>QDes</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>QDM2</string>
- <key>component_type</key>
- <string>rtpm</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Pure Voice Media Packetizer</string>
- <key>component_info</key>
- <string>Pure Voice Media Packetizer</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>Qclp</string>
- <key>component_type</key>
- <string>rtpm</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Sorenson Video™ Media Packetizer</string>
- <key>component_info</key>
- <string>Sorenson Video™ Media Packetizer</string>
- <key>component_manufacturer</key>
- <string>SVis</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>SVQ1</string>
- <key>component_type</key>
- <string>rtpm</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Sorenson Video™ Media Packetizer</string>
- <key>component_info</key>
- <string>Sorenson Video™ Media Packetizer</string>
- <key>component_manufacturer</key>
- <string>SMI </string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>SVQ3</string>
- <key>component_type</key>
- <string>rtpm</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>RTP AMR Packetizer</string>
- <key>component_info</key>
- <string>RTP ARM Packetizer</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>amr </string>
- <key>component_type</key>
- <string>rtpm</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>RTP H.264 Packetizer</string>
- <key>component_info</key>
- <string>RTP H.264 Packetizer</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>avc1</string>
- <key>component_type</key>
- <string>rtpm</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>RTP Base Media Packetizer</string>
- <key>component_info</key>
- <string>RTP Base Media Packetizer</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>gnrc</string>
- <key>component_type</key>
- <string>rtpm</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>H.261 Media Packetizer</string>
- <key>component_info</key>
- <string>H.261 Media Packetizer</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>h261</string>
- <key>component_type</key>
- <string>rtpm</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>H.263+ 3GPP Media Packetizer</string>
- <key>component_info</key>
- <string>H.263+ 3GPP Media Packetizer</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>h32k</string>
- <key>component_type</key>
- <string>rtpm</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>RTP JPEG Media Packetizer</string>
- <key>component_info</key>
- <string>RTP JPEG Media Packetizer</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>jpeg</string>
- <key>component_type</key>
- <string>rtpm</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>RTP MPEG4 LATM Audio Packetizer</string>
- <key>component_info</key>
- <string>RTP MPEG4 LATM Audio Packetizer</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>latm</string>
- <key>component_type</key>
- <string>rtpm</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>RTP MPEG4 Audio Packetizer</string>
- <key>component_info</key>
- <string>RTP MPEG4 Audio Packetizer</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>mp4a</string>
- <key>component_type</key>
- <string>rtpm</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>RTP MPEG4 Video Packetizer</string>
- <key>component_info</key>
- <string>RTP MPEG4 Video Packetizer</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>mp4v</string>
- <key>component_type</key>
- <string>rtpm</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>QuickTime Media Packetizer</string>
- <key>component_info</key>
- <string>QuickTime Media Packetizer</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>qtim</string>
- <key>component_type</key>
- <string>rtpm</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Sound Media Packetizer</string>
- <key>component_info</key>
- <string>Sound Media Packetizer</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>soun</string>
- <key>component_type</key>
- <string>rtpm</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>RTP H263Plus Reassembler</string>
- <key>component_info</key>
- <string>RTP H263Plus Reassembler</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>263+</string>
- <key>component_type</key>
- <string>rtpr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple MPEG Reassembler</string>
- <key>component_info</key>
- <string>Reassembles MPEG RTP streams</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeMPEG.component</string>
- <key>component_subtype</key>
- <string>MPEG</string>
- <key>component_type</key>
- <string>rtpr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>QDesign Music 2 Reassembler</string>
- <key>component_info</key>
- <string>QDesign Music 2 Reassembler</string>
- <key>component_manufacturer</key>
- <string>QDes</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>QDM2</string>
- <key>component_type</key>
- <string>rtpr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>RTP PureVoice Reassembler</string>
- <key>component_info</key>
- <string>RTP PureVoice Reassembler</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>Qclp</string>
- <key>component_type</key>
- <string>rtpr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Sorenson Video™ Media Reassembler</string>
- <key>component_info</key>
- <string>Sorenson Video™ Media Reassembler</string>
- <key>component_manufacturer</key>
- <string>SVis</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>SVQ1</string>
- <key>component_type</key>
- <string>rtpr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Sorenson Video™ Media Reassembler</string>
- <key>component_info</key>
- <string>Sorenson Video™ Media Reassembler</string>
- <key>component_manufacturer</key>
- <string>SMI </string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>SVQ3</string>
- <key>component_type</key>
- <string>rtpr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>RTP AMR Reassembler</string>
- <key>component_info</key>
- <string>RTP AMR Reassembler</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>amr </string>
- <key>component_type</key>
- <string>rtpr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>RTP H.264 Reassembler</string>
- <key>component_info</key>
- <string>RTP H.264 Reassembler</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>avc1</string>
- <key>component_type</key>
- <string>rtpr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>RTP Base Reassembler</string>
- <key>component_info</key>
- <string>RTP Base Reassembler</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>gnrc</string>
- <key>component_type</key>
- <string>rtpr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>RTP H261 Reassembler</string>
- <key>component_info</key>
- <string>RTP H261 Reassembler</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>h261</string>
- <key>component_type</key>
- <string>rtpr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>RTP H263 Reassembler</string>
- <key>component_info</key>
- <string>RTP H263 Reassembler</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>h263</string>
- <key>component_type</key>
- <string>rtpr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>RTP JPEG Reassembler</string>
- <key>component_info</key>
- <string>RTP JPEG Reassembler</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>jpeg</string>
- <key>component_type</key>
- <string>rtpr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>RTP MPEG4 Audio Reassembler</string>
- <key>component_info</key>
- <string>RTP MPEG4 Audio Reassembler</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>mp4a</string>
- <key>component_type</key>
- <string>rtpr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>RTP MPEG4 Video Reassembler</string>
- <key>component_info</key>
- <string>RTP MPEG4 Video Reassembler</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>mp4v</string>
- <key>component_type</key>
- <string>rtpr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>rtp quicktime Reassembler</string>
- <key>component_info</key>
- <string>rtp quicktime Reassembler</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>qtim</string>
- <key>component_type</key>
- <string>rtpr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>RTP Audio Reassembler</string>
- <key>component_info</key>
- <string>RTP Audio Reassembler</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>soun</string>
- <key>component_type</key>
- <string>rtpr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string></string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string></string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>audi</string>
- <key>component_type</key>
- <string>scdi</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Compression</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Standard image compression settings dialog</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>imag</string>
- <key>component_type</key>
- <string>scdi</string>
- </dict>
- <dict>
- <key>_name</key>
- <string></string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string></string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>soun</string>
- <key>component_type</key>
- <string>scdi</string>
- </dict>
- <dict>
- <key>_name</key>
- <string></string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string></string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>vide</string>
- <key>component_type</key>
- <string>scdi</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MACE 3:1</string>
- <key>component_flags</key>
- <string>0x00200909</string>
- <key>component_info</key>
- <string>Macintosh Audio Compression and Expansion (MACE) compression with a 3 to 1 ratio.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/SoundManagerComponents.component</string>
- <key>component_subtype</key>
- <string>MAC3</string>
- <key>component_type</key>
- <string>scom</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MACE 6:1</string>
- <key>component_flags</key>
- <string>0x00200909</string>
- <key>component_info</key>
- <string>Macintosh Audio Compression and Expansion (MACE) compression with a 6 to 1 ratio.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/SoundManagerComponents.component</string>
- <key>component_subtype</key>
- <string>MAC6</string>
- <key>component_type</key>
- <string>scom</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>QDesign Music 2</string>
- <key>component_flags</key>
- <string>0x00000c0c</string>
- <key>component_info</key>
- <string>Converts 16-bit linear samples into QDesign Music 2 ('QDM2') compressed data.</string>
- <key>component_manufacturer</key>
- <string>QDes</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>QDM2</string>
- <key>component_type</key>
- <string>scom</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Qualcomm PureVoice™</string>
- <key>component_flags</key>
- <string>0x00000404</string>
- <key>component_info</key>
- <string>Converts 16-bit linear samples into PureVoice compressed data.</string>
- <key>component_manufacturer</key>
- <string>QCOM</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>Qclp</string>
- <key>component_type</key>
- <string>scom</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Lossless</string>
- <key>component_flags</key>
- <string>0x10200c0c</string>
- <key>component_info</key>
- <string>Apple Lossless Audio Compressor component</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/SoundManagerComponents.component</string>
- <key>component_subtype</key>
- <string>alac</string>
- <key>component_type</key>
- <string>scom</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ALaw 2:1</string>
- <key>component_flags</key>
- <string>0x00200d0c</string>
- <key>component_info</key>
- <string>ALaw compression with a 2 to 1 ratio.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/SoundManagerComponents.component</string>
- <key>component_subtype</key>
- <string>alaw</string>
- <key>component_type</key>
- <string>scom</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>32-bit Floating Point</string>
- <key>component_flags</key>
- <string>0x00200d0d</string>
- <key>component_info</key>
- <string>32-bit Floating Point conversion</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/SoundManagerComponents.component</string>
- <key>component_subtype</key>
- <string>fl32</string>
- <key>component_type</key>
- <string>scom</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>64-bit Floating Point</string>
- <key>component_flags</key>
- <string>0x00200d0d</string>
- <key>component_info</key>
- <string>64-bit Floating Point conversion</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/SoundManagerComponents.component</string>
- <key>component_subtype</key>
- <string>fl64</string>
- <key>component_type</key>
- <string>scom</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>IMA 4:1</string>
- <key>component_flags</key>
- <string>0x00200d0c</string>
- <key>component_info</key>
- <string>Interactive Multimedia Association (IMA) compression with a 4 to 1 ratio.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/SoundManagerComponents.component</string>
- <key>component_subtype</key>
- <string>ima4</string>
- <key>component_type</key>
- <string>scom</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>24-bit Integer</string>
- <key>component_flags</key>
- <string>0x00200d0d</string>
- <key>component_info</key>
- <string>24-bit Integer big or little endian format conversion</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/SoundManagerComponents.component</string>
- <key>component_subtype</key>
- <string>in24</string>
- <key>component_type</key>
- <string>scom</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>32-bit Integer</string>
- <key>component_flags</key>
- <string>0x00200d0d</string>
- <key>component_info</key>
- <string>32-bit Integer big or little endian format conversion</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/SoundManagerComponents.component</string>
- <key>component_subtype</key>
- <string>in32</string>
- <key>component_type</key>
- <string>scom</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MPEG-4 Audio</string>
- <key>component_flags</key>
- <string>0x10200c0c</string>
- <key>component_info</key>
- <string>MPEG-4 Audio Compressor component</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/SoundManagerComponents.component</string>
- <key>component_subtype</key>
- <string>mp4a</string>
- <key>component_type</key>
- <string>scom</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>16-bit Little Endian</string>
- <key>component_flags</key>
- <string>0x00200c0c</string>
- <key>component_info</key>
- <string>16-bit Little Endian format conversion</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/SoundManagerComponents.component</string>
- <key>component_subtype</key>
- <string>sowt</string>
- <key>component_type</key>
- <string>scom</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>16-bit Big Endian</string>
- <key>component_flags</key>
- <string>0x00200c0c</string>
- <key>component_info</key>
- <string>16-bit Big Endian format conversion</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/SoundManagerComponents.component</string>
- <key>component_subtype</key>
- <string>twos</string>
- <key>component_type</key>
- <string>scom</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>µLaw 2:1</string>
- <key>component_flags</key>
- <string>0x00200d0c</string>
- <key>component_info</key>
- <string>µLaw (CCITT Recommendation G.711) compression with a 2 to 1 ratio.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/SoundManagerComponents.component</string>
- <key>component_subtype</key>
- <string>ulaw</string>
- <key>component_type</key>
- <string>scom</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MPEG Layer-3 Audio</string>
- <key>component_flags</key>
- <string>0x00000404</string>
- <key>component_info</key>
- <string>Fraunhofer IIS MPEG Layer-3 Audio</string>
- <key>component_manufacturer</key>
- <string>FhG </string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>.mp3</string>
- <key>component_type</key>
- <string>sdec</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MPEG Layer-3 Audio</string>
- <key>component_flags</key>
- <string>0x00000404</string>
- <key>component_info</key>
- <string>Fraunhofer IIS MPEG Layer-3 Audio</string>
- <key>component_manufacturer</key>
- <string>FhG </string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>.mp3</string>
- <key>component_type</key>
- <string>sdec</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MACE 3:1</string>
- <key>component_flags</key>
- <string>0x00200909</string>
- <key>component_info</key>
- <string>Macintosh Audio Compression and Expansion (MACE) compression with a 3 to 1 ratio.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/SoundManagerComponents.component</string>
- <key>component_subtype</key>
- <string>MAC3</string>
- <key>component_type</key>
- <string>sdec</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MACE 6:1</string>
- <key>component_flags</key>
- <string>0x00200909</string>
- <key>component_info</key>
- <string>Macintosh Audio Compression and Expansion (MACE) compression with a 6 to 1 ratio.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/SoundManagerComponents.component</string>
- <key>component_subtype</key>
- <string>MAC6</string>
- <key>component_type</key>
- <string>sdec</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>QDesign Music 2</string>
- <key>component_flags</key>
- <string>0x00000c0c</string>
- <key>component_info</key>
- <string>Converts QDesign Music 2 ('QDM2') compressed data into 16-bit linear.</string>
- <key>component_manufacturer</key>
- <string>QDes</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>QDM2</string>
- <key>component_type</key>
- <string>sdec</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>QDesign Music 1 Decoder</string>
- <key>component_flags</key>
- <string>0x00000c0c</string>
- <key>component_info</key>
- <string>Converts QDesign Music 1 ('QDMC') compressed data into 16-bit linear audio samples.</string>
- <key>component_manufacturer</key>
- <string>QDes</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>QDMC</string>
- <key>component_type</key>
- <string>sdec</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Qualcomm PureVoice™</string>
- <key>component_flags</key>
- <string>0x00000f04</string>
- <key>component_info</key>
- <string>Converts PureVoice compressed data into PCM samples.</string>
- <key>component_manufacturer</key>
- <string>QCOM</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>Qclp</string>
- <key>component_type</key>
- <string>sdec</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Qualcomm QCELP</string>
- <key>component_info</key>
- <string>Converts QCELP compressed data into PCM samples.</string>
- <key>component_manufacturer</key>
- <string>QCOM</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>Qclq</string>
- <key>component_type</key>
- <string>sdec</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Qualcomm QCELP</string>
- <key>component_info</key>
- <string>Converts QCELP compressed data into PCM samples.</string>
- <key>component_manufacturer</key>
- <string>QCOM</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>Qclq</string>
- <key>component_type</key>
- <string>sdec</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple GSM 10:1</string>
- <key>component_info</key>
- <string>Apple GSM Audio Decompressor</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>agsm</string>
- <key>component_type</key>
- <string>sdec</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Lossless</string>
- <key>component_flags</key>
- <string>0x10200c0c</string>
- <key>component_info</key>
- <string>Apple Lossless Audio Decompressor component</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/SoundManagerComponents.component</string>
- <key>component_subtype</key>
- <string>alac</string>
- <key>component_type</key>
- <string>sdec</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ALaw 2:1</string>
- <key>component_flags</key>
- <string>0x00200d0c</string>
- <key>component_info</key>
- <string>ALaw compression with a 2 to 1 ratio.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/SoundManagerComponents.component</string>
- <key>component_subtype</key>
- <string>alaw</string>
- <key>component_type</key>
- <string>sdec</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>DV</string>
- <key>component_flags</key>
- <string>0x10000d08</string>
- <key>component_info</key>
- <string>DV Audio Decompressor component</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>dvca</string>
- <key>component_type</key>
- <string>sdec</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>DVI 4:1</string>
- <key>component_flags</key>
- <string>0x00000404</string>
- <key>component_info</key>
- <string>DVI Audio Codec</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>dvi </string>
- <key>component_type</key>
- <string>sdec</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>32-bit Floating Point</string>
- <key>component_flags</key>
- <string>0x00200d0d</string>
- <key>component_info</key>
- <string>32-bit Floating Point conversion</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/SoundManagerComponents.component</string>
- <key>component_subtype</key>
- <string>fl32</string>
- <key>component_type</key>
- <string>sdec</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>64-bit Floating Point</string>
- <key>component_flags</key>
- <string>0x00200d0d</string>
- <key>component_info</key>
- <string>64-bit Floating Point conversion</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/SoundManagerComponents.component</string>
- <key>component_subtype</key>
- <string>fl64</string>
- <key>component_type</key>
- <string>sdec</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>IMA 4:1</string>
- <key>component_flags</key>
- <string>0x00200d0c</string>
- <key>component_info</key>
- <string>Interactive Multimedia Association (IMA) compression with a 4 to 1 ratio.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/SoundManagerComponents.component</string>
- <key>component_subtype</key>
- <string>ima4</string>
- <key>component_type</key>
- <string>sdec</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>24-bit Integer</string>
- <key>component_flags</key>
- <string>0x00200d0d</string>
- <key>component_info</key>
- <string>24-bit Integer big or little endian format conversion</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/SoundManagerComponents.component</string>
- <key>component_subtype</key>
- <string>in24</string>
- <key>component_type</key>
- <string>sdec</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>32-bit Integer</string>
- <key>component_flags</key>
- <string>0x00200d0d</string>
- <key>component_info</key>
- <string>32-bit Integer big or little endian format conversion</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/SoundManagerComponents.component</string>
- <key>component_subtype</key>
- <string>in32</string>
- <key>component_type</key>
- <string>sdec</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>LPC 23:1</string>
- <key>component_flags</key>
- <string>0x00000404</string>
- <key>component_info</key>
- <string>LPC Audio Codec</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>lpc </string>
- <key>component_type</key>
- <string>sdec</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MPEG-4 Audio</string>
- <key>component_flags</key>
- <string>0x10200c0c</string>
- <key>component_info</key>
- <string>MPEG-4 Audio Decompressor component</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/SoundManagerComponents.component</string>
- <key>component_subtype</key>
- <string>mp4a</string>
- <key>component_type</key>
- <string>sdec</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MS ADPCM</string>
- <key>component_flags</key>
- <string>0x00000d08</string>
- <key>component_info</key>
- <string>MS ADPCM Audio Decompressor component</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>ms??</string>
- <key>component_type</key>
- <string>sdec</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>DVI IMA</string>
- <key>component_flags</key>
- <string>0x00000d08</string>
- <key>component_info</key>
- <string>DVI IMA Audio Decompressor component</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>ms??</string>
- <key>component_type</key>
- <string>sdec</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MS-GSM 6.10</string>
- <key>component_info</key>
- <string>MS-GSM Audio Decompressor</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>ms?1</string>
- <key>component_type</key>
- <string>sdec</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MPEG Layer-3 Audio</string>
- <key>component_flags</key>
- <string>0x00000404</string>
- <key>component_info</key>
- <string>Fraunhofer IIS MPEG Layer-3 Audio</string>
- <key>component_manufacturer</key>
- <string>FhG </string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>ms?U</string>
- <key>component_type</key>
- <string>sdec</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>16-bit Little Endian</string>
- <key>component_flags</key>
- <string>0x00200c0c</string>
- <key>component_info</key>
- <string>16-bit Little Endian format conversion</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/SoundManagerComponents.component</string>
- <key>component_subtype</key>
- <string>sowt</string>
- <key>component_type</key>
- <string>sdec</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>16-bit Big Endian</string>
- <key>component_flags</key>
- <string>0x00200c0c</string>
- <key>component_info</key>
- <string>16-bit Big Endian format conversion</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/SoundManagerComponents.component</string>
- <key>component_subtype</key>
- <string>twos</string>
- <key>component_type</key>
- <string>sdec</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>µLaw 2:1</string>
- <key>component_flags</key>
- <string>0x00200d0c</string>
- <key>component_info</key>
- <string>µLaw (CCITT Recommendation G.711) compression with a 2 to 1 ratio.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/SoundManagerComponents.component</string>
- <key>component_subtype</key>
- <string>ulaw</string>
- <key>component_type</key>
- <string>sdec</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>DV</string>
- <key>component_flags</key>
- <string>0x10000d08</string>
- <key>component_info</key>
- <string>Variable Duration DV Audio Decompressor component</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>vdva</string>
- <key>component_type</key>
- <string>sdec</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>FireWire DV</string>
- <key>component_flags</key>
- <string>0x00400c0c</string>
- <key>component_info</key>
- <string>This component is the FireWire Sound Output</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeFireWireDV.component</string>
- <key>component_subtype</key>
- <string>dv </string>
- <key>component_type</key>
- <string>sdev</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Mac OS X Audio HAL</string>
- <key>component_flags</key>
- <string>0x00000c0c</string>
- <key>component_info</key>
- <string>Manages output to the Mac OS X Audio HAL's default device</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/SoundManagerComponents.component</string>
- <key>component_subtype</key>
- <string>hal!</string>
- <key>component_type</key>
- <string>sdev</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Mac OS X Audio HAL (System)</string>
- <key>component_flags</key>
- <string>0x00000c0c</string>
- <key>component_info</key>
- <string>Manages output to the Mac OS X Audio HAL's system default device</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/SoundManagerComponents.component</string>
- <key>component_subtype</key>
- <string>hal?</string>
- <key>component_type</key>
- <string>sdev</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>SDP Exporter</string>
- <key>component_info</key>
- <string>SDP Exporter</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>sdp </string>
- <key>component_type</key>
- <string>sept</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>XML Exporter</string>
- <key>component_info</key>
- <string>XML Exporter</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>xml </string>
- <key>component_type</key>
- <string>sept</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Sequence Grabber SG Audio Channel</string>
- <key>component_info</key>
- <string>Captures audio from Core Audio and Sound Input Manager devices to a track in a QuickTime movie.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>audi</string>
- <key>component_type</key>
- <string>sgch</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Sound</string>
- <key>component_info</key>
- <string>Records QuickTime sound for Movie Grabber</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>soun</string>
- <key>component_type</key>
- <string>sgch</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Text</string>
- <key>component_info</key>
- <string>Captures text into QuickTime movies</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>text</string>
- <key>component_type</key>
- <string>sgch</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Video</string>
- <key>component_flags</key>
- <string>0x00000001</string>
- <key>component_info</key>
- <string>Records QuickTime video for Movie Grabber</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>vide</string>
- <key>component_type</key>
- <string>sgch</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Compression</string>
- <key>component_info</key>
- <string>Adjusts sound compression settings for Movie Grabber</string>
- <key>component_manufacturer</key>
- <string>cmpr</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>soun</string>
- <key>component_type</key>
- <string>sgpn</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Sample</string>
- <key>component_info</key>
- <string>Adjusts sound sample settings for Movie Grabber</string>
- <key>component_manufacturer</key>
- <string>samp</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>soun</string>
- <key>component_type</key>
- <string>sgpn</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Source</string>
- <key>component_info</key>
- <string>Adjusts sound input sources for Movie Grabber</string>
- <key>component_manufacturer</key>
- <string>sour</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>soun</string>
- <key>component_type</key>
- <string>sgpn</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Text Settings</string>
- <key>component_info</key>
- <string>Configure Text(Closed-Caption) channel</string>
- <key>component_manufacturer</key>
- <string>sett</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>text</string>
- <key>component_type</key>
- <string>sgpn</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Compression</string>
- <key>component_info</key>
- <string>Adjusts video compression settings for movie capture</string>
- <key>component_manufacturer</key>
- <string>cmpr</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>vide</string>
- <key>component_type</key>
- <string>sgpn</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Color</string>
- <key>component_flags</key>
- <string>0x00000004</string>
- <key>component_info</key>
- <string>Adjusts video image settings for Movie Grabber</string>
- <key>component_manufacturer</key>
- <string>colr</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>vide</string>
- <key>component_type</key>
- <string>sgpn</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Image</string>
- <key>component_flags</key>
- <string>0x00000004</string>
- <key>component_info</key>
- <string>Adjusts video image settings for Movie Grabber</string>
- <key>component_manufacturer</key>
- <string>imag</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>vide</string>
- <key>component_type</key>
- <string>sgpn</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Mechanics</string>
- <key>component_flags</key>
- <string>0x00000004</string>
- <key>component_info</key>
- <string>Adjusts video image settings for Movie Grabber</string>
- <key>component_manufacturer</key>
- <string>mech</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>vide</string>
- <key>component_type</key>
- <string>sgpn</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Source</string>
- <key>component_info</key>
- <string>Selects video input source for Movie Grabber</string>
- <key>component_manufacturer</key>
- <string>sour</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>vide</string>
- <key>component_type</key>
- <string>sgpn</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>base stream handler</string>
- <key>component_info</key>
- <string>base stream handler</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>gnrc</string>
- <key>component_type</key>
- <string>shlr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple MPEG Audio Stream Player</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Plays MPEG audio streams</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeMPEG.component</string>
- <key>component_subtype</key>
- <string>m1a </string>
- <key>component_type</key>
- <string>shlr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple MPEG System Stream Player</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Demuxes MPEG system streams</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeMPEG.component</string>
- <key>component_subtype</key>
- <string>m1s </string>
- <key>component_type</key>
- <string>shlr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple MPEG Video Stream Player</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Plays MPEG video streams</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeMPEG.component</string>
- <key>component_subtype</key>
- <string>m1v </string>
- <key>component_type</key>
- <string>shlr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple MPEG Audio Stream Player</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>Plays MPEG audio streams</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeMPEG.component</string>
- <key>component_subtype</key>
- <string>m2a </string>
- <key>component_type</key>
- <string>shlr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>music stream handler</string>
- <key>component_info</key>
- <string>music stream handler</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>musi</string>
- <key>component_type</key>
- <string>shlr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>sound stream handler</string>
- <key>component_info</key>
- <string>sound stream handler</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>soun</string>
- <key>component_type</key>
- <string>shlr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>text stream handler</string>
- <key>component_info</key>
- <string>text stream handler</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>text</string>
- <key>component_type</key>
- <string>shlr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>video stream handler</string>
- <key>component_info</key>
- <string>video stream handler</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>vide</string>
- <key>component_type</key>
- <string>shlr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Sample Format Converter</string>
- <key>component_flags</key>
- <string>0x00010f0f</string>
- <key>component_info</key>
- <string>Utility audio data converter, goes forwards, backwards, changes 8 bit data into 16, 16 into 8, offset binary into twos compliment, twos into offset.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/SoundManagerComponents.component</string>
- <key>component_subtype</key>
- <string>conv</string>
- <key>component_type</key>
- <string>sift</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>8 and 16 Bit Integer Rate Converter</string>
- <key>component_flags</key>
- <string>0x00020000</string>
- <key>component_info</key>
- <string>Sample rate converter for 8 and 16 bit integer audio data. Includes linear interpolation and high quality output.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/SoundManagerComponents.component</string>
- <key>component_subtype</key>
- <string>ratb</string>
- <key>component_type</key>
- <string>sift</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Sound Source</string>
- <key>component_flags</key>
- <string>0x00200f00</string>
- <key>component_info</key>
- <string>This is glue between the sound component chain and the sound manager. It gets more audio data when more is requested.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/SoundManagerComponents.component</string>
- <key>component_subtype</key>
- <string>sour</string>
- <key>component_type</key>
- <string>sift</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>SDP stream importer</string>
- <key>component_info</key>
- <string>SDP stream importer</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>SDP </string>
- <key>component_type</key>
- <string>simp</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>SDP Importer</string>
- <key>component_info</key>
- <string>SDP Importer</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>sdp </string>
- <key>component_type</key>
- <string>simp</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>XML Importer</string>
- <key>component_info</key>
- <string>XML Importer</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>xml </string>
- <key>component_type</key>
- <string>simp</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>DV Audio</string>
- <key>component_info</key>
- <string></string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeFireWireDV.component</string>
- <key>component_subtype</key>
- <string>fwpa</string>
- <key>component_type</key>
- <string>sinp</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Mac OS X Audio HAL</string>
- <key>component_info</key>
- <string>Manages input from the Mac OS X Audio HAL</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/SoundManagerComponents.component</string>
- <key>component_subtype</key>
- <string>hal!</string>
- <key>component_type</key>
- <string>sinp</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Frequency Equalizer</string>
- <key>component_flags</key>
- <string>0x00200d0d</string>
- <key>component_info</key>
- <string>Graphic frequency equalizer.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/Components/SoundManagerComponents.component</string>
- <key>component_subtype</key>
- <string>eqal</string>
- <key>component_type</key>
- <string>snfx</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>3G</string>
- <key>component_flags</key>
- <string>0x10098030</string>
- <key>component_info</key>
- <string>Exports a QuickTime Movie file to a 3G file</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTime3GPP.component</string>
- <key>component_subtype</key>
- <string>3gpp</string>
- <key>component_type</key>
- <string>spit</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AIFF</string>
- <key>component_flags</key>
- <string>0x00000038</string>
- <key>component_info</key>
- <string>Exports a QuickTime Music Track into an AIFF file</string>
- <key>component_manufacturer</key>
- <string>musi</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>AIFF</string>
- <key>component_type</key>
- <string>spit</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AIFF</string>
- <key>component_flags</key>
- <string>0x10008030</string>
- <key>component_info</key>
- <string>Exports a QuickTime Movie into an AIFF sound file</string>
- <key>component_manufacturer</key>
- <string>soun</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>AIFF</string>
- <key>component_type</key>
- <string>spit</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>BMP</string>
- <key>component_flags</key>
- <string>0x10010038</string>
- <key>component_info</key>
- <string>Exports a QuickTime Movie into a BMP file</string>
- <key>component_manufacturer</key>
- <string>0x00000000</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>BMPf</string>
- <key>component_type</key>
- <string>spit</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>FLC</string>
- <key>component_flags</key>
- <string>0x00098030</string>
- <key>component_info</key>
- <string>Exports a QuickTime Movie file into an FLC file</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>FLC </string>
- <key>component_type</key>
- <string>spit</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>iPod</string>
- <key>component_flags</key>
- <string>0x10098010</string>
- <key>component_info</key>
- <string>Exports a QuickTime Movie into an iPod file</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeMPEG4.component</string>
- <key>component_subtype</key>
- <string>M4V </string>
- <key>component_type</key>
- <string>spit</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple TV</string>
- <key>component_flags</key>
- <string>0x10098010</string>
- <key>component_info</key>
- <string>Exports a QuickTime Movie into an Apple TV file</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeMPEG4.component</string>
- <key>component_subtype</key>
- <string>M4VH</string>
- <key>component_type</key>
- <string>spit</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>iPhone</string>
- <key>component_flags</key>
- <string>0x10098010</string>
- <key>component_info</key>
- <string>Exports a QuickTime Movie into an iPhone file</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeMPEG4.component</string>
- <key>component_subtype</key>
- <string>M4VP</string>
- <key>component_type</key>
- <string>spit</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Standard MIDI</string>
- <key>component_flags</key>
- <string>0x00000018</string>
- <key>component_info</key>
- <string>Exports a QuickTime Movie into a Standard MIDI File</string>
- <key>component_manufacturer</key>
- <string>musi</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>Midi</string>
- <key>component_type</key>
- <string>spit</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>QuickTime Movie</string>
- <key>component_flags</key>
- <string>0x10098030</string>
- <key>component_info</key>
- <string>Exports a QuickTime Movie file into a QuickTime Movie</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>MooV</string>
- <key>component_type</key>
- <string>spit</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Hinted Movie</string>
- <key>component_flags</key>
- <string>0x00090030</string>
- <key>component_info</key>
- <string>Exports a hinted movie suitable for streaming with QuickTime Streaming</string>
- <key>component_manufacturer</key>
- <string>hint</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>MooV</string>
- <key>component_type</key>
- <string>spit</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Interframe Compressed VR Object Movie</string>
- <key>component_flags</key>
- <string>0x00098030</string>
- <key>component_info</key>
- <string>Compress a QuickTime VR Object Movie</string>
- <key>component_manufacturer</key>
- <string>vrob</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeVR.component</string>
- <key>component_subtype</key>
- <string>MooV</string>
- <key>component_type</key>
- <string>spit</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Separate Single-Node Movies</string>
- <key>component_flags</key>
- <string>0x00090030</string>
- <key>component_info</key>
- <string>Splits Multi-Node Movies</string>
- <key>component_manufacturer</key>
- <string>vrsp</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeVR.component</string>
- <key>component_subtype</key>
- <string>MooV</string>
- <key>component_type</key>
- <string>spit</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Fast Start QuickTime VR Movie</string>
- <key>component_flags</key>
- <string>0x00090030</string>
- <key>component_info</key>
- <string>Flattens QTVR Movies for improved web access</string>
- <key>component_manufacturer</key>
- <string>vrwe</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeVR.component</string>
- <key>component_subtype</key>
- <string>MooV</string>
- <key>component_type</key>
- <string>spit</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Picture</string>
- <key>component_flags</key>
- <string>0x00010038</string>
- <key>component_info</key>
- <string>Exports a QuickTime Movie into a Picture file</string>
- <key>component_manufacturer</key>
- <string>0x00000000</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>PICT</string>
- <key>component_type</key>
- <string>spit</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Text</string>
- <key>component_flags</key>
- <string>0x000300b8</string>
- <key>component_info</key>
- <string>Exports text from a QuickTime Movie</string>
- <key>component_manufacturer</key>
- <string>text</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>TEXT</string>
- <key>component_type</key>
- <string>spit</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>QuickTime TeXML</string>
- <key>component_flags</key>
- <string>0x00090010</string>
- <key>component_info</key>
- <string>Exports a QuickTime TeXML file.</string>
- <key>component_manufacturer</key>
- <string>tx3g</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTime3GPP.component</string>
- <key>component_subtype</key>
- <string>TEXT</string>
- <key>component_type</key>
- <string>spit</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AU</string>
- <key>component_flags</key>
- <string>0x10008030</string>
- <key>component_info</key>
- <string>Exports a QuickTime Movie into an AU sound file</string>
- <key>component_manufacturer</key>
- <string>soun</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>ULAW</string>
- <key>component_type</key>
- <string>spit</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AVI</string>
- <key>component_flags</key>
- <string>0x10098030</string>
- <key>component_info</key>
- <string>Exports a QuickTime Movie file into an AVI file</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>VfW </string>
- <key>component_type</key>
- <string>spit</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Wave</string>
- <key>component_flags</key>
- <string>0x10008030</string>
- <key>component_info</key>
- <string>Exports a QuickTime Movie into a WAV sound file</string>
- <key>component_manufacturer</key>
- <string>soun</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>WAVE</string>
- <key>component_type</key>
- <string>spit</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>DV Stream</string>
- <key>component_flags</key>
- <string>0x10098030</string>
- <key>component_info</key>
- <string>Exports a QuickTime Movie file into a DV Stream</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>dvc!</string>
- <key>component_type</key>
- <string>spit</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>QuickTime Media Link</string>
- <key>component_flags</key>
- <string>0x00000030</string>
- <key>component_info</key>
- <string>Exports a QuickTime Media Link file.</string>
- <key>component_manufacturer</key>
- <string>0x00000000</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>embd</string>
- <key>component_type</key>
- <string>spit</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Image Sequence</string>
- <key>component_flags</key>
- <string>0x10098030</string>
- <key>component_info</key>
- <string>Exports a QuickTime Movie file into a sequence of image files</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>grex</string>
- <key>component_type</key>
- <string>spit</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>iPhone (Cellular)</string>
- <key>component_flags</key>
- <string>0x10098010</string>
- <key>component_info</key>
- <string>Exports a QuickTime Movie file to an iPhone (Cellular) file</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTime3GPP.component</string>
- <key>component_subtype</key>
- <string>iphE</string>
- <key>component_type</key>
- <string>spit</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MPEG-4</string>
- <key>component_flags</key>
- <string>0x10098030</string>
- <key>component_info</key>
- <string>Exports a QuickTime Movie file into a MP4 Movie</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeMPEG4.component</string>
- <key>component_subtype</key>
- <string>mpg4</string>
- <key>component_type</key>
- <string>spit</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Sound</string>
- <key>component_flags</key>
- <string>0x10000028</string>
- <key>component_info</key>
- <string>Exports a QuickTime Movie into a sound resource</string>
- <key>component_manufacturer</key>
- <string>soun</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>snd </string>
- <key>component_type</key>
- <string>spit</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AIFF</string>
- <key>component_flags</key>
- <string>0x10008030</string>
- <key>component_info</key>
- <string>Exports a QuickTime Movie into an AIFF sound file</string>
- <key>component_manufacturer</key>
- <string>soun</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>AIFF</string>
- <key>component_type</key>
- <string>spt1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>QuickTime Movie</string>
- <key>component_flags</key>
- <string>0x10098030</string>
- <key>component_info</key>
- <string>Exports a QuickTime Movie file into a QuickTime Movie</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>MooV</string>
- <key>component_type</key>
- <string>spt1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AU</string>
- <key>component_flags</key>
- <string>0x10008030</string>
- <key>component_info</key>
- <string>Exports a QuickTime Movie into an AU sound file</string>
- <key>component_manufacturer</key>
- <string>soun</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>ULAW</string>
- <key>component_type</key>
- <string>spt1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Wave</string>
- <key>component_flags</key>
- <string>0x10008030</string>
- <key>component_info</key>
- <string>Exports a QuickTime Movie into a WAV sound file</string>
- <key>component_manufacturer</key>
- <string>soun</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>WAVE</string>
- <key>component_type</key>
- <string>spt1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Sound</string>
- <key>component_flags</key>
- <string>0x10000028</string>
- <key>component_info</key>
- <string>Exports a QuickTime Movie into a sound resource</string>
- <key>component_manufacturer</key>
- <string>soun</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>snd </string>
- <key>component_type</key>
- <string>spt1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>iPod</string>
- <key>component_flags</key>
- <string>0x10098010</string>
- <key>component_info</key>
- <string>Exports a QuickTime Movie into an iPod file</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeMPEG4.component</string>
- <key>component_subtype</key>
- <string>M4V </string>
- <key>component_type</key>
- <string>spt2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple TV</string>
- <key>component_flags</key>
- <string>0x10098010</string>
- <key>component_info</key>
- <string>Exports a QuickTime Movie into an Apple TV file</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeMPEG4.component</string>
- <key>component_subtype</key>
- <string>M4VH</string>
- <key>component_type</key>
- <string>spt2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>iPhone</string>
- <key>component_flags</key>
- <string>0x10098010</string>
- <key>component_info</key>
- <string>Exports a QuickTime Movie into an iPhone file</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeMPEG4.component</string>
- <key>component_subtype</key>
- <string>M4VP</string>
- <key>component_type</key>
- <string>spt2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Compress Sourcer</string>
- <key>component_info</key>
- <string>Compress Sourcer</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>cmpr</string>
- <key>component_type</key>
- <string>srcr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>base sourcer</string>
- <key>component_info</key>
- <string>base sourcer</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>gnrc</string>
- <key>component_type</key>
- <string>srcr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>SG channel sourcer</string>
- <key>component_info</key>
- <string>SG Channel sourcer</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>grab</string>
- <key>component_type</key>
- <string>srcr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>PushData Sourcer</string>
- <key>component_info</key>
- <string>PushData Sourcer</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>push</string>
- <key>component_type</key>
- <string>srcr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Sequence Grab Channel Sourcer</string>
- <key>component_info</key>
- <string>Sequence Grab Channel Sourcer</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>sgch</string>
- <key>component_type</key>
- <string>srcr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>base track sourcer</string>
- <key>component_info</key>
- <string>base track sourcer</string>
- <key>component_manufacturer</key>
- <string>gnrc</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>trak</string>
- <key>component_type</key>
- <string>srcr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>audio track sourcer</string>
- <key>component_info</key>
- <string>audio track sourcer</string>
- <key>component_manufacturer</key>
- <string>soun</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>trak</string>
- <key>component_type</key>
- <string>srcr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>text track sourcer</string>
- <key>component_info</key>
- <string>text track sourcer</string>
- <key>component_manufacturer</key>
- <string>text</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>trak</string>
- <key>component_type</key>
- <string>srcr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>video track sourcer</string>
- <key>component_info</key>
- <string>video track sourcer</string>
- <key>component_manufacturer</key>
- <string>vide</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>trak</string>
- <key>component_type</key>
- <string>srcr</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>base stream module</string>
- <key>component_info</key>
- <string>base stream module</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>gnrc</string>
- <key>component_type</key>
- <string>strm</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Bookmark Subscription</string>
- <key>component_flags</key>
- <string>0x00000004</string>
- <key>component_info</key>
- <string>Bookmark Subscription</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeStreaming.component</string>
- <key>component_subtype</key>
- <string>bkmk</string>
- <key>component_type</key>
- <string>subs</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Tune Player</string>
- <key>component_info</key>
- <string>Plays musical sequences.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>tune</string>
- <key>component_type</key>
- <string>tune</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Atom List Tween</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>AtomListTweenComponent</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>atom</string>
- <key>component_type</key>
- <string>twen</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Path To Fixed Point Tween</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>PathToFixedPointITweenComponent</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>gxfp</string>
- <key>component_type</key>
- <string>twen</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Path To Matrix Translation And Rotation Tween</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>PathToMatrixTranslationAndRotationTweenComponent</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>gxmr</string>
- <key>component_type</key>
- <string>twen</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Path To Matrix Translation Tween</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>PathToMatrixTranslationTweenComponent</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>gxmt</string>
- <key>component_type</key>
- <string>twen</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Path To Matrix Rotation Tween</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>PathToMatrixRotationTweenComponent</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>gxpr</string>
- <key>component_type</key>
- <string>twen</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Path X to Y Tween</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>PathXtoYTweenComponent</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>gxxy</string>
- <key>component_type</key>
- <string>twen</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Path Y to X Tween</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>PathYtoXTweenComponent</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>gxyx</string>
- <key>component_type</key>
- <string>twen</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MultiMatrix Tween</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>MultiMatrixTweenComponent</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>mulm</string>
- <key>component_type</key>
- <string>twen</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Polygon Tween</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>PolygonTweenComponent</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>poly</string>
- <key>component_type</key>
- <string>twen</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Spin Tween</string>
- <key>component_flags</key>
- <string>0x10000000</string>
- <key>component_info</key>
- <string>SpinTweenComponent</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>spin</string>
- <key>component_type</key>
- <string>twen</string>
- </dict>
- <dict>
- <key>_name</key>
- <string></string>
- <key>component_info</key>
- <string></string>
- <key>component_manufacturer</key>
- <string>tx3g</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>text</string>
- <key>component_type</key>
- <string>txtc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string></string>
- <key>component_info</key>
- <string></string>
- <key>component_manufacturer</key>
- <string>text</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>tx3g</string>
- <key>component_type</key>
- <string>txtc</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>DV Video</string>
- <key>component_info</key>
- <string>This component is the FireWire Video Digitizer</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeFireWireDV.component</string>
- <key>component_subtype</key>
- <string>fire</string>
- <key>component_type</key>
- <string>vdig</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>IIDC FireWire Video</string>
- <key>component_info</key>
- <string>This is the Apple IIDC FireWire Video Digitizer.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeIIDCDigitizer.component</string>
- <key>component_subtype</key>
- <string>iidc</string>
- <key>component_type</key>
- <string>vdig</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>USB Video Class Video</string>
- <key>component_info</key>
- <string>This is the Apple USB Video Class Video Digitizer.</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeUSBVDCDigitizer.component</string>
- <key>component_subtype</key>
- <string>usbv</string>
- <key>component_type</key>
- <string>vdig</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Base Video Output</string>
- <key>component_flags</key>
- <string>0x00000001</string>
- <key>component_info</key>
- <string>Provides services for other Video Output Components</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeComponents.component</string>
- <key>component_subtype</key>
- <string>base</string>
- <key>component_type</key>
- <string>vout</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>FireWire</string>
- <key>component_info</key>
- <string>This component is the FireWire Video Out</string>
- <key>component_manufacturer</key>
- <string>appl</string>
- <key>component_resource_path</key>
- <string>/System/Library/QuickTime/QuickTimeFireWireDV.component</string>
- <key>component_subtype</key>
- <string>fire</string>
- <key>component_type</key>
- <string>vout</string>
- </dict>
- </array>
- <key>_parentDataType</key>
- <string>SPSoftwareDataType</string>
- <key>_properties</key>
- <dict>
- <key>_name</key>
- <dict>
- <key>_isColumn</key>
- <true/>
- <key>_order</key>
- <integer>0</integer>
- </dict>
- <key>component_manufacturer</key>
- <dict>
- <key>_isColumn</key>
- <true/>
- <key>_order</key>
- <integer>40</integer>
- </dict>
- <key>component_subtype</key>
- <dict>
- <key>_isColumn</key>
- <true/>
- <key>_order</key>
- <integer>30</integer>
- </dict>
- <key>component_type</key>
- <dict>
- <key>_isColumn</key>
- <true/>
- <key>_order</key>
- <integer>20</integer>
- </dict>
- <key>volumes_anonymous</key>
- <dict>
- <key>_detailLevel</key>
- <string>-1</string>
- <key>_maxDetailLevel</key>
- <string>-1</string>
- </dict>
- </dict>
- <key>_timeStamp</key>
- <date>2012-12-04T21:30:06Z</date>
- <key>_versionInfo</key>
- <dict>
- <key>com.apple.SystemProfiler.SPComponentReporter</key>
- <string>1.0</string>
- </dict>
- </dict>
- <dict>
- <key>_SPCommandLineArguments</key>
- <array>
- <string>/usr/sbin/system_profiler</string>
- <string>-xml</string>
- <string>-detailLevel</string>
- <string>mini</string>
- <string>SPParallelATADataType</string>
- <string>SPApplicationsDataType</string>
- <string>SPAudioDataType</string>
- <string>SPBluetoothDataType</string>
- <string>SPCardReaderDataType</string>
- <string>SPComponentDataType</string>
- <string>SPDeveloperToolsDataType</string>
- <string>SPDiagnosticsDataType</string>
- <string>SPDiscBurningDataType</string>
- <string>SPEthernetDataType</string>
- <string>SPExtensionsDataType</string>
- <string>SPFibreChannelDataType</string>
- <string>SPFireWireDataType</string>
- <string>SPFirewallDataType</string>
- <string>SPFontsDataType</string>
- <string>SPFrameworksDataType</string>
- <string>SPDisplaysDataType</string>
- <string>SPHardwareRAIDDataType</string>
- <string>SPNetworkLocationDataType</string>
- <string>SPLogsDataType</string>
- <string>SPManagedClientDataType</string>
- <string>SPMemoryDataType</string>
- <string>SPModemDataType</string>
- <string>SPNetworkDataType</string>
- <string>SPPCIDataType</string>
- <string>SPParallelSCSIDataType</string>
- <string>SPPowerDataType</string>
- <string>SPPrefPaneDataType</string>
- <string>SPPrintersSoftwareDataType</string>
- <string>SPPrintersDataType</string>
- <string>SPConfigurationProfileDataType</string>
- <string>SPSASDataType</string>
- <string>SPSerialATADataType</string>
- <string>SPSoftwareDataType</string>
- <string>SPStartupItemDataType</string>
- <string>SPSyncServicesDataType</string>
- <string>SPThunderboltDataType</string>
- <string>SPUSBDataType</string>
- <string>SPUniversalAccessDataType</string>
- <string>SPNetworkVolumeDataType</string>
- <string>SPWWANDataType</string>
- <string>SPAirPortDataType</string>
- </array>
- <key>_SPCompletionInterval</key>
- <real>0.30300998687744141</real>
- <key>_dataType</key>
- <string>SPDeveloperToolsDataType</string>
- <key>_detailLevel</key>
- <integer>1</integer>
- <key>_items</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Developer Information</string>
- <key>spdevtools_apps</key>
- <dict>
- <key>spinstruments_app</key>
- <string>4.5 (4523)</string>
- <key>spxcode_app</key>
- <string>4.5.2 (1847)</string>
- </dict>
- <key>spdevtools_path</key>
- <string>/Applications/Xcode.app</string>
- <key>spdevtools_sdks</key>
- <dict>
- <key>spiphoneos_sdks</key>
- <dict>
- <key>6.0</key>
- <string>(10A403)</string>
- </dict>
- <key>spiphonesim_sdks</key>
- <dict>
- <key>6.0</key>
- <string>(10A403)</string>
- </dict>
- <key>spmacosx_sdks</key>
- <dict>
- <key>10.7</key>
- <string>(11E52)</string>
- <key>10.8</key>
- <string>(12C37)</string>
- </dict>
- </dict>
- <key>spdevtools_version</key>
- <string>4.5.2 (4G2008a)</string>
- </dict>
- </array>
- <key>_parentDataType</key>
- <string>SPSoftwareDataType</string>
- <key>_properties</key>
- <dict>
- <key>spdashcode_app</key>
- <dict>
- <key>_order</key>
- <string>4</string>
- </dict>
- <key>spdevtools_apps</key>
- <dict>
- <key>_order</key>
- <string>45</string>
- </dict>
- <key>spdevtools_path</key>
- <dict>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>10</string>
- <key>_width</key>
- <string>50</string>
- </dict>
- <key>spdevtools_sdks</key>
- <dict>
- <key>_order</key>
- <string>49</string>
- </dict>
- <key>spdevtools_version</key>
- <dict>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>0</string>
- <key>_width</key>
- <string>15</string>
- </dict>
- <key>spib_app</key>
- <dict>
- <key>_order</key>
- <string>2</string>
- </dict>
- <key>spinstruments_app</key>
- <dict>
- <key>_order</key>
- <string>3</string>
- </dict>
- <key>spiphoneos_sdks</key>
- <dict>
- <key>_order</key>
- <string>51</string>
- </dict>
- <key>spiphonesim_sdks</key>
- <dict>
- <key>_order</key>
- <string>52</string>
- </dict>
- <key>spmacosx_sdks</key>
- <dict>
- <key>_order</key>
- <string>50</string>
- </dict>
- <key>spxcode_app</key>
- <dict>
- <key>_order</key>
- <string>1</string>
- </dict>
- <key>volumes_anonymous</key>
- <dict>
- <key>_detailLevel</key>
- <string>-1</string>
- <key>_maxDetailLevel</key>
- <string>-1</string>
- </dict>
- </dict>
- <key>_timeStamp</key>
- <date>2012-12-04T21:30:07Z</date>
- <key>_versionInfo</key>
- <dict>
- <key>com.apple.SystemProfiler.SPDeveloperToolsReporter</key>
- <string>1105</string>
- </dict>
- </dict>
- <dict>
- <key>_SPCommandLineArguments</key>
- <array>
- <string>/usr/sbin/system_profiler</string>
- <string>-xml</string>
- <string>-detailLevel</string>
- <string>mini</string>
- <string>SPParallelATADataType</string>
- <string>SPApplicationsDataType</string>
- <string>SPAudioDataType</string>
- <string>SPBluetoothDataType</string>
- <string>SPCardReaderDataType</string>
- <string>SPComponentDataType</string>
- <string>SPDeveloperToolsDataType</string>
- <string>SPDiagnosticsDataType</string>
- <string>SPDiscBurningDataType</string>
- <string>SPEthernetDataType</string>
- <string>SPExtensionsDataType</string>
- <string>SPFibreChannelDataType</string>
- <string>SPFireWireDataType</string>
- <string>SPFirewallDataType</string>
- <string>SPFontsDataType</string>
- <string>SPFrameworksDataType</string>
- <string>SPDisplaysDataType</string>
- <string>SPHardwareRAIDDataType</string>
- <string>SPNetworkLocationDataType</string>
- <string>SPLogsDataType</string>
- <string>SPManagedClientDataType</string>
- <string>SPMemoryDataType</string>
- <string>SPModemDataType</string>
- <string>SPNetworkDataType</string>
- <string>SPPCIDataType</string>
- <string>SPParallelSCSIDataType</string>
- <string>SPPowerDataType</string>
- <string>SPPrefPaneDataType</string>
- <string>SPPrintersSoftwareDataType</string>
- <string>SPPrintersDataType</string>
- <string>SPConfigurationProfileDataType</string>
- <string>SPSASDataType</string>
- <string>SPSerialATADataType</string>
- <string>SPSoftwareDataType</string>
- <string>SPStartupItemDataType</string>
- <string>SPSyncServicesDataType</string>
- <string>SPThunderboltDataType</string>
- <string>SPUSBDataType</string>
- <string>SPUniversalAccessDataType</string>
- <string>SPNetworkVolumeDataType</string>
- <string>SPWWANDataType</string>
- <string>SPAirPortDataType</string>
- </array>
- <key>_SPCompletionInterval</key>
- <real>0.0071360468864440918</real>
- <key>_dataType</key>
- <string>SPDiagnosticsDataType</string>
- <key>_detailLevel</key>
- <integer>-1</integer>
- <key>_items</key>
- <array>
- <dict>
- <key>_name</key>
- <string>spdiags_post_value</string>
- <key>spdiags_last_run_key</key>
- <date>2012-12-04T15:07:16Z</date>
- <key>spdiags_result_key</key>
- <string>spdiags_passed_value</string>
- </dict>
- </array>
- <key>_parentDataType</key>
- <string>SPHardwareDataType</string>
- <key>_properties</key>
- <dict>
- <key>_name</key>
- <dict>
- <key>_detailLevel</key>
- <string>-1</string>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>0</string>
- <key>_width</key>
- <string>300</string>
- </dict>
- <key>spdiags_aht_suite_key</key>
- <dict>
- <key>_detailLevel</key>
- <string>-1</string>
- <key>_order</key>
- <string>30</string>
- </dict>
- <key>spdiags_failure_code_key</key>
- <dict>
- <key>_detailLevel</key>
- <string>-1</string>
- <key>_order</key>
- <string>90</string>
- </dict>
- <key>spdiags_failure_type_key</key>
- <dict>
- <key>_detailLevel</key>
- <string>-1</string>
- <key>_order</key>
- <string>100</string>
- </dict>
- <key>spdiags_last_run_key</key>
- <dict>
- <key>_dateFormat</key>
- <string>%X</string>
- <key>_detailLevel</key>
- <string>-1</string>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>10</string>
- <key>_width</key>
- <string>150</string>
- </dict>
- <key>spdiags_memory_slot_key</key>
- <dict>
- <key>_detailLevel</key>
- <string>-1</string>
- <key>_order</key>
- <string>110</string>
- </dict>
- <key>spdiags_memory_slots_key</key>
- <dict>
- <key>_detailLevel</key>
- <string>-1</string>
- <key>_order</key>
- <string>110</string>
- </dict>
- <key>spdiags_result_key</key>
- <dict>
- <key>_detailLevel</key>
- <string>-1</string>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>50</string>
- <key>_width</key>
- <string>150</string>
- </dict>
- <key>spdiags_version_key</key>
- <dict>
- <key>_detailLevel</key>
- <string>-1</string>
- <key>_order</key>
- <string>20</string>
- </dict>
- <key>volumes_anonymous</key>
- <dict>
- <key>_detailLevel</key>
- <string>-1</string>
- <key>_maxDetailLevel</key>
- <string>-1</string>
- </dict>
- </dict>
- <key>_timeStamp</key>
- <date>2012-12-04T21:30:08Z</date>
- <key>_versionInfo</key>
- <dict>
- <key>com.apple.SystemProfiler.SPDiagnosticsReporter</key>
- <string>1.1.4</string>
- </dict>
- </dict>
- <dict>
- <key>_SPCommandLineArguments</key>
- <array>
- <string>/usr/sbin/system_profiler</string>
- <string>-xml</string>
- <string>-detailLevel</string>
- <string>mini</string>
- <string>SPParallelATADataType</string>
- <string>SPApplicationsDataType</string>
- <string>SPAudioDataType</string>
- <string>SPBluetoothDataType</string>
- <string>SPCardReaderDataType</string>
- <string>SPComponentDataType</string>
- <string>SPDeveloperToolsDataType</string>
- <string>SPDiagnosticsDataType</string>
- <string>SPDiscBurningDataType</string>
- <string>SPEthernetDataType</string>
- <string>SPExtensionsDataType</string>
- <string>SPFibreChannelDataType</string>
- <string>SPFireWireDataType</string>
- <string>SPFirewallDataType</string>
- <string>SPFontsDataType</string>
- <string>SPFrameworksDataType</string>
- <string>SPDisplaysDataType</string>
- <string>SPHardwareRAIDDataType</string>
- <string>SPNetworkLocationDataType</string>
- <string>SPLogsDataType</string>
- <string>SPManagedClientDataType</string>
- <string>SPMemoryDataType</string>
- <string>SPModemDataType</string>
- <string>SPNetworkDataType</string>
- <string>SPPCIDataType</string>
- <string>SPParallelSCSIDataType</string>
- <string>SPPowerDataType</string>
- <string>SPPrefPaneDataType</string>
- <string>SPPrintersSoftwareDataType</string>
- <string>SPPrintersDataType</string>
- <string>SPConfigurationProfileDataType</string>
- <string>SPSASDataType</string>
- <string>SPSerialATADataType</string>
- <string>SPSoftwareDataType</string>
- <string>SPStartupItemDataType</string>
- <string>SPSyncServicesDataType</string>
- <string>SPThunderboltDataType</string>
- <string>SPUSBDataType</string>
- <string>SPUniversalAccessDataType</string>
- <string>SPNetworkVolumeDataType</string>
- <string>SPWWANDataType</string>
- <string>SPAirPortDataType</string>
- </array>
- <key>_SPCompletionInterval</key>
- <real>1.9473209977149963</real>
- <key>_dataType</key>
- <string>SPDiscBurningDataType</string>
- <key>_detailLevel</key>
- <integer>-1</integer>
- <key>_items</key>
- <array>
- <dict>
- <key>_name</key>
- <string>MATSHITA DVD-R UJ-8A8</string>
- <key>burn_support</key>
- <string>DRDeviceSupportLevelAppleShipping</string>
- <key>device_cache</key>
- <string>1024 KB</string>
- <key>device_cdwrite</key>
- <string>-R, -RW</string>
- <key>device_dvdwrite</key>
- <string>-R, -R DL, -RW, +R, +R DL, +RW</string>
- <key>device_media</key>
- <string>media_none</string>
- <key>device_readdvd</key>
- <string>yes</string>
- <key>device_strategies</key>
- <string>CD-TAO, CD-SAO, CD-Raw, DVD-DAO</string>
- <key>firmware</key>
- <string>HB14</string>
- <key>interconnect</key>
- <string>ATAPI</string>
- </dict>
- </array>
- <key>_parentDataType</key>
- <string>SPHardwareDataType</string>
- <key>_properties</key>
- <dict>
- <key>_name</key>
- <dict>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>10</string>
- </dict>
- <key>burn_support</key>
- <dict>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>40</string>
- </dict>
- <key>device_bdwrite</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>81</string>
- </dict>
- <key>device_bufecd</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>83</string>
- </dict>
- <key>device_bufedvd</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>84</string>
- </dict>
- <key>device_cache</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>50</string>
- </dict>
- <key>device_cdwrite</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>70</string>
- </dict>
- <key>device_dvdwrite</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>80</string>
- </dict>
- <key>device_hddvdwrite</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>82</string>
- </dict>
- <key>device_media</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>100</string>
- </dict>
- <key>device_readdvd</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>60</string>
- </dict>
- <key>device_strategies</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>90</string>
- </dict>
- <key>firmware</key>
- <dict>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>20</string>
- </dict>
- <key>interconnect</key>
- <dict>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>30</string>
- </dict>
- <key>media_appendable</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>150</string>
- </dict>
- <key>media_blank</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>120</string>
- </dict>
- <key>media_erasable</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>130</string>
- </dict>
- <key>media_id</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>115</string>
- </dict>
- <key>media_overwritable</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>140</string>
- </dict>
- <key>media_type</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>110</string>
- </dict>
- <key>media_writespeeds</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>160</string>
- </dict>
- <key>profile_path</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>45</string>
- </dict>
- <key>volumes_anonymous</key>
- <dict>
- <key>_detailLevel</key>
- <string>-1</string>
- <key>_maxDetailLevel</key>
- <string>-1</string>
- </dict>
- </dict>
- <key>_timeStamp</key>
- <date>2012-12-04T21:30:08Z</date>
- <key>_versionInfo</key>
- <dict>
- <key>com.apple.SystemProfiler.SPDiscBurningReporter</key>
- <string>200</string>
- </dict>
- </dict>
- <dict>
- <key>_SPCommandLineArguments</key>
- <array>
- <string>/usr/sbin/system_profiler</string>
- <string>-xml</string>
- <string>-detailLevel</string>
- <string>mini</string>
- <string>SPParallelATADataType</string>
- <string>SPApplicationsDataType</string>
- <string>SPAudioDataType</string>
- <string>SPBluetoothDataType</string>
- <string>SPCardReaderDataType</string>
- <string>SPComponentDataType</string>
- <string>SPDeveloperToolsDataType</string>
- <string>SPDiagnosticsDataType</string>
- <string>SPDiscBurningDataType</string>
- <string>SPEthernetDataType</string>
- <string>SPExtensionsDataType</string>
- <string>SPFibreChannelDataType</string>
- <string>SPFireWireDataType</string>
- <string>SPFirewallDataType</string>
- <string>SPFontsDataType</string>
- <string>SPFrameworksDataType</string>
- <string>SPDisplaysDataType</string>
- <string>SPHardwareRAIDDataType</string>
- <string>SPNetworkLocationDataType</string>
- <string>SPLogsDataType</string>
- <string>SPManagedClientDataType</string>
- <string>SPMemoryDataType</string>
- <string>SPModemDataType</string>
- <string>SPNetworkDataType</string>
- <string>SPPCIDataType</string>
- <string>SPParallelSCSIDataType</string>
- <string>SPPowerDataType</string>
- <string>SPPrefPaneDataType</string>
- <string>SPPrintersSoftwareDataType</string>
- <string>SPPrintersDataType</string>
- <string>SPConfigurationProfileDataType</string>
- <string>SPSASDataType</string>
- <string>SPSerialATADataType</string>
- <string>SPSoftwareDataType</string>
- <string>SPStartupItemDataType</string>
- <string>SPSyncServicesDataType</string>
- <string>SPThunderboltDataType</string>
- <string>SPUSBDataType</string>
- <string>SPUniversalAccessDataType</string>
- <string>SPNetworkVolumeDataType</string>
- <string>SPWWANDataType</string>
- <string>SPAirPortDataType</string>
- </array>
- <key>_SPCompletionInterval</key>
- <real>0.094799995422363281</real>
- <key>_dataType</key>
- <string>SPEthernetDataType</string>
- <key>_detailLevel</key>
- <integer>-1</integer>
- <key>_items</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Broadcom 57765-B0</string>
- <key>spethernet_BSD_Name</key>
- <string>en0</string>
- <key>spethernet_BUNDLE_IDentifier</key>
- <string>AppleBCM5701Ethernet.kext</string>
- <key>spethernet_FIRMWARE_VERSION</key>
- <string>57765-v1.37, 0x7287af41</string>
- <key>spethernet_SleepProxyCapable</key>
- <string>3c:07:54:74:1e:2b</string>
- <key>spethernet_bus</key>
- <string>spethernet_pci_device</string>
- <key>spethernet_device-id</key>
- <string>0x16b4</string>
- <key>spethernet_device_type</key>
- <string>spethernet_ethernet</string>
- <key>spethernet_kext_path</key>
- <string>/System/Library/Extensions/IONetworkingFamily.kext/Contents/PlugIns/AppleBCM5701Ethernet.kext</string>
- <key>spethernet_link-width</key>
- <string>x1</string>
- <key>spethernet_name</key>
- <string>ethernet</string>
- <key>spethernet_revision-id</key>
- <string>0x0010</string>
- <key>spethernet_subsystem-id</key>
- <string>0x16b4</string>
- <key>spethernet_subsystem-vendor-id</key>
- <string>0x14e4</string>
- <key>spethernet_vendor-id</key>
- <string>0x14e4</string>
- <key>spethernet_version</key>
- <string>3.2.4b8</string>
- </dict>
- </array>
- <key>_parentDataType</key>
- <string>SPHardwareDataType</string>
- <key>_properties</key>
- <dict>
- <key>_name</key>
- <dict>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>0</string>
- </dict>
- <key>spethernet_bus</key>
- <dict>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>25</string>
- </dict>
- <key>spethernet_device-id</key>
- <dict>
- <key>_order</key>
- <string>50</string>
- </dict>
- <key>spethernet_device_type</key>
- <dict>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>20</string>
- </dict>
- <key>spethernet_link-width</key>
- <dict>
- <key>_order</key>
- <string>100</string>
- </dict>
- <key>spethernet_model</key>
- <dict>
- <key>_order</key>
- <string>1</string>
- </dict>
- <key>spethernet_name</key>
- <dict>
- <key>_order</key>
- <string>10</string>
- </dict>
- <key>spethernet_revision-id</key>
- <dict>
- <key>_order</key>
- <string>90</string>
- </dict>
- <key>spethernet_rom-revision</key>
- <dict>
- <key>_order</key>
- <string>80</string>
- </dict>
- <key>spethernet_slot_name</key>
- <dict>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>30</string>
- </dict>
- <key>spethernet_subsystem-id</key>
- <dict>
- <key>_order</key>
- <string>70</string>
- </dict>
- <key>spethernet_subsystem-vendor-id</key>
- <dict>
- <key>_order</key>
- <string>60</string>
- </dict>
- <key>spethernet_vendor-id</key>
- <dict>
- <key>_order</key>
- <string>40</string>
- </dict>
- <key>volumes_anonymous</key>
- <dict>
- <key>_detailLevel</key>
- <string>-1</string>
- <key>_maxDetailLevel</key>
- <string>-1</string>
- </dict>
- </dict>
- <key>_timeStamp</key>
- <date>2012-12-04T21:30:10Z</date>
- <key>_versionInfo</key>
- <dict>
- <key>com.apple.SystemProfiler.SPEthernetReporter</key>
- <string>110</string>
- </dict>
- </dict>
- <dict>
- <key>_SPCommandLineArguments</key>
- <array>
- <string>/usr/sbin/system_profiler</string>
- <string>-xml</string>
- <string>-detailLevel</string>
- <string>mini</string>
- <string>SPParallelATADataType</string>
- <string>SPApplicationsDataType</string>
- <string>SPAudioDataType</string>
- <string>SPBluetoothDataType</string>
- <string>SPCardReaderDataType</string>
- <string>SPComponentDataType</string>
- <string>SPDeveloperToolsDataType</string>
- <string>SPDiagnosticsDataType</string>
- <string>SPDiscBurningDataType</string>
- <string>SPEthernetDataType</string>
- <string>SPExtensionsDataType</string>
- <string>SPFibreChannelDataType</string>
- <string>SPFireWireDataType</string>
- <string>SPFirewallDataType</string>
- <string>SPFontsDataType</string>
- <string>SPFrameworksDataType</string>
- <string>SPDisplaysDataType</string>
- <string>SPHardwareRAIDDataType</string>
- <string>SPNetworkLocationDataType</string>
- <string>SPLogsDataType</string>
- <string>SPManagedClientDataType</string>
- <string>SPMemoryDataType</string>
- <string>SPModemDataType</string>
- <string>SPNetworkDataType</string>
- <string>SPPCIDataType</string>
- <string>SPParallelSCSIDataType</string>
- <string>SPPowerDataType</string>
- <string>SPPrefPaneDataType</string>
- <string>SPPrintersSoftwareDataType</string>
- <string>SPPrintersDataType</string>
- <string>SPConfigurationProfileDataType</string>
- <string>SPSASDataType</string>
- <string>SPSerialATADataType</string>
- <string>SPSoftwareDataType</string>
- <string>SPStartupItemDataType</string>
- <string>SPSyncServicesDataType</string>
- <string>SPThunderboltDataType</string>
- <string>SPUSBDataType</string>
- <string>SPUniversalAccessDataType</string>
- <string>SPNetworkVolumeDataType</string>
- <string>SPWWANDataType</string>
- <string>SPAirPortDataType</string>
- </array>
- <key>_SPCompletionInterval</key>
- <real>2.1157749891281128</real>
- <key>_dataType</key>
- <string>SPExtensionsDataType</string>
- <key>_detailLevel</key>
- <integer>1</integer>
- <key>_items</key>
- <array>
- <dict>
- <key>_name</key>
- <string>ACPI_SMC_PlatformPlugin</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:55:18Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f80d4c000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/IOPlatformPluginFamily.kext/Contents/PlugIns/ACPI_SMC_PlatformPlugin.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>5.0.0d8</string>
- <key>version</key>
- <string>5.0.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ALF</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:53:28Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f82133000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/ALF.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>3.2.30</string>
- <key>version</key>
- <string>3.2.30</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ATI6000Controller</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_info</key>
- <string>ATI6000Controller 7.32.12 11587</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T03:20:06Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f81b1f000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/ATI6000Controller.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>7.3.2</string>
- <key>version</key>
- <string>7.32.12</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ATIFramebuffer</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_info</key>
- <string>ATIFramebuffer 7.32.12 11587</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T03:19:15Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f81b06000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/ATIFramebuffer.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>7.3.2</string>
- <key>version</key>
- <string>7.32.12</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ATIRadeonX3000</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_info</key>
- <string>ATIRadeonX3000 7.32.12 11587</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T03:19:08Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f8172d000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/ATIRadeonX3000.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>7.3.2</string>
- <key>version</key>
- <string>7.32.12</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ATISupport</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_info</key>
- <string>ATISupport 7.32.12 11587</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T03:19:19Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f81550000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/ATISupport.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>7.3.2</string>
- <key>version</key>
- <string>7.32.12</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AirPortBrcm4331</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_info</key>
- <string>5.6.1, Copyright © 2006–2012 Apple Inc. All rights reserved.</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:55:22Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f80f5d000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/IO80211Family.kext/Contents/PlugIns/AirPortBrcm4331.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>561.7.22</string>
- <key>version</key>
- <string>5.6.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppleACPIButtons</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:56:48Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f8212d000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/AppleACPIPlatform.kext/Contents/PlugIns/AppleACPIButtons.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>1.5</string>
- <key>version</key>
- <string>1.5</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppleACPIEC</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:56:48Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f82124000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/AppleACPIPlatform.kext/Contents/PlugIns/AppleACPIEC.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>1.5</string>
- <key>version</key>
- <string>1.5</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppleACPIPlatform</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:56:49Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f820cb000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/AppleACPIPlatform.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>1.5</string>
- <key>version</key>
- <string>1.5</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppleAHCIPort</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_info</key>
- <string>Version 2.3.1, Copyright 2005-2011, Apple Inc.</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:53:44Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f820ac000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/AppleAHCIPort.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>2.3.1</string>
- <key>version</key>
- <string>2.3.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppleAPIC</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:56:58Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f820a8000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/AppleAPIC.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>1.6</string>
- <key>version</key>
- <string>1.6</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppleBCM5701Ethernet</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_info</key>
- <string>Apple Broadcom 57XX Ethernet 3.2.4b8, Copyright 2002-2011, Apple Inc.</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:57:09Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f80d65000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/IONetworkingFamily.kext/Contents/PlugIns/AppleBCM5701Ethernet.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>3.2.4b8</string>
- <key>version</key>
- <string>3.2.4</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppleBacklightExpert</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_info</key>
- <string>1.0.4, AppleBacklightExpert, Copyright 2000-2012 Apple Inc. All rights reserved.</string>
- <key>spext_lastModified</key>
- <date>2012-11-30T18:45:01Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f82056000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/AppleBacklightExpert.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>1.0.4</string>
- <key>version</key>
- <string>1.0.4</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppleEFINVRAM</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:57:33Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f82087000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/AppleEFIRuntime.kext/Contents/PlugIns/AppleEFINVRAM.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>1.6.1</string>
- <key>version</key>
- <string>1.6.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppleEFIRuntime</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:57:34Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f82083000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/AppleEFIRuntime.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>1.6.1</string>
- <key>version</key>
- <string>1.6.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppleFSCompressionTypeDataless</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:52:54Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f82079000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/AppleFSCompressionTypeDataless.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>1.0.0d1</string>
- <key>version</key>
- <string>37</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppleFSCompressionTypeZlib</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:52:53Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f82072000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/AppleFSCompressionTypeZlib.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>1.0.0d1</string>
- <key>version</key>
- <string>37</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppleFWOHCI</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_info</key>
- <string>AppleFWOHCI version 4.9.0, Copyright © 2012 Apple Inc. All rights reserved.</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:56:59Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f80e2e000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/IOFireWireFamily.kext/Contents/PlugIns/AppleFWOHCI.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>4.9.0</string>
- <key>version</key>
- <string>4.9.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppleGraphicsControl</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_info</key>
- <string>3.1.33, Copyright 2008-2011 Apple Inc. All rights reserved.</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T03:01:11Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f82043000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/AppleGraphicsControl.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>3.1.33</string>
- <key>version</key>
- <string>3.1.33</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppleGraphicsPowerManagement</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_info</key>
- <string>100.12.75, Copyright 2011-2012 Apple Inc. All rights reserved.</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:58:53Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f8202d000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/AppleGraphicsPowerManagement.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>100.12.75</string>
- <key>version</key>
- <string>100.12.75</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppleHDA</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_info</key>
- <string>2.2.5a5, Copyright Apple Inc. 2005-2012</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:55:22Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f81f8e000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/AppleHDA.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>2.2.5a5</string>
- <key>version</key>
- <string>2.2.5</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppleHDAController</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_info</key>
- <string>2.2.5a5, Copyright Apple Inc. 2005-2012</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:55:22Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f81ecf000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAController.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>2.2.5a5</string>
- <key>version</key>
- <string>2.2.5</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppleHPET</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:56:27Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f81e86000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/AppleHPET.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>1.7</string>
- <key>version</key>
- <string>1.7</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppleHWSensor</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_info</key>
- <string>AppleHWSensor version 1.9.5, Copyright 2002-2011 Apple Inc.</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:56:16Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f81e7f000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/AppleHWSensor.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>1.9.5d0</string>
- <key>version</key>
- <string>1.9.5</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppleIRController</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_info</key>
- <string>312</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:59:40Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f81d93000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/AppleIRController.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>312</string>
- <key>version</key>
- <string>312</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppleIntelCPUPowerManagement</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:56:40Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f81e55000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/AppleIntelCPUPowerManagement.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>195.0.0</string>
- <key>version</key>
- <string>195.0.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppleIntelCPUPowerManagementClient</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_info</key>
- <string>195.0.0, Copyright © 2005-2011 Apple Inc. All rights reserved.</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:56:59Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f81e51000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/AppleIntelCPUPowerManagementClient.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>195.0.0</string>
- <key>version</key>
- <string>195.0.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppleIntelHD3000Graphics</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_info</key>
- <string>AppleIntelHD3000Graphics 7.32.12</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T03:19:08Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f81dd4000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/AppleIntelHD3000Graphics.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>7.3.2</string>
- <key>version</key>
- <string>7.32.12</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppleIntelSNBGraphicsFB</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_info</key>
- <string>AppleIntelSNBGraphicsFB 7.32.12</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T03:20:07Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f81d99000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/AppleIntelSNBGraphicsFB.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>7.3.2</string>
- <key>version</key>
- <string>7.32.12</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppleKeyStore</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:55:35Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f8090a000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/AppleKeyStore.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>28.18</string>
- <key>version</key>
- <string>1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppleLPC</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:55:37Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f81d8c000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/AppleLPC.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>1.6.0</string>
- <key>version</key>
- <string>1.6.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppleMCCSControl</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_info</key>
- <string>1.0.33, Copyright 2011 Apple Inc. All rights reserved.</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:56:41Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f81d5a000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/AppleMCCSControl.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>1.0.33</string>
- <key>version</key>
- <string>1.0.33</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppleMatch</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:52:04Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f80832000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/AppleMatch.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>1.0.0d1</string>
- <key>version</key>
- <string>14</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppleMikeyDriver</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_info</key>
- <string>2.2.5a5, Copyright Apple Inc. 2005-2012</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:55:22Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f81ead000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleMikeyDriver.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>2.2.5a5</string>
- <key>version</key>
- <string>2.2.5</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppleMikeyHIDDriver</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:54:56Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f81d4f000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/AppleMikeyHIDDriver.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>122</string>
- <key>version</key>
- <string>1.2.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppleMuxControl</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_info</key>
- <string>3.1.33, Copyright 2008-2011 Apple Inc. All rights reserved.</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T03:01:26Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f8205b000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/AppleGraphicsControl.kext/Contents/PlugIns/AppleMuxControl.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>3.1.33</string>
- <key>version</key>
- <string>3.1.33</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ApplePolicyControl</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_info</key>
- <string>3.1.33, Copyright 2011 Apple Inc. All rights reserved.</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T03:02:01Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f82046000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/AppleGraphicsControl.kext/Contents/PlugIns/ApplePolicyControl.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>3.1.33</string>
- <key>version</key>
- <string>3.1.33</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppleRTC</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:56:23Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f81cf0000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/AppleRTC.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>1.5</string>
- <key>version</key>
- <string>1.5</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppleSDXC</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_info</key>
- <string>1.2.2, Copyright Apple Inc. 2009-2012</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:57:37Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f81cdb000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/AppleSDXC.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>1.2.2</string>
- <key>version</key>
- <string>1.2.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppleSMBIOS</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:57:08Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f81ccb000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/AppleSMBIOS.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>1.9</string>
- <key>version</key>
- <string>1.9</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppleSMBusController</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_info</key>
- <string>AppleSMBusController version 1.0.10, Copyright 2008-2010 Apple Inc.</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:55:49Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f81cbd000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/AppleSMBusController.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>1.0.10d0</string>
- <key>version</key>
- <string>1.0.10</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppleSMBusPCI</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_info</key>
- <string>AppleSMBusPCI version 1.0.10, Copyright 2008-2010 Apple Inc.</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:55:46Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f81cba000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/AppleSMBusPCI.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>1.0.10d0</string>
- <key>version</key>
- <string>1.0.10</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppleSMC</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:53:41Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f807db000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/AppleSMC.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>3.1.3d10</string>
- <key>version</key>
- <string>3.1.3</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppleSMCLMU</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:55:30Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f81cb3000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/AppleSMCLMU.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>2.0.1d2</string>
- <key>version</key>
- <string>2.0.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppleSMCPDRC</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_lastModified</key>
- <date>2012-08-23T23:30:44Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f80d36000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/IOPlatformPluginFamily.kext/Contents/PlugIns/AppleSMCPDRC.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>5.0.0d8</string>
- <key>version</key>
- <string>5.0.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppleSmartBatteryManager</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T03:09:03Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f81cd0000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/AppleSmartBatteryManager.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>161.0.0</string>
- <key>version</key>
- <string>161.0.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppleThunderboltDPAdapterFamily</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_info</key>
- <string>AppleThunderboltDPAdapters version 1.8.5, Copyright © 2012 Apple Inc. All rights reserved.</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:57:05Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f81c40000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/AppleThunderboltDPAdapters.kext/Contents/PlugIns/AppleThunderboltDPAdapterFamily.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>1.8.5</string>
- <key>version</key>
- <string>1.8.5</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppleThunderboltDPInAdapter</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_info</key>
- <string>AppleThunderboltDPAdapters version 1.8.5, Copyright © 2012 Apple Inc. All rights reserved.</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:57:05Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f81c48000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/AppleThunderboltDPAdapters.kext/Contents/PlugIns/AppleThunderboltDPInAdapter.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>1.8.5</string>
- <key>version</key>
- <string>1.8.5</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppleThunderboltNHI</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_info</key>
- <string>AppleThunderboltNHI version 1.6.0, Copyright © 2012 Apple Inc. All rights reserved.</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:57:26Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f81c2b000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/AppleThunderboltNHI.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>1.6.0</string>
- <key>version</key>
- <string>1.6.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppleThunderboltPCIDownAdapter</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_info</key>
- <string>AppleThunderboltPCIAdapters version 1.2.5, Copyright © 2012 Apple Inc. All rights reserved.</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:56:56Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f81c1f000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/AppleThunderboltPCIAdapters.kext/Contents/PlugIns/AppleThunderboltPCIDownAdapter.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>1.2.5</string>
- <key>version</key>
- <string>1.2.5</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppleUSBBluetoothHCIController</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_info</key>
- <string>4.0.8, Copyright © 2002-2012 Apple Inc. All rights reserved.</string>
- <key>spext_lastModified</key>
- <date>2012-01-18T02:55:51Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f80e90000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/IOBluetoothFamily.kext/Contents/PlugIns/AppleUSBBluetoothHCIController.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>4.0.8f17</string>
- <key>version</key>
- <string>4.0.8</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppleUSBEHCI</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_info</key>
- <string>5.1.0, Copyright © 2000-2012 Apple Inc. All Rights Reserved.</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:58:45Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f80be6000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/IOUSBFamily.kext/Contents/PlugIns/AppleUSBEHCI.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>5.1.0</string>
- <key>version</key>
- <string>5.1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppleUSBHub</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_info</key>
- <string>5.1.0, Copyright © 2000-2012 Apple Inc. All Rights Reserved.</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:58:45Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f80bce000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/IOUSBFamily.kext/Contents/PlugIns/AppleUSBHub.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>5.1.0</string>
- <key>version</key>
- <string>5.1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppleUSBMergeNub</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_info</key>
- <string>5.1.0, Copyright © 2000-2012 Apple Inc. All Rights Reserved.</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:58:45Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f80bc8000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/IOUSBFamily.kext/Contents/PlugIns/AppleUSBMergeNub.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>5.1.0</string>
- <key>version</key>
- <string>5.1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppleUSBMultitouch</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:55:50Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f81b9a000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/AppleUSBMultitouch.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>230.5</string>
- <key>version</key>
- <string>230.5</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppleUSBTCButtons</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_info</key>
- <string>227.6</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:54:56Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f81b96000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/AppleUSBTopCase.kext/Contents/PlugIns/AppleUSBTCButtons.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>227.6</string>
- <key>version</key>
- <string>227.6</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppleUSBTCKeyboard</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_info</key>
- <string>227.6</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:54:56Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f81b91000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/AppleUSBTopCase.kext/Contents/PlugIns/AppleUSBTCKeyboard.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>227.6</string>
- <key>version</key>
- <string>227.6</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppleUpstreamUserClient</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:56:10Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f81bec000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/AppleUpstreamUserClient.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>3.5.9</string>
- <key>version</key>
- <string>3.5.9</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppleXsanFilter</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_info</key>
- <string>404, Copyright © 2005-2009 Apple Inc.</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:55:03Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f81b65000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/AppleXsanFilter.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>404</string>
- <key>version</key>
- <string>404</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AudioAUUC</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_lastModified</key>
- <date>2012-02-28T00:39:30Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f81330000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/AudioAUUC.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>1.59</string>
- <key>version</key>
- <string>1.59</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AudioIPCDriver</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_info</key>
- <string>Version 1.2.3</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:53:31Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f8132a000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/AudioIPCDriver.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>1.2.3</string>
- <key>version</key>
- <string>1.2.3</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>BSDKernel</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_info</key>
- <string>BSD Kernel Pseudoextension, Apple Computer Inc, 11.4.2</string>
- <key>spext_lastModified</key>
- <date>2012-11-30T18:45:08Z</date>
- <key>spext_loaded</key>
- <string>spext_kernelcomponent</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/System.kext/PlugIns/BSDKernel.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>11.4.2</string>
- <key>version</key>
- <string>11.4.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>BootCache</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_info</key>
- <string>Copyright © 2001-2008 Apple Inc. All rights reserved.</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:51:25Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f812e2000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/BootCache.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>33</string>
- <key>version</key>
- <string>33</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>BroadcomUSBBluetoothHCIController</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_info</key>
- <string>4.0.8, Copyright © 2002-2012 Apple Inc. All rights reserved.</string>
- <key>spext_lastModified</key>
- <date>2012-01-18T02:55:51Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f80ea3000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/IOBluetoothFamily.kext/Contents/PlugIns/BroadcomUSBBluetoothHCIController.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>4.0.8f17</string>
- <key>version</key>
- <string>4.0.8</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Dont Steal Mac OS X</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_info</key>
- <string>Copyright © 2006,2009 Apple Inc. All rights reserved.
-
-The purpose of this Apple software is to protect Apple copyrighted materials from unauthorized copying and use. You may not copy, modify, reverse engineer, publicly display, publicly perform, sublicense, transfer or redistribute this file, in whole or in part. If you have obtained a copy of this Apple software and do not have a valid license from Apple to use it, please immediately destroy or delete it from your computer.</string>
- <key>spext_lastModified</key>
- <date>2012-02-28T00:39:30Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f81246000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/Dont Steal Mac OS X.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>7.0.0</string>
- <key>version</key>
- <string>7.0.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>DspFuncLib</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_info</key>
- <string>2.2.5a5, Copyright Apple Inc. 2005-2012</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:55:22Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f81ee3000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/DspFuncLib.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>2.2.5a5</string>
- <key>version</key>
- <string>2.2.5</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>IO80211Family</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_info</key>
- <string>4.2, Copyright © 2005-2012 Apple Inc. All rights reserved.</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:55:51Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f80f2a000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/IO80211Family.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>420.3</string>
- <key>version</key>
- <string>4.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>IOACPIFamily</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:58:36Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f807d4000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/IOACPIFamily.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>1.4</string>
- <key>version</key>
- <string>1.4</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>IOAHCIBlockStorage</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_info</key>
- <string>2.1.0, Copyright Apple Inc. 2005-2012</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:57:45Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f80f0d000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/IOAHCIFamily.kext/Contents/PlugIns/IOAHCIBlockStorage.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>2.1.0</string>
- <key>version</key>
- <string>2.1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>IOAHCIFamily</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_info</key>
- <string>2.0.8 Copyright Apple Inc. 2005-2011</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:57:39Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f80ef5000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/IOAHCIFamily.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>2.0.8</string>
- <key>version</key>
- <string>2.0.8</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>IOAHCISerialATAPI</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_info</key>
- <string>2.0.3, Copyright (c) 2006-2012 Apple Inc.</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:58:58Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f80f01000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/IOAHCIFamily.kext/Contents/PlugIns/IOAHCISerialATAPI.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>2.0.3</string>
- <key>version</key>
- <string>2.0.3</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>IOAudioFamily</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_info</key>
- <string>Version: 1.8.6, Copyright © 2000-2012 Apple Inc. All rights reserved.</string>
- <key>spext_lastModified</key>
- <date>2011-11-05T21:36:30Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f812fd000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/IOAudioFamily.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>1.8.6fc18</string>
- <key>version</key>
- <string>1.8.6</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>IOBDStorageFamily</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:56:23Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f80d0b000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/IOBDStorageFamily.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>1.7</string>
- <key>version</key>
- <string>1.7</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>IOBluetoothFamily</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_info</key>
- <string>4.0.8, Copyright © 2002-2012 Apple Inc. All rights reserved.</string>
- <key>spext_lastModified</key>
- <date>2012-01-18T02:55:52Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f80989000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/IOBluetoothFamily.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>4.0.8f17</string>
- <key>version</key>
- <string>4.0.8</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>IOBluetoothSerialManager</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_info</key>
- <string>4.0.8, Copyright © 2002-2012 Apple Inc. All rights reserved.</string>
- <key>spext_lastModified</key>
- <date>2012-01-18T02:55:51Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f80e82000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/IOBluetoothFamily.kext/Contents/PlugIns/IOBluetoothSerialManager.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>4.0.8f17</string>
- <key>version</key>
- <string>4.0.8</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>IOCDStorageFamily</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:55:57Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f80cf3000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/IOCDStorageFamily.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>1.7.1</string>
- <key>version</key>
- <string>1.7.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>IODVDStorageFamily</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:56:53Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f80d00000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/IODVDStorageFamily.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>1.7.1</string>
- <key>version</key>
- <string>1.7.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>IOEthernetAVBController</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_lastModified</key>
- <date>2011-05-25T17:56:09Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f80d60000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/IONetworkingFamily.kext/Contents/PlugIns/IOEthernetAVBController.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>1.0.1b1</string>
- <key>version</key>
- <string>1.0.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>IOFireWireFamily</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_info</key>
- <string>IOFireWireFamily version 4.4.8, Copyright © 2012 Apple Inc. All rights reserved.</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:56:48Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f80a87000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/IOFireWireFamily.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>4.4.8</string>
- <key>version</key>
- <string>4.4.8</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>IOFireWireIP</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_info</key>
- <string>IOFireWireIP version 2.2.5, Copyright © 2011 Apple Inc. All rights reserved.</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:54:07Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f80e21000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/IOFireWireIP.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>2.2.5</string>
- <key>version</key>
- <string>2.2.5</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>IOGraphicsFamily</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_info</key>
- <string>2.3.4, Copyright Apple Computer, Inc. 2000-2012</string>
- <key>spext_lastModified</key>
- <date>2012-11-30T18:45:05Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f80d9a000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/IOGraphicsFamily.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>2.3.4</string>
- <key>version</key>
- <string>2.3.4</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>IOHDAFamily</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_info</key>
- <string>2.2.5a5, Copyright Apple Inc. 2005-2012</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:55:22Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f81ea1000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/IOHDAFamily.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>2.2.5a5</string>
- <key>version</key>
- <string>2.2.5</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>IOHDIXController</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:55:11Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f80de5000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/IOHDIXController.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>331.7</string>
- <key>version</key>
- <string>10.7.4</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>IOHIDFamily</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:53:28Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f80916000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/IOHIDFamily.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>1.7.1</string>
- <key>version</key>
- <string>1.7.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>IOKit</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_info</key>
- <string>I/O Kit Pseudoextension, Apple Computer Inc, 11.4.2</string>
- <key>spext_lastModified</key>
- <date>2012-11-30T18:45:08Z</date>
- <key>spext_loaded</key>
- <string>spext_kernelcomponent</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/System.kext/PlugIns/IOKit.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>11.4.2</string>
- <key>version</key>
- <string>11.4.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>IONDRVSupport</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_info</key>
- <string>2.3.4, Copyright Apple Computer, Inc. 2000-2012</string>
- <key>spext_lastModified</key>
- <date>2012-11-30T18:45:05Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f80dd3000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/IONDRVSupport.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>2.3.4</string>
- <key>version</key>
- <string>2.3.4</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>IONetworkingFamily</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:57:06Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f80b31000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/IONetworkingFamily.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>2.1</string>
- <key>version</key>
- <string>2.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>IOPCIFamily</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_info</key>
- <string>2.7, Copyright © 2000-2011 Apple Inc. All rights reserved.</string>
- <key>spext_lastModified</key>
- <date>2012-11-30T18:45:05Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f80889000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/IOPCIFamily.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>2.7</string>
- <key>version</key>
- <string>2.7</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>IOPlatformPluginFamily</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:55:18Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f80d2f000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/IOPlatformPluginFamily.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>5.1.1d6</string>
- <key>version</key>
- <string>5.1.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>IOPlatformPluginLegacy</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_lastModified</key>
- <date>2012-08-23T23:30:44Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f80d3a000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/IOPlatformPluginFamily.kext/Contents/PlugIns/IOPlatformPluginLegacy.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>5.0.0d8</string>
- <key>version</key>
- <string>5.0.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>IOSCSIArchitectureModelFamily</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_info</key>
- <string>3.2.1, Copyright Apple Inc. 1999-2012</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:54:26Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f8084e000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/IOSCSIArchitectureModelFamily.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>3.2.1</string>
- <key>version</key>
- <string>3.2.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>IOSCSIMultimediaCommandsDevice</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_info</key>
- <string>3.2.1, Copyright Apple Inc. 1999-2012</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:54:07Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f80d15000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/IOSCSIArchitectureModelFamily.kext/Contents/PlugIns/IOSCSIMultimediaCommandsDevice.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>3.2.1</string>
- <key>version</key>
- <string>3.2.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>IOSMBusFamily</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:57:02Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f80cd4000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/IOSMBusFamily.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>1.1</string>
- <key>version</key>
- <string>1.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>IOSerialFamily</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_info</key>
- <string>Copyright © 1997-2010 Apple Inc. All rights reserved. IOKit Serial Port Family</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:57:40Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f80cdc000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/IOSerialFamily.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>10.0.5</string>
- <key>version</key>
- <string>10.0.5</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>IOStorageFamily</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:52:53Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f80770000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/IOStorageFamily.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>1.7.2</string>
- <key>version</key>
- <string>1.7.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>IOSurface</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:51:22Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f80cc2000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/IOSurface.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>80.0.2</string>
- <key>version</key>
- <string>80.0.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>IOThunderboltFamily</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_info</key>
- <string>IOThunderboltFamily version 2.0.3, Copyright © 2012 Apple Inc. All rights reserved.</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:54:16Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f80c13000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/IOThunderboltFamily.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>2.0.3</string>
- <key>version</key>
- <string>2.0.3</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>IOUSBCompositeDriver</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_info</key>
- <string>5.0.0, Copyright © 2000-2012 Apple Inc. All Rights Reserved.</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:58:45Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f80b77000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/IOUSBFamily.kext/Contents/PlugIns/IOUSBCompositeDriver.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>5.0.0</string>
- <key>version</key>
- <string>5.0.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>IOUSBFamily</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_info</key>
- <string>5.1.0, Copyright © 2000-2012 Apple Inc. All Rights Reserved.</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:51:58Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f808b4000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/IOUSBFamily.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>5.1.0</string>
- <key>version</key>
- <string>5.1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>IOUSBHIDDriver</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_info</key>
- <string>5.0.0, Copyright © 2000-2012 Apple Inc. All Rights Reserved.</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:58:45Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f80981000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/IOUSBFamily.kext/Contents/PlugIns/IOUSBHIDDriver.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>5.0.0</string>
- <key>version</key>
- <string>5.0.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>IOUSBUserClient</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_info</key>
- <string>5.0.0, Copyright © 2000-2012 Apple Inc. All Rights Reserved.</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:58:45Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f80b74000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/IOUSBFamily.kext/Contents/PlugIns/IOUSBUserClient.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>5.0.0</string>
- <key>version</key>
- <string>5.0.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>IOUserEthernet</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:52:42Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f80b5a000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/IOUserEthernet.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>1.0.0d1</string>
- <key>version</key>
- <string>1.0.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Libkern</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_info</key>
- <string>Libkern Pseudoextension, Apple Computer Inc, 11.4.2</string>
- <key>spext_lastModified</key>
- <date>2012-11-30T18:45:08Z</date>
- <key>spext_loaded</key>
- <string>spext_kernelcomponent</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/System.kext/PlugIns/Libkern.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>11.4.2</string>
- <key>version</key>
- <string>11.4.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MACFramework</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_info</key>
- <string>MAC Framework Pseudoextension, SPARTA Inc, 11.4.2</string>
- <key>spext_lastModified</key>
- <date>2012-11-30T18:45:08Z</date>
- <key>spext_loaded</key>
- <string>spext_kernelcomponent</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/System.kext/PlugIns/MACFramework.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>11.4.2</string>
- <key>version</key>
- <string>11.4.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Mach</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_info</key>
- <string>Mach Kernel Pseudoextension, Apple Computer Inc, 11.4.2</string>
- <key>spext_lastModified</key>
- <date>2012-11-30T18:45:08Z</date>
- <key>spext_loaded</key>
- <string>spext_kernelcomponent</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/System.kext/PlugIns/Mach.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>11.4.2</string>
- <key>version</key>
- <string>11.4.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>OSvKernDSPLib</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:57:16Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f812f7000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/OSvKernDSPLib.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>1.3</string>
- <key>version</key>
- <string>1.3</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Private</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_info</key>
- <string>Private Pseudoextension, Apple Computer Inc, 11.4.2</string>
- <key>spext_lastModified</key>
- <date>2012-11-30T18:45:08Z</date>
- <key>spext_loaded</key>
- <string>spext_kernelcomponent</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/System.kext/PlugIns/Private.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>11.4.2</string>
- <key>version</key>
- <string>11.4.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Quarantine</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:56:22Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f80847000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/Quarantine.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>1.4</string>
- <key>version</key>
- <string>1.4</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>SCSITaskUserClient</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_info</key>
- <string>3.2.1, Copyright Apple Inc. 1999-2012</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:54:10Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f80cea000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/IOSCSIArchitectureModelFamily.kext/Contents/PlugIns/SCSITaskUserClient.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>3.2.1</string>
- <key>version</key>
- <string>3.2.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>SMCMotionSensor</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:58:38Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f807e9000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/SMCMotionSensor.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>3.0.2d6</string>
- <key>version</key>
- <string>3.0.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Sandbox</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T03:05:06Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f80836000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/Sandbox.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>177.8</string>
- <key>version</key>
- <string>177.8</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>TMSafetyNet</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:53:37Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f80751000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/TMSafetyNet.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>8</string>
- <key>version</key>
- <string>8</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Unsupported</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_info</key>
- <string>Unsupported Pseudoextension, Apple Computer Inc, 11.4.2</string>
- <key>spext_lastModified</key>
- <date>2012-11-30T18:45:08Z</date>
- <key>spext_loaded</key>
- <string>spext_kernelcomponent</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/System.kext/PlugIns/Unsupported.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>11.4.2</string>
- <key>version</key>
- <string>11.4.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>autofs</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:59:33Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f812ec000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/autofs.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>3.0</string>
- <key>version</key>
- <string>3.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>smbfs</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:52:24Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f80795000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/smbfs.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>1.7.2</string>
- <key>version</key>
- <string>1.7.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>triggers</string>
- <key>spext_architectures</key>
- <array>
- <string>i386</string>
- <string>x86_64</string>
- </array>
- <key>spext_authentic</key>
- <string>spext_yes</string>
- <key>spext_has64BitIntelCode</key>
- <string>spext_yes</string>
- <key>spext_hasAllDependencies</key>
- <string>spext_satisfied</string>
- <key>spext_lastModified</key>
- <date>2012-01-13T02:59:27Z</date>
- <key>spext_loaded</key>
- <string>0xffffff7f807f2000</string>
- <key>spext_path</key>
- <string>/System/Library/Extensions/triggers.kext</string>
- <key>spext_runtime_environment</key>
- <string>spext_arch_x86</string>
- <key>spext_valid</key>
- <string>spext_yes</string>
- <key>spext_version</key>
- <string>1.0</string>
- <key>version</key>
- <string>1.0</string>
- </dict>
- </array>
- <key>_parentDataType</key>
- <string>SPSoftwareDataType</string>
- <key>_properties</key>
- <dict>
- <key>_name</key>
- <dict>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>0</string>
- <key>_width</key>
- <string>210</string>
- </dict>
- <key>spext_architectures</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>35</string>
- <key>_width</key>
- <string>150</string>
- </dict>
- <key>spext_authentic</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>70</string>
- <key>_width</key>
- <string>60</string>
- </dict>
- <key>spext_authentic_errors</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>75</string>
- </dict>
- <key>spext_has64BitIntelCode</key>
- <dict>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>40</string>
- <key>_width</key>
- <string>150</string>
- </dict>
- <key>spext_hasAllDependencies</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>80</string>
- <key>_width</key>
- <string>90</string>
- </dict>
- <key>spext_hasAllDependencies_errors</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>85</string>
- </dict>
- <key>spext_info</key>
- <dict>
- <key>_order</key>
- <string>30</string>
- </dict>
- <key>spext_lastModified</key>
- <dict>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>20</string>
- <key>_width</key>
- <string>150</string>
- </dict>
- <key>spext_loaded</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>55</string>
- <key>_width</key>
- <string>40</string>
- </dict>
- <key>spext_path</key>
- <dict>
- <key>_order</key>
- <string>40</string>
- </dict>
- <key>spext_runtime_environment</key>
- <dict>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>30</string>
- <key>_width</key>
- <string>150</string>
- </dict>
- <key>spext_valid</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>60</string>
- <key>_width</key>
- <string>35</string>
- </dict>
- <key>spext_valid_errors</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>65</string>
- </dict>
- <key>spext_version</key>
- <dict>
- <key>_order</key>
- <string>50</string>
- </dict>
- <key>version</key>
- <dict>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>10</string>
- <key>_width</key>
- <string>30</string>
- </dict>
- <key>volumes_anonymous</key>
- <dict>
- <key>_detailLevel</key>
- <string>-1</string>
- <key>_maxDetailLevel</key>
- <string>-1</string>
- </dict>
- </dict>
- <key>_timeStamp</key>
- <date>2012-12-04T21:30:12Z</date>
- <key>_versionInfo</key>
- <dict>
- <key>com.apple.SystemProfiler.SPExtensionsReporter</key>
- <string>59</string>
- </dict>
- </dict>
- <dict>
- <key>_SPCommandLineArguments</key>
- <array>
- <string>/usr/sbin/system_profiler</string>
- <string>-xml</string>
- <string>-detailLevel</string>
- <string>mini</string>
- <string>SPParallelATADataType</string>
- <string>SPApplicationsDataType</string>
- <string>SPAudioDataType</string>
- <string>SPBluetoothDataType</string>
- <string>SPCardReaderDataType</string>
- <string>SPComponentDataType</string>
- <string>SPDeveloperToolsDataType</string>
- <string>SPDiagnosticsDataType</string>
- <string>SPDiscBurningDataType</string>
- <string>SPEthernetDataType</string>
- <string>SPExtensionsDataType</string>
- <string>SPFibreChannelDataType</string>
- <string>SPFireWireDataType</string>
- <string>SPFirewallDataType</string>
- <string>SPFontsDataType</string>
- <string>SPFrameworksDataType</string>
- <string>SPDisplaysDataType</string>
- <string>SPHardwareRAIDDataType</string>
- <string>SPNetworkLocationDataType</string>
- <string>SPLogsDataType</string>
- <string>SPManagedClientDataType</string>
- <string>SPMemoryDataType</string>
- <string>SPModemDataType</string>
- <string>SPNetworkDataType</string>
- <string>SPPCIDataType</string>
- <string>SPParallelSCSIDataType</string>
- <string>SPPowerDataType</string>
- <string>SPPrefPaneDataType</string>
- <string>SPPrintersSoftwareDataType</string>
- <string>SPPrintersDataType</string>
- <string>SPConfigurationProfileDataType</string>
- <string>SPSASDataType</string>
- <string>SPSerialATADataType</string>
- <string>SPSoftwareDataType</string>
- <string>SPStartupItemDataType</string>
- <string>SPSyncServicesDataType</string>
- <string>SPThunderboltDataType</string>
- <string>SPUSBDataType</string>
- <string>SPUniversalAccessDataType</string>
- <string>SPNetworkVolumeDataType</string>
- <string>SPWWANDataType</string>
- <string>SPAirPortDataType</string>
- </array>
- <key>_SPCompletionInterval</key>
- <real>0.0025680065155029297</real>
- <key>_dataType</key>
- <string>SPFibreChannelDataType</string>
- <key>_detailLevel</key>
- <integer>-1</integer>
- <key>_items</key>
- <array/>
- <key>_parentDataType</key>
- <string>SPHardwareDataType</string>
- <key>_properties</key>
- <dict>
- <key>_name</key>
- <dict>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_isOutlineColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>0</string>
- </dict>
- <key>bsd_name</key>
- <dict>
- <key>_order</key>
- <string>62</string>
- </dict>
- <key>detachable_drive</key>
- <dict>
- <key>_order</key>
- <string>59</string>
- </dict>
- <key>device_alias</key>
- <dict>
- <key>_order</key>
- <string>41</string>
- </dict>
- <key>device_manufacturer</key>
- <dict>
- <key>_order</key>
- <string>41</string>
- </dict>
- <key>device_model</key>
- <dict>
- <key>_order</key>
- <string>42</string>
- </dict>
- <key>device_revision</key>
- <dict>
- <key>_order</key>
- <string>44</string>
- </dict>
- <key>disc_burning</key>
- <dict>
- <key>_order</key>
- <string>54</string>
- </dict>
- <key>file_system</key>
- <dict>
- <key>_order</key>
- <string>60</string>
- </dict>
- <key>free_space</key>
- <dict>
- <key>_deprecated</key>
- <true/>
- <key>_order</key>
- <string>12</string>
- </dict>
- <key>free_space_in_bytes</key>
- <dict>
- <key>_isByteSize</key>
- <true/>
- <key>_order</key>
- <string>12</string>
- </dict>
- <key>mount_point</key>
- <dict>
- <key>_order</key>
- <string>64</string>
- </dict>
- <key>optical_drive_type</key>
- <dict>
- <key>_order</key>
- <string>51</string>
- </dict>
- <key>optical_media_type</key>
- <dict>
- <key>_order</key>
- <string>52</string>
- </dict>
- <key>os9_drivers</key>
- <dict>
- <key>_order</key>
- <string>68</string>
- </dict>
- <key>raid_drive</key>
- <dict>
- <key>_order</key>
- <string>66</string>
- </dict>
- <key>removable_media</key>
- <dict>
- <key>_order</key>
- <string>56</string>
- </dict>
- <key>size</key>
- <dict>
- <key>_deprecated</key>
- <true/>
- <key>_order</key>
- <string>10</string>
- </dict>
- <key>size_in_bytes</key>
- <dict>
- <key>_isByteSize</key>
- <true/>
- <key>_order</key>
- <string>10</string>
- </dict>
- <key>spfibrechannel_addressidentifier</key>
- <dict>
- <key>_order</key>
- <string>29</string>
- </dict>
- <key>spfibrechannel_alpa</key>
- <dict>
- <key>_order</key>
- <string>30</string>
- </dict>
- <key>spfibrechannel_alua_support</key>
- <dict>
- <key>_order</key>
- <string>48</string>
- </dict>
- <key>spfibrechannel_bus</key>
- <dict>
- <key>_order</key>
- <string>23</string>
- </dict>
- <key>spfibrechannel_cablingtype</key>
- <dict>
- <key>_order</key>
- <string>35</string>
- </dict>
- <key>spfibrechannel_device_type</key>
- <dict>
- <key>_order</key>
- <string>40</string>
- </dict>
- <key>spfibrechannel_domainidentifier</key>
- <dict>
- <key>_order</key>
- <string>25</string>
- </dict>
- <key>spfibrechannel_initiatorid</key>
- <dict>
- <key>_order</key>
- <string>26</string>
- </dict>
- <key>spfibrechannel_load_balancing_algorithm</key>
- <dict>
- <key>_order</key>
- <string>50</string>
- </dict>
- <key>spfibrechannel_logical_unit_access_state</key>
- <dict>
- <key>_order</key>
- <string>49</string>
- </dict>
- <key>spfibrechannel_logical_unit_unique_id</key>
- <dict>
- <key>_order</key>
- <string>40</string>
- </dict>
- <key>spfibrechannel_lun</key>
- <dict>
- <key>_order</key>
- <string>39</string>
- </dict>
- <key>spfibrechannel_nodeworldwidename</key>
- <dict>
- <key>_order</key>
- <string>27</string>
- </dict>
- <key>spfibrechannel_portdescription</key>
- <dict>
- <key>_order</key>
- <string>31</string>
- </dict>
- <key>spfibrechannel_portspeed</key>
- <dict>
- <key>_order</key>
- <string>32</string>
- </dict>
- <key>spfibrechannel_portstatus</key>
- <dict>
- <key>_order</key>
- <string>34</string>
- </dict>
- <key>spfibrechannel_porttopology</key>
- <dict>
- <key>_order</key>
- <string>33</string>
- </dict>
- <key>spfibrechannel_portworldwidename</key>
- <dict>
- <key>_order</key>
- <string>28</string>
- </dict>
- <key>spfibrechannel_product</key>
- <dict>
- <key>_order</key>
- <string>21</string>
- </dict>
- <key>spfibrechannel_revision</key>
- <dict>
- <key>_order</key>
- <string>22</string>
- </dict>
- <key>spfibrechannel_slot_name</key>
- <dict>
- <key>_order</key>
- <string>24</string>
- </dict>
- <key>spfibrechannel_target</key>
- <dict>
- <key>_order</key>
- <string>38</string>
- </dict>
- <key>spfibrechannel_vendor</key>
- <dict>
- <key>_order</key>
- <string>20</string>
- </dict>
- <key>volumes_anonymous</key>
- <dict>
- <key>_detailLevel</key>
- <string>-1</string>
- <key>_maxDetailLevel</key>
- <string>-1</string>
- </dict>
- <key>writable</key>
- <dict>
- <key>_order</key>
- <string>58</string>
- </dict>
- </dict>
- <key>_timeStamp</key>
- <date>2012-12-04T21:30:12Z</date>
- <key>_versionInfo</key>
- <dict>
- <key>com.apple.SystemProfiler.SPFibreChannelReporter</key>
- <string>2.0.2</string>
- </dict>
- </dict>
- <dict>
- <key>_SPCompletionInterval</key>
- <real>0.0022010207176208496</real>
- <key>_dataType</key>
- <string>SPFireWireDataType</string>
- <key>_detailLevel</key>
- <integer>-1</integer>
- <key>_items</key>
- <array>
- <dict>
- <key>_name</key>
- <string>sp_fw_bus</string>
- <key>max_device_speed</key>
- <string>800mbit_speed</string>
- </dict>
- </array>
- <key>_parentDataType</key>
- <string>SPHardwareDataType</string>
- <key>_properties</key>
- <dict>
- <key>_name</key>
- <dict>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_isOutlineColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>0</string>
- </dict>
- <key>bsd_name</key>
- <dict>
- <key>_order</key>
- <string>42</string>
- </dict>
- <key>bus_power</key>
- <dict>
- <key>_order</key>
- <string>55</string>
- </dict>
- <key>connected_speed</key>
- <dict>
- <key>_order</key>
- <string>63</string>
- </dict>
- <key>detachable_drive</key>
- <dict>
- <key>_order</key>
- <string>39</string>
- </dict>
- <key>device_manufacturer</key>
- <dict>
- <key>_order</key>
- <string>10</string>
- </dict>
- <key>device_model</key>
- <dict>
- <key>_order</key>
- <string>12</string>
- </dict>
- <key>device_revision</key>
- <dict>
- <key>_order</key>
- <string>14</string>
- </dict>
- <key>device_serial</key>
- <dict>
- <key>_order</key>
- <string>16</string>
- </dict>
- <key>disc_burning</key>
- <dict>
- <key>_order</key>
- <string>32</string>
- </dict>
- <key>file_system</key>
- <dict>
- <key>_order</key>
- <string>40</string>
- </dict>
- <key>free_space</key>
- <dict>
- <key>_deprecated</key>
- <true/>
- <key>_order</key>
- <string>22</string>
- </dict>
- <key>free_space_in_bytes</key>
- <dict>
- <key>_isByteSize</key>
- <true/>
- <key>_order</key>
- <string>22</string>
- </dict>
- <key>max_device_speed</key>
- <dict>
- <key>_order</key>
- <string>62</string>
- </dict>
- <key>mount_point</key>
- <dict>
- <key>_order</key>
- <string>44</string>
- </dict>
- <key>optical_drive_type</key>
- <dict>
- <key>_order</key>
- <string>30</string>
- </dict>
- <key>optical_media_type</key>
- <dict>
- <key>_order</key>
- <string>31</string>
- </dict>
- <key>product_id</key>
- <dict>
- <key>_order</key>
- <string>52</string>
- </dict>
- <key>removable_media</key>
- <dict>
- <key>_order</key>
- <string>34</string>
- </dict>
- <key>serial_num</key>
- <dict>
- <key>_order</key>
- <string>53</string>
- </dict>
- <key>size</key>
- <dict>
- <key>_deprecated</key>
- <true/>
- <key>_order</key>
- <string>20</string>
- </dict>
- <key>size_in_bytes</key>
- <dict>
- <key>_isByteSize</key>
- <true/>
- <key>_order</key>
- <string>20</string>
- </dict>
- <key>sp_fw_firmware_revision</key>
- <dict>
- <key>_order</key>
- <string>75</string>
- </dict>
- <key>sp_fw_guid</key>
- <dict>
- <key>_order</key>
- <string>60</string>
- </dict>
- <key>sp_fw_product_revision_level</key>
- <dict>
- <key>_order</key>
- <string>76</string>
- </dict>
- <key>sp_fw_unitDir</key>
- <dict>
- <key>_order</key>
- <string>72</string>
- </dict>
- <key>unit_spec_id</key>
- <dict>
- <key>_order</key>
- <string>71</string>
- </dict>
- <key>unit_sw_version</key>
- <dict>
- <key>_order</key>
- <string>70</string>
- </dict>
- <key>units</key>
- <dict>
- <key>_order</key>
- <string>80</string>
- </dict>
- <key>vendor_id</key>
- <dict>
- <key>_order</key>
- <string>51</string>
- </dict>
- <key>vendor_name</key>
- <dict>
- <key>_order</key>
- <string>50</string>
- </dict>
- <key>volumes_anonymous</key>
- <dict>
- <key>_detailLevel</key>
- <string>-1</string>
- <key>_maxDetailLevel</key>
- <string>-1</string>
- </dict>
- <key>warning</key>
- <dict>
- <key>_isWarning</key>
- <string>YES</string>
- <key>_order</key>
- <string>5</string>
- </dict>
- <key>writable</key>
- <dict>
- <key>_order</key>
- <string>36</string>
- </dict>
- </dict>
- <key>_timeStamp</key>
- <date>2012-12-04T21:30:12Z</date>
- <key>_versionInfo</key>
- <dict>
- <key>com.apple.SystemProfiler.SPFireWireReporter</key>
- <string>4.3.0</string>
- </dict>
- </dict>
- <dict>
- <key>_SPCommandLineArguments</key>
- <array>
- <string>/usr/sbin/system_profiler</string>
- <string>-xml</string>
- <string>-detailLevel</string>
- <string>mini</string>
- <string>SPParallelATADataType</string>
- <string>SPApplicationsDataType</string>
- <string>SPAudioDataType</string>
- <string>SPBluetoothDataType</string>
- <string>SPCardReaderDataType</string>
- <string>SPComponentDataType</string>
- <string>SPDeveloperToolsDataType</string>
- <string>SPDiagnosticsDataType</string>
- <string>SPDiscBurningDataType</string>
- <string>SPEthernetDataType</string>
- <string>SPExtensionsDataType</string>
- <string>SPFibreChannelDataType</string>
- <string>SPFireWireDataType</string>
- <string>SPFirewallDataType</string>
- <string>SPFontsDataType</string>
- <string>SPFrameworksDataType</string>
- <string>SPDisplaysDataType</string>
- <string>SPHardwareRAIDDataType</string>
- <string>SPNetworkLocationDataType</string>
- <string>SPLogsDataType</string>
- <string>SPManagedClientDataType</string>
- <string>SPMemoryDataType</string>
- <string>SPModemDataType</string>
- <string>SPNetworkDataType</string>
- <string>SPPCIDataType</string>
- <string>SPParallelSCSIDataType</string>
- <string>SPPowerDataType</string>
- <string>SPPrefPaneDataType</string>
- <string>SPPrintersSoftwareDataType</string>
- <string>SPPrintersDataType</string>
- <string>SPConfigurationProfileDataType</string>
- <string>SPSASDataType</string>
- <string>SPSerialATADataType</string>
- <string>SPSoftwareDataType</string>
- <string>SPStartupItemDataType</string>
- <string>SPSyncServicesDataType</string>
- <string>SPThunderboltDataType</string>
- <string>SPUSBDataType</string>
- <string>SPUniversalAccessDataType</string>
- <string>SPNetworkVolumeDataType</string>
- <string>SPWWANDataType</string>
- <string>SPAirPortDataType</string>
- </array>
- <key>_SPCompletionInterval</key>
- <real>0.0019719600677490234</real>
- <key>_dataType</key>
- <string>SPFirewallDataType</string>
- <key>_detailLevel</key>
- <integer>0</integer>
- <key>_items</key>
- <array>
- <dict>
- <key>_name</key>
- <string>spfirewall_settings</string>
- <key>spfirewall_globalstate</key>
- <string>spfirewall_globalstate_allow_all</string>
- <key>spfirewall_loggingenabled</key>
- <string>Yes</string>
- <key>spfirewall_stealthenabled</key>
- <string>No</string>
- </dict>
- </array>
- <key>_parentDataType</key>
- <string>SPNetworkDataType</string>
- <key>_properties</key>
- <dict>
- <key>spfirewall_applications</key>
- <dict>
- <key>_order</key>
- <string>30</string>
- </dict>
- <key>spfirewall_globalstate</key>
- <dict>
- <key>_order</key>
- <string>10</string>
- </dict>
- <key>spfirewall_services</key>
- <dict>
- <key>_order</key>
- <string>20</string>
- </dict>
- <key>volumes_anonymous</key>
- <dict>
- <key>_detailLevel</key>
- <string>-1</string>
- <key>_maxDetailLevel</key>
- <string>-1</string>
- </dict>
- </dict>
- <key>_timeStamp</key>
- <date>2012-12-04T21:30:12Z</date>
- <key>_versionInfo</key>
- <dict>
- <key>com.apple.SystemProfiler.SPFirewallReporter</key>
- <string>733</string>
- </dict>
- </dict>
- <dict>
- <key>_SPCommandLineArguments</key>
- <array>
- <string>/usr/sbin/system_profiler</string>
- <string>-xml</string>
- <string>-detailLevel</string>
- <string>mini</string>
- <string>SPParallelATADataType</string>
- <string>SPApplicationsDataType</string>
- <string>SPAudioDataType</string>
- <string>SPBluetoothDataType</string>
- <string>SPCardReaderDataType</string>
- <string>SPComponentDataType</string>
- <string>SPDeveloperToolsDataType</string>
- <string>SPDiagnosticsDataType</string>
- <string>SPDiscBurningDataType</string>
- <string>SPEthernetDataType</string>
- <string>SPExtensionsDataType</string>
- <string>SPFibreChannelDataType</string>
- <string>SPFireWireDataType</string>
- <string>SPFirewallDataType</string>
- <string>SPFontsDataType</string>
- <string>SPFrameworksDataType</string>
- <string>SPDisplaysDataType</string>
- <string>SPHardwareRAIDDataType</string>
- <string>SPNetworkLocationDataType</string>
- <string>SPLogsDataType</string>
- <string>SPManagedClientDataType</string>
- <string>SPMemoryDataType</string>
- <string>SPModemDataType</string>
- <string>SPNetworkDataType</string>
- <string>SPPCIDataType</string>
- <string>SPParallelSCSIDataType</string>
- <string>SPPowerDataType</string>
- <string>SPPrefPaneDataType</string>
- <string>SPPrintersSoftwareDataType</string>
- <string>SPPrintersDataType</string>
- <string>SPConfigurationProfileDataType</string>
- <string>SPSASDataType</string>
- <string>SPSerialATADataType</string>
- <string>SPSoftwareDataType</string>
- <string>SPStartupItemDataType</string>
- <string>SPSyncServicesDataType</string>
- <string>SPThunderboltDataType</string>
- <string>SPUSBDataType</string>
- <string>SPUniversalAccessDataType</string>
- <string>SPNetworkVolumeDataType</string>
- <string>SPWWANDataType</string>
- <string>SPAirPortDataType</string>
- </array>
- <key>_SPCompletionInterval</key>
- <real>0.10989898443222046</real>
- <key>_dataType</key>
- <string>SPFontsDataType</string>
- <key>_detailLevel</key>
- <string>1</string>
- <key>_items</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Wingdings 3.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Wingdings 3.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Wingdings3</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Wingdings 3 designed by Bigelow &amp; Holmes Inc. for Microsoft Corporation. Copyright © 1992 Microsoft Corporation. Pat. pend. All Rights Reserved. © 1990-1991 Type Solutions, Inc. All Rights Reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Wingdings 3</string>
- <key>fullname</key>
- <string>Wingdings 3</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Wingdings is a trademark of Microsoft Corporation.</string>
- <key>unique</key>
- <string>Wingdings 3</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 5.03</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>msyi.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/msyi.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Microsoft-Yi-Baiti</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string> © 2006 Beijing Founder Electronic CO. LTD. Portions © 2006 Microsoft Corporation. All Rights Reserved</string>
- <key>designer</key>
- <string>Beijing Founder Electronic CO. LTD.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Microsoft Yi Baiti</string>
- <key>fullname</key>
- <string>Microsoft Yi Baiti</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Microsoft Yi Baiti is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries.</string>
- <key>unique</key>
- <string>Microsoft Yi Baiti</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Microsoft Corporation</string>
- <key>version</key>
- <string>Version 5.00</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Gill Sans Ultra Bold</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Gill Sans Ultra Bold</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>GillSans-UltraBold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Digitized data copyright © 1997 The Monotype Corporation, Inc. All rights reserved. Gill Sans® is a trademark of The Monotype Corporation, Inc. which may be registered in certain jurisdictions.</string>
- <key>description</key>
- <string>Monotype Type Drawing Office 1928. Gill studied under the renowned calligrapher, Edward Johnston, the designer of the London Underground sans serif typeface. This influenced Gill who later experimented with sans serif designs, and in due course produced a set of capital letters. These became Monotype series 231, produced in 1923, and the forerunner of the extensive Gill Sans range now available. A twentieth century sans serif that has a simplicity of form which does not reject traditional forms and proportions, and gives the face a humanist feel. The lighter weights are highly readable in text and suitable for magazine and book work, whereas the heavier weights are best used for display in advertising, packaging, and labels.</string>
- <key>designer</key>
- <string>Eric Gill</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Gill Sans Ultra Bold</string>
- <key>fullname</key>
- <string>Gill Sans Ultra Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Gill Sans® is a trademark of The Monotype Corporation, Inc. which may be registered in certain jurisdictions.</string>
- <key>unique</key>
- <string>Monotype - Gill Sans Ultra Bold</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Monotype Typography</string>
- <key>version</key>
- <string>Version 1.65</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Candara Bold.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Candara Bold.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Candara-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 2008 Microsoft Corporation. All Rights Reserved.</string>
- <key>description</key>
- <string>Candara is a casual humanist sans with verticals showing a graceful entasis on stems, high-branching arcades in the lowercase, large apertures in all open forms, and unique ogee curves on diagonals. The resultant texture is lively but not intrusive, and makes for a friendly and readable text.</string>
- <key>designer</key>
- <string>Gary Munch</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Candara</string>
- <key>fullname</key>
- <string>Candara Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>Candara is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries.</string>
- <key>unique</key>
- <string>Microsoft: Candara Bold: 2005</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Microsoft Corporation</string>
- <key>version</key>
- <string>Version 5.61</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>华文仿宋.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/华文仿宋.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>STFangsong</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 2002, Changzhou SinoType Technology Co., Ltd. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>STFangsong</string>
- <key>fullname</key>
- <string>STFangsong</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>STFangsong and SinoType are trademarks of Changzhou SinoType Technology Co., Ltd.</string>
- <key>unique</key>
- <string>STFangsong; 6.1d7e1; 2008-10-03</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>6.1d7e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>STIXSizOneSymReg.otf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/STIXSizOneSymReg.otf</string>
- <key>type</key>
- <string>opentype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>STIXSizeOneSym-Regular</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 2001-2010 by the STI Pub Companies, consisting of the American Chemical Society, the American Institute of Physics, the American Mathematical Society, the American Physical Society, Elsevier, Inc., and The Institute of Electrical and Electronic Engineers, Inc. Portions copyright (c) 1998-2003 by MicroPress, Inc. Portions copyright (c) 1990 by Elsevier, Inc. All rights reserved.</string>
- <key>description</key>
- <string>Arie de Ruiter, who in 1995 was Head of Information Technology Development at Elsevier Science, made a proposal to the STI Pub group, an informal group of publishers consisting of representatives from the American Chemical Society (ACS), American Institute of Physics (AIP), American Mathematical Society (AMS), American Physical Society (APS), Elsevier, and Institute of Electrical and Electronics Engineers (IEEE). De Ruiter encouraged the members to consider development of a series of Web fonts, which he proposed should be called the Scientific and Technical Information eXchange, or STIX, Fonts. All STI Pub member organizations enthusiastically endorsed this proposal, and the STI Pub group agreed to embark on what has become a twelve-year project. The goal of the project was to identify all alphabetic, symbolic, and other special characters used in any facet of scientific publishing and to create a set of Unicode-based fonts that would be distributed free to every scientist, student, and other interested party worldwide. The fonts would be consistent with the emerging Unicode standard, and would permit universal representation of every character. With the release of the STIX fonts, de Ruiter's vision has been realized.</string>
- <key>designer</key>
- <string>MicroPress Inc., with final additions and corrections provided by Coen Hoffman, Elsevier (retired)</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>STIXSizeOneSym</string>
- <key>fullname</key>
- <string>STIXSizeOneSym-Regular</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>STIX Fonts(TM) is a trademark of The Institute of Electrical and Electronics Engineers, Inc.</string>
- <key>unique</key>
- <string>FontMaster:STIXSizeOneSym-Regular:1.0.0</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.0.0</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Oriya Sangam MN.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Oriya Sangam MN.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>OriyaSangamMN</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 2010 by Muthu Nedumaran. All rights reserved.</string>
- <key>description</key>
- <string>Copyright (c) 2010 by Muthu Nedumaran. All rights reserved.</string>
- <key>designer</key>
- <string>Muthu Nedumaran</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Oriya Sangam MN</string>
- <key>fullname</key>
- <string>Oriya Sangam MN</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Oriya Sangam MN is a trademark of Muthu Nedumaran.</string>
- <key>unique</key>
- <string>Oriya Sangam MN; 7.0d4e1; 2010-11-05</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Muthu Nedumaran</string>
- <key>version</key>
- <string>7.0d4e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Herculanum.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Herculanum.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Herculanum</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 1981, 1982, Linotype Library GmbH.</string>
- <key>description</key>
- <string>Herculanum is a work</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Herculanum</string>
- <key>fullname</key>
- <string>Herculanum</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>"Herculanum" is a trademark of Heidelberger Druckmaschinen AG, which may be registered in certain jurisdictions, exclusivly licensed through Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG.</string>
- <key>unique</key>
- <string>Herculanum; 6.1d4e1; 2008-09-16</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>6.1d4e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Bordeaux Roman Bold LET Fonts</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Bordeaux Roman Bold LET Fonts</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>BordeauxRomanBoldLetPlain</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>COPYRIGHT ESSELTE LETRASET LTD., 1990</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Bordeaux Roman Bold LET</string>
- <key>fullname</key>
- <string>Bordeaux Roman Bold LET Plain:1.0</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Plain</string>
- <key>unique</key>
- <string>Bordeaux Roman Bold LET Plain</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>1.0</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ThonburiBold.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/System/Library/Fonts/ThonburiBold.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Thonburi-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright © 1992-2011 by Apple Inc. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Thonburi</string>
- <key>fullname</key>
- <string>Thonburi Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>unique</key>
- <string>Thonburi Bold; 10.8d3e3; 2011-03-17</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>10.8d3e3</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Tw Cen MT Bold.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Tw Cen MT Bold.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>TwCenMT-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Digitized data copyright The Monotype Corporation 1991-1997. All rights reserved. Twentieth Century™ is a trademark of The Monotype Corporation which may be registered in certain jurisdictions.</string>
- <key>description</key>
- <string>20th Century was designed and drawn by Sol Hess in the Lanston Monotype drawing office between 1936 and 1947. The first weights were added to the Monotype typeface library in 1959. This is a face based on geometric shapes which originated in Germany in the early 1920's and became an integral part of the Bauhaus movement of that time. Form and function became the key words, unnecessary decoration was scorned. This clean cut, sans serif with geometric shapes was most appropriate. The lighter weights can be used for text setting, the bold and condensed fonts are suitable for display in headlines and advertising.</string>
- <key>designer</key>
- <string>Sol Hess</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Tw Cen MT</string>
- <key>fullname</key>
- <string>Tw Cen MT Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>Twentieth Century™ is a trademark of The Monotype Corporation which may be registered in certain jurisdictions.</string>
- <key>unique</key>
- <string>Monotype - Tw Cen MT Bold</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Monotype Typography</string>
- <key>version</key>
- <string>Version 1.02</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>monbaiti.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/monbaiti.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>MongolianBaiti</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 2006 Founder Corporation, all rights reserved. Portions © 2006 Microsoft Corporation, all rights reserved.</string>
- <key>designer</key>
- <string>Founder, Beijing China</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Mongolian Baiti</string>
- <key>fullname</key>
- <string>Mongolian Baiti</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Mongolian Baiti is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries.</string>
- <key>unique</key>
- <string>Mongolian Baiti</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Microsoft Corporation</string>
- <key>version</key>
- <string>Version 5.01</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Franklin Gothic Medium Italic.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Franklin Gothic Medium Italic.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>FranklinGothic-MediumItalic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string> ITC Franklin Gothic is a trademark of The International Typeface Corporation which may be registered in certain jurisdictions. Portions copyright Microsoft Corporation. All rights reserved.</string>
- <key>description</key>
- <string>Designed in 1902 by Morris Fuller Benton for the American Type Founders company, Franklin Gothic still reigns as one of the most-widely used sans serif typefaces. Originally issued in only one weight, the ATF version of Franklin Gothic was eventually expanded to include five additional weights, but no light or intermediate weights were ever developed. In 1979, under license from ATF, ITC developed four new weights in roman and italic: book, medium, demi and heavy. Designed by Victor Caruso, ITC’s new weights matched the original face’s characteristics, but featured a slightly enlarged lowercase x-height. ITC Franklin Gothic also features a slightly condensed lowercase a-z alphabet. In 1991, ITC commissioned the Font Bureau in Boston to create condensed, compressed and extra compressed versions of ITC Franklin Gothic, which increased the flexibility and usefulness of the design.</string>
- <key>designer</key>
- <string>Victor Caruso</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Franklin Gothic Medium</string>
- <key>fullname</key>
- <string>Franklin Gothic Medium Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Italic</string>
- <key>trademark</key>
- <string>ITC Franklin Gothic is a trademark of The International Typeface Corporation which may be registered in certain jurisdictions.</string>
- <key>unique</key>
- <string>Monotype - Franklin Gothic Medium Italic</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>International Typeface Corporation</string>
- <key>version</key>
- <string>Version 2.20</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Calibri Italic.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Calibri Italic.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Calibri-Italic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 2008 Microsoft Corporation. All Rights Reserved.</string>
- <key>description</key>
- <string>Calibri is a modern sans serif family with subtle roundings on stems and corners. It features real italics, small caps, and multiple numeral sets. Its proportions allow high impact in tightly set lines of big and small text alike. Calibri's many curves and the new rasteriser team up in bigger sizes to reveal a warm and soft character.</string>
- <key>designer</key>
- <string>Luc(as) de Groot</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Calibri</string>
- <key>fullname</key>
- <string>Calibri Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Italic</string>
- <key>trademark</key>
- <string>Calibri is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries.</string>
- <key>unique</key>
- <string>Microsoft: Calibri Italic: 2005</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Microsoft Corporation</string>
- <key>version</key>
- <string>Version 5.62</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ヒラギノ丸ゴ ProN W4.otf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/ヒラギノ丸ゴ ProN W4.otf</string>
- <key>type</key>
- <string>opentype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>HiraMaruProN-W4</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>ver8.10, Copyright (c) 2000-2010 Dainippon Screen Mfg. Co., Ltd. All Rights Reserved.</string>
- <key>designer</key>
- <string>JIYUKOBO Ltd.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Hiragino Maru Gothic ProN</string>
- <key>fullname</key>
- <string>ヒラギノ丸ゴ ProN W4</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>W4</string>
- <key>trademark</key>
- <string>Hiragino is a trademark of Dainippon Screen Mfg. Co., Ltd.</string>
- <key>unique</key>
- <string>8.10;Dainippon Screen Mfg. Co., Ltd.;Hiragino Maru Gothic ProN W4</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Dainippon Screen Mfg. Co., Ltd.</string>
- <key>version</key>
- <string>Version 8.10</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>STIXIntUpSmReg.otf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/STIXIntUpSmReg.otf</string>
- <key>type</key>
- <string>opentype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>STIXIntegralsUpSm-Regular</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 2001-2010 by the STI Pub Companies, consisting of the American Chemical Society, the American Institute of Physics, the American Mathematical Society, the American Physical Society, Elsevier, Inc., and The Institute of Electrical and Electronic Engineers, Inc. Portions copyright (c) 1998-2003 by MicroPress, Inc. Portions copyright (c) 1990 by Elsevier, Inc. All rights reserved.</string>
- <key>description</key>
- <string>Arie de Ruiter, who in 1995 was Head of Information Technology Development at Elsevier Science, made a proposal to the STI Pub group, an informal group of publishers consisting of representatives from the American Chemical Society (ACS), American Institute of Physics (AIP), American Mathematical Society (AMS), American Physical Society (APS), Elsevier, and Institute of Electrical and Electronics Engineers (IEEE). De Ruiter encouraged the members to consider development of a series of Web fonts, which he proposed should be called the Scientific and Technical Information eXchange, or STIX, Fonts. All STI Pub member organizations enthusiastically endorsed this proposal, and the STI Pub group agreed to embark on what has become a twelve-year project. The goal of the project was to identify all alphabetic, symbolic, and other special characters used in any facet of scientific publishing and to create a set of Unicode-based fonts that would be distributed free to every scientist, student, and other interested party worldwide. The fonts would be consistent with the emerging Unicode standard, and would permit universal representation of every character. With the release of the STIX fonts, de Ruiter's vision has been realized.</string>
- <key>designer</key>
- <string>MicroPress Inc., with final additions and corrections provided by Coen Hoffman, Elsevier (retired)</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>STIXIntegralsUpSm</string>
- <key>fullname</key>
- <string>STIXIntegralsUpSm-Regular</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>STIX Fonts(TM) is a trademark of The Institute of Electrical and Electronics Engineers, Inc.</string>
- <key>unique</key>
- <string>FontMaster:STIXIntegralsUpSm-Regular:1.0.0</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.0.0</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>NanumScript.ttc</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/NanumScript.ttc</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>NanumBrush</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright © 2010 NHN Corporation. All rights reserved. Font designed by Sandoll Communications Inc.</string>
- <key>designer</key>
- <string>Kwak Doo-yul; Nicolas Noh;</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Nanum Brush Script</string>
- <key>fullname</key>
- <string>Nanum Brush Script</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>NanumBrush is a registered trademark of NHN Corporation.</string>
- <key>unique</key>
- <string>Nanum Brush Script; 7.1d2e1; 2011-06-14</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>NHN Corporation</string>
- <key>version</key>
- <string>7.1d2e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>NanumPen</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright © 2010 NHN Corporation. All rights reserved. Font designed by Sandoll Communications Inc.</string>
- <key>designer</key>
- <string>Doo-yul Kwak; Hyunghwan Choi; Nicolas Noh;</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Nanum Pen Script</string>
- <key>fullname</key>
- <string>Nanum Pen Script</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>NanumPen is a registered trademark of NHN Corporation.</string>
- <key>unique</key>
- <string>Nanum Pen Script; 7.1d2e1; 2011-06-14</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>NHN Corporation</string>
- <key>version</key>
- <string>7.1d2e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>GujaratiMT.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/GujaratiMT.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>GujaratiMT</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright © Monotype Typography Ltd 1996 . All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Gujarati MT</string>
- <key>fullname</key>
- <string>Gujarati MT</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Monotype Gujarati is a Trademark of Monotype Typography Ltd.</string>
- <key>unique</key>
- <string>Gujarati MT; 6.0d2e1; 2006-10-20</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>6.0d2e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ArialHBBold.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/ArialHBBold.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>ArialHebrew-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright © Data 1993 Monotype Typography ltd. / Type Solutions Inc. 1993 All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Arial Hebrew</string>
- <key>fullname</key>
- <string>Arial Hebrew Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>Arial ® is a Trademark of The Monotype Corporation registered in the US Pat &amp; TM Off. and elsewhere.</string>
- <key>unique</key>
- <string>Arial Hebrew Bold; 6.0d2e1; 2006-10-26</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>6.0d2e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>LastResort.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/System/Library/Fonts/LastResort.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>LastResort</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 1998-2008 Apple Inc. Block additions by Michael Everson</string>
- <key>description</key>
- <string>The LastResort font is used by the operating system to display Unicode data when no other font can be found. Glyphs correspond to Unicode blocks. The block name and hex range values can be viewed around the border of the glyph at large sizes.</string>
- <key>designer</key>
- <string>Original design by Apple Computer 1998; Block additions by Michael Everson 2001-2006</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>LastResort</string>
- <key>fullname</key>
- <string>LastResort</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>unique</key>
- <string>LastResort; 6.1d5e1 (Unicode version 5.1.0); 2009-03-24</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Apple Computer, Inc.</string>
- <key>version</key>
- <string>6.1d5e1 (Unicode version 5.1.0)</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Tahoma</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Tahoma</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Tahoma</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Typeface and data © 1995-1999 Microsoft Corporation. All Rights Reserved.</string>
- <key>description</key>
- <string>Tahoma is one of Microsoft's new sans serif typeface families. It consists of two Windows TrueType fonts (regular and bold), and was created to address the challenges of on-screen display, particularly at small sizes in dialog boxes and menus.
-
-Since the Tahomas are TrueType fonts, they can be rotated and scaled to any size, and anti-aliased by the rasterizer built into Microsoft Windows 95 and Microsoft Windows NT 4.0. These features give the fonts significant advantages over bitmap system fonts such as MS Sans Serif.
-
-The Latin, Greek and Cyrillic characters were designed by world renowned type designer Matthew Carter, and hand-instructed by leading hinting expert, Monotype's Tom Rickner. The Arabic, Hebrew and Thai characters were designed by the Monotype Drawing Office to complement Carter's initial designs. Tahoma sets new standards in system font design. It is ideal for use in User Interface Scenarios and other situations requiring the presentation of information on the screen.</string>
- <key>designer</key>
- <string>Matthew Carter</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Tahoma</string>
- <key>fullname</key>
- <string>Tahoma</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Tahoma is a trademark of Microsoft Corporation.</string>
- <key>unique</key>
- <string>Microsoft Tahoma Regular</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Microsoft Corp.</string>
- <key>version</key>
- <string>Version 1.50</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Tahoma-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Typeface and data © 1995-1999 Microsoft Corporation. All Rights Reserved.</string>
- <key>description</key>
- <string>Tahoma is one of Microsoft's new sans serif typeface families. It consists of two Windows TrueType fonts (regular and bold), and was created to address the challenges of on-screen display, particularly at small sizes in dialog boxes and menus.
-
-Since the Tahomas are TrueType fonts, they can be rotated and scaled to any size, and anti-aliased by the rasterizer built into Microsoft Windows 95 and Microsoft Windows NT 4.0. These features give the fonts significant advantages over bitmap system fonts such as MS Sans Serif.
-
-The Latin, Greek and Cyrillic characters were designed by world renowned type designer Matthew Carter, and hand-instructed by leading hinting expert, Monotype's Tom Rickner. The Arabic, Hebrew and Thai characters were designed by the Monotype Drawing Office to complement Carter's initial designs. Tahoma sets new standards in system font design. It is ideal for use in User Interface Scenarios and other situations requiring the presentation of information on the screen.</string>
- <key>designer</key>
- <string>Matthew Carter</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Tahoma</string>
- <key>fullname</key>
- <string>Tahoma Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>Tahoma is a trademark of Microsoft Corporation.</string>
- <key>unique</key>
- <string>Microsoft Tahoma Bold</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Microsoft Corp.</string>
- <key>version</key>
- <string>Version 1.50</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Meiryo Bold.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Meiryo Bold.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Meiryo-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 2010 Microsoft Corporation. All Rights Reserved.</string>
- <key>description</key>
- <string>Meiryo is a very versatile modern sans serif type designed to give an exceptionally clean appearance on screen, as well as in print. It is optimized for on-screen reading. The letterforms are generously open and well-proportioned; legible and clear at smaller sizes, and dynamic at larger display sizes. The beauty of this face is that it sets text lines in Japanese with Roman seamlessly and harmoniously. The balanced inter-letter spacing enhances horizontal alignment, facilitating smooth reading flow. Meiryo has a very large character set with Japanese and Roman combined, fully scalable outline technology, making it extremely functional for all aspects of communication and publishing. It is a robust legible typeface yet compact enough to enable tight inter-line spacing which is good for space economy.</string>
- <key>designer</key>
- <string>C&amp;G Inc.; Eiichi Kono; Matthew Carter</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Meiryo</string>
- <key>fullname</key>
- <string>Meiryo Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>Meiryo is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries.</string>
- <key>unique</key>
- <string>Microsoft: Meiryo Bold: 2005</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Microsoft Corporation</string>
- <key>version</key>
- <string>Version 6.03</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Corbel.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Corbel.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Corbel</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 2008 Microsoft Corporation. All Rights Reserved.</string>
- <key>description</key>
- <string>Corbel is designed to give an uncluttered and clean appearance on screen. The letter forms are open with soft, flowing curves. It is legible, clear and functional at small sizes. At larger sizes the detailing and style of the shapes is more apparent resulting in a modern sans serif type with a wide range of possible uses.</string>
- <key>designer</key>
- <string>Jeremy Tankard</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Corbel</string>
- <key>fullname</key>
- <string>Corbel</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Corbel is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries.</string>
- <key>unique</key>
- <string>Microsoft: Corbel: 2005</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Microsoft Corporation</string>
- <key>version</key>
- <string>Version 5.61</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Bernard MT Condensed</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Bernard MT Condensed</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>BernardMT-Condensed</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Design and data by The Monotype Corporation. © 1993. Microsoft Corporation. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Bernard MT Condensed</string>
- <key>fullname</key>
- <string>Bernard MT Condensed</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Bernard™ is a trademark of The Monotype Corporation.</string>
- <key>unique</key>
- <string>Bernard MT Condensed</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.51</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>STIXIntDBol.otf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/STIXIntDBol.otf</string>
- <key>type</key>
- <string>opentype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>STIXIntegralsD-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 2001-2010 by the STI Pub Companies, consisting of the American Chemical Society, the American Institute of Physics, the American Mathematical Society, the American Physical Society, Elsevier, Inc., and The Institute of Electrical and Electronic Engineers, Inc. Portions copyright (c) 1998-2003 by MicroPress, Inc. Portions copyright (c) 1990 by Elsevier, Inc. All rights reserved.</string>
- <key>description</key>
- <string>Arie de Ruiter, who in 1995 was Head of Information Technology Development at Elsevier Science, made a proposal to the STI Pub group, an informal group of publishers consisting of representatives from the American Chemical Society (ACS), American Institute of Physics (AIP), American Mathematical Society (AMS), American Physical Society (APS), Elsevier, and Institute of Electrical and Electronics Engineers (IEEE). De Ruiter encouraged the members to consider development of a series of Web fonts, which he proposed should be called the Scientific and Technical Information eXchange, or STIX, Fonts. All STI Pub member organizations enthusiastically endorsed this proposal, and the STI Pub group agreed to embark on what has become a twelve-year project. The goal of the project was to identify all alphabetic, symbolic, and other special characters used in any facet of scientific publishing and to create a set of Unicode-based fonts that would be distributed free to every scientist, student, and other interested party worldwide. The fonts would be consistent with the emerging Unicode standard, and would permit universal representation of every character. With the release of the STIX fonts, de Ruiter's vision has been realized.</string>
- <key>designer</key>
- <string>MicroPress Inc., with final additions and corrections provided by Coen Hoffman, Elsevier (retired)</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>STIXIntegralsD</string>
- <key>fullname</key>
- <string>STIXIntegralsD-Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>STIX Fonts(TM) is a trademark of The Institute of Electrical and Electronics Engineers, Inc.</string>
- <key>unique</key>
- <string>FontMaster:STIXIntegralsD-Bold:1.0.0</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.0.0</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MshtakanBold.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/MshtakanBold.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>MshtakanBold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Mshtakan-Bold 1.1 © 2002-2003 Michael Everson. All Rights Reserved.</string>
- <key>designer</key>
- <string>Michael Everson</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Mshtakan</string>
- <key>fullname</key>
- <string>Mshtakan Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>Mshtakan Bold is a trademark of Michael Everson.</string>
- <key>unique</key>
- <string>Mshtakan Bold; 6.0d2e1; 2006-10-20</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Michael Everson</string>
- <key>version</key>
- <string>6.0d2e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>EuphemiaCAS.ttc</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/EuphemiaCAS.ttc</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>EuphemiaUCAS</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) Tiro Typeworks, 2004. All rights reserved.</string>
- <key>designer</key>
- <string>Wm. Ross Mills</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Euphemia UCAS</string>
- <key>fullname</key>
- <string>Euphemia UCAS</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Euphemia is a trademark of Tiro Typeworks.</string>
- <key>unique</key>
- <string>Euphemia UCAS; 6.1d4e1; 2010-11-11</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Tiro Typeworks</string>
- <key>version</key>
- <string>6.1d4e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>EuphemiaUCAS-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) Tiro Typeworks, 2004. All rights reserved.</string>
- <key>designer</key>
- <string>Wm. Ross Mills</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Euphemia UCAS</string>
- <key>fullname</key>
- <string>Euphemia UCAS Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>Euphemia is a trademark of Tiro Typeworks.</string>
- <key>unique</key>
- <string>Euphemia UCAS Bold; 6.1d4e1; 2010-11-11</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Tiro Typeworks</string>
- <key>version</key>
- <string>6.1d4e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>EuphemiaUCAS-Italic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (C) 2004, Tiro Typeworks. All rights reserved.</string>
- <key>designer</key>
- <string>Wm. Ross Mills</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Euphemia UCAS</string>
- <key>fullname</key>
- <string>Euphemia UCAS Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Italic</string>
- <key>unique</key>
- <string>Euphemia UCAS Italic; 6.1d4e1; 2010-11-11</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Tiro Typeworks</string>
- <key>version</key>
- <string>6.1d4e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Geeza Pro.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/System/Library/Fonts/Geeza Pro.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>GeezaPro</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Diwan Software Ltd. 1992-2009 all rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Geeza Pro</string>
- <key>fullname</key>
- <string>Geeza Pro</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>unique</key>
- <string>Geeza Pro; 7.0d4e1; 2010-12-14</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d4e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Playbill</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Playbill</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Playbill</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Typeface © 1992 Stphenson Blake (Holdings) Ltd. Data © 1992 URW. Portions © 1992 Microsoft Corp. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Playbill</string>
- <key>fullname</key>
- <string>Playbill</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Playbill ® Trademark of Stephenson Blake (Holdings) Ltd.</string>
- <key>unique</key>
- <string>Playbill</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.51</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Lucida Console.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Lucida Console.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>LucidaConsole</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright © 1993 Bigelow &amp; Holmes Inc. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Lucida Console</string>
- <key>fullname</key>
- <string>Lucida Console</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Lucida is a registered trademark of Bigelow &amp; Holmes Inc.</string>
- <key>unique</key>
- <string>Lucida Console Regular; B&amp;H alpha25</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 5.00</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Constantia Bold.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Constantia Bold.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Constantia-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 2009 Microsoft Corporation. All Rights Reserved.</string>
- <key>description</key>
- <string>Constantia is a modulated wedge-serif typeface designed primarily for continuous text in both electronic and paper publishing. The design responds to the recent narrowing of the gap between screen readability and traditional print media, exploiting specific aspects of the most recent advances in ClearType rendering, such as sub-pixel positioning. The classic proportions of relatively small x-height and long extenders make Constantia ideal for book and journal publishing, while the slight squareness and open counters ensure that it remains legible even at small sizes.</string>
- <key>designer</key>
- <string>John Hudson</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Constantia</string>
- <key>fullname</key>
- <string>Constantia Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>Constantia is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries.</string>
- <key>unique</key>
- <string>Microsoft: Constantia Bold: 2005</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Microsoft Corporation</string>
- <key>version</key>
- <string>Version 5.90</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Arial Bold.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Arial Bold.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Arial-BoldMT</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 2008 The Monotype Corporation. All Rights Reserved.</string>
- <key>designer</key>
- <string>Monotype Type Drawing Office - Robin Nicholas, Patricia Saunders 1982</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Arial</string>
- <key>fullname</key>
- <string>Arial Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>Arial is a trademark of The Monotype Corporation in the United States and/or other countries.</string>
- <key>unique</key>
- <string>Monotype:Arial Bold:Version 5.06 (Microsoft)</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>The Monotype Corporation</string>
- <key>version</key>
- <string>Version 5.06</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Silom.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Silom.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Silom</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright © 1992-2011 by Apple Inc. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Silom</string>
- <key>fullname</key>
- <string>Silom</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>unique</key>
- <string>Silom; 10.8d1e1; 2011-10-20</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>10.8d1e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Khmer Sangam MN.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Khmer Sangam MN.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>KhmerSangamMN</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 2010 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved.</string>
- <key>description</key>
- <string>Copyright (c) 2010 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved.</string>
- <key>designer</key>
- <string>Muthu Nedumaran</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Khmer Sangam MN</string>
- <key>fullname</key>
- <string>Khmer Sangam MN</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Khmer Sangam MN is a trademark of Murasu Systems Sdn. Bhd. Malaysia.</string>
- <key>unique</key>
- <string>Khmer Sangam MN; 7.0d2e1; 2010-11-05</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Murasu Systems Sdn. Bhd. Malaysia</string>
- <key>version</key>
- <string>7.0d2e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Courier New Italic.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Courier New Italic.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>CourierNewPS-ItalicMT</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 2008 The Monotype Corporation. All Rights Reserved.</string>
- <key>designer</key>
- <string>Howard Kettler</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Courier New</string>
- <key>fullname</key>
- <string>Courier New Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Italic</string>
- <key>trademark</key>
- <string>Courier New is a trademark of The Monotype Corporation in the United States and/or other countries.</string>
- <key>unique</key>
- <string>Monotype:Courier New Italic:version 5.00 (Microsoft)</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>The Monotype Corporation</string>
- <key>version</key>
- <string>Version 5.00.1x</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Andale Mono.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Andale Mono.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>AndaleMono</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Digitized data copyright (C) 1993-1997 The Monotype Corporation. All rights reserved.</string>
- <key>description</key>
- <string>Andale Monospaced is a highly legible monospaced font.</string>
- <key>designer</key>
- <string>Steven R. Matteson</string>
- <key>duplicate</key>
- <string>yes</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Andale Mono</string>
- <key>fullname</key>
- <string>Andale Mono</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Andale™ is a trademark of The Monotype Corporation which may be registered in certain jurisdictions.</string>
- <key>unique</key>
- <string>Andale Mono Regular</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Monotype Typography</string>
- <key>version</key>
- <string>Version 2.00x</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Braille Pinpoint 6 Dot.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/System/Library/Fonts/Apple Braille Pinpoint 6 Dot.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>AppleBraille-Pinpoint6Dot</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© Copyright 2007 by Apple, Inc.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Apple Braille</string>
- <key>fullname</key>
- <string>Apple Braille Pinpoint 6 Dot</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Pinpoint 6 Dot</string>
- <key>unique</key>
- <string>Apple Braille Pinpoint 6 Dot; 1.0d5e1; 2008-12-15</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>1.0d5e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Palatino Linotype Bold Italic.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Palatino Linotype Bold Italic.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>PalatinoLinotype-BoldItalic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright 1981-1983, 1989,1993, 1998 Heidelberger Druckmaschinen AG. All rights reserved. The digitally encoded machine readable outline data for producing the Typefaces licensed are the property of Heidelberger Druckmaschinen AG and/or its subsidiaries, represented by Linotype Library GmbH, Dupont Strasse 1, 61352 Bad Homburg Germany. Portions © 1996-1998 Microsoft Corporation. All Rights Reserved. </string>
- <key>description</key>
- <string>Palatino Linotype is the definitive new version of Hermann Zapf’s Palatino, which since its design in 1950 has become one of the world's most widely used typefaces. For this new digital version, Professor Zapf has drawn numerous additional characters to include an extensive range of ligatures, numerals, fractions and support for Cyrillic and both monotonic and polytonic Greek. Special care has been taken to enhance the quality of the letterforms when displayed on the computer screen, ensuring that Palatino Linotype is highly legible whether displayed on the screen or in print. This typeface is ideal for use in extended text settings such as books, periodicals and catalogs.</string>
- <key>designer</key>
- <string>Hermann Zapf</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Palatino Linotype</string>
- <key>fullname</key>
- <string>Palatino Linotype Bold Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold Italic</string>
- <key>trademark</key>
- <string>Palatino® is a registered trademark of Heidelberger Druckmaschinen AG and its subsidiaries.</string>
- <key>unique</key>
- <string>Palatino Linotype Bold Italic April 1998</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>LINOTYPE-HELL AG</string>
- <key>version</key>
- <string>Version 5.00</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Haettenschweiler</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Haettenschweiler</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Haettenschweiler</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Data by Eraman Ltd., and Monotype Typography Inc. © 1995. Microsoft Corporation. All rights reserved.</string>
- <key>description</key>
- <string>Haettenschweiler derives from a more condensed typeface, called Schmalfette Grotesk, first shown in the early 1960s in a splendid book called Lettera by Walter Haettenschweiler and Armin Haab. Schmalfette Grotesk was a very condensed, very bold alphabet of all capitals – schmalfette means "bold condensed" in German, and grotesk indicates it is without serifs.
-It was immediately picked up by designers at Paris Match who cut up pictures of it to make headlines. Soon everybody wanted it. In due course, extra-bold extra-condensed faces for families like Helvetica began to appear, looking remarkably like the original Schmalfette.
-Photoscript had made a lowercase version quite early on. Later, they made a less condensed version and called it Haettenschweiler Extended as a tribute to a designer whose idea so greatly affected the graphic scene in the second half of the century. Use this distinguished face in large sizes for headlines.
-</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Haettenschweiler</string>
- <key>fullname</key>
- <string>Haettenschweiler</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>unique</key>
- <string>Haettenschweiler</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 0.80</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Century Gothic</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Century Gothic</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>CenturyGothic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Typeface © The Monotype Corporation plc. Data © The Monotype Corporation plc / Type Solutions Inc. 1990-91 All Rights Reserved</string>
- <key>description</key>
- <string>A design based on Monotype 20th Century, which was drawn by Sol Hess between 1936 and 1947. Century Gothic maintains the basic design of 20th Century but has an enlarged 'x' height and has been modified to ensure satisfactory output from modern digital systems. The design is influenced by the geometric style sans serif faces which were popular during the 1920's and 30's. Useful for headlines and general display work and for small quantities of text, particularly in advertising.</string>
- <key>designer</key>
- <string>Monotype Type Drawing Office</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Century Gothic</string>
- <key>fullname</key>
- <string>Century Gothic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Century Gothic is a trademark of The Monotype Corporation plc.</string>
- <key>unique</key>
- <string>Century Gothic Regular : 1991</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Monotype Typography, Inc.</string>
- <key>version</key>
- <string>Version 2.35</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>CenturyGothic-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Typeface © The Monotype Corporation plc. Data © The Monotype Corporation plc / Type Solutions Inc. 1990-91 All Rights Reserved</string>
- <key>description</key>
- <string>A design based on Monotype 20th Century, which was drawn by Sol Hess between 1936 and 1947. Century Gothic maintains the basic design of 20th Century but has an enlarged 'x' height and has been modified to ensure satisfactory output from modern digital systems. The design is influenced by the geometric style sans serif faces which were popular during the 1920's and 30's. Useful for headlines and general display work and for small quantities of text, particularly in advertising.</string>
- <key>designer</key>
- <string>Monotype Type Drawing Office</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Century Gothic</string>
- <key>fullname</key>
- <string>Century Gothic Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>Century Gothic is a trademark of The Monotype Corporation plc.</string>
- <key>unique</key>
- <string>Century Gothic Bold : 1991</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Monotype Typography, Inc.</string>
- <key>version</key>
- <string>Version 2.35</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>CenturyGothic-Italic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Typeface © The Monotype Corporation plc. Data © The Monotype Corporation plc / Type Solutions Inc. 1990-91 All Rights Reserved</string>
- <key>description</key>
- <string>A design based on Monotype 20th Century, which was drawn by Sol Hess between 1936 and 1947. Century Gothic maintains the basic design of 20th Century but has an enlarged 'x' height and has been modified to ensure satisfactory output from modern digital systems. The design is influenced by the geometric style sans serif faces which were popular during the 1920's and 30's. Useful for headlines and general display work and for small quantities of text, particularly in advertising.</string>
- <key>designer</key>
- <string>Monotype Type Drawing Office</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Century Gothic</string>
- <key>fullname</key>
- <string>Century Gothic Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Italic</string>
- <key>trademark</key>
- <string>Century Gothic is a trademark of The Monotype Corporation plc.</string>
- <key>unique</key>
- <string>Century Gothic Italic : 1991</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Monotype Typography, Inc.</string>
- <key>version</key>
- <string>Version 2.35</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>CenturyGothic-BoldItalic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Typeface © The Monotype Corporation plc. Data © The Monotype Corporation plc / Type Solutions Inc. 1990-91 All Rights Reserved</string>
- <key>description</key>
- <string>A design based on Monotype 20th Century, which was drawn by Sol Hess between 1936 and 1947. Century Gothic maintains the basic design of 20th Century but has an enlarged 'x' height and has been modified to ensure satisfactory output from modern digital systems. The design is influenced by the geometric style sans serif faces which were popular during the 1920's and 30's. Useful for headlines and general display work and for small quantities of text, particularly in advertising.</string>
- <key>designer</key>
- <string>Monotype Type Drawing Office</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Century Gothic</string>
- <key>fullname</key>
- <string>Century Gothic Bold Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold Italic</string>
- <key>trademark</key>
- <string>Century Gothic is a trademark of The Monotype Corporation plc.</string>
- <key>unique</key>
- <string>Century Gothic Bold Italic : 1991</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Monotype Typography, Inc.</string>
- <key>version</key>
- <string>Version 2.35</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>华文黑体.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/华文黑体.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>STHeiti</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 2002, Changzhou SinoType Technology Co., Ltd. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>STHeiti</string>
- <key>fullname</key>
- <string>STHeiti</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>STHeiti and SinoType are trademarks of Changzhou SinoType Technology Co., Ltd.</string>
- <key>unique</key>
- <string>STHeiti; 6.1d2e1; 2008-11-18</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>6.1d2e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>STIXSizTwoSymReg.otf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/STIXSizTwoSymReg.otf</string>
- <key>type</key>
- <string>opentype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>STIXSizeTwoSym-Regular</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 2001-2010 by the STI Pub Companies, consisting of the American Chemical Society, the American Institute of Physics, the American Mathematical Society, the American Physical Society, Elsevier, Inc., and The Institute of Electrical and Electronic Engineers, Inc. Portions copyright (c) 1998-2003 by MicroPress, Inc. Portions copyright (c) 1990 by Elsevier, Inc. All rights reserved.</string>
- <key>description</key>
- <string>Arie de Ruiter, who in 1995 was Head of Information Technology Development at Elsevier Science, made a proposal to the STI Pub group, an informal group of publishers consisting of representatives from the American Chemical Society (ACS), American Institute of Physics (AIP), American Mathematical Society (AMS), American Physical Society (APS), Elsevier, and Institute of Electrical and Electronics Engineers (IEEE). De Ruiter encouraged the members to consider development of a series of Web fonts, which he proposed should be called the Scientific and Technical Information eXchange, or STIX, Fonts. All STI Pub member organizations enthusiastically endorsed this proposal, and the STI Pub group agreed to embark on what has become a twelve-year project. The goal of the project was to identify all alphabetic, symbolic, and other special characters used in any facet of scientific publishing and to create a set of Unicode-based fonts that would be distributed free to every scientist, student, and other interested party worldwide. The fonts would be consistent with the emerging Unicode standard, and would permit universal representation of every character. With the release of the STIX fonts, de Ruiter's vision has been realized.</string>
- <key>designer</key>
- <string>MicroPress Inc., with final additions and corrections provided by Coen Hoffman, Elsevier (retired)</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>STIXSizeTwoSym</string>
- <key>fullname</key>
- <string>STIXSizeTwoSym-Regular</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>STIX Fonts(TM) is a trademark of The Institute of Electrical and Electronics Engineers, Inc.</string>
- <key>unique</key>
- <string>FontMaster:STIXSizeTwoSym-Regular:1.0.0</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.0.0</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Palatino.ttc</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Palatino.ttc</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Palatino-Roman</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright © 1991-99, 2006 Apple Computer, Inc. Copyright © 1991-92 Type Solutions, Inc. All rights reserved.</string>
- <key>duplicate</key>
- <string>yes</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Palatino</string>
- <key>fullname</key>
- <string>Palatino</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Palatino is a registered trademark of Linotype AG</string>
- <key>unique</key>
- <string>Palatino; 7.0d4e6; 2011-04-27</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d4e6</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Palatino-Italic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright © 1991-99, 2006 Apple Computer, Inc. Copyright © 1991-92 Type Solutions, Inc. All rights reserved.</string>
- <key>duplicate</key>
- <string>yes</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Palatino</string>
- <key>fullname</key>
- <string>Palatino Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Italic</string>
- <key>trademark</key>
- <string>Palatino is a registered trademark of Linotype AG</string>
- <key>unique</key>
- <string>Palatino Italic; 7.0d4e6; 2011-04-27</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d4e6</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Palatino-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright © 1991-99, 2006 Apple Computer, Inc. Copyright © 1991-92 Type Solutions, Inc. All rights reserved.</string>
- <key>duplicate</key>
- <string>yes</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Palatino</string>
- <key>fullname</key>
- <string>Palatino Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>Palatino is a registered trademark of Linotype AG</string>
- <key>unique</key>
- <string>Palatino Bold; 7.0d4e6; 2011-04-27</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d4e6</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Palatino-BoldItalic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright © 1991-99, 2006 Apple Computer, Inc. Copyright © 1991-92 Type Solutions, Inc. All rights reserved.</string>
- <key>duplicate</key>
- <string>yes</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Palatino</string>
- <key>fullname</key>
- <string>Palatino Bold Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold Italic</string>
- <key>trademark</key>
- <string>Palatino is a registered trademark of Linotype AG</string>
- <key>unique</key>
- <string>Palatino Bold Italic; 7.0d4e6; 2011-04-27</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d4e6</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Hoefler Text.ttc</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Hoefler Text.ttc</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>HoeflerText-Regular</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 1992-2007 Apple Inc.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Hoefler Text</string>
- <key>fullname</key>
- <string>Hoefler Text</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Hoefler Text is a trademark of Apple Inc.</string>
- <key>unique</key>
- <string>Hoefler Text; 7.0d1e2; 2011-04-27</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d1e2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>HoeflerText-Black</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 1992-2007 Apple Inc.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Hoefler Text</string>
- <key>fullname</key>
- <string>Hoefler Text Black</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Black</string>
- <key>trademark</key>
- <string>Hoefler Text is a trademark of Apple Inc.</string>
- <key>unique</key>
- <string>Hoefler Text Black; 7.0d1e2; 2011-04-27</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d1e2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>HoeflerText-Italic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 1992-2007 Apple Inc.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Hoefler Text</string>
- <key>fullname</key>
- <string>Hoefler Text Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Italic</string>
- <key>trademark</key>
- <string>Hoefler Text is a trademark of Apple Inc.</string>
- <key>unique</key>
- <string>Hoefler Text Italic; 7.0d1e2; 2011-04-27</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Apple Inc.</string>
- <key>version</key>
- <string>7.0d1e2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>HoeflerText-BlackItalic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 1992-2007 Apple Inc.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Hoefler Text</string>
- <key>fullname</key>
- <string>Hoefler Text Black Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Black Italic</string>
- <key>trademark</key>
- <string>Hoefler Text is a trademark of Apple Inc.</string>
- <key>unique</key>
- <string>Hoefler Text Black Italic; 7.0d1e2; 2011-04-27</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d1e2</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>CharcoalCY.dfont</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/CharcoalCY.dfont</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>CharcoalCY</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 1997 DoubleAlex Design Studio. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Charcoal CY</string>
- <key>fullname</key>
- <string>Charcoal CY</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>unique</key>
- <string>Charcoal CY; 6.1d5e1; 2009-06-29</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>6.1d5e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ZapfDingbats.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/System/Library/Fonts/ZapfDingbats.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>ZapfDingbatsITC</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>(c) Copyright 1999-2000 as an unpublished work by Galapagos Design Group, Inc. All rights reserved</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Zapf Dingbats</string>
- <key>fullname</key>
- <string>Zapf Dingbats</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>unique</key>
- <string>Zapf Dingbats; 6.1d3e1; 2010-09-08</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>6.1d3e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Verdana Bold.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Verdana Bold.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Verdana-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 2008 Microsoft Corporation. All Rights Reserved.</string>
- <key>designer</key>
- <string>Matthew Carter</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Verdana</string>
- <key>fullname</key>
- <string>Verdana Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>Verdana is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries.</string>
- <key>unique</key>
- <string>Microsoft:Verdana Bold:Version 5.02 (Microsoft)</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 5.02</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MS Mincho.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/MS Mincho.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>MS-Mincho</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>(C)2006 data:RICOH Co.,Ltd. typeface:RYOBI IMAGIX CO.</string>
- <key>description</key>
- <string>The default glyph shapes of this font are based on JIS2004. This font also provides access to a set of JIS90 legacy glyphs via 'jp90' OpenType layout table.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>MS Mincho</string>
- <key>fullname</key>
- <string>MS Mincho</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>MS Mincho is a registered trademark of the Microsoft Corporation.</string>
- <key>unique</key>
- <string>Microsoft:MS Mincho:2006</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 5.02</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Georgia</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Georgia</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Georgia</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Typeface and data copyright 1996 Microsoft Corporation. All Rights Reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Georgia</string>
- <key>fullname</key>
- <string>Georgia</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Georgia is a trademark of Microsoft Corporation.</string>
- <key>unique</key>
- <string>Microsoft Georgia Regular</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 2.05</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Georgia-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Typeface and data copyright 1996 Microsoft Corporation. All Rights Reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Georgia</string>
- <key>fullname</key>
- <string>Georgia Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>Georgia is a trademark of Microsoft Corporation.</string>
- <key>unique</key>
- <string>Microsoft Georgia Bold</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 2.05</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Georgia-Italic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Typeface and data copyright 1996 Microsoft Corporation. All Rights Reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Georgia</string>
- <key>fullname</key>
- <string>Georgia Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Italic</string>
- <key>trademark</key>
- <string>Georgia is a trademark of Microsoft Corporation.</string>
- <key>unique</key>
- <string>Microsoft Georgia Italic</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 2.05</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Georgia-BoldItalic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Typeface and data copyright 1996 Microsoft Corporation. All Rights Reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Georgia</string>
- <key>fullname</key>
- <string>Georgia Bold Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold Italic</string>
- <key>trademark</key>
- <string>Georgia is a trademark of Microsoft Corporation.</string>
- <key>unique</key>
- <string>Microsoft Georgia Bold Italic</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 2.05</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Cambria Bold.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Cambria Bold.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Cambria-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 2009 Microsoft Corporation. All Rights Reserved.</string>
- <key>description</key>
- <string>Cambria has been designed for on-screen reading and to look good when printed at small sizes. It has very even spacing and proportions. Diagonal and vertical hairlines and serifs are relatively strong, while horizontal serifs are small and intend to emphasize stroke endings rather than stand out themselves. This principle is most noticeable in the italics where the lowercase characters are subdued in style to be at their best as elements of word-images. When Cambria is used for captions at sizes over 20 point, the inter-character spacing should be slightly reduced for best results. The design isn't just intended for business documents: The regular weight has been extended with a large set of math and science symbols. The Greek and Cyrillic has been designed under close supervision of an international team of experts, who aimed to set a historical new standard in multi-script type design.</string>
- <key>designer</key>
- <string>Monotype Imaging and Tiro Typeworks</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Cambria</string>
- <key>fullname</key>
- <string>Cambria Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>Cambria is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries.</string>
- <key>unique</key>
- <string>Microsoft: Cambria Bold: 2006</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Microsoft Corporation</string>
- <key>version</key>
- <string>Version 5.96</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ヒラギノ角ゴ Pro W6.otf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/ヒラギノ角ゴ Pro W6.otf</string>
- <key>type</key>
- <string>opentype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>HiraKakuPro-W6</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>ver7.11, Copyright (c) 1993-2002 Dainippon Screen Mfg. Co., Ltd. All Rights Reserved.</string>
- <key>designer</key>
- <string>JIYUKOBO Ltd.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Hiragino Kaku Gothic Pro</string>
- <key>fullname</key>
- <string>ヒラギノ角ゴ Pro W6</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>W6</string>
- <key>trademark</key>
- <string>Hiragino is a trademark of Dainippon Screen Mfg. Co., Ltd. registered in Japan.</string>
- <key>unique</key>
- <string>Dainippon Screen Mfg. Co., Ltd. Hiragino Kaku Gothic Pro W6</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Dainippon Screen Mfg. Co., Ltd.</string>
- <key>version</key>
- <string>7.11</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>STIXNonUniIta.otf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/STIXNonUniIta.otf</string>
- <key>type</key>
- <string>opentype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>STIXNonUnicode-Italic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 2001-2010 by the STI Pub Companies, consisting of the American Chemical Society, the American Institute of Physics, the American Mathematical Society, the American Physical Society, Elsevier, Inc., and The Institute of Electrical and Electronic Engineers, Inc. Portions copyright (c) 1998-2003 by MicroPress, Inc. Portions copyright (c) 1990 by Elsevier, Inc. All rights reserved.</string>
- <key>description</key>
- <string>Arie de Ruiter, who in 1995 was Head of Information Technology Development at Elsevier Science, made a proposal to the STI Pub group, an informal group of publishers consisting of representatives from the American Chemical Society (ACS), American Institute of Physics (AIP), American Mathematical Society (AMS), American Physical Society (APS), Elsevier, and Institute of Electrical and Electronics Engineers (IEEE). De Ruiter encouraged the members to consider development of a series of Web fonts, which he proposed should be called the Scientific and Technical Information eXchange, or STIX, Fonts. All STI Pub member organizations enthusiastically endorsed this proposal, and the STI Pub group agreed to embark on what has become a twelve-year project. The goal of the project was to identify all alphabetic, symbolic, and other special characters used in any facet of scientific publishing and to create a set of Unicode-based fonts that would be distributed free to every scientist, student, and other interested party worldwide. The fonts would be consistent with the emerging Unicode standard, and would permit universal representation of every character. With the release of the STIX fonts, de Ruiter's vision has been realized.</string>
- <key>designer</key>
- <string>MicroPress Inc., with final additions and corrections provided by Coen Hoffman, Elsevier (retired)</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>STIXNonUnicode</string>
- <key>fullname</key>
- <string>STIXNonUnicode-Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Italic</string>
- <key>trademark</key>
- <string>STIX Fonts(TM) is a trademark of The Institute of Electrical and Electronics Engineers, Inc.</string>
- <key>unique</key>
- <string>FontMaster:STIXNonUnicode-Italic:1.0.0</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.0.0</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>NewPeninimMTInclined.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/NewPeninimMTInclined.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>NewPeninimMT-Inclined</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Typeface © Monotype Typography ltd. Data © Monotype Typography ltd, Type Solutions Inc 1990-1993. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>New Peninim MT</string>
- <key>fullname</key>
- <string>New Peninim MT Inclined</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Inclined</string>
- <key>trademark</key>
- <string>Peninim ® is a Trademark of The Monotype Corporation registered in certain countries.</string>
- <key>unique</key>
- <string>New Peninim MT Inclined; 6.0d2e1; 2006-10-23</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>6.0d2e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Gurmukhi.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Gurmukhi.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>MonotypeGurmukhi</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright © Monotype Typography Ltd. 1996. All Rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Gurmukhi MT</string>
- <key>fullname</key>
- <string>Gurmukhi MT</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Monotype Gurmukhi is a Trademark of Monotype Typography Ltd.</string>
- <key>unique</key>
- <string>Gurmukhi MT; 6.0d2e1; 2006-10-20</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>6.0d2e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Bangla Sangam MN.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Bangla Sangam MN.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>BanglaSangamMN</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 2003 by Muthu Nedumaran. All rights reserved.</string>
- <key>description</key>
- <string>Copyright (c) 2003 by Muthu Nedumaran. All rights reserved.</string>
- <key>designer</key>
- <string>Muthu Nedumaran</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Bangla Sangam MN</string>
- <key>fullname</key>
- <string>Bangla Sangam MN</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Bangla Sangam MN is a trademark of Muthu Nedumaran.</string>
- <key>unique</key>
- <string>Bangla Sangam MN; 7.0d4e1; 2010-11-04</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Muthu Nedumaran</string>
- <key>version</key>
- <string>7.0d4e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Monaco.dfont</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/System/Library/Fonts/Monaco.dfont</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Monaco</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 1990-2008 Apple Inc. © 1990-97 Type Solutions Inc. © 1990-97 The Font Bureau Inc. TrueType outline design of Monaco typeface created by Kris Holmes and Charles Bigelow.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Monaco</string>
- <key>fullname</key>
- <string>Monaco</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>unique</key>
- <string>Monaco; 7.0d1e1; 2011-03-24</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d1e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Times New Roman Bold.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Times New Roman Bold.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>TimesNewRomanPS-BoldMT</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 2008 The Monotype Corporation. All Rights Reserved.</string>
- <key>designer</key>
- <string>Monotype Type Drawing Office - Stanley Morison, Victor Lardent 1932</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Times New Roman</string>
- <key>fullname</key>
- <string>Times New Roman Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>Times New Roman is a trademark of The Monotype Corporation in the United States and/or other countries.</string>
- <key>unique</key>
- <string>Monotype:Times New Roman Bold:Version 5.05 (Microsoft)</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>The Monotype Corporation</string>
- <key>version</key>
- <string>Version 5.05</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MingLiU.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/MingLiU.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>MingLiU</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>(c) Copyright DynaComware Corp. 2008</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>MingLiU</string>
- <key>fullname</key>
- <string>MingLiU</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Trademark by DynaComware Corp.</string>
- <key>unique</key>
- <string>MingLiU</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 7.00</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Engravers MT</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Engravers MT</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>EngraversMT</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Design and data by The Monotype Corporation. © 1993-1999. Microsoft Corporation. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Engravers MT</string>
- <key>fullname</key>
- <string>Engravers MT</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Engravers™ is a trademark of The Monotype Corporation.</string>
- <key>unique</key>
- <string>Engravers MT - 1992</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Monotype Typography</string>
- <key>version</key>
- <string>Version 1.60</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>EngraversMT-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Design and data by The Monotype Corporation. © 1993-1999. Microsoft Corporation. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Engravers MT</string>
- <key>fullname</key>
- <string>Engravers MT Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>Engravers™ is a trademark of The Monotype Corporation.</string>
- <key>unique</key>
- <string>Monotype - Engravers MT Bold</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Monotype Typography</string>
- <key>version</key>
- <string>Version 1.60</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Braggadocio</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Braggadocio</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Braggadocio</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 1992 Monotype Corporation plc. All rights reserved. Portions © 1992 Microsoft Corp.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Braggadocio</string>
- <key>fullname</key>
- <string>Braggadocio</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Braggadocio is a Trademark of The Monotype Corporation plc.</string>
- <key>unique</key>
- <string>Braggadocio</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.52</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>STIXIntUpBol.otf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/STIXIntUpBol.otf</string>
- <key>type</key>
- <string>opentype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>STIXIntegralsUp-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 2001-2010 by the STI Pub Companies, consisting of the American Chemical Society, the American Institute of Physics, the American Mathematical Society, the American Physical Society, Elsevier, Inc., and The Institute of Electrical and Electronic Engineers, Inc. Portions copyright (c) 1998-2003 by MicroPress, Inc. Portions copyright (c) 1990 by Elsevier, Inc. All rights reserved.</string>
- <key>description</key>
- <string>Arie de Ruiter, who in 1995 was Head of Information Technology Development at Elsevier Science, made a proposal to the STI Pub group, an informal group of publishers consisting of representatives from the American Chemical Society (ACS), American Institute of Physics (AIP), American Mathematical Society (AMS), American Physical Society (APS), Elsevier, and Institute of Electrical and Electronics Engineers (IEEE). De Ruiter encouraged the members to consider development of a series of Web fonts, which he proposed should be called the Scientific and Technical Information eXchange, or STIX, Fonts. All STI Pub member organizations enthusiastically endorsed this proposal, and the STI Pub group agreed to embark on what has become a twelve-year project. The goal of the project was to identify all alphabetic, symbolic, and other special characters used in any facet of scientific publishing and to create a set of Unicode-based fonts that would be distributed free to every scientist, student, and other interested party worldwide. The fonts would be consistent with the emerging Unicode standard, and would permit universal representation of every character. With the release of the STIX fonts, de Ruiter's vision has been realized.</string>
- <key>designer</key>
- <string>MicroPress Inc., with final additions and corrections provided by Coen Hoffman, Elsevier (retired)</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>STIXIntegralsUp</string>
- <key>fullname</key>
- <string>STIXIntegralsUp-Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>STIX Fonts(TM) is a trademark of The Institute of Electrical and Electronics Engineers, Inc.</string>
- <key>unique</key>
- <string>FontMaster:STIXIntegralsUp-Bold:1.0.0</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.0.0</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Myanmar Sangam MN.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Myanmar Sangam MN.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>MyanmarSangamMN</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 2010 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved.</string>
- <key>description</key>
- <string>Copyright (c) 2010 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved.</string>
- <key>designer</key>
- <string>Muthu Nedumaran</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Myanmar Sangam MN</string>
- <key>fullname</key>
- <string>Myanmar Sangam MN</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Myanmar Sangam MN is a trademark of Murasu Systems Sdn. Bhd. Malaysia.</string>
- <key>unique</key>
- <string>Myanmar Sangam MN; 7.0d2e1; 2011-08-02</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Murasu Systems Sdn. Bhd. Malaysia</string>
- <key>version</key>
- <string>7.0d2e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Georgia Bold.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Georgia Bold.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Georgia-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 2006 Microsoft Corporation. All Rights Reserved.</string>
- <key>designer</key>
- <string>Matthew Carter</string>
- <key>duplicate</key>
- <string>yes</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Georgia</string>
- <key>fullname</key>
- <string>Georgia Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>Georgia is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries.</string>
- <key>unique</key>
- <string>Microsoft Georgia Bold</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Carter &amp; Cone</string>
- <key>version</key>
- <string>Version 5.00x</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Arial Narrow.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Arial Narrow.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>ArialNarrow</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 2007 The Monotype Corporation. All Rights Reserved.</string>
- <key>description</key>
- <string>Monotype Drawing Office 1982. A contemporary sans serif design, Arial contains more humanist characteristics than many of its predecessors and as such is more in tune with the mood of the last decades of the twentieth century. The overall treatment of curves is softer and fuller than in most industrial-style sans serif faces. Terminal strokes are cut on the diagonal which helps to give the face a less mechanical appearance. Arial is an extremely versatile family of typefaces which can be used with equal success for text setting in reports, presentations, magazines etc, and for display use in newspapers, advertising and promotions.</string>
- <key>designer</key>
- <string>Robin Nicholas, Patricia Saunders</string>
- <key>duplicate</key>
- <string>yes</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Arial Narrow</string>
- <key>fullname</key>
- <string>Arial Narrow</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Arial is a trademark of The Monotype Corporation in the United States and/or other countries.</string>
- <key>unique</key>
- <string>Arial Narrow Regular : 2007</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>The Monotype Corporation</string>
- <key>version</key>
- <string>Version 2.38.1x</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Rockwell Extra Bold</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Rockwell Extra Bold</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Rockwell-ExtraBold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Design and data by The Monotype Corporation. © 1993. Portions copyright Microsoft Corporation. All rights reserved.</string>
- <key>description</key>
- <string>Rockwell is a distinctive version of a geometric slab serif design, which has retained its popularity since its appearance in the 1930's. The slab serifs, or Egyptians, originated in the nineteenth century when they were used principally for display work. Rockwell is notable for its judiciously clipped slab serifs, and is given a particular sparkle by means of its angular terminals. In more recent years this style of typeface has been increasingly used for text setting where their even colour and visual impact can be fully exploited.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Rockwell Extra Bold</string>
- <key>fullname</key>
- <string>Rockwell Extra Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Rockwell® is a registered trademark of The Monotype Corporation.</string>
- <key>unique</key>
- <string>Rockwell Extra Bold</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Monotype Typography</string>
- <key>version</key>
- <string>Version 1.65</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Lucida Sans Typewriter</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Lucida Sans Typewriter</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>LucidaSans-Typewriter</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 1991 Bigelow &amp; Holmes Inc. Pat. Des. 289,420. All Rights Reserved. © 1990-1991 Type Solutions, Inc. All Rights Reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Lucida Sans Typewriter</string>
- <key>fullname</key>
- <string>Lucida Sans Typewriter Regular</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Lucida® is a registered trademark of Bigelow &amp; Holmes Inc.</string>
- <key>unique</key>
- <string>Lucida Sans Typewriter Regular: B&amp;H: 1991</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.69</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>LucidaSans-TypewriterBold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 1991 Bigelow &amp; Holmes Inc. All Rights Reserved. © 1990-1991 Type Solutions, Inc. All Rights Reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Lucida Sans Typewriter</string>
- <key>fullname</key>
- <string>Lucida Sans Typewriter Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>Lucida® is a registered trademark of Bigelow &amp; Holmes Inc.</string>
- <key>unique</key>
- <string>Lucida Sans Typewriter Bold: B&amp;H: 1991</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.69</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>LucidaSans-TypewriterOblique</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 1991 Bigelow &amp; Holmes Inc. All Rights Reserved. © 1990-1991 Type Solutions, Inc. All Rights Reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Lucida Sans Typewriter</string>
- <key>fullname</key>
- <string>Lucida Sans Typewriter Oblique</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Oblique</string>
- <key>trademark</key>
- <string>Lucida® is a registered trademark of Bigelow &amp; Holmes Inc.</string>
- <key>unique</key>
- <string>Lucida Sans Typewriter Oblique: B&amp;H: 1991</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.69</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>LucidaSans-TypewriterBoldOblique</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 1991 Bigelow &amp; Holmes Inc. All Rights Reserved. © 1990-1991 Type Solutions, Inc. All Rights Reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Lucida Sans Typewriter</string>
- <key>fullname</key>
- <string>Lucida Sans Typewriter Bold Oblique</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold Oblique</string>
- <key>trademark</key>
- <string>Lucida® is a registered trademark of Bigelow &amp; Holmes Inc.</string>
- <key>unique</key>
- <string>Lucida Sans Typewriter Bold Oblique: B&amp;H: 1991</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.69</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Copperplate Gothic Bold</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Copperplate Gothic Bold</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>CopperplateGothic-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Data copyright © URW Software &amp; Type GbmH., additional data copyright The Font Bureau, Inc. Copyright 1994 Microsoft Corporation. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Copperplate Gothic Bold</string>
- <key>fullname</key>
- <string>Copperplate Gothic Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>unique</key>
- <string>Copperplate Gothic Bold</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.51</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Arial.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Arial.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>ArialMT</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 2008 The Monotype Corporation. All Rights Reserved.</string>
- <key>designer</key>
- <string>Monotype Type Drawing Office - Robin Nicholas, Patricia Saunders 1982</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Arial</string>
- <key>fullname</key>
- <string>Arial</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Arial is a trademark of The Monotype Corporation in the United States and/or other countries.</string>
- <key>unique</key>
- <string>Monotype:Arial Regular:Version 5.06 (Microsoft)</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>The Monotype Corporation</string>
- <key>version</key>
- <string>Version 5.06</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Trebuchet MS Bold Italic.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Trebuchet MS Bold Italic.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Trebuchet-BoldItalic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 2006 Microsoft Corporation. All Rights Reserved.</string>
- <key>description</key>
- <string>Trebuchet, designed by Vincent Connare in 1996, is a humanist sans serif designed for easy screen readability. Trebuchet takes its inspiration from the sans serifs of the 1930s which had large x heights and round features intended to promote readability on signs. The typeface name is credited to a puzzle heard at Microsoft, where the question was asked, "could you build a Trebuchet (a form of medieval catapult) to launch a person from the main campus to the consumer campus, and how?" The Trebuchet fonts are intended to be the vehicle that fires your messages across the Internet. "Launch your message with a Trebuchet page".</string>
- <key>designer</key>
- <string>Vincent Connare</string>
- <key>duplicate</key>
- <string>yes</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Trebuchet MS</string>
- <key>fullname</key>
- <string>Trebuchet MS Bold Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold Italic</string>
- <key>unique</key>
- <string>Microsoft Trebuchet Bold Italic</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Microsoft Corporation</string>
- <key>version</key>
- <string>Version 5.00x</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Skia.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Skia.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Skia-Regular</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 1993-2002 Apple Computer, Inc.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Skia</string>
- <key>fullname</key>
- <string>Skia Regular</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>unique</key>
- <string>Skia Regular; 6.1d3e1; 2008-08-11</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>6.1d3e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Lao MN.ttc</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Lao MN.ttc</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>LaoMN</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 2003 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved.</string>
- <key>description</key>
- <string>Copyright (c) 2003 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved.</string>
- <key>designer</key>
- <string>Muthu Nedumaran</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Lao MN</string>
- <key>fullname</key>
- <string>Lao MN</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Lao MN is a trademark of Murasu Systems Sdn. Bhd. Malaysia.</string>
- <key>unique</key>
- <string>Lao MN; 7.0d2e1; 2010-11-05</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Murasu Systems Sdn. Bhd. Malaysia</string>
- <key>version</key>
- <string>7.0d2e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>LaoMN-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 2003 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved.</string>
- <key>description</key>
- <string>Copyright (c) 2003 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved.</string>
- <key>designer</key>
- <string>Muthu Nedumaran</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Lao MN</string>
- <key>fullname</key>
- <string>Lao MN Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>Lao MN Bold is a trademark of Murasu Systems Sdn. Bhd. Malaysia.</string>
- <key>unique</key>
- <string>Lao MN Bold; 7.0d2e1; 2010-11-05</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Murasu Systems Sdn. Bhd. Malaysia</string>
- <key>version</key>
- <string>7.0d2e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>DecoTypeNaskh.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/DecoTypeNaskh.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>DecoTypeNaskh</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>DecoType Professional Naskh Family of Fonts. Copyright 1992-2007 DecoType. All Rights Reserved. Created by Thomas Milo.</string>
- <key>description</key>
- <string>Copyright (c) 2007 by Thomas Milo. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>DecoType Naskh</string>
- <key>fullname</key>
- <string>DecoType Naskh</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>DecoType Naskh is a trademark of DecoType.</string>
- <key>unique</key>
- <string>DecoType Naskh; 7.0d1e1; 2010-12-14</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d1e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppleCasual.dfont</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/AppleCasual.dfont</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>AppleCasual</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright 2001 Apple Computer, Inc.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Casual</string>
- <key>fullname</key>
- <string>Apple Casual</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>unique</key>
- <string>Apple Casual Regular; Apple Computer; Version 1.0d5; 5/9/02</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.0d5</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Symbols.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/System/Library/Fonts/Apple Symbols.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>AppleSymbols</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© Copyright 2003-2006 by Apple Computer, Inc.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Apple Symbols</string>
- <key>fullname</key>
- <string>Apple Symbols</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>unique</key>
- <string>Apple Symbols; 7.0d4e1; 2011-03-24</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d4e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Perpetua Bold Italic.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Perpetua Bold Italic.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Perpetua-BoldItalic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Digitized data copyright The Monotype Corporation 1991-1995. All rights reserved. Perpetua® is a trademark of The Monotype Corporation which may be registered in certain jurisdictions.</string>
- <key>description</key>
- <string>A sensitive adaptation of a style of letter that had been popularized for monumental work in stone by Eric Gill. Large scale drawings by Gill were given to Charles Malin, a Parisian punch-cutter, and his hand cut punches were the basis for the font issued by Monotype. The incised quality of Perpetua will lend distinction to any work compatible with its serenity. First used in a private translation called 'The Passion of Perpetua and Felicity'; the italic was originally called Felicity. Widely used as a text face in quality books, Perpetua is also very popular in advertising and display work.</string>
- <key>designer</key>
- <string>Eric Gill</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Perpetua</string>
- <key>fullname</key>
- <string>Perpetua Bold Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold Italic</string>
- <key>trademark</key>
- <string>Perpetua® is a trademark of The Monotype Corporation which may be registered in certain jurisdictions.</string>
- <key>unique</key>
- <string>Monotype - Perpetua Bold Italic</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Monotype Typography</string>
- <key>version</key>
- <string>Version 1.76</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Imprint MT Shadow</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Imprint MT Shadow</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>ImprintMT-Shadow</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Design and data by The Monotype Corporation. © 1993. Microsoft Corporation. all rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Imprint MT Shadow</string>
- <key>fullname</key>
- <string>Imprint MT Shadow</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Imprint® is a registered trademark of The Monotype Corporation.</string>
- <key>unique</key>
- <string>Monotype - Imprint MT Shadow</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.51</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Consolas Bold Italic.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Consolas Bold Italic.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Consolas-BoldItalic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 2008 Microsoft Corporation. All Rights Reserved.</string>
- <key>description</key>
- <string>Consolas is aimed for use in programming environments and other circumstances where a monospaced font is specified. All characters have the same width, like old typewriters, making it a good choice for personal and business correspondance. The improved Windows font display allowed a design with proportions closer to normal text than traditional monospaced fonts like Courier. This allows for more comfortably reading of extended text on screen. OpenType features include hanging or lining numerals; slashed, dotted and normal zeros; and alternative shapes for a number of lowercase letters. The look of text can be tuned to personal taste by varying the number of bars and waves.</string>
- <key>designer</key>
- <string>Luc(as) de Groot</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Consolas</string>
- <key>fullname</key>
- <string>Consolas Bold Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold Italic</string>
- <key>trademark</key>
- <string>Consolas is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries.</string>
- <key>unique</key>
- <string>Microsoft: Consolas Bold Italic: 2005</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Microsoft Corporation</string>
- <key>version</key>
- <string>Version 5.22</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Abadi MT Condensed Extra Bold</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Abadi MT Condensed Extra Bold</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>AbadiMT-CondensedExtraBold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Typeface data Copyright © 1992-94 The Monotype Corporation. Copyright 1994 Microsoft Corporation. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Abadi MT Condensed Extra Bold</string>
- <key>fullname</key>
- <string>Abadi MT Condensed Extra Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Abadi® Trademark of The Monotype Corporation. Registered in U.S. Patent and Trademark Office.</string>
- <key>unique</key>
- <string>Abadi MT Condensed Extra Bold - 1992</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.51</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Tahoma.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Tahoma.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Tahoma</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 2006 Microsoft Corporation. All rights reserved.</string>
- <key>designer</key>
- <string>Matthew Carter</string>
- <key>duplicate</key>
- <string>yes</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Tahoma</string>
- <key>fullname</key>
- <string>Tahoma</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Tahoma is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries.</string>
- <key>unique</key>
- <string>Microsoft Tahoma Regular</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Microsoft Corporation</string>
- <key>version</key>
- <string>Version 5.01.2x</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>PlantagenetCherokee.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/PlantagenetCherokee.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>PlantagenetCherokee</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) Tiro Typeworks, 2002. All rights reserved.</string>
- <key>designer</key>
- <string>Ross Mills</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Plantagenet Cherokee</string>
- <key>fullname</key>
- <string>Plantagenet Cherokee</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Plantagenet Cherokee is a trademark of Tiro Typeworks.</string>
- <key>unique</key>
- <string>Plantagenet Cherokee; 7.0d1e1; 2010-06-02</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Tiro Typeworks</string>
- <key>version</key>
- <string>7.0d1e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Kailasa.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Kailasa.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Kailasa</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright © Otani University Shin Buddhist Research Institute, 2006. All rights reserved.</string>
- <key>designer</key>
- <string>Yoichi Fukuda, Steve Hartwell &amp; Shojiro Nomura</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Kailasa</string>
- <key>fullname</key>
- <string>Kailasa</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>unique</key>
- <string>Kailasa Regular; 7.0d2e4; 2010-08-12</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Steve Hartwell &amp; Shojiro Nomura</string>
- <key>version</key>
- <string>7.0d2e4</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Copperplate.ttc</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Copperplate.ttc</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Copperplate</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 1981, 1982, 1983, 1989 and 1993, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved.
-
-The digitally encoded machine readable software for producing the Typefaces licensed to you is now the property of Heidelberger Druckmaschinen AG and its licensors, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG.
-
-Copyright (c) 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Copperplate</string>
- <key>fullname</key>
- <string>Copperplate</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Copperplate is a trademark of Heidelberger Druckmaschinen AG, which may be registered in certain jurisdictions, exclusivly licensed through Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG.</string>
- <key>unique</key>
- <string>Copperplate; 7.0d1e2; 2010-09-10</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d1e2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Copperplate-Light</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 1981, 1982, 1983, 1989 and 1993, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved.
-
-The digitally encoded machine readable software for producing the Typefaces licensed to you is now the property of Heidelberger Druckmaschinen AG and its licensors, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG.
-
-Copyright (c) 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Copperplate</string>
- <key>fullname</key>
- <string>Copperplate Light</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Light</string>
- <key>trademark</key>
- <string>Copperplate is a trademark of Heidelberger Druckmaschinen AG, which may be registered in certain jurisdictions, exclusivly licensed through Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG.</string>
- <key>unique</key>
- <string>Copperplate Light; 7.0d1e2; 2010-09-10</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d1e2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Copperplate-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 1981, 1982, 1983, 1989 and 1993, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved.
-
-The digitally encoded machine readable software for producing the Typefaces licensed to you is now the property of Heidelberger Druckmaschinen AG and its licensors, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG.
-
-Copyright (c) 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Copperplate</string>
- <key>fullname</key>
- <string>Copperplate Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>Copperplate is a trademark of Heidelberger Druckmaschinen AG, which may be registered in certain jurisdictions, exclusivly licensed through Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG.</string>
- <key>unique</key>
- <string>Copperplate Bold; 7.0d1e2; 2010-09-10</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d1e2</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ヒラギノ角ゴ ProN W6.otf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/System/Library/Fonts/ヒラギノ角ゴ ProN W6.otf</string>
- <key>type</key>
- <string>opentype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>HiraKakuProN-W6</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>ver8.10, Copyright (c) 1993-2010 Dainippon Screen Mfg. Co., Ltd. All Rights Reserved.</string>
- <key>designer</key>
- <string>JIYUKOBO Ltd.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Hiragino Kaku Gothic ProN</string>
- <key>fullname</key>
- <string>ヒラギノ角ゴ ProN W6</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>W6</string>
- <key>trademark</key>
- <string>Hiragino is a trademark of Dainippon Screen Mfg. Co., Ltd.</string>
- <key>unique</key>
- <string>8.10;Dainippon Screen Mfg. Co., Ltd.;Hiragino Kaku Gothic ProN W6</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Dainippon Screen Mfg. Co., Ltd.</string>
- <key>version</key>
- <string>Version 8.10</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Wingdings 2.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Wingdings 2.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Wingdings2</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Wingdings 2 designed by Bigelow &amp; Holmes Inc. for Microsoft Corporation. Copyright © 1992 Microsoft Corporation. Pat. Pend. All Rights Reserved. © 1990-1991 Type Solutions, Inc. All Rights Reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Wingdings 2</string>
- <key>fullname</key>
- <string>Wingdings 2</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Wingdings is a trademark of Microsoft Corporation.</string>
- <key>unique</key>
- <string>Wingdings 2</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 5.03</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MS Reference Specialty.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/MS Reference Specialty.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>MSReferenceSpecialty</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Digitized data copyright (C) 1998 The Monotype Corporation. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>MS Reference Specialty</string>
- <key>fullname</key>
- <string>MS Reference Specialty</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>unique</key>
- <string>Monotype- MS Reference Specialty</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.00</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Gill Sans MT.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Gill Sans MT.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>GillSansMT</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Digitized data copyright The Monotype Corporation 1991-1995. All rights reserved. Gill Sans® is a trademark of The Monotype Corporation which may be registered in certain jurisdictions.</string>
- <key>description</key>
- <string>Monotype Type Drawing Office 1928. Gill studied under the renowned calligrapher, Edward Johnston, the designer of the London Underground sans serif typeface. This influenced Gill who later experimented with sans serif designs, and in due course produced a set of capital letters. These became Monotype series 231, produced in 1923, and the forerunner of the extensive Gill Sans range now available. A twentieth century sans serif that has a simplicity of form which does not reject traditional forms and proportions, and gives the face a humanist feel. The lighter weights are highly readable in text and suitable for magazine and book work, whereas the heavier weights are best used for display in advertising, packaging, and labels.</string>
- <key>designer</key>
- <string>Eric Gill</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Gill Sans MT</string>
- <key>fullname</key>
- <string>Gill Sans MT</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Gill Sans® is a trademark of The Monotype Corporation which may be registered in certain jurisdictions.</string>
- <key>unique</key>
- <string>Monotype - Gill Sans MT Regular</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Monotype Typography</string>
- <key>version</key>
- <string>Version 1.65</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Candara Bold Italic.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Candara Bold Italic.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Candara-BoldItalic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 2008 Microsoft Corporation. All Rights Reserved.</string>
- <key>description</key>
- <string>Candara is a casual humanist sans with verticals showing a graceful entasis on stems, high-branching arcades in the lowercase, large apertures in all open forms, and unique ogee curves on diagonals. The resultant texture is lively but not intrusive, and makes for a friendly and readable text.</string>
- <key>designer</key>
- <string>Gary Munch</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Candara</string>
- <key>fullname</key>
- <string>Candara Bold Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold Italic</string>
- <key>trademark</key>
- <string>Candara is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries.</string>
- <key>unique</key>
- <string>Microsoft: Candara Bold Italic: 2005</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Microsoft Corporation</string>
- <key>version</key>
- <string>Version 5.61</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>儷黑 Pro.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/儷黑 Pro.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>LiHeiPro</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>(c) Copyright DynaComware Corp. 2003</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>LiHei Pro</string>
- <key>fullname</key>
- <string>LiHei Pro</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Medium</string>
- <key>trademark</key>
- <string>Trademark by DynaComware Corp.</string>
- <key>unique</key>
- <string>LiHei Pro; 6.0d4e1; 2007-04-06</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>6.0d4e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>STIXSizOneSymBol.otf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/STIXSizOneSymBol.otf</string>
- <key>type</key>
- <string>opentype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>STIXSizeOneSym-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 2001-2010 by the STI Pub Companies, consisting of the American Chemical Society, the American Institute of Physics, the American Mathematical Society, the American Physical Society, Elsevier, Inc., and The Institute of Electrical and Electronic Engineers, Inc. Portions copyright (c) 1998-2003 by MicroPress, Inc. Portions copyright (c) 1990 by Elsevier, Inc. All rights reserved.</string>
- <key>description</key>
- <string>Arie de Ruiter, who in 1995 was Head of Information Technology Development at Elsevier Science, made a proposal to the STI Pub group, an informal group of publishers consisting of representatives from the American Chemical Society (ACS), American Institute of Physics (AIP), American Mathematical Society (AMS), American Physical Society (APS), Elsevier, and Institute of Electrical and Electronics Engineers (IEEE). De Ruiter encouraged the members to consider development of a series of Web fonts, which he proposed should be called the Scientific and Technical Information eXchange, or STIX, Fonts. All STI Pub member organizations enthusiastically endorsed this proposal, and the STI Pub group agreed to embark on what has become a twelve-year project. The goal of the project was to identify all alphabetic, symbolic, and other special characters used in any facet of scientific publishing and to create a set of Unicode-based fonts that would be distributed free to every scientist, student, and other interested party worldwide. The fonts would be consistent with the emerging Unicode standard, and would permit universal representation of every character. With the release of the STIX fonts, de Ruiter's vision has been realized.</string>
- <key>designer</key>
- <string>MicroPress Inc., with final additions and corrections provided by Coen Hoffman, Elsevier (retired)</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>STIXSizeOneSym</string>
- <key>fullname</key>
- <string>STIXSizeOneSym-Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>STIX Fonts(TM) is a trademark of The Institute of Electrical and Electronics Engineers, Inc.</string>
- <key>unique</key>
- <string>FontMaster:STIXSizeOneSym-Bold:1.0.0</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.0.0</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Oriya MN.ttc</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Oriya MN.ttc</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>OriyaMN</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 2003 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved.</string>
- <key>description</key>
- <string>Copyright (c) 2003 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved.</string>
- <key>designer</key>
- <string>Muthu Nedumaran</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Oriya MN</string>
- <key>fullname</key>
- <string>Oriya MN</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Oriya MN is a trademark of Murasu Systems Sdn. Bhd. Malaysia.</string>
- <key>unique</key>
- <string>Oriya MN; 7.0d4e1; 2010-11-05</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Murasu Systems Sdn. Bhd. Malaysia</string>
- <key>version</key>
- <string>7.0d4e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>OriyaMN-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 2003 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved.</string>
- <key>description</key>
- <string>Copyright (c) 2003 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved.</string>
- <key>designer</key>
- <string>Muthu Nedumaran</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Oriya MN</string>
- <key>fullname</key>
- <string>Oriya MN Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>Oriya MN Bold is a trademark of Murasu Systems Sdn. Bhd. Malaysia.</string>
- <key>unique</key>
- <string>Oriya MN Bold; 7.0d4e1; 2010-11-05</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Murasu Systems Sdn. Bhd. Malaysia</string>
- <key>version</key>
- <string>7.0d4e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>HelveticaCY.dfont</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/HelveticaCY.dfont</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>HelveticaCY-Plain</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright © 1992, 1997 DoubleAlex Design Studio. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Helvetica CY</string>
- <key>fullname</key>
- <string>Helvetica CY Plain</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Plain</string>
- <key>unique</key>
- <string>Helvetica CY Plain; 6.1d5e1; 2009-06-29</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>6.1d5e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>HelveticaCY-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright © 1992, 1997 DoubleAlex Design Studio. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Helvetica CY</string>
- <key>fullname</key>
- <string>Helvetica CY Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>unique</key>
- <string>Helvetica CY Bold; 6.1d5e1; 2009-06-29</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>6.1d5e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>HelveticaCY-Oblique</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright © 1992, 1997 DoubleAlex Design Studio. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Helvetica CY</string>
- <key>fullname</key>
- <string>Helvetica CY Oblique</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Oblique</string>
- <key>unique</key>
- <string>Helvetica CY Oblique; 6.1d5e1; 2009-06-29</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>6.1d5e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>HelveticaCY-BoldOblique</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright © 1992, 1997 DoubleAlex Design Studio. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Helvetica CY</string>
- <key>fullname</key>
- <string>Helvetica CY BoldOblique</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>BoldOblique</string>
- <key>unique</key>
- <string>Helvetica CY BoldOblique; 6.1d5e1; 2009-06-29</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>6.1d5e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>BlairMdITC TT-Medium</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/BlairMdITC TT-Medium</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>BlairMdITCTT-Medium</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright © 1995-1997 International Typeface Corporation. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>BlairMdITC TT</string>
- <key>fullname</key>
- <string>BlairMdITC TT Medium</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Medium</string>
- <key>unique</key>
- <string>BlairMdITC TT Medium; 3.4.1; 2006-02-25</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>3.4.1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Thonburi.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/System/Library/Fonts/Thonburi.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Thonburi</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright © 1992-2011 by Apple Inc. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Thonburi</string>
- <key>fullname</key>
- <string>Thonburi</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>unique</key>
- <string>Thonburi; 10.8d3e3; 2011-03-17</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>10.8d3e3</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Tw Cen MT Bold Italic.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Tw Cen MT Bold Italic.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>TwCenMT-BoldItalic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Digitized data copyright The Monotype Corporation 1991-1997. All rights reserved. Twentieth Century™ is a trademark of The Monotype Corporation which may be registered in certain jurisdictions.</string>
- <key>description</key>
- <string>20th Century was designed and drawn by Sol Hess in the Lanston Monotype drawing office between 1936 and 1947. The first weights were added to the Monotype typeface library in 1959. This is a face based on geometric shapes which originated in Germany in the early 1920's and became an integral part of the Bauhaus movement of that time. Form and function became the key words, unnecessary decoration was scorned. This clean cut, sans serif with geometric shapes was most appropriate. The lighter weights can be used for text setting, the bold and condensed fonts are suitable for display in headlines and advertising.</string>
- <key>designer</key>
- <string>Sol Hess</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Tw Cen MT</string>
- <key>fullname</key>
- <string>Tw Cen MT Bold Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold Italic</string>
- <key>trademark</key>
- <string>Twentieth Century™ is a trademark of The Monotype Corporation which may be registered in certain jurisdictions.</string>
- <key>unique</key>
- <string>Monotype - Tw Cen MT Bold Italic</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Monotype Typography</string>
- <key>version</key>
- <string>Version 1.02</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Modern No. 20</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Modern No. 20</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Modern-Regular</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Data by Anna Wheeler and Type Solutions, Inc. © 1993. Microsoft Corporation. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Modern No. 20</string>
- <key>fullname</key>
- <string>Modern No. 20</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>unique</key>
- <string>Modern No. 20</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Type Solutions, Inc. StingRay!™ V1.00.</string>
- <key>version</key>
- <string>Version 1.51</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Franklin Gothic Book.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Franklin Gothic Book.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>FranklinGothic-Book</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string> ITC Franklin Gothic is a trademark of The International Typeface Corporation which may be registered in certain jurisdictions. Portions copyright Microsoft Corporation. All rights reserved.</string>
- <key>description</key>
- <string>Designed in 1902 by Morris Fuller Benton for the American Type Founders company, Franklin Gothic still reigns as one of the most-widely used sans serif typefaces. Originally issued in only one weight, the ATF version of Franklin Gothic was eventually expanded to include five additional weights, but no light or intermediate weights were ever developed. In 1979, under license from ATF, ITC developed four new weights in roman and italic: book, medium, demi and heavy. Designed by Victor Caruso, ITC’s new weights matched the original face’s characteristics, but featured a slightly enlarged lowercase x-height. ITC Franklin Gothic also features a slightly condensed lowercase a-z alphabet. In 1991, ITC commissioned the Font Bureau in Boston to create condensed, compressed and extra compressed versions of ITC Franklin Gothic, which increased the flexibility and usefulness of the design.</string>
- <key>designer</key>
- <string>Victor Caruso</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Franklin Gothic Book</string>
- <key>fullname</key>
- <string>Franklin Gothic Book</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>ITC Franklin Gothic is a trademark of The International Typeface Corporation which may be registered in certain jurisdictions.</string>
- <key>unique</key>
- <string>Monotype - Franklin Gothic Book Regular</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>International Typeface Corporation</string>
- <key>version</key>
- <string>Version 2.01</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Calibri Bold.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Calibri Bold.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Calibri-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 2008 Microsoft Corporation. All Rights Reserved.</string>
- <key>description</key>
- <string>Calibri is a modern sans serif family with subtle roundings on stems and corners. It features real italics, small caps, and multiple numeral sets. Its proportions allow high impact in tightly set lines of big and small text alike. Calibri's many curves and the new rasteriser team up in bigger sizes to reveal a warm and soft character.</string>
- <key>designer</key>
- <string>Luc(as) de Groot</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Calibri</string>
- <key>fullname</key>
- <string>Calibri Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>Calibri is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries.</string>
- <key>unique</key>
- <string>Microsoft: Calibri Bold: 2005</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Microsoft Corporation</string>
- <key>version</key>
- <string>Version 5.62</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ヒラギノ丸ゴ Pro W4.otf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/ヒラギノ丸ゴ Pro W4.otf</string>
- <key>type</key>
- <string>opentype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>HiraMaruPro-W4</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>ver7.11, Copyright (c) 2000-2002 Dainippon Screen Mfg. Co., Ltd. All Rights Reserved.</string>
- <key>designer</key>
- <string>JIYUKOBO Ltd.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Hiragino Maru Gothic Pro</string>
- <key>fullname</key>
- <string>ヒラギノ丸ゴ Pro W4</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>W4</string>
- <key>trademark</key>
- <string>Hiragino is a trademark of Dainippon Screen Mfg. Co., Ltd. registered in Japan.</string>
- <key>unique</key>
- <string>Dainippon Screen Mfg. Co., Ltd. Hiragino Maru Gothic Pro W4</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Dainippon Screen Mfg. Co., Ltd.</string>
- <key>version</key>
- <string>7.11</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>STIXIntUpSmBol.otf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/STIXIntUpSmBol.otf</string>
- <key>type</key>
- <string>opentype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>STIXIntegralsUpSm-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 2001-2010 by the STI Pub Companies, consisting of the American Chemical Society, the American Institute of Physics, the American Mathematical Society, the American Physical Society, Elsevier, Inc., and The Institute of Electrical and Electronic Engineers, Inc. Portions copyright (c) 1998-2003 by MicroPress, Inc. Portions copyright (c) 1990 by Elsevier, Inc. All rights reserved.</string>
- <key>description</key>
- <string>Arie de Ruiter, who in 1995 was Head of Information Technology Development at Elsevier Science, made a proposal to the STI Pub group, an informal group of publishers consisting of representatives from the American Chemical Society (ACS), American Institute of Physics (AIP), American Mathematical Society (AMS), American Physical Society (APS), Elsevier, and Institute of Electrical and Electronics Engineers (IEEE). De Ruiter encouraged the members to consider development of a series of Web fonts, which he proposed should be called the Scientific and Technical Information eXchange, or STIX, Fonts. All STI Pub member organizations enthusiastically endorsed this proposal, and the STI Pub group agreed to embark on what has become a twelve-year project. The goal of the project was to identify all alphabetic, symbolic, and other special characters used in any facet of scientific publishing and to create a set of Unicode-based fonts that would be distributed free to every scientist, student, and other interested party worldwide. The fonts would be consistent with the emerging Unicode standard, and would permit universal representation of every character. With the release of the STIX fonts, de Ruiter's vision has been realized.</string>
- <key>designer</key>
- <string>MicroPress Inc., with final additions and corrections provided by Coen Hoffman, Elsevier (retired)</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>STIXIntegralsUpSm</string>
- <key>fullname</key>
- <string>STIXIntegralsUpSm-Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>STIX Fonts(TM) is a trademark of The Institute of Electrical and Electronics Engineers, Inc.</string>
- <key>unique</key>
- <string>FontMaster:STIXIntegralsUpSm-Bold:1.0.0</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.0.0</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>NanumMyeongjo.ttc</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/NanumMyeongjo.ttc</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>NanumMyeongjo</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright © 2010 NHN Corporation. All rights reserved. Font designed by FONTRIX.</string>
- <key>designer</key>
- <string>Yong-rak, Park; Ji-hee, Yoon</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Nanum Myeongjo</string>
- <key>fullname</key>
- <string>NanumMyeongjo</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>NanumMyeongjo is a registered trademark of NHN Corporation.</string>
- <key>unique</key>
- <string>NanumMyeongjo; 7.1d2e1; 2011-06-14</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>NHN Corporation</string>
- <key>version</key>
- <string>7.1d2e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>NanumMyeongjoBold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright © 2010 NHN Corporation. All rights reserved. Font designed by FONTRIX.</string>
- <key>designer</key>
- <string>Yong-rak, Park; Ji-hee, Yoon</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Nanum Myeongjo</string>
- <key>fullname</key>
- <string>나눔명조 Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>NanumMyeongjoBold is a registered trademark of NHN Corporation.</string>
- <key>unique</key>
- <string>NanumMyeongjo Bold; 7.1d2e1; 2011-06-14</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>NHN Corporation</string>
- <key>version</key>
- <string>7.1d2e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>NanumMyeongjoExtraBold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright © 2010 NHN Corporation. All rights reserved. Font designed by FONTRIX.</string>
- <key>designer</key>
- <string>Yong-rak, Park; Ji-hee, Yoon</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Nanum Myeongjo</string>
- <key>fullname</key>
- <string>NanumMyeongjoExtraBold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>ExtraBold</string>
- <key>trademark</key>
- <string>NanumMyeongjoExtraBold is a registered trademark of NHN Corporation.</string>
- <key>unique</key>
- <string>NanumMyeongjo ExtraBold; 7.1d2e1; 2011-06-14</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>NHN Corporation</string>
- <key>version</key>
- <string>7.1d2e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Gujarati Sangam MN.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Gujarati Sangam MN.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>GujaratiSangamMN</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 2009 by Muthu Nedumaran. All rights reserved.</string>
- <key>description</key>
- <string>Copyright (c) 2009 by Muthu Nedumaran. All rights reserved.</string>
- <key>designer</key>
- <string>Muthu Nedumaran</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Gujarati Sangam MN</string>
- <key>fullname</key>
- <string>Gujarati Sangam MN</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Gujarati Sangam MN is a trademark of Muthu Nedumaran.</string>
- <key>unique</key>
- <string>Gujarati Sangam MN; 7.0d2e1; 2010-11-05</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Muthu Nedumaran</string>
- <key>version</key>
- <string>7.0d2e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ArialHB.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/ArialHB.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>ArialHebrew</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Typeface © Monotype Typography ltd. Data © Monotype Typography ltd, Type Solutions Inc 1990-1993. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Arial Hebrew</string>
- <key>fullname</key>
- <string>Arial Hebrew</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Arial ® Trademark of The Monotype Corporation registered in the US Pat &amp; TM off. and elsewhere.</string>
- <key>unique</key>
- <string>Arial Hebrew; 6.0d2e1; 2006-10-26</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>6.0d2e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Keyboard.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/System/Library/Fonts/Keyboard.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>.Keyboard</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright © 1995-2007 by Apple Inc. All Rights Reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>.Keyboard</string>
- <key>fullname</key>
- <string>.Keyboard</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>unique</key>
- <string>.Keyboard; 6.1d7e16; 2009-05-28</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>6.1d7e16</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Stencil</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Stencil</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Stencil</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Data © 1992 URW. Portions © 1992 Microsoft Corp. All rights reserved.</string>
- <key>description</key>
- <string>Stencil faces have been made for as long as people have been shipping wooden boxes. Most of the letterforms look a bit like a softer, bolder Clarendon before lines are cut through it to allow counters (those little spaces enclosed in 'a', 'b' and other letters) to remain as counters without becoming solid blobs. Consider this Stencil face a decorative font for limited use; a little goes a long way.
-</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Stencil</string>
- <key>fullname</key>
- <string>Stencil</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>unique</key>
- <string>Stencil</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>URW++</string>
- <key>version</key>
- <string>Version 1.52</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Meiryo Bold Italic.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Meiryo Bold Italic.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Meiryo-BoldItalic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 2010 Microsoft Corporation. All Rights Reserved.</string>
- <key>description</key>
- <string>Meiryo is a very versatile modern sans serif type designed to give an exceptionally clean appearance on screen, as well as in print. It is optimized for on-screen reading. The letterforms are generously open and well-proportioned; legible and clear at smaller sizes, and dynamic at larger display sizes. The beauty of this face is that it sets text lines in Japanese with Roman seamlessly and harmoniously. The balanced inter-letter spacing enhances horizontal alignment, facilitating smooth reading flow. Meiryo has a very large character set with Japanese and Roman combined, fully scalable outline technology, making it extremely functional for all aspects of communication and publishing. It is a robust legible typeface yet compact enough to enable tight inter-line spacing which is good for space economy.</string>
- <key>designer</key>
- <string>C&amp;G Inc.; Eiichi Kono; Matthew Carter</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Meiryo</string>
- <key>fullname</key>
- <string>Meiryo Bold Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold Italic</string>
- <key>trademark</key>
- <string>Meiryo is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries.</string>
- <key>unique</key>
- <string>Microsoft: Meiryo Bold Italic: 2005</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Microsoft Corporation</string>
- <key>version</key>
- <string>Version 6.03</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Corbel Italic.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Corbel Italic.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Corbel-Italic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 2008 Microsoft Corporation. All Rights Reserved.</string>
- <key>description</key>
- <string>Corbel is designed to give an uncluttered and clean appearance on screen. The letter forms are open with soft, flowing curves. It is legible, clear and functional at small sizes. At larger sizes the detailing and style of the shapes is more apparent resulting in a modern sans serif type with a wide range of possible uses.</string>
- <key>designer</key>
- <string>Jeremy Tankard</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Corbel</string>
- <key>fullname</key>
- <string>Corbel Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Italic</string>
- <key>trademark</key>
- <string>Corbel is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries.</string>
- <key>unique</key>
- <string>Microsoft: Corbel Italic: 2005</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Microsoft Corporation</string>
- <key>version</key>
- <string>Version 5.61</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Bell MT</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Bell MT</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>BellMT</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Typeface © The Monotype Corporation plc. Data © The Monotype Corporation plc, Type Solutions Inc 1990-1992. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Bell MT</string>
- <key>fullname</key>
- <string>Bell MT</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Bell ® Trademark of The Monotype Corporation plc registered in the US Pat &amp; TM Off.</string>
- <key>unique</key>
- <string>Bell MT</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.51</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>BellMTBold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Typeface © The Monotype Corporation plc. Data © The Monotype Corporation plc, Type Solutions inc 1990-1992. All rights reserved. Portions © 1992 Microsoft Corp.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Bell MT</string>
- <key>fullname</key>
- <string>Bell MT Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>Bell ® Trademark of The Monotype Corporation plc registered in the US Pat &amp; TM Off.</string>
- <key>unique</key>
- <string>Bell MT Bold</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.51</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>BellMTItalic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Typeface © The Monotype Corporation plc. Data © The Monotype Corporation plc, Type Solutions Inc 1990-1992. All rights reserved. Portions © 1992 Microsoft Corp.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Bell MT</string>
- <key>fullname</key>
- <string>Bell MT Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Italic</string>
- <key>trademark</key>
- <string>Bell ® Trademark of The Monotype Corporation plc registered in the US Pat &amp; TM Off.</string>
- <key>unique</key>
- <string>Bell MT Italic</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.51</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>STIXGeneralItalic.otf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/STIXGeneralItalic.otf</string>
- <key>type</key>
- <string>opentype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>STIXGeneral-Italic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 2001-2010 by the STI Pub Companies, consisting of the American Chemical Society, the American Institute of Physics, the American Mathematical Society, the American Physical Society, Elsevier, Inc., and The Institute of Electrical and Electronic Engineers, Inc. Portions copyright (c) 1998-2003 by MicroPress, Inc. Portions copyright (c) 1990 by Elsevier, Inc. All rights reserved.</string>
- <key>description</key>
- <string>Arie de Ruiter, who in 1995 was Head of Information Technology Development at Elsevier Science, made a proposal to the STI Pub group, an informal group of publishers consisting of representatives from the American Chemical Society (ACS), American Institute of Physics (AIP), American Mathematical Society (AMS), American Physical Society (APS), Elsevier, and Institute of Electrical and Electronics Engineers (IEEE). De Ruiter encouraged the members to consider development of a series of Web fonts, which he proposed should be called the Scientific and Technical Information eXchange, or STIX, Fonts. All STI Pub member organizations enthusiastically endorsed this proposal, and the STI Pub group agreed to embark on what has become a twelve-year project. The goal of the project was to identify all alphabetic, symbolic, and other special characters used in any facet of scientific publishing and to create a set of Unicode-based fonts that would be distributed free to every scientist, student, and other interested party worldwide. The fonts would be consistent with the emerging Unicode standard, and would permit universal representation of every character. With the release of the STIX fonts, de Ruiter's vision has been realized.</string>
- <key>designer</key>
- <string>MicroPress Inc., with final additions and corrections provided by Coen Hoffman, Elsevier (retired)</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>STIXGeneral</string>
- <key>fullname</key>
- <string>STIXGeneral-Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Italic</string>
- <key>trademark</key>
- <string>STIX Fonts(TM) is a trademark of The Institute of Electrical and Electronics Engineers, Inc.</string>
- <key>unique</key>
- <string>FontMaster:STIXGeneral-Italic:1.0.0</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.0.0</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Microsoft Sans Serif.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft Sans Serif.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>MicrosoftSansSerif</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 2006 Microsoft Corporation. All Rights Reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Microsoft Sans Serif</string>
- <key>fullname</key>
- <string>Microsoft Sans Serif</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Microsoft Sans Serif is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries.</string>
- <key>unique</key>
- <string>Microsoft Sans Serif Regular</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 5.00.1x</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Didot.ttc</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Didot.ttc</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Didot</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 1981, 1982, 1983, 1989 and 1993, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved.
-
-The digitally encoded machine readable software for producing the Typefaces licensed to you is now the property of Heidelberger Druckmaschinen AG and its licensors, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG.
-
-Copyright (c) 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved.</string>
- <key>description</key>
- <string>The Didot family were active as designers for about 100 years in the 18th and 19th centuries. They were printers, publishers, typeface designers, inventors and intellectuals. Around 1800 the Didot family owned the most important print shop and font foundry in France. Pierre Didot, the printer, published a document with the typefaces of his brother, Firmin Didot, the typeface designer. The strong clear forms of this alphabet display objective, rational characteristics and are representative of the time and philosophy of the Enlightenment. Adrian Frutiger's Didot is a sensitive interpretation of the French Modern Face Didot. Another model for this design is the Henriade, a historical printing of the original Didot from 1818. The font Didot gives text a classic and elegant feel.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Didot</string>
- <key>fullname</key>
- <string>Didot</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>"Linotype Didot" is a trademark of Heidelberger Druckmaschinen AG, which may be registered in certain jurisdictions, exclusivly licensed through Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG.</string>
- <key>unique</key>
- <string>Didot; 6.1d4e1; 2010-09-07</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>6.1d4e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Didot-Italic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 1981, 1982, 1983, 1989 and 1993, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved.
-
-The digitally encoded machine readable software for producing the Typefaces licensed to you is now the property of Heidelberger Druckmaschinen AG and its licensors, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG.
-
-Copyright (c) 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved.</string>
- <key>description</key>
- <string>The Didot family were active as designers for about 100 years in the 18th and 19th centuries. They were printers, publishers, typeface designers, inventors and intellectuals. Around 1800 the Didot family owned the most important print shop and font foundry in France. Pierre Didot, the printer, published a document with the typefaces of his brother, Firmin Didot, the typeface designer. The strong clear forms of this alphabet display objective, rational characteristics and are representative of the time and philosophy of the Enlightenment. Adrian Frutiger's Didot is a sensitive interpretation of the French Modern Face Didot. Another model for this design is the Henriade, a historical printing of the original Didot from 1818. The font Didot gives text a classic and elegant feel.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Didot</string>
- <key>fullname</key>
- <string>Didot Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Italic</string>
- <key>trademark</key>
- <string>"Linotype Didot" is a trademark of Heidelberger Druckmaschinen AG, which may be registered in certain jurisdictions, exclusivly licensed through Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG.</string>
- <key>unique</key>
- <string>Didot Italic; 6.1d4e1; 2010-09-07</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>6.1d4e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Didot-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 1981, 1982, 1983, 1989 and 1993, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved.
-
-The digitally encoded machine readable software for producing the Typefaces licensed to you is now the property of Heidelberger Druckmaschinen AG and its licensors, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG.
-
-Copyright (c) 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved.</string>
- <key>description</key>
- <string>The Didot family were active as designers for about 100 years in the 18th and 19th centuries. They were printers, publishers, typeface designers, inventors and intellectuals. Around 1800 the Didot family owned the most important print shop and font foundry in France. Pierre Didot, the printer, published a document with the typefaces of his brother, Firmin Didot, the typeface designer. The strong clear forms of this alphabet display objective, rational characteristics and are representative of the time and philosophy of the Enlightenment. Adrian Frutiger's Didot is a sensitive interpretation of the French Modern Face Didot. Another model for this design is the Henriade, a historical printing of the original Didot from 1818. The font Didot gives text a classic and elegant feel.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Didot</string>
- <key>fullname</key>
- <string>Didot Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>"Linotype Didot" is a trademark of Heidelberger Druckmaschinen AG, which may be registered in certain jurisdictions, exclusivly licensed through Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG.</string>
- <key>unique</key>
- <string>Didot Bold; 6.1d4e1; 2010-09-07</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>6.1d4e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Geeza Pro Bold.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/System/Library/Fonts/Geeza Pro Bold.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>GeezaPro-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Diwan Software Ltd. 1992-2009 all rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Geeza Pro</string>
- <key>fullname</key>
- <string>Geeza Pro Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>unique</key>
- <string>Geeza Pro Bold; 7.0d8e1; 2010-12-18</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d8e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Perpetua.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Perpetua.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Perpetua</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Digitized data copyright The Monotype Corporation 1991-1995. All rights reserved. Perpetua® is a trademark of The Monotype Corporation which may be registered in certain jurisdictions.</string>
- <key>description</key>
- <string>A sensitive adaptation of a style of letter that had been popularized for monumental work in stone by Eric Gill. Large scale drawings by Gill were given to Charles Malin, a Parisian punch-cutter, and his hand cut punches were the basis for the font issued by Monotype. The incised quality of Perpetua will lend distinction to any work compatible with its serenity. First used in a private translation called 'The Passion of Perpetua and Felicity'; the italic was originally called Felicity. Widely used as a text face in quality books, Perpetua is also very popular in advertising and display work.</string>
- <key>designer</key>
- <string>Eric Gill</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Perpetua</string>
- <key>fullname</key>
- <string>Perpetua</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Perpetua® is a trademark of The Monotype Corporation which may be registered in certain jurisdictions.</string>
- <key>unique</key>
- <string>Monotype - Perpetua Regular</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Monotype Typography</string>
- <key>version</key>
- <string>Version 1.76</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Lucida Calligraphy</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Lucida Calligraphy</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>LucidaCalligraphy-Italic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 1991 Bigelow &amp; Holmes. All Rights Reserved. © 1990-1991 Type Solutions, Inc. All Rights Reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Lucida Calligraphy</string>
- <key>fullname</key>
- <string>Lucida Calligraphy Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Italic</string>
- <key>trademark</key>
- <string>Lucida® is a registered trademark of Bigelow &amp; Holmes Inc.</string>
- <key>unique</key>
- <string>Lucida Calligraphy Italic</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.69</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Constantia Bold Italic.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Constantia Bold Italic.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Constantia-BoldItalic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 2009 Microsoft Corporation. All Rights Reserved.</string>
- <key>description</key>
- <string>Constantia is a modulated wedge-serif typeface designed primarily for continuous text in both electronic and paper publishing. The design responds to the recent narrowing of the gap between screen readability and traditional print media, exploiting specific aspects of the most recent advances in ClearType rendering, such as sub-pixel positioning. The classic proportions of relatively small x-height and long extenders make Constantia ideal for book and journal publishing, while the slight squareness and open counters ensure that it remains legible even at small sizes.</string>
- <key>designer</key>
- <string>John Hudson</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Constantia</string>
- <key>fullname</key>
- <string>Constantia Bold Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold Italic</string>
- <key>trademark</key>
- <string>Constantia is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries.</string>
- <key>unique</key>
- <string>Microsoft: Constantia Bold Italic: 2005</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Microsoft Corporation</string>
- <key>version</key>
- <string>Version 5.90</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Arial Bold Italic.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Arial Bold Italic.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Arial-BoldItalicMT</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 2008 The Monotype Corporation. All Rights Reserved.</string>
- <key>designer</key>
- <string>Monotype Type Drawing Office - Robin Nicholas, Patricia Saunders 1982</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Arial</string>
- <key>fullname</key>
- <string>Arial Bold Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold Italic</string>
- <key>trademark</key>
- <string>Arial is a trademark of The Monotype Corporation in the United States and/or other countries.</string>
- <key>unique</key>
- <string>Monotype:Arial Bold Italic:version 5.06 (Microsoft)</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>The Monotype Corporation</string>
- <key>version</key>
- <string>Version 5.06</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Telugu Sangam MN.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Telugu Sangam MN.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>TeluguSangamMN</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 2004 by Muthu Nedumaran. All rights reserved.</string>
- <key>description</key>
- <string>Copyright (c) 2004 by Muthu Nedumaran. All rights reserved.</string>
- <key>designer</key>
- <string>Muthu Nedumaran</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Telugu Sangam MN</string>
- <key>fullname</key>
- <string>Telugu Sangam MN</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Telugu Sangam MN is a trademark of Muthu Nedumaran.</string>
- <key>unique</key>
- <string>Telugu Sangam MN; 7.0d3e1; 2010-12-13</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Muthu Nedumaran</string>
- <key>version</key>
- <string>7.0d3e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>RaananaBold.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/RaananaBold.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>RaananaBold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© Apple Computer, Inc. 1992-1995</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Raanana</string>
- <key>fullname</key>
- <string>Raanana Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>unique</key>
- <string>Raanana Bold; 6.0d2e1; 2006-10-26</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Apple Computer, Inc.</string>
- <key>version</key>
- <string>6.0d2e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Khmer MN.ttc</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Khmer MN.ttc</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>KhmerMN</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 2010 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved.</string>
- <key>description</key>
- <string>Copyright (c) 2010 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved.</string>
- <key>designer</key>
- <string>Muthu Nedumaran</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Khmer MN</string>
- <key>fullname</key>
- <string>Khmer MN</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Khmer MN is a trademark of Murasu Systems Sdn. Bhd. Malaysia.</string>
- <key>unique</key>
- <string>Khmer MN; 7.0d2e1; 2010-11-05</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Murasu Systems Sdn. Bhd. Malaysia</string>
- <key>version</key>
- <string>7.0d2e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>KhmerMN-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 2010 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved.</string>
- <key>description</key>
- <string>Copyright (c) 2010 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved.</string>
- <key>designer</key>
- <string>Muthu Nedumaran</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Khmer MN</string>
- <key>fullname</key>
- <string>Khmer MN Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>Khmer MN Bold is a trademark of Murasu Systems Sdn. Bhd. Malaysia.</string>
- <key>unique</key>
- <string>Khmer MN Bold; 7.0d2e1; 2010-11-05</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Murasu Systems Sdn. Bhd. Malaysia</string>
- <key>version</key>
- <string>7.0d2e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Courier New Bold.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Courier New Bold.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>CourierNewPS-BoldMT</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 2008 The Monotype Corporation. All Rights Reserved.</string>
- <key>designer</key>
- <string>Howard Kettler</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Courier New</string>
- <key>fullname</key>
- <string>Courier New Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>Courier New is a trademark of The Monotype Corporation in the United States and/or other countries.</string>
- <key>unique</key>
- <string>Monotype:Courier New Bold:version 5.00 (Microsoft)</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>The Monotype Corporation</string>
- <key>version</key>
- <string>Version 5.00.2x</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AmericanTypewriter.ttc</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/AmericanTypewriter.ttc</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>AmericanTypewriter</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Digitized data (c) Copyright 1997 E+F Designstudios. ITC American Typewriter is a registered trademark of International Typeface Corporation.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>American Typewriter</string>
- <key>fullname</key>
- <string>American Typewriter</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>ITC American Typewriter is a registered trademark of International Typeface Corporation.</string>
- <key>unique</key>
- <string>American Typewriter; 7.0d1e1; 2011-03-23</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d1e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AmericanTypewriter-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Digitized data (c) Copyright 1997 E+F Designstudios. ITC American Typewriter is a registered trademark of International Typeface Corporation.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>American Typewriter</string>
- <key>fullname</key>
- <string>American Typewriter Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>ITC American Typewriter is a registered trademark of International Typeface Corporation.</string>
- <key>unique</key>
- <string>American Typewriter Bold; 7.0d1e1; 2011-03-23</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d1e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AmericanTypewriter-CondensedBold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Digitized data (c) Copyright 1997 E+F Designstudios. ITC American Typewriter is a registered trademark of International Typeface Corporation.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>American Typewriter</string>
- <key>fullname</key>
- <string>American Typewriter Condensed Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Condensed Bold</string>
- <key>trademark</key>
- <string>ITC American Typewriter is a registered trademark of International Typeface Corporation.</string>
- <key>unique</key>
- <string>American Typewriter Condensed Bold; 7.0d1e1; 2011-03-23</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d1e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AmericanTypewriter-Light</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Digitized data (c) Copyright 1997 E+F Designstudios. ITC American Typewriter is a registered trademark of International Typeface Corporation.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>American Typewriter</string>
- <key>fullname</key>
- <string>American Typewriter Light</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Light</string>
- <key>trademark</key>
- <string>ITC American Typewriter is a registered trademark of International Typeface Corporation.</string>
- <key>unique</key>
- <string>American Typewriter Light; 7.0d1e1; 2011-03-23</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d1e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AmericanTypewriter-Condensed</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Digitized Data (c) Copyright 1997 E+F Designstudios. ITC American Typewriter is a registered trademark of International Typeface Corporation.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>American Typewriter</string>
- <key>fullname</key>
- <string>American Typewriter Condensed</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Condensed</string>
- <key>trademark</key>
- <string>ITC American Typewriter is a registered trademark of International Typeface Corporation.</string>
- <key>unique</key>
- <string>American Typewriter Condensed; 7.0d1e1; 2011-03-23</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d1e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AmericanTypewriter-CondensedLight</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Digitized data (c) Copyright 1997 E+F Designstudios. ITC American Typewriter is a registered trademark of International Typeface Corporation.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>American Typewriter</string>
- <key>fullname</key>
- <string>American Typewriter Condensed Light</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Condensed Light</string>
- <key>unique</key>
- <string>American Typewriter Condensed Light; 7.0d1e1; 2011-03-23</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d1e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Braille Outline 8 Dot.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/System/Library/Fonts/Apple Braille Outline 8 Dot.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>AppleBraille-Outline8Dot</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© Copyright 2007 by Apple, Inc.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Apple Braille</string>
- <key>fullname</key>
- <string>Apple Braille Outline 8 Dot</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Outline 8 Dot</string>
- <key>unique</key>
- <string>Apple Braille Outline 8 Dot; 1.0d5e1; 2008-12-15</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>1.0d5e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Onyx</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Onyx</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Onyx</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Typeface © of The Monotype Corporation plc Data © of The Monotype Corporation plc/Type Solutions, Inc. 1990-1991 All Rights Reserved. Portions © 1992 Microsoft Corp. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Onyx</string>
- <key>fullname</key>
- <string>Onyx</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Onyx is a Trademark of The Monotype Corporation plc</string>
- <key>unique</key>
- <string>Onyx</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.51</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Gulim.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Gulim.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Gulim</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>(c) Copyright HanYang I&amp;C Co.,LTD. 2000</string>
- <key>description</key>
- <string>This version of Gulim.ttf is prepared for MAC Office. The EBDT and EBLC tables have been deleted from the original font (ver 2.21).</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Gulim</string>
- <key>fullname</key>
- <string>Gulim</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Gulim is a registered trademark of the Microsoft Corporation.</string>
- <key>unique</key>
- <string>Gulim Regular</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.70</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Century</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Century</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Century</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Digitized data copyright (C) 1992-1997 The Monotype Corporation. All rights reserved. Century™ is a trademark of The Monotype Corporation which may be registered in certain jurisdictions.</string>
- <key>description</key>
- <string>Another member of the Century family which was based on Century Expanded. Designed to fulfill the need for a solid, legible face for printing schoolbooks. It is wider and heavier than Century Expanded, there is also less contrast between thick and thin strokes. First cut by Monotype in 1934 and based on versions from ATF and Lanston Monotype. The sturdy nature of this typeface, coupled with its inherent legibility, has made it a popular choice for setting books, newspapers and magazines.
-
-This version of Century has been adjusted for use in Asian typography.</string>
- <key>designer</key>
- <string>Morris Fuller Benton</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Century</string>
- <key>fullname</key>
- <string>Century</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Century™ is a trademark of The Monotype Corporation which may be registered in certain jurisdictions.</string>
- <key>unique</key>
- <string>Monotype - Century</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Agfa Monotype Corporation</string>
- <key>version</key>
- <string>Version 1.25</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>华文细黑.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/华文细黑.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>STXihei</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 2002, Changzhou SinoType Technology Co., Ltd. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>STHeiti</string>
- <key>fullname</key>
- <string>STXihei</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Light</string>
- <key>trademark</key>
- <string>STXihei and SinoType are trademarks of Changzhou SinoType Technology Co., Ltd.</string>
- <key>unique</key>
- <string>STXihei; 6.1d4e1; 2010-08-21</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>6.1d4e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>STIXSizTwoSymBol.otf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/STIXSizTwoSymBol.otf</string>
- <key>type</key>
- <string>opentype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>STIXSizeTwoSym-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 2001-2010 by the STI Pub Companies, consisting of the American Chemical Society, the American Institute of Physics, the American Mathematical Society, the American Physical Society, Elsevier, Inc., and The Institute of Electrical and Electronic Engineers, Inc. Portions copyright (c) 1998-2003 by MicroPress, Inc. Portions copyright (c) 1990 by Elsevier, Inc. All rights reserved.</string>
- <key>description</key>
- <string>Arie de Ruiter, who in 1995 was Head of Information Technology Development at Elsevier Science, made a proposal to the STI Pub group, an informal group of publishers consisting of representatives from the American Chemical Society (ACS), American Institute of Physics (AIP), American Mathematical Society (AMS), American Physical Society (APS), Elsevier, and Institute of Electrical and Electronics Engineers (IEEE). De Ruiter encouraged the members to consider development of a series of Web fonts, which he proposed should be called the Scientific and Technical Information eXchange, or STIX, Fonts. All STI Pub member organizations enthusiastically endorsed this proposal, and the STI Pub group agreed to embark on what has become a twelve-year project. The goal of the project was to identify all alphabetic, symbolic, and other special characters used in any facet of scientific publishing and to create a set of Unicode-based fonts that would be distributed free to every scientist, student, and other interested party worldwide. The fonts would be consistent with the emerging Unicode standard, and would permit universal representation of every character. With the release of the STIX fonts, de Ruiter's vision has been realized.</string>
- <key>designer</key>
- <string>MicroPress Inc., with final additions and corrections provided by Coen Hoffman, Elsevier (retired)</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>STIXSizeTwoSym</string>
- <key>fullname</key>
- <string>STIXSizeTwoSym-Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>STIX Fonts(TM) is a trademark of The Institute of Electrical and Electronics Engineers, Inc.</string>
- <key>unique</key>
- <string>FontMaster:STIXSizeTwoSym-Bold:1.0.0</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.0.0</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Palatino</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Palatino</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Palatino-Roman</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright © 1991-99, 2006 Apple Computer, Inc. Copyright © 1991-92 Type Solutions, Inc. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Palatino</string>
- <key>fullname</key>
- <string>Palatino</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Palatino is a registered trademark of Linotype AG</string>
- <key>unique</key>
- <string>Palatino; 3.8; 2006-02-23</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>3.8</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Palatino-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright © 1991-99, 2006 Apple Computer, Inc. Copyright © 1991-92 Type Solutions, Inc. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Palatino</string>
- <key>fullname</key>
- <string>Palatino Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>Palatino is a registered trademark of Linotype AG</string>
- <key>unique</key>
- <string>Palatino Bold; 3.8; 2006-02-23</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>3.8</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Palatino-Italic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright © 1991-99, 2006 Apple Computer, Inc. Copyright © 1991-92 Type Solutions, Inc. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Palatino</string>
- <key>fullname</key>
- <string>Palatino Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Italic</string>
- <key>trademark</key>
- <string>Palatino is a registered trademark of Linotype AG</string>
- <key>unique</key>
- <string>Palatino Italic; 3.8; 2006-02-23</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>3.8</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Palatino-BoldItalic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright © 1991-99, 2006 Apple Computer, Inc. Copyright © 1991-92 Type Solutions, Inc. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Palatino</string>
- <key>fullname</key>
- <string>Palatino Bold Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold Italic</string>
- <key>trademark</key>
- <string>Palatino is a registered trademark of Linotype AG</string>
- <key>unique</key>
- <string>Palatino Bold Italic; 3.8; 2006-02-23</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>3.8</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Hoefler Text Ornaments.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Hoefler Text Ornaments.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>HoeflerText-Ornaments</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© Apple Inc., 1992-2007</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Hoefler Text</string>
- <key>fullname</key>
- <string>Hoefler Text Ornaments</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Ornaments</string>
- <key>unique</key>
- <string>Hoefler Text Ornaments; 7.0d1e2; 2011-04-27</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d1e2</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Chalkduster.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Chalkduster.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Chalkduster</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright 2008 Apple Computer, Inc.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Chalkduster</string>
- <key>fullname</key>
- <string>Chalkduster</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>unique</key>
- <string>Chalkduster; 7.0d6e1; 2011-04-22</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d6e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Times.dfont</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/System/Library/Fonts/Times.dfont</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Times-Roman</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 1990-99 Apple Computer Inc. © 1981 Linotype AG © 1990-91 Type Solutions Inc. © 1990-91 The Font Bureau Inc.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Times</string>
- <key>fullname</key>
- <string>Times Roman</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Times is a registered trademark of Linotype AG</string>
- <key>unique</key>
- <string>Times Roman; 7.0d1e1; 2010-08-17</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d1e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Times-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 1990-99 Apple Computer Inc. © 1981 Linotype AG © 1990-91 Type Solutions Inc. © 1990-91 The Font Bureau Inc.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Times</string>
- <key>fullname</key>
- <string>Times Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>Times is a registered trademark of Linotype AG</string>
- <key>unique</key>
- <string>Times Bold; 7.0d1e1; 2010-08-17</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d1e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Times-Italic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 1990-99 Apple Computer Inc. © 1981 Linotype AG © 1990-91 Type Solutions Inc. © 1990-91 The Font Bureau Inc.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Times</string>
- <key>fullname</key>
- <string>Times Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Italic</string>
- <key>trademark</key>
- <string>Times is a registered trademark of Linotype AG</string>
- <key>unique</key>
- <string>Times Italic; 7.0d1e1; 2010-08-17</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d1e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Times-BoldItalic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 1990-99 Apple Computer Inc. © 1981 Linotype AG © 1990-91 Type Solutions Inc. © 1990-91 The Font Bureau Inc.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Times</string>
- <key>fullname</key>
- <string>Times Bold Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold Italic</string>
- <key>trademark</key>
- <string>Times is a registered trademark of Linotype AG</string>
- <key>unique</key>
- <string>Times Bold Italic; 7.0d1e1; 2010-08-17</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d1e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Verdana Bold Italic.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Verdana Bold Italic.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Verdana-BoldItalic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 2008 Microsoft Corporation. All Rights Reserved.</string>
- <key>designer</key>
- <string>Matthew Carter</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Verdana</string>
- <key>fullname</key>
- <string>Verdana Bold Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold Italic</string>
- <key>trademark</key>
- <string>Verdana is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries.</string>
- <key>unique</key>
- <string>Microsoft:Verdana Bold Italic:Version 5.02 (Microsoft)</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 5.02</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MS Gothic.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/MS Gothic.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>MS-Gothic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>(C)2006 data:RICOH Co.,Ltd. typeface:RYOBI IMAGIX CO.</string>
- <key>description</key>
- <string>The default glyph shapes of this font are based on JIS2004. This font also provides access to a set of JIS90 legacy glyphs via 'jp90' OpenType layout table.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>MS Gothic</string>
- <key>fullname</key>
- <string>MS Gothic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>MS Gothic is a registered trademark of the Microsoft Corporation.</string>
- <key>unique</key>
- <string>Microsoft:MS Gothic:2006</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 5.02</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Garamond</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Garamond</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Garamond</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Digitized data copyright Monotype Typography, Ltd 1991-1995. All rights reserved. Monotype Garamond® is a trademark of Monotype Typography, Ltd which may be registered in certain jurisdictions.</string>
- <key>description</key>
- <string>Monotype Drawing Office 1922. This typeface is based on roman types cut by Jean Jannon in 1615. Jannon followed the designs of Claude Garamond which had been cut in the previous century. Garamond's types were, in turn, based on those used by Aldus Manutius in 1495 and cut by Francesco Griffo. The italic is based on types cut in France circa 1557 by Robert Granjon. Garamond is a beautiful typeface with an air of informality which looks good in a wide range of applications. It works particularly well in books and lengthy text settings.</string>
- <key>designer</key>
- <string>Claude Garamond</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Garamond</string>
- <key>fullname</key>
- <string>Garamond</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Monotype Garamond® is a trademark of Monotype Typography, Ltd which may be registered in certain jurisdictions.</string>
- <key>unique</key>
- <string>Monotype - Garamond Regular</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Monotype Typography, Inc.</string>
- <key>version</key>
- <string>Version 2.35</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Garamond-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Digitized data copyright Monotype Typography, Ltd 1991-1995. All rights reserved. Monotype Garamond® is a trademark of Monotype Typography, Ltd which may be registered in certain jurisdictions.</string>
- <key>description</key>
- <string>Monotype Drawing Office 1922. This typeface is based on roman types cut by Jean Jannon in 1615. Jannon followed the designs of Claude Garamond which had been cut in the previous century. Garamond's types were, in turn, based on those used by Aldus Manutius in 1495 and cut by Francesco Griffo. The italic is based on types cut in France circa 1557 by Robert Granjon. Garamond is a beautiful typeface with an air of informality which looks good in a wide range of applications. It works particularly well in books and lengthy text settings.</string>
- <key>designer</key>
- <string>Claude Garamond</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Garamond</string>
- <key>fullname</key>
- <string>Garamond Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>Monotype Garamond® is a trademark of Monotype Typography, Ltd which may be registered in certain jurisdictions.</string>
- <key>unique</key>
- <string>Monotype - Garamond Bold</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Monotype Typography, Inc.</string>
- <key>version</key>
- <string>Version 2.35</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Garamond-Italic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Digitized data copyright Monotype Typography, Ltd 1991-1995. All rights reserved. Monotype Garamond® is a trademark of Monotype Typography, Ltd which may be registered in certain jurisdictions.</string>
- <key>description</key>
- <string>Monotype Drawing Office 1922. This typeface is based on roman types cut by Jean Jannon in 1615. Jannon followed the designs of Claude Garamond which had been cut in the previous century. Garamond's types were, in turn, based on those used by Aldus Manutius in 1495 and cut by Francesco Griffo. The italic is based on types cut in France circa 1557 by Robert Granjon. Garamond is a beautiful typeface with an air of informality which looks good in a wide range of applications. It works particularly well in books and lengthy text settings.</string>
- <key>designer</key>
- <string>Claude Garamond</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Garamond</string>
- <key>fullname</key>
- <string>Garamond Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Italic</string>
- <key>trademark</key>
- <string>Monotype Garamond® is a trademark of Monotype Typography, Ltd which may be registered in certain jurisdictions.</string>
- <key>unique</key>
- <string>Monotype - Garamond Italic</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Monotype Typography, Inc.</string>
- <key>version</key>
- <string>Version 2.35</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Cambria Bold Italic.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Cambria Bold Italic.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Cambria-BoldItalic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 2009 Microsoft Corporation. All Rights Reserved.</string>
- <key>description</key>
- <string>Cambria has been designed for on-screen reading and to look good when printed at small sizes. It has very even spacing and proportions. Diagonal and vertical hairlines and serifs are relatively strong, while horizontal serifs are small and intend to emphasize stroke endings rather than stand out themselves. This principle is most noticeable in the italics where the lowercase characters are subdued in style to be at their best as elements of word-images. When Cambria is used for captions at sizes over 20 point, the inter-character spacing should be slightly reduced for best results. The design isn't just intended for business documents: The regular weight has been extended with a large set of math and science symbols. The Greek and Cyrillic has been designed under close supervision of an international team of experts, who aimed to set a historical new standard in multi-script type design.</string>
- <key>designer</key>
- <string>Monotype Imaging and Tiro Typeworks</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Cambria</string>
- <key>fullname</key>
- <string>Cambria Bold Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold Italic</string>
- <key>trademark</key>
- <string>Cambria is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries.</string>
- <key>unique</key>
- <string>Microsoft: Cambria Bold Italic: 2005</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Microsoft Corporation</string>
- <key>version</key>
- <string>Version 5.96</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ヒラギノ角ゴ Pro W3.otf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/ヒラギノ角ゴ Pro W3.otf</string>
- <key>type</key>
- <string>opentype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>HiraKakuPro-W3</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>ver7.11, Copyright (c) 1993-2002 Dainippon Screen Mfg. Co., Ltd. All Rights Reserved.</string>
- <key>designer</key>
- <string>JIYUKOBO Ltd.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Hiragino Kaku Gothic Pro</string>
- <key>fullname</key>
- <string>ヒラギノ角ゴ Pro W3</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>W3</string>
- <key>trademark</key>
- <string>Hiragino is a trademark of Dainippon Screen Mfg. Co., Ltd. registered in Japan.</string>
- <key>unique</key>
- <string>Dainippon Screen Mfg. Co., Ltd. Hiragino Kaku Gothic Pro W3</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Dainippon Screen Mfg. Co., Ltd.</string>
- <key>version</key>
- <string>7.11</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>STIXNonUniBolIta.otf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/STIXNonUniBolIta.otf</string>
- <key>type</key>
- <string>opentype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>STIXNonUnicode-BoldItalic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 2001-2010 by the STI Pub Companies, consisting of the American Chemical Society, the American Institute of Physics, the American Mathematical Society, the American Physical Society, Elsevier, Inc., and The Institute of Electrical and Electronic Engineers, Inc. Portions copyright (c) 1998-2003 by MicroPress, Inc. Portions copyright (c) 1990 by Elsevier, Inc. All rights reserved.</string>
- <key>description</key>
- <string>Arie de Ruiter, who in 1995 was Head of Information Technology Development at Elsevier Science, made a proposal to the STI Pub group, an informal group of publishers consisting of representatives from the American Chemical Society (ACS), American Institute of Physics (AIP), American Mathematical Society (AMS), American Physical Society (APS), Elsevier, and Institute of Electrical and Electronics Engineers (IEEE). De Ruiter encouraged the members to consider development of a series of Web fonts, which he proposed should be called the Scientific and Technical Information eXchange, or STIX, Fonts. All STI Pub member organizations enthusiastically endorsed this proposal, and the STI Pub group agreed to embark on what has become a twelve-year project. The goal of the project was to identify all alphabetic, symbolic, and other special characters used in any facet of scientific publishing and to create a set of Unicode-based fonts that would be distributed free to every scientist, student, and other interested party worldwide. The fonts would be consistent with the emerging Unicode standard, and would permit universal representation of every character. With the release of the STIX fonts, de Ruiter's vision has been realized.</string>
- <key>designer</key>
- <string>MicroPress Inc., with final additions and corrections provided by Coen Hoffman, Elsevier (retired)</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>STIXNonUnicode</string>
- <key>fullname</key>
- <string>STIXNonUnicode-BoldItalic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold Italic</string>
- <key>trademark</key>
- <string>STIX Fonts(TM) is a trademark of The Institute of Electrical and Electronics Engineers, Inc.</string>
- <key>unique</key>
- <string>FontMaster:STIXNonUnicode-BoldItalic:1.0.0</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.0.0</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>NewPeninimMTBoldInclined.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/NewPeninimMTBoldInclined.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>NewPeninimMT-BoldInclined</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Typeface © Monotype Typography ltd. Data © Monotype Typography ltd, Type Solutions Inc 1990-1993. All rights reserved..</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>New Peninim MT</string>
- <key>fullname</key>
- <string>New Peninim MT Bold Inclined</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold Inclined</string>
- <key>trademark</key>
- <string>Peninim ® is a Trademark of The Monotype Corporation registered in certain countries.</string>
- <key>unique</key>
- <string>New Peninim MT Bold Inclined; 6.0d2e1; 2006-10-23</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>6.0d2e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Gurmukhi MN.ttc</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Gurmukhi MN.ttc</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>GurmukhiMN</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 2003 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved.</string>
- <key>description</key>
- <string>Copyright (c) 2003 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved.</string>
- <key>designer</key>
- <string>Muthu Nedumaran</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Gurmukhi MN</string>
- <key>fullname</key>
- <string>Gurmukhi MN</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Gurmukhi MN is a trademark of Murasu Systems Sdn. Bhd. Malaysia.</string>
- <key>unique</key>
- <string>Gurmukhi MN; 7.0d2e1; 2010-11-05</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Murasu Systems Sdn. Bhd. Malaysia</string>
- <key>version</key>
- <string>7.0d2e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>GurmukhiMN-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 2003 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved.</string>
- <key>description</key>
- <string>Copyright (c) 2003 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved.</string>
- <key>designer</key>
- <string>Muthu Nedumaran</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Gurmukhi MN</string>
- <key>fullname</key>
- <string>Gurmukhi MN Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>Gurmukhi MN Bold is a trademark of Murasu Systems Sdn. Bhd. Malaysia.</string>
- <key>unique</key>
- <string>Gurmukhi MN Bold; 7.0d2e1; 2010-11-05</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Murasu Systems Sdn. Bhd. Malaysia</string>
- <key>version</key>
- <string>7.0d2e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Bangla MN.ttc</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Bangla MN.ttc</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>BanglaMN</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 2009 by Muthu Nedumaran. All rights reserved.</string>
- <key>description</key>
- <string>Copyright (c) 2009 by Muthu Nedumaran. All rights reserved.</string>
- <key>designer</key>
- <string>Muthu Nedumaran</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Bangla MN</string>
- <key>fullname</key>
- <string>Bangla MN</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Bangla MN is a trademark of Muthu Nedumaran.</string>
- <key>unique</key>
- <string>Bangla MN; 7.0d4e1; 2010-11-04</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Muthu Nedumaran</string>
- <key>version</key>
- <string>7.0d4e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>BanglaMN-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 2009 by Muthu Nedumaran. All rights reserved.</string>
- <key>description</key>
- <string>Copyright (c) 2009 by Muthu Nedumaran. All rights reserved.</string>
- <key>designer</key>
- <string>Muthu Nedumaran</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Bangla MN</string>
- <key>fullname</key>
- <string>Bangla MN Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>Bangla MN Bold is a trademark of Muthu Nedumaran.</string>
- <key>unique</key>
- <string>Bangla MN Bold; 7.0d4e1; 2010-11-04</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Muthu Nedumaran</string>
- <key>version</key>
- <string>7.0d4e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Menlo.ttc</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/System/Library/Fonts/Menlo.ttc</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Menlo-Regular</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright © 2009 Apple Inc. Copyright © 2006 by Tavmjong Bah. Copyright © 2003 by Bitstream, Inc. All Rights Reserved.</string>
- <key>description</key>
- <string>Menlo is based upon the Open Source font Bitstream Vera and the public domain font Deja Vu. Bitstream Vera is a trademark of Bitstream, Inc., designed by Jim Lyles.</string>
- <key>designer</key>
- <string>Jim Lyles</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Menlo</string>
- <key>fullname</key>
- <string>Menlo Regular</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Menlo is a Trademark of Apple Inc.</string>
- <key>unique</key>
- <string>Menlo Regular; 6.1d8e1; 2010-08-10</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Bitstream</string>
- <key>version</key>
- <string>6.1d8e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Menlo-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright © 2009 Apple Inc. Copyright © 2006 by Tavmjong Bah. Copyright © 2003 by Bitstream, Inc. All Rights Reserved.</string>
- <key>description</key>
- <string>Menlo is based upon the Open Source font Bitstream Vera and the public domain font Deja Vu. Bitstream Vera is a trademark of Bitstream, Inc., designed by Jim Lyles.</string>
- <key>designer</key>
- <string>Jim Lyles</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Menlo</string>
- <key>fullname</key>
- <string>Menlo Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>Menlo is a Trademark of Apple Inc.</string>
- <key>unique</key>
- <string>Menlo Bold; 6.1d8e1; 2010-08-10</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Bitstream</string>
- <key>version</key>
- <string>6.1d8e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Menlo-Italic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright © 2009 Apple Inc. Copyright © 2006 by Tavmjong Bah. Copyright © 2003 by Bitstream, Inc. All Rights Reserved.</string>
- <key>description</key>
- <string>Menlo is based upon the Open Source font Bitstream Vera and the public domain font Deja Vu. Bitstream Vera is a trademark of Bitstream, Inc., designed by Jim Lyles.</string>
- <key>designer</key>
- <string>Jim Lyles</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Menlo</string>
- <key>fullname</key>
- <string>Menlo Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Italic</string>
- <key>trademark</key>
- <string>Menlo is a Trademark of Apple Inc.</string>
- <key>unique</key>
- <string>Menlo Italic; 6.1d8e1; 2010-08-10</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Bitstream</string>
- <key>version</key>
- <string>6.1d8e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Menlo-BoldItalic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright © 2009 Apple Inc. Copyright © 2006 by Tavmjong Bah. Copyright © 2003 by Bitstream, Inc. All Rights Reserved.</string>
- <key>description</key>
- <string>Menlo is based upon the Open Source font Bitstream Vera and the public domain font Deja Vu. Bitstream Vera is a trademark of Bitstream, Inc., designed by Jim Lyles.</string>
- <key>designer</key>
- <string>Jim Lyles</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Menlo</string>
- <key>fullname</key>
- <string>Menlo Bold Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold Italic</string>
- <key>trademark</key>
- <string>Menlo is a Trademark of Apple Inc.</string>
- <key>unique</key>
- <string>Menlo Bold Italic; 6.1d8e1; 2010-08-10</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Bitstream</string>
- <key>version</key>
- <string>6.1d8e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Times New Roman Bold Italic.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Times New Roman Bold Italic.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>TimesNewRomanPS-BoldItalicMT</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 2008 The Monotype Corporation. All Rights Reserved.</string>
- <key>designer</key>
- <string>Monotype Type Drawing Office - Stanley Morison, Victor Lardent 1932</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Times New Roman</string>
- <key>fullname</key>
- <string>Times New Roman Bold Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold Italic</string>
- <key>trademark</key>
- <string>Times New Roman is a trademark of The Monotype Corporation in the United States and/or other countries.</string>
- <key>unique</key>
- <string>Monotype:Times New Roman Bold Italic:Version 5.05 (Microsoft)</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>The Monotype Corporation</string>
- <key>version</key>
- <string>Version 5.05</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MingLiU-ExtB.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/MingLiU-ExtB.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>MingLiU-ExtB</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>(c) Copyright DynaComware Corp. 2008</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>MingLiU-ExtB</string>
- <key>fullname</key>
- <string>MingLiU-ExtB</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Trademark by DynaComware Corp.</string>
- <key>unique</key>
- <string>MingLiU-ExtB</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 7.00</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Edwardian Script ITC</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Edwardian Script ITC</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>EdwardianScriptITC</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) International Typeface Corporation 1997. Portions Copyright (c) Microsoft Corporation 1997. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Edwardian Script ITC</string>
- <key>fullname</key>
- <string>Edwardian Script ITC</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>ITC Edwardian Script is a Trademark of International Typeface Corporation.</string>
- <key>unique</key>
- <string>Edwardian Script ITC</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.15</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Bookshelf Symbol 7.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Bookshelf Symbol 7.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>BookshelfSymbolSeven</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>(C)2003 data:RICOH Co.,Ltd. typeface:RICOH Co.,Ltd.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Bookshelf Symbol 7</string>
- <key>fullname</key>
- <string>Bookshelf Symbol 7</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Bookshelf Symbol 7 is a typeface name of RICOH Co.,Ltd.</string>
- <key>unique</key>
- <string>RICOH TrueType Font:Bookshelf Symbol 7:2003</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.03</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Webdings.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Webdings.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Webdings</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 2006 Microsoft Corporation. All Rights Reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Webdings</string>
- <key>fullname</key>
- <string>Webdings</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Webdings is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries.</string>
- <key>unique</key>
- <string>Microsoft Webdings</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 5.00x</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>STIXIntSmReg.otf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/STIXIntSmReg.otf</string>
- <key>type</key>
- <string>opentype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>STIXIntegralsSm-Regular</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 2001-2010 by the STI Pub Companies, consisting of the American Chemical Society, the American Institute of Physics, the American Mathematical Society, the American Physical Society, Elsevier, Inc., and The Institute of Electrical and Electronic Engineers, Inc. Portions copyright (c) 1998-2003 by MicroPress, Inc. Portions copyright (c) 1990 by Elsevier, Inc. All rights reserved.</string>
- <key>description</key>
- <string>Arie de Ruiter, who in 1995 was Head of Information Technology Development at Elsevier Science, made a proposal to the STI Pub group, an informal group of publishers consisting of representatives from the American Chemical Society (ACS), American Institute of Physics (AIP), American Mathematical Society (AMS), American Physical Society (APS), Elsevier, and Institute of Electrical and Electronics Engineers (IEEE). De Ruiter encouraged the members to consider development of a series of Web fonts, which he proposed should be called the Scientific and Technical Information eXchange, or STIX, Fonts. All STI Pub member organizations enthusiastically endorsed this proposal, and the STI Pub group agreed to embark on what has become a twelve-year project. The goal of the project was to identify all alphabetic, symbolic, and other special characters used in any facet of scientific publishing and to create a set of Unicode-based fonts that would be distributed free to every scientist, student, and other interested party worldwide. The fonts would be consistent with the emerging Unicode standard, and would permit universal representation of every character. With the release of the STIX fonts, de Ruiter's vision has been realized.</string>
- <key>designer</key>
- <string>MicroPress Inc., with final additions and corrections provided by Coen Hoffman, Elsevier (retired)</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>STIXIntegralsSm</string>
- <key>fullname</key>
- <string>STIXIntegralsSm-Regular</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>STIX Fonts(TM) is a trademark of The Institute of Electrical and Electronics Engineers, Inc.</string>
- <key>unique</key>
- <string>FontMaster:STIXIntegralsSm-Regular:1.0.0</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.0.0</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MshtakanRegular.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/MshtakanRegular.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Mshtakan</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Mshtakan 1.1 © 2002-2003 Michael Everson. All Rights Reserved.</string>
- <key>designer</key>
- <string>Michael Everson</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Mshtakan</string>
- <key>fullname</key>
- <string>Mshtakan</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Mshtakan is a trademark of Michael Everson.</string>
- <key>unique</key>
- <string>Mshtakan; 6.0d2e1; 2006-10-20</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Michael Everson</string>
- <key>version</key>
- <string>6.0d2e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Georgia Bold Italic.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Georgia Bold Italic.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Georgia-BoldItalic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 2006 Microsoft Corporation. All Rights Reserved.</string>
- <key>designer</key>
- <string>Matthew Carter</string>
- <key>duplicate</key>
- <string>yes</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Georgia</string>
- <key>fullname</key>
- <string>Georgia Bold Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold Italic</string>
- <key>trademark</key>
- <string>Georgia is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries.</string>
- <key>unique</key>
- <string>Microsoft Georgia Bold Italic</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Carter &amp; Cone</string>
- <key>version</key>
- <string>Version 5.00x</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Arial Narrow Italic.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Arial Narrow Italic.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>ArialNarrow-Italic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 2007 The Monotype Corporation. All Rights Reserved.</string>
- <key>description</key>
- <string>Monotype Drawing Office 1982. A contemporary sans serif design, Arial contains more humanist characteristics than many of its predecessors and as such is more in tune with the mood of the last decades of the twentieth century. The overall treatment of curves is softer and fuller than in most industrial-style sans serif faces. Terminal strokes are cut on the diagonal which helps to give the face a less mechanical appearance. Arial is an extremely versatile family of typefaces which can be used with equal success for text setting in reports, presentations, magazines etc, and for display use in newspapers, advertising and promotions.</string>
- <key>designer</key>
- <string>Robin Nicholas, Patricia Saunders</string>
- <key>duplicate</key>
- <string>yes</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Arial Narrow</string>
- <key>fullname</key>
- <string>Arial Narrow Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Italic</string>
- <key>trademark</key>
- <string>Arial is a trademark of The Monotype Corporation in the United States and/or other countries.</string>
- <key>unique</key>
- <string>Arial Narrow Italic : 2007</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>The Monotype Corporation</string>
- <key>version</key>
- <string>Version 2.38.1x</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Helvetica LT MM</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/System/Library/Fonts/Helvetica LT MM</string>
- <key>type</key>
- <string>postscript</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>HelveticaLTMM</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Part of the digitally encoded machine readable outline data for producing the Typefaces provided is copyrighted (c) 1988, 1990, 1991, 2002-2004 Linotype Library GmbH, www.linotype.com. All rights reserved. This software is the property of Linotype Library GmbH, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Linotype Library GmbH. Copyright (c) 1988, 1990, 1991 Adobe Systems Incorporated. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>.Helvetica LT MM</string>
- <key>fullname</key>
- <string>.Helvetica LT MM</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Helvetica is a trademark of Heidelberger Druckmaschinen AG which may be registered in certain jurisdictions, exclusively licensed through Linotype Library GmbH, a whplly owned subsidiary of Heidelberger Druckmaschinen AG.</string>
- <key>unique</key>
- <string>.Helvetica LT MM</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>001.006</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Rockwell</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Rockwell</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Rockwell</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Digitized data copyright (C) 1992 - 1997 The Monotype Corporation. Rockwell® is a trademark of The Monotype Corporation which may be registered in certain jurisdictions. Portions copyright Microsoft Corporation. All rights reserved.</string>
- <key>description</key>
- <string>Rockwell is a distinctive version of a geometric slab serif design, which has retained its popularity since its appearance in the 1930's. The slab serifs, or Egyptians, originated in the nineteenth century when they were used principally for display work. Rockwell is notable for its judiciously clipped slab serifs, and is given a particular sparkle by means of its angular terminals. In more recent years this style of typeface has been increasingly used for text setting where their even colour and visual impact can be fully exploited.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Rockwell</string>
- <key>fullname</key>
- <string>Rockwell</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Rockwell® is a trademark of The Monotype Corporation which may be registered in certain jurisdictions.</string>
- <key>unique</key>
- <string>Rockwell</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Monotype Typography</string>
- <key>version</key>
- <string>Version 1.65</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Rockwell-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Digitized data copyright (C) 1992 - 1997 The Monotype Corporation. Rockwell® is a trademark of The Monotype Corporation which may be registered in certain jurisdictions. Portions copyright Microsoft corporation. All rights reserved.</string>
- <key>description</key>
- <string>Rockwell is a distinctive version of a geometric slab serif design, which has retained its popularity since its appearance in the 1930's. The slab serifs, or Egyptians, originated in the nineteenth century when they were used principally for display work. Rockwell is notable for its judiciously clipped slab serifs, and is given a particular sparkle by means of its angular terminals. In more recent years this style of typeface has been increasingly used for text setting where their even colour and visual impact can be fully exploited.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Rockwell</string>
- <key>fullname</key>
- <string>Rockwell Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>Rockwell® is a trademark of The Monotype Corporation which may be registered in certain jurisdictions.</string>
- <key>unique</key>
- <string>Rockwell Bold</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Monotype Typography</string>
- <key>version</key>
- <string>Version 1.65</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Rockwell-Italic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Digitized data copyright (C) 1992 - 1997 The Monotype Corporation. Portions copyright Microsoft corporation. All rights reserved.</string>
- <key>description</key>
- <string>Rockwell is a distinctive version of a geometric slab serif design, which has retained its popularity since its appearance in the 1930's. The slab serifs, or Egyptians, originated in the nineteenth century when they were used principally for display work. Rockwell is notable for its judiciously clipped slab serifs, and is given a particular sparkle by means of its angular terminals. In more recent years this style of typeface has been increasingly used for text setting where their even colour and visual impact can be fully exploited.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Rockwell</string>
- <key>fullname</key>
- <string>Rockwell Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Italic</string>
- <key>trademark</key>
- <string>Rockwell® is a trademark of The Monotype Corporation which may be registered in certain jurisdiction.</string>
- <key>unique</key>
- <string>Rockwell Italic</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Monotype Typography</string>
- <key>version</key>
- <string>Version 1.65</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Rockwell-BoldItalic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Digitized data copyright The Monotype Corporation 1991-1995. All rights reserved. Rockwell® is a trademark of The Monotype Corporation which may be registered in certain jurisdictions.</string>
- <key>description</key>
- <string>Rockwell is a distinctive version of a geometric slab serif design, which has retained its popularity since its appearance in the 1930's. The slab serifs, or Egyptians, originated in the nineteenth century when they were used principally for display work. Rockwell is notable for its judiciously clipped slab serifs, and is given a particular sparkle by means of its angular terminals. In more recent years this style of typeface has been increasingly used for text setting where their even colour and visual impact can be fully exploited.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Rockwell</string>
- <key>fullname</key>
- <string>Rockwell Bold Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold Italic</string>
- <key>trademark</key>
- <string>Rockwell® is a trademark of The Monotype Corporation which may be registered in certain jurisdictions.</string>
- <key>unique</key>
- <string>Monotype - Rockwell Bold Italic</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Monotype Typography</string>
- <key>version</key>
- <string>Version 1.65</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Lucida Sans</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Lucida Sans</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>LucidaSans</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 1991 Bigelow &amp; Holmes Inc. Pat. Des. 289,420. All Rights Reserved. © 1990-1991 Type Solutions, Inc. All Rights Reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Lucida Sans</string>
- <key>fullname</key>
- <string>Lucida Sans Regular</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Lucida® is a registered trademark of Bigelow &amp; Holmes Inc.</string>
- <key>unique</key>
- <string>Lucida Sans Regular: B&amp;H: 1991</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.69</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>LucidaSans-Demi</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 1991 Bigelow &amp; Holmes Inc. All Rights Reserved. © 1990-1991 Type Solutions, Inc. All Rights Reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Lucida Sans</string>
- <key>fullname</key>
- <string>Lucida Sans Demibold Roman</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Demibold Roman</string>
- <key>trademark</key>
- <string>Lucida® is a registered trademark of Bigelow &amp; Holmes Inc.</string>
- <key>unique</key>
- <string>Lucida Sans Demibold Roman: B&amp;H: 1991</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.69</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>LucidaSans-Italic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 1991 Bigelow &amp; Holmes Inc. All Rights Reserved. © 1990-1991 Type Solutions, Inc. All Rights Reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Lucida Sans</string>
- <key>fullname</key>
- <string>Lucida Sans Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Italic</string>
- <key>trademark</key>
- <string>Lucida® is a registered trademark of Bigelow &amp; Holmes Inc.</string>
- <key>unique</key>
- <string>Lucida Sans Italic: B&amp;H: 1991</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.69</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>LucidaSans-DemiItalic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 1991 by Bigelow &amp; Holmes Inc. All Rights Reserved. © 1990-1991 Type Solutions, Inc. All Rights Reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Lucida Sans</string>
- <key>fullname</key>
- <string>Lucida Sans Demibold Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Demibold Italic</string>
- <key>trademark</key>
- <string>Lucida® is a registered trademark of Bigelow &amp; Holmes Inc.</string>
- <key>unique</key>
- <string>Lucida Sans Demibold Italic: B&amp;H: 1991</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.69</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Cooper Black</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Cooper Black</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>CooperBlackMS</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Data copyright © URW Software &amp; Type GmbH., additional data copyright The Monotype Corporation. Copyright 1994 Microsoft Corporation. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Cooper Black</string>
- <key>fullname</key>
- <string>Cooper Black</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>unique</key>
- <string>Cooper Black</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.52</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Arial Rounded Bold</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Arial Rounded Bold</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>ArialRoundedMTBold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright © 1993 , Monotype Typography ltd.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Arial Rounded MT Bold</string>
- <key>fullname</key>
- <string>Arial Rounded MT Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Arial ® Trademark of Monotype Typography ltd registered in the US Pat &amp; TM.and elsewhere.</string>
- <key>unique</key>
- <string>Arial Rounded MT Bold</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.51</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Sinhala Sangam MN.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Sinhala Sangam MN.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>SinhalaSangamMN</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 2004 by Muthu Nedumaran. All rights reserved.</string>
- <key>description</key>
- <string>Copyright (c) 2004 by Muthu Nedumaran. All rights reserved.</string>
- <key>designer</key>
- <string>Muthu Nedumaran</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Sinhala Sangam MN</string>
- <key>fullname</key>
- <string>Sinhala Sangam MN</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Sinhala Sangam MN is a trademark of Muthu Nedumaran.</string>
- <key>unique</key>
- <string>Sinhala Sangam MN; 7.05e1; 2010-11-05</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Muthu Nedumaran</string>
- <key>version</key>
- <string>7.05e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>KufiStandardGK.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/KufiStandardGK.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>KufiStandardGK</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Kufi designed by Diwan Software Ltd. Copyright Apple Computer, Inc. and its
-licensors, 1992-1998 all rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>KufiStandardGK</string>
- <key>fullname</key>
- <string>KufiStandardGK</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>unique</key>
- <string>KufiStandardGK; 7.0d1e1; 2010-12-14</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d1e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Damascus.ttc</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Damascus.ttc</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Damascus</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Diwan Software Ltd. 1987-2009 all rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Damascus</string>
- <key>fullname</key>
- <string>Damascus</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>unique</key>
- <string>Damascus; 7.0d2e1; 2011-04-09</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d2e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>DamascusBold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Diwan Software Ltd. 1987-2009 all rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Damascus</string>
- <key>fullname</key>
- <string>Damascus Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>unique</key>
- <string>Damascus Bold; 7.0d2e1; 2011-04-09</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d2e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple LiSung Light.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Apple LiSung Light.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>LiSungLight</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Apple Computer, Inc. 1992-1998</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Apple LiSung</string>
- <key>fullname</key>
- <string>Apple LiSung Light</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Light</string>
- <key>unique</key>
- <string>Apple LiSung Light; 6.1d1e2; 2008-08-18</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>6.1d1e2</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Color Emoji.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/System/Library/Fonts/Apple Color Emoji.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>AppleColorEmoji</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Apple Color Emoji</string>
- <key>fullname</key>
- <string>Apple Color Emoji</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>unique</key>
- <string>Apple Color Emoji; 8.0d7e1; 2012-05-11</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>8.0d7e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Palatino Linotype.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Palatino Linotype.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>PalatinoLinotype-Roman</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright 1981-1983, 1989,1993, 1998 Heidelberger Druckmaschinen AG. All rights reserved. The digitally encoded machine readable outline data for producing the Typefaces licensed are the property of Heidelberger Druckmaschinen AG and/or its subsidiaries, represented by Linotype Library GmbH, Dupont Strasse 1, 61352 Bad Homburg Germany. Portions © 1996-1998 Microsoft Corporation. All Rights Reserved. </string>
- <key>description</key>
- <string>Palatino Linotype is the definitive new version of Hermann Zapf’s Palatino, which since its design in 1950 has become one of the world's most widely used typefaces. For this new digital version, Professor Zapf has drawn numerous additional characters to include an extensive range of ligatures, numerals, fractions and support for Cyrillic and both monotonic and polytonic Greek. Special care has been taken to enhance the quality of the letterforms when displayed on the computer screen, ensuring that Palatino Linotype is highly legible whether displayed on the screen or in print. This typeface is ideal for use in extended text settings such as books, periodicals and catalogs.</string>
- <key>designer</key>
- <string>Hermann Zapf</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Palatino Linotype</string>
- <key>fullname</key>
- <string>Palatino Linotype</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Palatino® is a registered trademark of Heidelberger Druckmaschinen AG and its subsidiaries.</string>
- <key>unique</key>
- <string>Palatino Linotype Regular April 1998</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>LINOTYPE-HELL AG</string>
- <key>version</key>
- <string>Version 5.00</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Impact</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Impact</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Impact</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Digitized data copyright (C) 1991-1996 The Monotype Corporation. All rights reserved. Impact is a trademark of Stephenson Blake (Holdings) Ltd.</string>
- <key>description</key>
- <string>1965. Designed for the Stephenson Blake type foundry. A very heavy, narrow, sans serif face intended for use in newspapers, for headlines and in advertisements. Aptly named, this face has a very large "x" height with short ascenders and descenders.</string>
- <key>designer</key>
- <string>Geoffrey Lee</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Impact</string>
- <key>fullname</key>
- <string>Impact</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Impact is a trademark of Stephenson Blake (Holdings) Ltd.</string>
- <key>unique</key>
- <string>Impact - 1992</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Monotype Typography, Inc.</string>
- <key>version</key>
- <string>Version 2.35</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Comic Sans MS</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Comic Sans MS</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>ComicSansMS</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 1995 Microsoft Corporation. All rights reserved.</string>
- <key>description</key>
- <string>Designed by Microsoft's Vincent Connare, this is a face based on the lettering from comic magazines. This casual but legible face has proved very popular with a wide variety of people.</string>
- <key>designer</key>
- <string>Vincent Connare</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Comic Sans MS</string>
- <key>fullname</key>
- <string>Comic Sans MS</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Comic Sans is a trademark of Microsoft Corporation.</string>
- <key>unique</key>
- <string>Microsoft Comic Sans</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Microsoft Corp.</string>
- <key>version</key>
- <string>Version 2.10</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ComicSansMS-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 1995 Microsoft Corporation. All rights reserved.</string>
- <key>description</key>
- <string>Designed by Microsoft's Vincent Connare, this is a face based on the lettering from comic magazines. This casual but legible face has proved very popular with a wide variety of people.</string>
- <key>designer</key>
- <string>Vincent Connare</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Comic Sans MS</string>
- <key>fullname</key>
- <string>Comic Sans MS Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>Comic Sans is a trademark of Microsoft Corporation.</string>
- <key>unique</key>
- <string>Microsoft Comic Sans Bold</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Microsoft Corp.</string>
- <key>version</key>
- <string>Version 2.10</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Tahoma Bold.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Tahoma Bold.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Tahoma-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 2006 Microsoft Corporation. All rights reserved.</string>
- <key>designer</key>
- <string>Matthew Carter</string>
- <key>duplicate</key>
- <string>yes</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Tahoma</string>
- <key>fullname</key>
- <string>Tahoma Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>Tahoma is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries.</string>
- <key>unique</key>
- <string>Microsoft Tahoma Bold</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Microsoft Corporation</string>
- <key>version</key>
- <string>Version 5.01.1x</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Pilgiche.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Pilgiche.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>JCfg</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 1994-2001 Apple Computer, Inc. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>PilGi</string>
- <key>fullname</key>
- <string>PilGi Regular</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Pilgiche is a trademark of Apple Computer, Inc.</string>
- <key>unique</key>
- <string>PilGi Regular; 6.1d5e1; 2008-08-21</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>6.1d5e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Kai.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Kai.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>SIL-Kai-Reg-Jian</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>˝Copyright Shanghai Ikarus Ltd. 1993 1994 1995</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Kai</string>
- <key>fullname</key>
- <string>Kai Regular</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Shanghai Ikarus Ltd./URW Software &amp; Type GmbH</string>
- <key>unique</key>
- <string>Kai Regular; 6.1d1e1; 2008-08-18</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>6.1d1e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Comic Sans MS.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Comic Sans MS.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>ComicSansMS</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 2006 Microsoft Corporation. All rights reserved.</string>
- <key>description</key>
- <string>Designed by Microsoft's Vincent Connare, this is a face based on the lettering from comic magazines. This casual but legible face has proved very popular with a wide variety of people.</string>
- <key>designer</key>
- <string>Vincent Connare</string>
- <key>duplicate</key>
- <string>yes</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Comic Sans MS</string>
- <key>fullname</key>
- <string>Comic Sans MS</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>unique</key>
- <string>Microsoft Comic Sans</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Microsoft Corporation</string>
- <key>version</key>
- <string>Version 5.00x</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ヒラギノ角ゴ ProN W3.otf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/System/Library/Fonts/ヒラギノ角ゴ ProN W3.otf</string>
- <key>type</key>
- <string>opentype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>HiraKakuProN-W3</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>ver8.10, Copyright (c) 1993-2010 Dainippon Screen Mfg. Co., Ltd. All Rights Reserved.</string>
- <key>designer</key>
- <string>JIYUKOBO Ltd.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Hiragino Kaku Gothic ProN</string>
- <key>fullname</key>
- <string>ヒラギノ角ゴ ProN W3</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>W3</string>
- <key>trademark</key>
- <string>Hiragino is a trademark of Dainippon Screen Mfg. Co., Ltd.</string>
- <key>unique</key>
- <string>8.10;Dainippon Screen Mfg. Co., Ltd.;Hiragino Kaku Gothic ProN W3</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Dainippon Screen Mfg. Co., Ltd.</string>
- <key>version</key>
- <string>Version 8.10</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Wide Latin</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Wide Latin</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>LatinWide</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Typeface © 1992 Stphenson Blake (Holdings) Ltd. Data © 1992 URW. Portions © 1992 Microsoft Corp. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Wide Latin</string>
- <key>fullname</key>
- <string>Wide Latin</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Wide Lating ® Trademark of Stephenson Blake (Holdings) Ltd.</string>
- <key>unique</key>
- <string>Wide Latin</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.51</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MS Reference Sans Serif.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/MS Reference Sans Serif.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>MSReferenceSansSerif</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Typeface and data © 1996 Microsoft Corporation. All Rights Reserved.</string>
- <key>designer</key>
- <string>Matthew Carter</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>MS Reference Sans Serif</string>
- <key>fullname</key>
- <string>MS Reference Sans Serif</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>MS Reference Sans Serif is a trademark of Microsoft Corporation.</string>
- <key>unique</key>
- <string>Microsoft - MS Reference Sans Serif</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Microsoft Corp.</string>
- <key>version</key>
- <string>Version 2.00</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Gill Sans MT Italic.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Gill Sans MT Italic.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>GillSansMT-Italic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Digitized data copyright The Monotype Corporation 1991-1995. All rights reserved. Gill Sans® is a trademark of The Monotype Corporation which may be registered in certain jurisdictions.</string>
- <key>description</key>
- <string>Monotype Type Drawing Office 1928. Gill studied under the renowned calligrapher, Edward Johnston, the designer of the London Underground sans serif typeface. This influenced Gill who later experimented with sans serif designs, and in due course produced a set of capital letters. These became Monotype series 231, produced in 1923, and the forerunner of the extensive Gill Sans range now available. A twentieth century sans serif that has a simplicity of form which does not reject traditional forms and proportions, and gives the face a humanist feel. The lighter weights are highly readable in text and suitable for magazine and book work, whereas the heavier weights are best used for display in advertising, packaging, and labels.</string>
- <key>designer</key>
- <string>Eric Gill</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Gill Sans MT</string>
- <key>fullname</key>
- <string>Gill Sans MT Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Italic</string>
- <key>trademark</key>
- <string>Gill Sans® is a trademark of The Monotype Corporation which may be registered in certain jurisdictions.</string>
- <key>unique</key>
- <string>Monotype - Gill Sans MT Italic</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Monotype Typography</string>
- <key>version</key>
- <string>Version 1.65</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Cambria.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Cambria.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Cambria</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 2009 Microsoft Corporation. All Rights Reserved.</string>
- <key>description</key>
- <string>Cambria has been designed for on-screen reading and to look good when printed at small sizes. It has very even spacing and proportions. Diagonal and vertical hairlines and serifs are relatively strong, while horizontal serifs are small and intend to emphasize stroke endings rather than stand out themselves. This principle is most noticeable in the italics where the lowercase characters are subdued in style to be at their best as elements of word-images. When Cambria is used for captions at sizes over 20 point, the inter-character spacing should be slightly reduced for best results. The design isn't just intended for business documents: The regular weight has been extended with a large set of math and science symbols. The Greek and Cyrillic has been designed under close supervision of an international team of experts, who aimed to set a historical new standard in multi-script type design.</string>
- <key>designer</key>
- <string>Monotype Imaging and Tiro Typeworks</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Cambria</string>
- <key>fullname</key>
- <string>Cambria</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Cambria is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries.</string>
- <key>unique</key>
- <string>Microsoft: Cambria: 2006</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Microsoft Corporation</string>
- <key>version</key>
- <string>Version 5.97</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>儷宋 Pro.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/儷宋 Pro.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>LiSongPro</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>(c) Copyright DynaComware Corp. 2003</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>LiSong Pro</string>
- <key>fullname</key>
- <string>LiSong Pro</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Light</string>
- <key>trademark</key>
- <string>Trademark by DynaComware Corp.</string>
- <key>unique</key>
- <string>LiSong Pro; 6.0d4e1; 2007-04-06</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>6.0d4e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>STIXSizFourSymReg.otf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/STIXSizFourSymReg.otf</string>
- <key>type</key>
- <string>opentype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>STIXSizeFourSym-Regular</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 2001-2010 by the STI Pub Companies, consisting of the American Chemical Society, the American Institute of Physics, the American Mathematical Society, the American Physical Society, Elsevier, Inc., and The Institute of Electrical and Electronic Engineers, Inc. Portions copyright (c) 1998-2003 by MicroPress, Inc. Portions copyright (c) 1990 by Elsevier, Inc. All rights reserved.</string>
- <key>description</key>
- <string>Arie de Ruiter, who in 1995 was Head of Information Technology Development at Elsevier Science, made a proposal to the STI Pub group, an informal group of publishers consisting of representatives from the American Chemical Society (ACS), American Institute of Physics (AIP), American Mathematical Society (AMS), American Physical Society (APS), Elsevier, and Institute of Electrical and Electronics Engineers (IEEE). De Ruiter encouraged the members to consider development of a series of Web fonts, which he proposed should be called the Scientific and Technical Information eXchange, or STIX, Fonts. All STI Pub member organizations enthusiastically endorsed this proposal, and the STI Pub group agreed to embark on what has become a twelve-year project. The goal of the project was to identify all alphabetic, symbolic, and other special characters used in any facet of scientific publishing and to create a set of Unicode-based fonts that would be distributed free to every scientist, student, and other interested party worldwide. The fonts would be consistent with the emerging Unicode standard, and would permit universal representation of every character. With the release of the STIX fonts, de Ruiter's vision has been realized.</string>
- <key>designer</key>
- <string>MicroPress Inc., with final additions and corrections provided by Coen Hoffman, Elsevier (retired)</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>STIXSizeFourSym</string>
- <key>fullname</key>
- <string>STIXSizeFourSym-Regular</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>STIX Fonts(TM) is a trademark of The Institute of Electrical and Electronics Engineers, Inc.</string>
- <key>unique</key>
- <string>FontMaster:STIXSizeFourSym-Regular:1.0.0</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.0.0</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Optima.ttc</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Optima.ttc</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Optima-Regular</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 1981, 1982, 1983, 1989 and 1993, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved.
-
-The digitally encoded machine readable software for producing the Typefaces licensed to you is now the property of Heidelberger Druckmaschinen AG and its licensors, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG.
-
-Copyright (c) 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved.</string>
- <key>description</key>
- <string>The digitally encoded machine readable software for producing the Typefaces licensed to you is copyrighted (c) 2000, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved. This software is now the property of Heidelberger Druckmaschinen AG and its licensors and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Optima</string>
- <key>fullname</key>
- <string>Optima Regular</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Optima is a trademark of Heidelberger Druckmaschinen AG, which may be registered in certain jurisdictions, exclusivly licensed through Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG.</string>
- <key>unique</key>
- <string>Optima Regular; 6.1d4e1; 2010-09-08</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>6.1d4e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Optima-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 1981, 1982, 1983, 1989 and 1993, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved.
-
-The digitally encoded machine readable software for producing the Typefaces licensed to you is now the property of Heidelberger Druckmaschinen AG and its licensors, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG.
-
-Copyright (c) 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved.</string>
- <key>description</key>
- <string>The digitally encoded machine readable software for producing the Typefaces licensed to you is copyrighted (c) 2000, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved. This software is now the property of Heidelberger Druckmaschinen AG and its licensors and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Optima</string>
- <key>fullname</key>
- <string>Optima Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>Optima is a trademark of Heidelberger Druckmaschinen AG, which may be registered in certain jurisdictions, exclusivly licensed through Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG.</string>
- <key>unique</key>
- <string>Optima Bold; 6.1d4e1; 2010-09-08</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>6.1d4e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Optima-Italic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 1981, 1982, 1983, 1989 and 1993, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved.
-
-The digitally encoded machine readable software for producing the Typefaces licensed to you is now the property of Heidelberger Druckmaschinen AG and its licensors, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG.
-
-Copyright (c) 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved.</string>
- <key>description</key>
- <string>The digitally encoded machine readable software for producing the Typefaces licensed to you is copyrighted (c) 2000, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved. This software is now the property of Heidelberger Druckmaschinen AG and its licensors and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Optima</string>
- <key>fullname</key>
- <string>Optima Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Italic</string>
- <key>trademark</key>
- <string>Optima is a trademark of Heidelberger Druckmaschinen AG, which may be registered in certain jurisdictions, exclusivly licensed through Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG.</string>
- <key>unique</key>
- <string>Optima Italic; 6.1d4e1; 2010-09-08</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>6.1d4e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Optima-BoldItalic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 1981, 1982, 1983, 1989 and 1993, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved.
-
-The digitally encoded machine readable software for producing the Typefaces licensed to you is now the property of Heidelberger Druckmaschinen AG and its licensors, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG.
-
-Copyright (c) 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved.</string>
- <key>description</key>
- <string>The digitally encoded machine readable software for producing the Typefaces licensed to you is copyrighted (c) 2000, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved. This software is now the property of Heidelberger Druckmaschinen AG and its licensors and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Optima</string>
- <key>fullname</key>
- <string>Optima Bold Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold Italic</string>
- <key>trademark</key>
- <string>Optima is a trademark of Heidelberger Druckmaschinen AG, which may be registered in certain jurisdictions, exclusivly licensed through Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG.</string>
- <key>unique</key>
- <string>Optima Bold Italic; 6.1d4e1; 2010-09-08</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>6.1d4e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Optima-ExtraBlack</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 1981, 1982, 1983, 1989 and 1993, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved.
-
-The digitally encoded machine readable software for producing the Typefaces licensed to you is now the property of Heidelberger Druckmaschinen AG and its licensors, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG.
-
-Copyright (c) 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved.</string>
- <key>description</key>
- <string>The digitally encoded machine readable software for producing the Typefaces licensed to you is copyrighted (c) 2000, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved. This software is now the property of Heidelberger Druckmaschinen AG and its licensors and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Optima</string>
- <key>fullname</key>
- <string>Optima ExtraBlack</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>ExtraBlack</string>
- <key>trademark</key>
- <string>Optima is a trademark of Heidelberger Druckmaschinen AG, which may be registered in certain jurisdictions, exclusivly licensed through Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG.</string>
- <key>unique</key>
- <string>Optima ExtraBlack; 6.1d4e1; 2010-09-08</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>6.1d4e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Hei.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Hei.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>SIL-Hei-Med-Jian</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>˝Copyright Shanghai Ikarus Ltd. 1993 1994 1995</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Hei</string>
- <key>fullname</key>
- <string>Hei Regular</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Shanghai Ikarus Ltd./URW Software &amp; Type GmbH</string>
- <key>unique</key>
- <string>Hei Regular; 6.1d3e1; 2008-08-11</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>6.1d3e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>BigCaslon.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/BigCaslon.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>BigCaslon-Medium</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 1994 Carter &amp; Cone Type, Inc. All rights reserved.
-
-The digitally encoded machine readable software for producing the Typefaces licensed to you is the property of Carter &amp; Cone Type, Inc. and their licensors and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Carter &amp; Cone Type, Inc.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Big Caslon</string>
- <key>fullname</key>
- <string>Big Caslon Medium</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Medium</string>
- <key>trademark</key>
- <string>"Big Caslon" is a Trademark of Carter &amp; Cone Type, Inc. which may be registered in certain jurisdictions.</string>
- <key>unique</key>
- <string>Big Caslon Medium; 6.1d4e1; 2008-12-29</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>6.1d4e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Symbol.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/System/Library/Fonts/Symbol.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Symbol</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 1990-99 Apple Computer Inc. © 1990-91 Bitstream Inc.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Symbol</string>
- <key>fullname</key>
- <string>Symbol</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>unique</key>
- <string>Symbol; 6.1d7e3; 2009-05-12</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>6.1d7e3</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Trebuchet MS</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Trebuchet MS</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>TrebuchetMS</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 1996 Microsoft Corporation. All rights reserved.</string>
- <key>description</key>
- <string>Trebuchet, designed by Vincent Connare in 1996, is a humanist sans serif designed for easy screen readability. Trebuchet takes its inspiration from the sans serifs of the 1930s which had large x heights and round features intended to promote readability on signs. The typeface name is credited to a puzzle heard at Microsoft, where the question was asked, "could you build a Trebuchet (a form of medieval catapult) to launch a person from the main campus to the consumer campus, and how?" The Trebuchet fonts are intended to be the vehicle that fires your messages across the Internet. "Launch your message with a Trebuchet page".</string>
- <key>designer</key>
- <string>Vincent Connare</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Trebuchet MS</string>
- <key>fullname</key>
- <string>Trebuchet MS</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>unique</key>
- <string>Microsoft Trebuchet</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Microsoft Corp.</string>
- <key>version</key>
- <string>Version 1.26</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>TrebuchetMS-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 1996 Microsoft Corporation. All rights reserved.</string>
- <key>description</key>
- <string>Trebuchet, designed by Vincent Connare in 1996, is a humanist sans serif designed for easy screen readability. Trebuchet takes its inspiration from the sans serifs of the 1930s which had large x heights and round features intended to promote readability on signs. The typeface name is credited to a puzzle heard at Microsoft, where the question was asked, "could you build a Trebuchet (a form of medieval catapult) to launch a person from the main campus to the consumer campus, and how?" The Trebuchet fonts are intended to be the vehicle that fires your messages across the Internet. "Launch your message with a Trebuchet page".</string>
- <key>designer</key>
- <string>Vincent Connare</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Trebuchet MS</string>
- <key>fullname</key>
- <string>Trebuchet MS Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>unique</key>
- <string>Microsoft Trebuchet Bold</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Microsoft Corp.</string>
- <key>version</key>
- <string>Version 1.26</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>TrebuchetMS-Italic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 1996 Microsoft Corporation. All rights reserved.</string>
- <key>description</key>
- <string>Trebuchet, designed by Vincent Connare in 1996, is a humanist sans serif designed for easy screen readability. Trebuchet takes its inspiration from the sans serifs of the 1930s which had large x heights and round features intended to promote readability on signs. The typeface name is credited to a puzzle heard at Microsoft, where the question was asked, "could you build a Trebuchet (a form of medieval catapult) to launch a person from the main campus to the consumer campus, and how?" The Trebuchet fonts are intended to be the vehicle that fires your messages across the Internet. "Launch your message with a Trebuchet page".</string>
- <key>designer</key>
- <string>Vincent Connare</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Trebuchet MS</string>
- <key>fullname</key>
- <string>Trebuchet MS Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Italic</string>
- <key>unique</key>
- <string>Microsoft Trebuchet Italic</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Microsoft Corp.</string>
- <key>version</key>
- <string>Version 1.26</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Trebuchet-BoldItalic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 1996 Microsoft Corporation. All rights reserved.</string>
- <key>description</key>
- <string>Trebuchet, designed by Vincent Connare in 1996, is a humanist sans serif designed for easy screen readability. Trebuchet takes its inspiration from the sans serifs of the 1930s which had large x heights and round features intended to promote readability on signs. The typeface name is credited to a puzzle heard at Microsoft, where the question was asked, "could you build a Trebuchet (a form of medieval catapult) to launch a person from the main campus to the consumer campus, and how?" The Trebuchet fonts are intended to be the vehicle that fires your messages across the Internet. "Launch your message with a Trebuchet page".</string>
- <key>designer</key>
- <string>Vincent Connare</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Trebuchet MS</string>
- <key>fullname</key>
- <string>Trebuchet MS Bold Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold Italic</string>
- <key>unique</key>
- <string>Microsoft Trebuchet Bold Italic</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Microsoft Corp.</string>
- <key>version</key>
- <string>Version 1.26</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Mistral</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Mistral</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Mistral</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© Copyright by URW, 1992. Portions © 1992 Microsoft Corp. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Mistral</string>
- <key>fullname</key>
- <string>Mistral</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>unique</key>
- <string>Mistral</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.60</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Franklin Gothic Book Italic.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Franklin Gothic Book Italic.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>FranklinGothic-BookItalic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string> ITC Franklin Gothic is a trademark of The International Typeface Corporation which may be registered in certain jurisdictions. Portions copyright Microsoft Corporation. All rights reserved.</string>
- <key>description</key>
- <string>Designed in 1902 by Morris Fuller Benton for the American Type Founders company, Franklin Gothic still reigns as one of the most-widely used sans serif typefaces. Originally issued in only one weight, the ATF version of Franklin Gothic was eventually expanded to include five additional weights, but no light or intermediate weights were ever developed. In 1979, under license from ATF, ITC developed four new weights in roman and italic: book, medium, demi and heavy. Designed by Victor Caruso, ITC’s new weights matched the original face’s characteristics, but featured a slightly enlarged lowercase x-height. ITC Franklin Gothic also features a slightly condensed lowercase a-z alphabet. In 1991, ITC commissioned the Font Bureau in Boston to create condensed, compressed and extra compressed versions of ITC Franklin Gothic, which increased the flexibility and usefulness of the design.</string>
- <key>designer</key>
- <string>Victor Caruso</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Franklin Gothic Book</string>
- <key>fullname</key>
- <string>Franklin Gothic Book Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Italic</string>
- <key>trademark</key>
- <string>ITC Franklin Gothic is a trademark of The International Typeface Corporation which may be registered in certain jurisdictions.</string>
- <key>unique</key>
- <string>Monotype - Franklin Gothic Book Italic</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>International Typeface Corporation</string>
- <key>version</key>
- <string>Version 2.01</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Calibri Bold Italic.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Calibri Bold Italic.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Calibri-BoldItalic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 2008 Microsoft Corporation. All Rights Reserved.</string>
- <key>description</key>
- <string>Calibri is a modern sans serif family with subtle roundings on stems and corners. It features real italics, small caps, and multiple numeral sets. Its proportions allow high impact in tightly set lines of big and small text alike. Calibri's many curves and the new rasteriser team up in bigger sizes to reveal a warm and soft character.</string>
- <key>designer</key>
- <string>Luc(as) de Groot</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Calibri</string>
- <key>fullname</key>
- <string>Calibri Bold Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold Italic</string>
- <key>trademark</key>
- <string>Calibri is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries.</string>
- <key>unique</key>
- <string>Microsoft: Calibri Bold Italic: 2005</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Microsoft Corporation</string>
- <key>version</key>
- <string>Version 5.62</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Zapfino.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Zapfino.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Zapfino</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 1999-2002, Linotype Library GmbH &amp; affiliates. All rights reserved.</string>
- <key>description</key>
- <string>Today's digital font technology has allowed renowned type designer Hermann Zapf to realise a dream he first had more than fifty years ago: to create a fully calligraphic typeface.</string>
- <key>designer</key>
- <string>Hermann Zapf</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Zapfino</string>
- <key>fullname</key>
- <string>Zapfino</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Linotype Zapfino is a Trademark of Heidelberger Druckmaschinen AG, which may be registered in certain jurisdictions, exclusively licensed through Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG.</string>
- <key>unique</key>
- <string>Zapfino; 6.1d5e1; 2009-02-26</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>6.1d5e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>STIXIntUpReg.otf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/STIXIntUpReg.otf</string>
- <key>type</key>
- <string>opentype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>STIXIntegralsUp-Regular</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 2001-2010 by the STI Pub Companies, consisting of the American Chemical Society, the American Institute of Physics, the American Mathematical Society, the American Physical Society, Elsevier, Inc., and The Institute of Electrical and Electronic Engineers, Inc. Portions copyright (c) 1998-2003 by MicroPress, Inc. Portions copyright (c) 1990 by Elsevier, Inc. All rights reserved.</string>
- <key>description</key>
- <string>Arie de Ruiter, who in 1995 was Head of Information Technology Development at Elsevier Science, made a proposal to the STI Pub group, an informal group of publishers consisting of representatives from the American Chemical Society (ACS), American Institute of Physics (AIP), American Mathematical Society (AMS), American Physical Society (APS), Elsevier, and Institute of Electrical and Electronics Engineers (IEEE). De Ruiter encouraged the members to consider development of a series of Web fonts, which he proposed should be called the Scientific and Technical Information eXchange, or STIX, Fonts. All STI Pub member organizations enthusiastically endorsed this proposal, and the STI Pub group agreed to embark on what has become a twelve-year project. The goal of the project was to identify all alphabetic, symbolic, and other special characters used in any facet of scientific publishing and to create a set of Unicode-based fonts that would be distributed free to every scientist, student, and other interested party worldwide. The fonts would be consistent with the emerging Unicode standard, and would permit universal representation of every character. With the release of the STIX fonts, de Ruiter's vision has been realized.</string>
- <key>designer</key>
- <string>MicroPress Inc., with final additions and corrections provided by Coen Hoffman, Elsevier (retired)</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>STIXIntegralsUp</string>
- <key>fullname</key>
- <string>STIXIntegralsUp-Regular</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>STIX Fonts(TM) is a trademark of The Institute of Electrical and Electronics Engineers, Inc.</string>
- <key>unique</key>
- <string>FontMaster:STIXIntegralsUp-Regular:1.0.0</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.0.0</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>NanumGothic.ttc</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/NanumGothic.ttc</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>NanumGothic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright © 2011 NHN Corporation. All rights reserved. Font designed by Sandoll Communications Inc.</string>
- <key>designer</key>
- <string>Bruce Kwon; Nicolas Noh; Sung-woo Choi;</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Nanum Gothic</string>
- <key>fullname</key>
- <string>NanumGothic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>NanumGothic is a registered trademark of NHN Corporation.</string>
- <key>unique</key>
- <string>NanumGothic; 7.1d2e1; 2011-06-14</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>NHN Corporation</string>
- <key>version</key>
- <string>7.1d2e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>NanumGothicBold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright © 2011 NHN Corporation. All rights reserved. Font designed by Sandoll Communications Inc.</string>
- <key>designer</key>
- <string>Bruce Kwon; Nicolas Noh; Sung-woo Choi;</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Nanum Gothic</string>
- <key>fullname</key>
- <string>나눔고딕 Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>NanumGothicBold is a registered trademark of NHN Corporation.</string>
- <key>unique</key>
- <string>NanumGothic Bold; 7.1d2e1; 2011-06-14</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>NHN Corporation</string>
- <key>version</key>
- <string>7.1d2e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>NanumGothicExtraBold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright © 2011 NHN Corporation. All rights reserved. Font designed by Sandoll Communications Inc.</string>
- <key>designer</key>
- <string>Bruce Kwon; Nicolas Noh; Sung-woo Choi;</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Nanum Gothic</string>
- <key>fullname</key>
- <string>NanumGothic ExtraBold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>ExtraBold</string>
- <key>trademark</key>
- <string>NanumGothicExtraBold is a registered trademark of NHN Corporation.</string>
- <key>unique</key>
- <string>NanumGothic ExtraBold; 7.1d2e1; 2011-06-14</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>NHN Corporation</string>
- <key>version</key>
- <string>7.1d2e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>GillSans.ttc</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/GillSans.ttc</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>GillSans</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Digitized data copyright The Monotype Corporation 1991-2001. All rights reserved. Gill Sans™ is a trademark of The Monotype Corporation Registered in the U.S. Patent &amp; Trademark Office and may be registered in certain jurisdictions</string>
- <key>designer</key>
- <string>Eric Gill</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Gill Sans</string>
- <key>fullname</key>
- <string>Gill Sans</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Gill Sans™ is a trademark of The Monotype Corporation Registered in the U.S. Patent &amp; Trademark Office and may be registered in certain jurisdictions</string>
- <key>unique</key>
- <string>Gill Sans; 6.1d9e1; 2010-09-07</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>6.1d9e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>GillSans-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Digitized data copyright © 1991-2001 Agfa Monotype Corporation. All rights reserved. Gill Sans™ is a trademark of The Monotype Corporation. Registered in the U.S. Patent &amp; Trademark Office and may be registered in certain jurisdictions</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Gill Sans</string>
- <key>fullname</key>
- <string>Gill Sans Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>Gill Sans™ is a trademark of The Monotype Corporation. Registered in the U.S. Patent &amp; Trademark Office and may be registered in certain jurisdictions</string>
- <key>unique</key>
- <string>Gill Sans Bold; 6.1d9e1; 2010-09-07</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>6.1d9e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>GillSans-BoldItalic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Digitized data copyright © 1991-2001 Agfa Monotype Corporation. All rights reserved. Gill Sans™ is a trademark of The Monotype Corporation. Registered in the U.S. Patent &amp; Trademark Office and may be registered in certain jurisdictions</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Gill Sans</string>
- <key>fullname</key>
- <string>Gill Sans Bold Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold Italic</string>
- <key>trademark</key>
- <string>Gill Sans™ is a trademark of The Monotype Corporation. Registered in the U.S. Patent &amp; Trademark Office and may be registered in certain jurisdictions</string>
- <key>unique</key>
- <string>Gill Sans Bold Italic; 6.1d9e1; 2010-09-07</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>6.1d9e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>GillSans-Italic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Digitized data copyright The Monotype Corporation 1991-2001. All rights reserved. Gill SansÆ is a trademark of The Monotype Corporation Registered in the U.S. Patent &amp; Trademark Office and may be registered in certain jurisdictions</string>
- <key>designer</key>
- <string>Eric Gill</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Gill Sans</string>
- <key>fullname</key>
- <string>Gill Sans Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Italic</string>
- <key>trademark</key>
- <string>Gill Sans™ is a trademark of The Monotype Corporation Registered in the U.S. Patent &amp; Trademark Office and may be registered in certain jurisdictions</string>
- <key>unique</key>
- <string>Gill Sans Italic; 6.1d9e1; 2010-09-07</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>6.1d9e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>GillSans-Light</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Digitized data copyright The Monotype Corporation 1991-2001. All rights reserved. Gill Sans™ is a trademark of The Monotype Corporation Registered in the U.S. Patent &amp; Trademark Office and may be registered in certain jurisdictions</string>
- <key>designer</key>
- <string>Eric Gill</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Gill Sans</string>
- <key>fullname</key>
- <string>Gill Sans Light</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Light</string>
- <key>trademark</key>
- <string>Gill Sans™ is a trademark of The Monotype Corporation Registered in the U.S. Patent &amp; Trademark Office and may be registered in certain jurisdictions</string>
- <key>unique</key>
- <string>Gill Sans Light; 6.1d9e1; 2010-09-07</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>6.1d9e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>GillSans-LightItalic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Digitized data copyright The Monotype Corporation 1991-2001. All rights reserved. Gill Sans™ is a trademark of The Monotype Corporation Registered in the U.S. Patent &amp; Trademark Office and may be registered in certain jurisdictions</string>
- <key>designer</key>
- <string>Eric Gill</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Gill Sans</string>
- <key>fullname</key>
- <string>Gill Sans Light Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Light Italic</string>
- <key>trademark</key>
- <string>Gill Sans™ is a trademark of The Monotype Corporation Registered in the U.S. Patent &amp; Trademark Office and may be registered in certain jurisdictions</string>
- <key>unique</key>
- <string>Gill Sans Light Italic; 6.1d9e1; 2010-09-07</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>6.1d9e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Ayuthaya.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Ayuthaya.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Ayuthaya</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright © 1992-2011 by Apple Inc. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Ayuthaya</string>
- <key>fullname</key>
- <string>Ayuthaya</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>unique</key>
- <string>Ayuthaya; 10.8d1e1; 2011-10-20</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>10.8d1e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>SimSun.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/SimSun.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>SimSun</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© Copyright ZHONGYI Electronic Co. 2001</string>
- <key>designer</key>
- <string>Beijing ZhongYi Electronics Co.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>SimSun</string>
- <key>fullname</key>
- <string>SimSun</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Trademark of ZHONGYI Electronic Co., Beijing</string>
- <key>unique</key>
- <string>SimSun</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Beijing ZhongYi Electronics Co.</string>
- <key>version</key>
- <string>Version 5.04</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Matura Script Capitals</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Matura Script Capitals</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>MaturaMTScriptCapitals</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright © The Monotype Corporation plc. 1992. All Rights Reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Matura MT Script Capitals</string>
- <key>fullname</key>
- <string>Matura MT Script Capitals</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Matura MT Scriptorial Capitals is a Trademark of The Monotype Corporation plc</string>
- <key>unique</key>
- <string>Matura MT Script Capitals</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.51</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Corbel Bold.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Corbel Bold.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Corbel-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 2008 Microsoft Corporation. All Rights Reserved.</string>
- <key>description</key>
- <string>Corbel is designed to give an uncluttered and clean appearance on screen. The letter forms are open with soft, flowing curves. It is legible, clear and functional at small sizes. At larger sizes the detailing and style of the shapes is more apparent resulting in a modern sans serif type with a wide range of possible uses.</string>
- <key>designer</key>
- <string>Jeremy Tankard</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Corbel</string>
- <key>fullname</key>
- <string>Corbel Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>Corbel is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries.</string>
- <key>unique</key>
- <string>Microsoft: Corbel Bold: 2005</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Microsoft Corporation</string>
- <key>version</key>
- <string>Version 5.61</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Bauhaus 93</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Bauhaus 93</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Bauhaus93</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>URW Software, Copyright 1993 by URW</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Bauhaus 93</string>
- <key>fullname</key>
- <string>Bauhaus 93</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>unique</key>
- <string>Bauhaus 93</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>URW++</string>
- <key>version</key>
- <string>Version 1.52</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Trebuchet MS.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Trebuchet MS.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>TrebuchetMS</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 2006 Microsoft Corporation. All Rights Reserved.</string>
- <key>description</key>
- <string>Trebuchet, designed by Vincent Connare in 1996, is a humanist sans serif designed for easy screen readability. Trebuchet takes its inspiration from the sans serifs of the 1930s which had large x heights and round features intended to promote readability on signs. The typeface name is credited to a puzzle heard at Microsoft, where the question was asked, "could you build a Trebuchet (a form of medieval catapult) to launch a person from the main campus to the consumer campus, and how?" The Trebuchet fonts are intended to be the vehicle that fires your messages across the Internet. "Launch your message with a Trebuchet page".</string>
- <key>designer</key>
- <string>Vincent Connare</string>
- <key>duplicate</key>
- <string>yes</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Trebuchet MS</string>
- <key>fullname</key>
- <string>Trebuchet MS</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>unique</key>
- <string>Microsoft Trebuchet</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Microsoft Corporation</string>
- <key>version</key>
- <string>Version 5.00x</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>STIXGeneralBolIta.otf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/STIXGeneralBolIta.otf</string>
- <key>type</key>
- <string>opentype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>STIXGeneral-BoldItalic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 2001-2010 by the STI Pub Companies, consisting of the American Chemical Society, the American Institute of Physics, the American Mathematical Society, the American Physical Society, Elsevier, Inc., and The Institute of Electrical and Electronic Engineers, Inc. Portions copyright (c) 1998-2003 by MicroPress, Inc. Portions copyright (c) 1990 by Elsevier, Inc. All rights reserved.</string>
- <key>description</key>
- <string>Arie de Ruiter, who in 1995 was Head of Information Technology Development at Elsevier Science, made a proposal to the STI Pub group, an informal group of publishers consisting of representatives from the American Chemical Society (ACS), American Institute of Physics (AIP), American Mathematical Society (AMS), American Physical Society (APS), Elsevier, and Institute of Electrical and Electronics Engineers (IEEE). De Ruiter encouraged the members to consider development of a series of Web fonts, which he proposed should be called the Scientific and Technical Information eXchange, or STIX, Fonts. All STI Pub member organizations enthusiastically endorsed this proposal, and the STI Pub group agreed to embark on what has become a twelve-year project. The goal of the project was to identify all alphabetic, symbolic, and other special characters used in any facet of scientific publishing and to create a set of Unicode-based fonts that would be distributed free to every scientist, student, and other interested party worldwide. The fonts would be consistent with the emerging Unicode standard, and would permit universal representation of every character. With the release of the STIX fonts, de Ruiter's vision has been realized.</string>
- <key>designer</key>
- <string>MicroPress Inc., with final additions and corrections provided by Coen Hoffman, Elsevier (retired)</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>STIXGeneral</string>
- <key>fullname</key>
- <string>STIXGeneral-BoldItalic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold Italic</string>
- <key>trademark</key>
- <string>STIX Fonts(TM) is a trademark of The Institute of Electrical and Electronics Engineers, Inc.</string>
- <key>unique</key>
- <string>FontMaster:STIXGeneral-BoldItalic:1.0.0</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.0.0</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Malayalam Sangam MN.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Malayalam Sangam MN.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>MalayalamSangamMN</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 2003 by Muthu Nedumaran. All rights reserved.</string>
- <key>description</key>
- <string>Copyright (c) 2003 by Muthu Nedumaran. All rights reserved.</string>
- <key>designer</key>
- <string>Muthu Nedumaran</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Malayalam Sangam MN</string>
- <key>fullname</key>
- <string>Malayalam Sangam MN</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Malayalam Sangam MN is a trademark of Muthu Nedumaran.</string>
- <key>unique</key>
- <string>Malayalam Sangam MN; 7.0d3e1; 2011-01-10</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Muthu Nedumaran</string>
- <key>version</key>
- <string>7.0d3e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>DevanagariMTBold.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/DevanagariMTBold.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>DevanagariMT-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright © Monotype Typography Ltd 1996. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Devanagari MT</string>
- <key>fullname</key>
- <string>Devanagari MT Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>Monotype Devanagari is a Trademark of Monotype Typography Ltd.</string>
- <key>unique</key>
- <string>Devanagari MT Bold; 6.0d4e1; 2009-01-13</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>6.0d4e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Courier.dfont</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/System/Library/Fonts/Courier.dfont</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Courier</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright © 1990-91 by Bitstream Inc. Copyright © 1990-2009 by Apple Inc. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Courier</string>
- <key>fullname</key>
- <string>Courier</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>unique</key>
- <string>Courier; 7.0d2e1; 2011-03-24</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d2e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Courier-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright © 1990-91 by Bitstream Inc. Copyright © 1990-2009 by Apple Inc. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Courier</string>
- <key>fullname</key>
- <string>Courier Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>unique</key>
- <string>Courier Bold; 7.0d2e1; 2011-03-24</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d2e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Courier-Oblique</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright © 1990-91 by Bitstream Inc. Copyright © 1990-2009 by Apple Inc. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Courier</string>
- <key>fullname</key>
- <string>Courier Oblique</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Oblique</string>
- <key>unique</key>
- <string>Courier Oblique; 7.0d2e1; 2011-03-24</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d2e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Courier-BoldOblique</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright © 1990-91 by Bitstream Inc. Copyright © 1990-2009 by Apple Inc. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Courier</string>
- <key>fullname</key>
- <string>Courier Bold Oblique</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold Oblique</string>
- <key>unique</key>
- <string>Courier Bold Oblique; 7.0d2e1; 2011-03-24</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d2e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Perpetua Titling MT</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Perpetua Titling MT</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>PerpetuaTitlingMT-Light</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Design and data by The Monotype Corporation. © 1993. Microsoft Corporation. All rights reserved.</string>
- <key>description</key>
- <string>A sensitive adaptation of a style of letter that had been popularized for monumental work in stone by Eric Gill. Large scale drawings by Gill were given to Charles Malin, a Parisian punch-cutter, and his hand cut punches were the basis for the font issued by Monotype. The incised quality of Perpetua will lend distinction to any work compatible with its serenity. First used in a private translation called 'The Passion of Perpetua and Felicity'; the italic was originally called Felicity. Widely used as a text face in quality books, Perpetua is also very popular in advertising and display work.</string>
- <key>designer</key>
- <string>Eric Gill</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Perpetua Titling MT</string>
- <key>fullname</key>
- <string>Perpetua Titling MT Light</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Light</string>
- <key>trademark</key>
- <string>Perpetua® is a registered trademark of The Monotype Corporation.</string>
- <key>unique</key>
- <string>Perpetua Titling MT Light</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Monotype Typography</string>
- <key>version</key>
- <string>Version 1.76</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>PerpetuaTitlingMT-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Design and data by The Monotype Corporation. © 1993. Microsoft Corporation. All rights reserved.</string>
- <key>description</key>
- <string>A sensitive adaptation of a style of letter that had been popularized for monumental work in stone by Eric Gill. Large scale drawings by Gill were given to Charles Malin, a Parisian punch-cutter, and his hand cut punches were the basis for the font issued by Monotype. The incised quality of Perpetua will lend distinction to any work compatible with its serenity. First used in a private translation called 'The Passion of Perpetua and Felicity'; the italic was originally called Felicity. Widely used as a text face in quality books, Perpetua is also very popular in advertising and display work.</string>
- <key>designer</key>
- <string>Eric Gill</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Perpetua Titling MT</string>
- <key>fullname</key>
- <string>Perpetua Titling MT Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>Perpetua® is a registered trademark of The Monotype Corporation.</string>
- <key>unique</key>
- <string>Perpetua Titling MT Bold</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Monotype Typography</string>
- <key>version</key>
- <string>Version 1.76</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Lucida Bright</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Lucida Bright</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>LucidaBright</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 1991 Bigelow &amp; Holmes Inc. Pat. Des. 289,421. All Rights Reserved. © 1990-1991 Type Solutions, Inc. All Rights Reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Lucida Bright</string>
- <key>fullname</key>
- <string>Lucida Bright</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Lucida® is a registered trademark of Bigelow &amp; Holmes Inc.</string>
- <key>unique</key>
- <string>Lucida Bright</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.69</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>LucidaBright-Demi</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 1991 by Bigelow &amp; Holmes Inc. Pat. Des. 289,422. All Rights Reserved. © 1990-1991 Type Solutions, Inc. All Rights Reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Lucida Bright</string>
- <key>fullname</key>
- <string>Lucida Bright Demibold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Demibold</string>
- <key>trademark</key>
- <string>Lucida® is a registered trademark of Bigelow &amp; Holmes Inc.</string>
- <key>unique</key>
- <string>Lucida Bright Demibold</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.69</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>LucidaBright-Italic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 1991 Bigelow &amp; Holmes Inc. Pat. Des. 289,773. All Rights Reserved. © 1990-1991 Type Solutions, Inc. All Rights Reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Lucida Bright</string>
- <key>fullname</key>
- <string>Lucida Bright Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Italic</string>
- <key>trademark</key>
- <string>Lucida® is a registered trademark of Bigelow &amp; Holmes Inc.</string>
- <key>unique</key>
- <string>Lucida Bright Italic</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.69</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>LucidaBright-DemiItalic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 1991 Bigelow &amp; Holmes Inc. Pat. Des. 289,773. All Rights Reserved. © 1990-1991 Type Solutions, Inc. All Rights Reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Lucida Bright</string>
- <key>fullname</key>
- <string>Lucida Bright Demibold Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Demibold Italic</string>
- <key>trademark</key>
- <string>Lucida® is a registered trademark of Bigelow &amp; Holmes Inc.</string>
- <key>unique</key>
- <string>Lucida Bright Demibold Italic</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.69</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Consolas.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Consolas.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Consolas</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 2008 Microsoft Corporation. All Rights Reserved.</string>
- <key>description</key>
- <string>Consolas is aimed for use in programming environments and other circumstances where a monospaced font is specified. All characters have the same width, like old typewriters, making it a good choice for personal and business correspondance. The improved Windows font display allowed a design with proportions closer to normal text than traditional monospaced fonts like Courier. This allows for more comfortably reading of extended text on screen. OpenType features include hanging or lining numerals; slashed, dotted and normal zeros; and alternative shapes for a number of lowercase letters. The look of text can be tuned to personal taste by varying the number of bars and waves.</string>
- <key>designer</key>
- <string>Luc(as) de Groot</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Consolas</string>
- <key>fullname</key>
- <string>Consolas</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Consolas is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries.</string>
- <key>unique</key>
- <string>Microsoft: Consolas: 2005</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Microsoft Corporation</string>
- <key>version</key>
- <string>Version 5.22</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Arial Black</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Arial Black</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Arial-Black</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Digitized data copyright The Monotype Corporation 1991-1995. All rights reserved. Arial® is a trademark of The Monotype Corporation which may be registered in certain jurisdictions.</string>
- <key>description</key>
- <string>Monotype Drawing Office 1982. A contemporary sans serif design, Arial contains more humanist characteristics than many of its predecessors and as such is more in tune with the mood of the last decades of the twentieth century. The overall treatment of curves is softer and fuller than in most industrial-style sans serif faces. Terminal strokes are cut on the diagonal which helps to give the face a less mechanical appearance. Arial is an extremely versatile family of typefaces which can be used with equal success for text setting in reports, presentations, magazines etc, and for display use in newspapers, advertising and promotions.</string>
- <key>designer</key>
- <string>Robin Nicholas, Patricia Saunders</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Arial Black</string>
- <key>fullname</key>
- <string>Arial Black</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Arial® is a trademark of The Monotype Corporation which may be registered in certain jurisdictions.</string>
- <key>unique</key>
- <string>Monotype - Arial Black Regular</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Monotype Typography, Inc.</string>
- <key>version</key>
- <string>Version 2.35</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Telugu MN.ttc</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Telugu MN.ttc</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>TeluguMN</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 2009 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved.</string>
- <key>description</key>
- <string>Copyright (c) 2003 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved.</string>
- <key>designer</key>
- <string>Muthu Nedumaran</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Telugu MN</string>
- <key>fullname</key>
- <string>Telugu MN</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Telugu MN is a trademark of Murasu Systems Sdn. Bhd. Malaysia.</string>
- <key>unique</key>
- <string>Telugu MN; 7.0d3e1; 2010-12-13</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Murasu Systems Sdn. Bhd. Malaysia</string>
- <key>version</key>
- <string>7.0d3e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>TeluguMN-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 2009 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved.</string>
- <key>description</key>
- <string>Copyright (c) 2003 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved.</string>
- <key>designer</key>
- <string>Muthu Nedumaran</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Telugu MN</string>
- <key>fullname</key>
- <string>Telugu MN Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>Telugu MN is a trademark of Murasu Systems Sdn. Bhd. Malaysia.</string>
- <key>unique</key>
- <string>Telugu MN Bold; 7.0d3e1; 2010-12-13</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Murasu Systems Sdn. Bhd. Malaysia</string>
- <key>version</key>
- <string>7.0d3e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Raanana.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Raanana.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Raanana</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© Apple Computer, Inc. 1991-1995</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Raanana</string>
- <key>fullname</key>
- <string>Raanana</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>unique</key>
- <string>Raanana; 6.0d2e1; 2006-10-26</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Apple Computer, Inc.</string>
- <key>version</key>
- <string>6.0d2e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Kefa.ttc</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Kefa.ttc</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Kefa-Regular</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 2006 - 2009 by Jeremie Hornus. All rights reserved.</string>
- <key>designer</key>
- <string>Jeremie Hornus</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Kefa</string>
- <key>fullname</key>
- <string>Kefa</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Kefa is a trademark of Jeremie Hornus.</string>
- <key>unique</key>
- <string>Kefa Regular; 7.0d1e1; 2010-03-08</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Jeremie Hornus</string>
- <key>version</key>
- <string>7.0d1e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Kefa-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 2006 - 2009 by Jeremie Hornus. All rights reserved.</string>
- <key>designer</key>
- <string>Jeremie Hornus</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Kefa</string>
- <key>fullname</key>
- <string>Kefa</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>Kefa is a trademark of Jeremie Hornus.</string>
- <key>unique</key>
- <string>Kefa Bold; 7.0d1e1; 2010-03-08</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Jeremie Hornus</string>
- <key>version</key>
- <string>7.0d1e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Courier New Bold Italic.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Courier New Bold Italic.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>CourierNewPS-BoldItalicMT</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 2006 The Monotype Corporation. All Rights Reserved.</string>
- <key>designer</key>
- <string>Howard Kettler</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Courier New</string>
- <key>fullname</key>
- <string>Courier New Bold Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold Italic</string>
- <key>trademark</key>
- <string>Courier New is a trademark of The Monotype Corporation in the United States and/or other countries.</string>
- <key>unique</key>
- <string>Monotype:Courier New Bold Italic:version 3.10 (Microsoft)</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>The Monotype Corporation</string>
- <key>version</key>
- <string>Version 5.00x</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AlBayanBold.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/AlBayanBold.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>AlBayan-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>AlBayan designed by Al Bayan Company for Computer Services. Copyright Apple
-Computer, Inc. and its licensors, 1992-1998 all rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Al Bayan</string>
- <key>fullname</key>
- <string>Al Bayan Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>unique</key>
- <string>Al Bayan Bold; 7.0d2e1; 2010-12-14</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d2e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Braille Outline 6 Dot.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/System/Library/Fonts/Apple Braille Outline 6 Dot.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>AppleBraille-Outline6Dot</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© Copyright 2007 by Apple, Inc.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Apple Braille</string>
- <key>fullname</key>
- <string>Apple Braille Outline 6 Dot</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Outline 6 Dot</string>
- <key>unique</key>
- <string>Apple Braille Outline 6 Dot; 1.0d5e1; 2008-12-15</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>1.0d5e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>News Gothic MT</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/News Gothic MT</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>NewsGothicMT</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Design and data by The Monotype Corporation. © 1993. Microsoft Corporation. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>News Gothic MT</string>
- <key>fullname</key>
- <string>News Gothic MT</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>News Gothic™ is a trademark of The Monotype Corporation.</string>
- <key>unique</key>
- <string>News Gothic MT - 1992</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.51</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>NewsGothicMT-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Design and data by The Monotype Corporation. © 1993. Microsoft Corporation. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>News Gothic MT</string>
- <key>fullname</key>
- <string>News Gothic MT Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>News Gothic™ is a trademark of The Monotype Corporation.</string>
- <key>unique</key>
- <string>News Gothic MT Bold - 1992</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.51</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>NewsGothicMT-Italic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Design and data by The Monotype Corporation. © 1993. Microsoft Corporation. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>News Gothic MT</string>
- <key>fullname</key>
- <string>News Gothic MT Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Italic</string>
- <key>trademark</key>
- <string>News Gothic™ is a trademark of The Monotype Corporation.</string>
- <key>unique</key>
- <string>News Gothic MT Italic - 1992</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.51</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Goudy Old Style</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Goudy Old Style</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>GoudyOldStyleT-Regular</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Data by URW, Type Solutions, Inc. © 1993. Microsoft Corporation. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Goudy Old Style</string>
- <key>fullname</key>
- <string>Goudy Old Style</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>unique</key>
- <string>Goudy Old Style</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.51</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>GoudyOldStyleT-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Data by URW, Type Solutions, Inc. © 1993. Microsoft Corporation. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Goudy Old Style</string>
- <key>fullname</key>
- <string>Goudy Old Style Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>unique</key>
- <string>Goudy Old Style Bold</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.51</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>GoudyOldStyleT-Italic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Data by URW, Type Solutions, Inc. © 1993. Microsoft Corporation. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Goudy Old Style</string>
- <key>fullname</key>
- <string>Goudy Old Style Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Italic</string>
- <key>unique</key>
- <string>Goudy Old Style Italic</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.51</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Candara.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Candara.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Candara</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 2008 Microsoft Corporation. All Rights Reserved.</string>
- <key>description</key>
- <string>Candara is a casual humanist sans with verticals showing a graceful entasis on stems, high-branching arcades in the lowercase, large apertures in all open forms, and unique ogee curves on diagonals. The resultant texture is lively but not intrusive, and makes for a friendly and readable text.
-</string>
- <key>designer</key>
- <string>Gary Munch</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Candara</string>
- <key>fullname</key>
- <string>Candara</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Candara is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries.</string>
- <key>unique</key>
- <string>Microsoft: Candara: 2005</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Microsoft Corporation</string>
- <key>version</key>
- <string>Version 5.61</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>华文楷体.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/华文楷体.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>STKaiti</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 2002, Changzhou SinoType Technology Co., Ltd. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>STKaiti</string>
- <key>fullname</key>
- <string>STKaiti</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>STKaiti and SinoType are trademarks of Changzhou SinoType Technology Co., Ltd.</string>
- <key>unique</key>
- <string>STKaiti; 6.1d1e1; 2008-09-25</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>6.1d1e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>STIXSizThreeSymReg.otf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/STIXSizThreeSymReg.otf</string>
- <key>type</key>
- <string>opentype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>STIXSizeThreeSym-Regular</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 2001-2010 by the STI Pub Companies, consisting of the American Chemical Society, the American Institute of Physics, the American Mathematical Society, the American Physical Society, Elsevier, Inc., and The Institute of Electrical and Electronic Engineers, Inc. Portions copyright (c) 1998-2003 by MicroPress, Inc. Portions copyright (c) 1990 by Elsevier, Inc. All rights reserved.</string>
- <key>description</key>
- <string>Arie de Ruiter, who in 1995 was Head of Information Technology Development at Elsevier Science, made a proposal to the STI Pub group, an informal group of publishers consisting of representatives from the American Chemical Society (ACS), American Institute of Physics (AIP), American Mathematical Society (AMS), American Physical Society (APS), Elsevier, and Institute of Electrical and Electronics Engineers (IEEE). De Ruiter encouraged the members to consider development of a series of Web fonts, which he proposed should be called the Scientific and Technical Information eXchange, or STIX, Fonts. All STI Pub member organizations enthusiastically endorsed this proposal, and the STI Pub group agreed to embark on what has become a twelve-year project. The goal of the project was to identify all alphabetic, symbolic, and other special characters used in any facet of scientific publishing and to create a set of Unicode-based fonts that would be distributed free to every scientist, student, and other interested party worldwide. The fonts would be consistent with the emerging Unicode standard, and would permit universal representation of every character. With the release of the STIX fonts, de Ruiter's vision has been realized.</string>
- <key>designer</key>
- <string>MicroPress Inc., with final additions and corrections provided by Coen Hoffman, Elsevier (retired)</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>STIXSizeThreeSym</string>
- <key>fullname</key>
- <string>STIXSizeThreeSym-Regular</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>STIX Fonts(TM) is a trademark of The Institute of Electrical and Electronics Engineers, Inc.</string>
- <key>unique</key>
- <string>FontMaster:STIXSizeThreeSym-Regular:1.0.0</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.0.0</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>OsakaMono.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/OsakaMono.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Osaka-Mono</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 1990-2008 Apple Inc.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Osaka</string>
- <key>fullname</key>
- <string>Osaka-Mono</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular-Mono</string>
- <key>trademark</key>
- <string>HeiseiKakuGothic is a typeface developed under the license agreement with JSA Font Development and Promotion Center</string>
- <key>unique</key>
- <string>Apple Computer Osaka-Mono, 6.1d3e1, 2008-08-18</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>6.1d3e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Hiragino Sans GB W6.otf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Hiragino Sans GB W6.otf</string>
- <key>type</key>
- <string>opentype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>HiraginoSansGB-W6</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>ver3.10, Copyright © 2007-2011 Dainippon Screen Mfg. Co., Ltd. All Rights Reserved.</string>
- <key>designer</key>
- <string>JIYUKOBO Ltd. and Beijing Hanyi Keyin Information Technology Co., Ltd.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Hiragino Sans GB</string>
- <key>fullname</key>
- <string>Hiragino Sans GB W6</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>W6</string>
- <key>trademark</key>
- <string>HIRAGINO is a trademark of Dainippon Screen Mfg. Co., Ltd.</string>
- <key>unique</key>
- <string>3.10;Dainippon Screen Mfg. Co., Ltd.;Hiragino Sans GB W6</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Dainippon Screen Mfg. Co., Ltd.</string>
- <key>version</key>
- <string>Version 3.10</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Chalkboard.ttc</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Chalkboard.ttc</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Chalkboard</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright 2003-04 Apple Computer, Inc.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Chalkboard</string>
- <key>fullname</key>
- <string>Chalkboard</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>unique</key>
- <string>Chalkboard; 6.0d2e2; 2009-01-27</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>6.0d2e2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Chalkboard-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright 2003-04 Apple Computer, Inc.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Chalkboard</string>
- <key>fullname</key>
- <string>Chalkboard Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>unique</key>
- <string>Chalkboard Bold; 6.0d2e2; 2009-01-27</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>6.0d2e2</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Tw Cen MT.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Tw Cen MT.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>TwCenMT-Regular</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Digitized data copyright The Monotype Corporation 1991-1997. All rights reserved. Twentieth Century™ is a trademark of The Monotype Corporation which may be registered in certain jurisdictions.</string>
- <key>description</key>
- <string>20th Century was designed and drawn by Sol Hess in the Lanston Monotype drawing office between 1936 and 1947. The first weights were added to the Monotype typeface library in 1959. This is a face based on geometric shapes which originated in Germany in the early 1920's and became an integral part of the Bauhaus movement of that time. Form and function became the key words, unnecessary decoration was scorned. This clean cut, sans serif with geometric shapes was most appropriate. The lighter weights can be used for text setting, the bold and condensed fonts are suitable for display in headlines and advertising.</string>
- <key>designer</key>
- <string>Sol Hess</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Tw Cen MT</string>
- <key>fullname</key>
- <string>Tw Cen MT</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Twentieth Century™ is a trademark of The Monotype Corporation which may be registered in certain jurisdictions.</string>
- <key>unique</key>
- <string>Monotype - Tw Cen MT</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Monotype Typography</string>
- <key>version</key>
- <string>Version 1.02</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Monotype Sorts</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Monotype Sorts</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>MonotypeSorts</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Typeface © The Monotype Corporation plc. Data © The Monotype Corporation plc/Type Solutions Inc. 1990/91 All Rights Reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Monotype Sorts</string>
- <key>fullname</key>
- <string>Monotype Sorts</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Monotype Sorts is a trademark of The Monotype Corporation plc.</string>
- <key>unique</key>
- <string>Monotype Sorts 1991</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.50</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Gabriola.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Gabriola.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Gabriola</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 2008 Microsoft Corporation. All Rights Reserved.</string>
- <key>designer</key>
- <string>John Hudson</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Gabriola</string>
- <key>fullname</key>
- <string>Gabriola</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Gabriola is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries.</string>
- <key>unique</key>
- <string>MicrosoftCorporation: Gabriola: 2008</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Microsoft Corporation</string>
- <key>version</key>
- <string>Version 5.90</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Calisto MT</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Calisto MT</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>CalistoMT</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Digitized data copyright (C) 1991-1997 The Monotype Corporation. All rights reserved. Calisto® is a trademark of The Monotype Corporation which may be registered in certain jurisdictions.</string>
- <key>description</key>
- <string>A typeface whose appeal as a text face lies in its very even colour on the page, while its robust construction means that it can wrk equally well at display sizes. The slightly calligraphic treatment of letter shapes and the classical proportions of the face give a clean elegance on the page. Calisto is a graceful and interesting addition to the typographer's repertoire and will prove particularly useful for book, magazine and advertizing work.</string>
- <key>designer</key>
- <string>Ron Carpenter</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Calisto MT</string>
- <key>fullname</key>
- <string>Calisto MT</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Calisto® is a trademark of The Monotype Corporation which may be registered in certain jurisdictions.</string>
- <key>unique</key>
- <string>Calisto MT Regular - 1992</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Monotype Typography</string>
- <key>version</key>
- <string>Version 1.62</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>CalisMTBol</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Digitized data copyright (C) 1992-1997 The Monotype Corporation. All rights reserved. Calisto® is a trademark of The Monotype Corporation which may be registered in certain jurisdictions.</string>
- <key>description</key>
- <string>A typeface whose appeal as a text face lies in its very even colour on the page, while its robust construction means that it can wrk equally well at display sizes. The slightly calligraphic treatment of letter shapes and the classical proportions of the face give a clean elegance on the page. Calisto is a graceful and interesting addition to the typographer's repertoire and will prove particularly useful for book, magazine and advertizing work.</string>
- <key>designer</key>
- <string>Ron Carpenter</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Calisto MT</string>
- <key>fullname</key>
- <string>Calisto MT Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>Calisto® is a trademark of The Monotype Corporation which may be registered in certain jurisdictions.</string>
- <key>unique</key>
- <string>Calisto MT Bold- 1992</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Monotype Typography</string>
- <key>version</key>
- <string>Version 1.62</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>CalistoMT-Italic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Digitized data copyright (C) 1992 - 1997 The Monotype Corporation. All rights reserved. Calisto® is a trademark of The Monotype Corporation which may be registered in certain jurisdictions.</string>
- <key>description</key>
- <string>A typeface whose appeal as a text face lies in its very even colour on the page, while its robust construction means that it can wrk equally well at display sizes. The slightly calligraphic treatment of letter shapes and the classical proportions of the face give a clean elegance on the page. Calisto is a graceful and interesting addition to the typographer's repertoire and will prove particularly useful for book, magazine and advertizing work.</string>
- <key>designer</key>
- <string>Ron Carpenter</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Calisto MT</string>
- <key>fullname</key>
- <string>Calisto MT Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Italic</string>
- <key>trademark</key>
- <string>Calisto® is a trademark of The Monotype Corporation which may be registered in certain jurisdictions.</string>
- <key>unique</key>
- <string>Calisto MT Italic</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Monotype Typography</string>
- <key>version</key>
- <string>Version 1.62</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>CalistoMT-BoldItalic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Digitized data copyright The Monotype Corporation 1991-1997. All rights reserved. Calisto® is a trademark of The Monotype Corporation which may be registered in certain jurisdictions.</string>
- <key>description</key>
- <string>A typeface whose appeal as a text face lies in its very even colour on the page, while its robust construction means that it can wrk equally well at display sizes. The slightly calligraphic treatment of letter shapes and the classical proportions of the face give a clean elegance on the page. Calisto is a graceful and interesting addition to the typographer's repertoire and will prove particularly useful for book, magazine and advertizing work.</string>
- <key>designer</key>
- <string>Ron Carpenter</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Calisto MT</string>
- <key>fullname</key>
- <string>Calisto MT Bold Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold Italic</string>
- <key>trademark</key>
- <string>Calisto® is a trademark of The Monotype Corporation which may be registered in certain jurisdictions.</string>
- <key>unique</key>
- <string>Monotype - Calisto MT Bold Italic</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Monotype Typography</string>
- <key>version</key>
- <string>Version 1.62</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ヒラギノ明朝 Pro W6.otf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/ヒラギノ明朝 Pro W6.otf</string>
- <key>type</key>
- <string>opentype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>HiraMinPro-W6</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>ver7.11, Copyright (c) 1993-2002 Dainippon Screen Mfg. Co., Ltd. All Rights Reserved.</string>
- <key>designer</key>
- <string>JIYUKOBO Ltd.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Hiragino Mincho Pro</string>
- <key>fullname</key>
- <string>ヒラギノ明朝 Pro W6</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>W6</string>
- <key>trademark</key>
- <string>Hiragino is a trademark of Dainippon Screen Mfg. Co., Ltd. registered in Japan.</string>
- <key>unique</key>
- <string>Dainippon Screen Mfg. Co., Ltd. Hiragino Mincho Pro W6</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Dainippon Screen Mfg. Co., Ltd.</string>
- <key>version</key>
- <string>7.11</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>STIXNonUniBol.otf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/STIXNonUniBol.otf</string>
- <key>type</key>
- <string>opentype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>STIXNonUnicode-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 2001-2010 by the STI Pub Companies, consisting of the American Chemical Society, the American Institute of Physics, the American Mathematical Society, the American Physical Society, Elsevier, Inc., and The Institute of Electrical and Electronic Engineers, Inc. Portions copyright (c) 1998-2003 by MicroPress, Inc. Portions copyright (c) 1990 by Elsevier, Inc. All rights reserved.</string>
- <key>description</key>
- <string>Arie de Ruiter, who in 1995 was Head of Information Technology Development at Elsevier Science, made a proposal to the STI Pub group, an informal group of publishers consisting of representatives from the American Chemical Society (ACS), American Institute of Physics (AIP), American Mathematical Society (AMS), American Physical Society (APS), Elsevier, and Institute of Electrical and Electronics Engineers (IEEE). De Ruiter encouraged the members to consider development of a series of Web fonts, which he proposed should be called the Scientific and Technical Information eXchange, or STIX, Fonts. All STI Pub member organizations enthusiastically endorsed this proposal, and the STI Pub group agreed to embark on what has become a twelve-year project. The goal of the project was to identify all alphabetic, symbolic, and other special characters used in any facet of scientific publishing and to create a set of Unicode-based fonts that would be distributed free to every scientist, student, and other interested party worldwide. The fonts would be consistent with the emerging Unicode standard, and would permit universal representation of every character. With the release of the STIX fonts, de Ruiter's vision has been realized.</string>
- <key>designer</key>
- <string>MicroPress Inc., with final additions and corrections provided by Coen Hoffman, Elsevier (retired)</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>STIXNonUnicode</string>
- <key>fullname</key>
- <string>STIXNonUnicode-Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>STIX Fonts(TM) is a trademark of The Institute of Electrical and Electronics Engineers, Inc.</string>
- <key>unique</key>
- <string>FontMaster:STIXNonUnicode-Bold:1.0.0</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.0.0</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>NewPeninimMTBold.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/NewPeninimMTBold.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>NewPeninimMT-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Typeface © Monotype Typography ltd. Data © Monotype Typography ltd, Type Solutions Inc 1990-1993. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>New Peninim MT</string>
- <key>fullname</key>
- <string>New Peninim MT Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>Peninim ® Trademark of The Monotype Corporation registered in certain countries.</string>
- <key>unique</key>
- <string>New Peninim MT Bold; 6.0d2e1; 2006-10-23</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>6.0d2e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Gungseouche.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Gungseouche.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>JCkg</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 1994-2003 Apple Computer, Inc. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>GungSeo</string>
- <key>fullname</key>
- <string>GungSeo Regular</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Gunseo is a trademark of Apple Computer, Inc.</string>
- <key>unique</key>
- <string>GungSeo Regular; 7.0d2e1; 2010-12-17</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d2e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Baghdad.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Baghdad.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Baghdad</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Baghdad designed by Diwan Software Ltd. Copyright Apple Computer, Inc. and its licensors, 1992-1998 all rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Baghdad</string>
- <key>fullname</key>
- <string>Baghdad</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>unique</key>
- <string>Baghdad; 7.0d1e1; 2010-12-14</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d1e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MarkerFelt.ttc</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/System/Library/Fonts/MarkerFelt.ttc</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>MarkerFelt-Thin</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 1992, 1993, 2001, Pat Snyder, 62976 Ross Inlet, Coos Bay, OR 97420. All rights reserved. </string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Marker Felt</string>
- <key>fullname</key>
- <string>Marker Felt Thin</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Thin</string>
- <key>trademark</key>
- <string>Marker Felt is a Trademark of Pat Snyder, which may be registered in certain jurisdictions.</string>
- <key>unique</key>
- <string>Marker Felt Thin; 7.0d7e1; 2011-05-04</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d7e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MarkerFelt-Wide</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 1992, 1993, 2001, Pat Snyder, 62976 Ross Inlet, Coos Bay, OR 97420. All rights reserved. </string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Marker Felt</string>
- <key>fullname</key>
- <string>Marker Felt Wide</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Wide</string>
- <key>trademark</key>
- <string>Marker Felt is a Trademark of Pat Snyder, which may be registered in certain jurisdictions.</string>
- <key>unique</key>
- <string>Marker Felt Wide; 7.0d7e1; 2011-05-04</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d7e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>TaiLeb.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/TaiLeb.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>MicrosoftTaiLe-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 2009 Microsoft Corporation. All Rights Reserved. Portions © 2009 DynaComware Corp. All Rights Reserved. Portions © 2009 Ascender Corp. All Rights Reserved.</string>
- <key>description</key>
- <string>The Tai Le portions of this font were created by the design teams of Ascender and DynaComware.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Microsoft Tai Le</string>
- <key>fullname</key>
- <string>Microsoft Tai Le Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>unique</key>
- <string>Microsoft Tai Le Bold</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Microsoft Corporation</string>
- <key>version</key>
- <string>Version 5.90</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Meiryo.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Meiryo.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Meiryo</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 2010 Microsoft Corporation. All Rights Reserved.</string>
- <key>description</key>
- <string>Meiryo is a very versatile modern sans serif type designed to give an exceptionally clean appearance on screen, as well as in print. It is optimized for on-screen reading. The letterforms are generously open and well-proportioned; legible and clear at smaller sizes, and dynamic at larger display sizes. The beauty of this face is that it sets text lines in Japanese with Roman seamlessly and harmoniously. The balanced inter-letter spacing enhances horizontal alignment, facilitating smooth reading flow. Meiryo has a very large character set with Japanese and Roman combined, fully scalable outline technology, making it extremely functional for all aspects of communication and publishing. It is a robust legible typeface yet compact enough to enable tight inter-line spacing which is good for space economy.</string>
- <key>designer</key>
- <string>C&amp;G Inc.; Eiichi Kono; Matthew Carter</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Meiryo</string>
- <key>fullname</key>
- <string>Meiryo</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Meiryo is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries.</string>
- <key>unique</key>
- <string>Microsoft: Meiryo: 2008</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Microsoft Corporation</string>
- <key>version</key>
- <string>Version 6.03</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Desdemona</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Desdemona</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Desdemona</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Typeface © 1992 The Font Bureau, Inc., Portions © 1992 Microsoft Corp. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Desdemona</string>
- <key>fullname</key>
- <string>Desdemona</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>unique</key>
- <string>Desdemona</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.53</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Bookman Old Style</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Bookman Old Style</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>BookmanOldStyle</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Digitized data copyright The Monotype Corporation 1991-1995. All rights reserved. Bookman Old Style™ is a trademark of The Monotype Corporation which may be registered in certain jurisdictions.</string>
- <key>description</key>
- <string>The origins of Bookman Old Style lie in the typeface called Oldstyle Antique, designed by A C Phemister circa 1858 for the Miller and Richard foundry in Edinburgh, Scotland. Many American foundries made versions of this type which eventually became known as Bookman. Monotype Bookman Old Style roman is based on earlier Lanston Monotype and ATF models. The italic has been re drawn following the style of the Oldstyle Antique italics of Miller and Richard. Although called 'Old Style', the near vertical stress of the face puts it into the transitional category. A legible and robust text face.</string>
- <key>designer</key>
- <string>Ong Chong Wah</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Bookman Old Style</string>
- <key>fullname</key>
- <string>Bookman Old Style</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Bookman Old Style™ is a trademark of The Monotype Corporation which may be registered in certain jurisdictions.</string>
- <key>unique</key>
- <string>Bookman Old Style Regular : 1991</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Monotype Typography, Inc.</string>
- <key>version</key>
- <string>Version 2.35</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>BookmanOldStyle-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Digitized data copyright The Monotype Corporation 1991-1995. All rights reserved. Bookman Old Style™ is a trademark of The Monotype Corporation which may be registered in certain jurisdictions.</string>
- <key>description</key>
- <string>The origins of Bookman Old Style lie in the typeface called Oldstyle Antique, designed by A C Phemister circa 1858 for the Miller and Richard foundry in Edinburgh, Scotland. Many American foundries made versions of this type which eventually became known as Bookman. Monotype Bookman Old Style roman is based on earlier Lanston Monotype and ATF models. The italic has been re drawn following the style of the Oldstyle Antique italics of Miller and Richard. Although called 'Old Style', the near vertical stress of the face puts it into the transitional category. A legible and robust text face.</string>
- <key>designer</key>
- <string>Ong Chong Wah</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Bookman Old Style</string>
- <key>fullname</key>
- <string>Bookman Old Style Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>Bookman Old Style™ is a trademark of The Monotype Corporation which may be registered in certain jurisdictions.</string>
- <key>unique</key>
- <string>Bookman Old Style Bold : 1991</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Monotype Typography, Inc.</string>
- <key>version</key>
- <string>Version 2.35</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>BookmanOldStyle-Italic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Digitized data copyright The Monotype Corporation 1991-1995. All rights reserved. Bookman Old Style™ is a trademark of The Monotype Corporation which may be registered in certain jurisdictions.</string>
- <key>description</key>
- <string>The origins of Bookman Old Style lie in the typeface called Oldstyle Antique, designed by A C Phemister circa 1858 for the Miller and Richard foundry in Edinburgh, Scotland. Many American foundries made versions of this type which eventually became known as Bookman. Monotype Bookman Old Style roman is based on earlier Lanston Monotype and ATF models. The italic has been re drawn following the style of the Oldstyle Antique italics of Miller and Richard. Although called 'Old Style', the near vertical stress of the face puts it into the transitional category. A legible and robust text face.</string>
- <key>designer</key>
- <string>Ong Chong Wah</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Bookman Old Style</string>
- <key>fullname</key>
- <string>Bookman Old Style Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Italic</string>
- <key>trademark</key>
- <string>Bookman Old Style™ is a trademark of The Monotype Corporation which may be registered in certain jurisdictions.</string>
- <key>unique</key>
- <string>Bookman Old Style Italic : 1991</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Monotype Typography, Inc.</string>
- <key>version</key>
- <string>Version 2.35</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>BookmanOldStyle-BoldItalic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Digitized data copyright The Monotype Corporation 1991-1995. All rights reserved. Bookman Old Style™ is a trademark of The Monotype Corporation which may be registered in certain jurisdictions.</string>
- <key>description</key>
- <string>The origins of Bookman Old Style lie in the typeface called Oldstyle Antique, designed by A C Phemister circa 1858 for the Miller and Richard foundry in Edinburgh, Scotland. Many American foundries made versions of this type which eventually became known as Bookman. Monotype Bookman Old Style roman is based on earlier Lanston Monotype and ATF models. The italic has been re drawn following the style of the Oldstyle Antique italics of Miller and Richard. Although called 'Old Style', the near vertical stress of the face puts it into the transitional category. A legible and robust text face.</string>
- <key>designer</key>
- <string>Ong Chong Wah</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Bookman Old Style</string>
- <key>fullname</key>
- <string>Bookman Old Style Bold Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold Italic</string>
- <key>trademark</key>
- <string>Bookman Old Style™ is a trademark of The Monotype Corporation which may be registered in certain jurisdictions.</string>
- <key>unique</key>
- <string>Bookman Old Style Bold Italic : 1991</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Monotype Typography, Inc.</string>
- <key>version</key>
- <string>Version 2.35</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>STIXIntSmBol.otf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/STIXIntSmBol.otf</string>
- <key>type</key>
- <string>opentype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>STIXIntegralsSm-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 2001-2010 by the STI Pub Companies, consisting of the American Chemical Society, the American Institute of Physics, the American Mathematical Society, the American Physical Society, Elsevier, Inc., and The Institute of Electrical and Electronic Engineers, Inc. Portions copyright (c) 1998-2003 by MicroPress, Inc. Portions copyright (c) 1990 by Elsevier, Inc. All rights reserved.</string>
- <key>description</key>
- <string>Arie de Ruiter, who in 1995 was Head of Information Technology Development at Elsevier Science, made a proposal to the STI Pub group, an informal group of publishers consisting of representatives from the American Chemical Society (ACS), American Institute of Physics (AIP), American Mathematical Society (AMS), American Physical Society (APS), Elsevier, and Institute of Electrical and Electronics Engineers (IEEE). De Ruiter encouraged the members to consider development of a series of Web fonts, which he proposed should be called the Scientific and Technical Information eXchange, or STIX, Fonts. All STI Pub member organizations enthusiastically endorsed this proposal, and the STI Pub group agreed to embark on what has become a twelve-year project. The goal of the project was to identify all alphabetic, symbolic, and other special characters used in any facet of scientific publishing and to create a set of Unicode-based fonts that would be distributed free to every scientist, student, and other interested party worldwide. The fonts would be consistent with the emerging Unicode standard, and would permit universal representation of every character. With the release of the STIX fonts, de Ruiter's vision has been realized.</string>
- <key>designer</key>
- <string>MicroPress Inc., with final additions and corrections provided by Coen Hoffman, Elsevier (retired)</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>STIXIntegralsSm</string>
- <key>fullname</key>
- <string>STIXIntegralsSm-Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>STIX Fonts(TM) is a trademark of The Institute of Electrical and Electronics Engineers, Inc.</string>
- <key>unique</key>
- <string>FontMaster:STIXIntegralsSm-Bold:1.0.0</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.0.0</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MshtakanOblique.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/MshtakanOblique.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>MshtakanOblique</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Mshtakan-Oblique 1.1 © 2002-2003 Michael Everson. All Rights Reserved.</string>
- <key>designer</key>
- <string>Michael Everson</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Mshtakan</string>
- <key>fullname</key>
- <string>Mshtakan Oblique</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Oblique</string>
- <key>trademark</key>
- <string>Mshtakan Oblique is a trademark of Michael Everson.</string>
- <key>unique</key>
- <string>Mshtakan Oblique; 6.0d2e1; 2006-10-20</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Michael Everson</string>
- <key>version</key>
- <string>6.0d2e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>GenevaCY.dfont</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/GenevaCY.dfont</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>GenevaCyr</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 1997 DoubleAlex Design Studio. All Cyrillic characters designed by DoubleAlex. The font have been designed under contract with "DPI Group" to be used exclusively with system software distributed by "DPI Group".</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Geneva CY</string>
- <key>fullname</key>
- <string>Geneva CY</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>unique</key>
- <string>Geneva CY; 6.1d5e1; 2009-06-29</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>6.1d5e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Arial Narrow Bold.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Arial Narrow Bold.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>ArialNarrow-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 2007 The Monotype Corporation. All Rights Reserved.</string>
- <key>description</key>
- <string>Monotype Drawing Office 1982. A contemporary sans serif design, Arial contains more humanist characteristics than many of its predecessors and as such is more in tune with the mood of the last decades of the twentieth century. The overall treatment of curves is softer and fuller than in most industrial-style sans serif faces. Terminal strokes are cut on the diagonal which helps to give the face a less mechanical appearance. Arial is an extremely versatile family of typefaces which can be used with equal success for text setting in reports, presentations, magazines etc, and for display use in newspapers, advertising and promotions.</string>
- <key>designer</key>
- <string>Robin Nicholas, Patricia Saunders</string>
- <key>duplicate</key>
- <string>yes</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Arial Narrow</string>
- <key>fullname</key>
- <string>Arial Narrow Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>Arial is a trademark of The Monotype Corporation in the United States and/or other countries.</string>
- <key>unique</key>
- <string>Arial Narrow Bold : 2007</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>The Monotype Corporation</string>
- <key>version</key>
- <string>Version 2.38.1x</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>HelveticaNeue.dfont</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/System/Library/Fonts/HelveticaNeue.dfont</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>HelveticaNeue</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 1981, 1982, 1983, 1989 and 1993, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved.
-
-The digitally encoded machine readable software for producing the Typefaces licensed to you is now the property of Heidelberger Druckmaschinen AG and its licensors, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG.
-
-Copyright (c) 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved.</string>
- <key>description</key>
- <string>Helvetica (Latin for Swiss) has the objective and functional style which was associated with Swiss typography in the 1950s and 1960s. It is perfect for international correspondence: no ornament, no emotion, just clear presentation of information. Helvetica is still one of the best selling sans-serif fonts.</string>
- <key>designer</key>
- <string>Linotype Design Studio</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Helvetica Neue</string>
- <key>fullname</key>
- <string>Helvetica Neue</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>"Helvetica Neue" is a trademark of Heidelberger Druckmaschinen AG, which may be registered in certain jurisdictions, exclusivly licensed through Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG.</string>
- <key>unique</key>
- <string>Helvetica Neue; 7.0d27e1; 2011-06-23</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d27e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>HelveticaNeue-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 1981, 1982, 1983, 1989 and 1993, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved.
-
-The digitally encoded machine readable software for producing the Typefaces licensed to you is now the property of Heidelberger Druckmaschinen AG and its licensors, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG.
-
-Copyright (c) 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved.</string>
- <key>description</key>
- <string>Helvetica (Latin for Swiss) has the objective and functional style which was associated with Swiss typography in the 1950s and 1960s. It is perfect for international correspondence: no ornament, no emotion, just clear presentation of information. Helvetica is still one of the best selling sans-serif fonts.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Helvetica Neue</string>
- <key>fullname</key>
- <string>Helvetica Neue Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>"Helvetica Neue" is a trademark of Heidelberger Druckmaschinen AG, which may be registered in certain jurisdictions, exclusivly licensed through Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG.</string>
- <key>unique</key>
- <string>Helvetica Neue Bold; 7.0d27e1; 2011-06-23</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d27e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>HelveticaNeue-Italic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 1981, 1982, 1983, 1989 and 1993, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved.
-
-The digitally encoded machine readable software for producing the Typefaces licensed to you is now the property of Heidelberger Druckmaschinen AG and its licensors, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG.
-
-Copyright (c) 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved.</string>
- <key>description</key>
- <string>Helvetica (Latin for Swiss) has the objective and functional style which was associated with Swiss typography in the 1950s and 1960s. It is perfect for international correspondence: no ornament, no emotion, just clear presentation of information. Helvetica is still one of the best selling sans-serif fonts.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Helvetica Neue</string>
- <key>fullname</key>
- <string>Helvetica Neue Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Italic</string>
- <key>trademark</key>
- <string>"Helvetica Neue" is a trademark of Heidelberger Druckmaschinen AG, which may be registered in certain jurisdictions, exclusivly licensed through Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG.</string>
- <key>unique</key>
- <string>Helvetica Neue Italic; 7.0d27e1; 2011-06-23</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d27e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>HelveticaNeue-BoldItalic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 1981, 1982, 1983, 1989 and 1993, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved.
-
-The digitally encoded machine readable software for producing the Typefaces licensed to you is now the property of Heidelberger Druckmaschinen AG and its licensors, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG.
-
-Copyright (c) 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved.</string>
- <key>description</key>
- <string>Helvetica (Latin for Swiss) has the objective and functional style which was associated with Swiss typography in the 1950s and 1960s. It is perfect for international correspondence: no ornament, no emotion, just clear presentation of information. Helvetica is still one of the best selling sans-serif fonts.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Helvetica Neue</string>
- <key>fullname</key>
- <string>Helvetica Neue Bold Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold Italic</string>
- <key>trademark</key>
- <string>"Helvetica Neue" is a trademark of Heidelberger Druckmaschinen AG, which may be registered in certain jurisdictions, exclusivly licensed through Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG.</string>
- <key>unique</key>
- <string>Helvetica Neue Bold Italic; 7.0d27e1; 2011-06-23</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d27e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>HelveticaNeue-CondensedBold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 1981, 1982, 1983, 1989 and 1993, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved.
-
-The digitally encoded machine readable software for producing the Typefaces licensed to you is now the property of Heidelberger Druckmaschinen AG and its licensors, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG.
-
-Copyright (c) 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved.</string>
- <key>description</key>
- <string>Helvetica (Latin for Swiss) has the objective and functional style which was associated with Swiss typography in the 1950s and 1960s. It is perfect for international correspondence: no ornament, no emotion, just clear presentation of information. Helvetica is still one of the best selling sans-serif fonts.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Helvetica Neue</string>
- <key>fullname</key>
- <string>Helvetica Neue Condensed Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Condensed Bold</string>
- <key>trademark</key>
- <string>"Helvetica Neue" is a trademark of Heidelberger Druckmaschinen AG, which may be registered in certain jurisdictions, exclusivly licensed through Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG.</string>
- <key>unique</key>
- <string>Helvetica Neue Condensed Bold; 7.0d27e1; 2011-06-23</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d27e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>HelveticaNeue-UltraLight</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 1981, 1982, 1983, 1989 and 1993, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved.
-
-The digitally encoded machine readable software for producing the Typefaces licensed to you is now the property of Heidelberger Druckmaschinen AG and its licensors, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG.
-
-Copyright (c) 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved.</string>
- <key>description</key>
- <string>Helvetica (Latin for Swiss) has the objective and functional style which was associated with Swiss typography in the 1950s and 1960s. It is perfect for international correspondence: no ornament, no emotion, just clear presentation of information. Helvetica is still one of the best selling sans-serif fonts.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Helvetica Neue</string>
- <key>fullname</key>
- <string>Helvetica Neue UltraLight</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>UltraLight</string>
- <key>trademark</key>
- <string>"Helvetica Neue" is a trademark of Heidelberger Druckmaschinen AG, which may be registered in certain jurisdictions, exclusivly licensed through Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG.</string>
- <key>unique</key>
- <string>Helvetica Neue UltraLight; 7.0d27e1; 2011-06-23</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d27e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>HelveticaNeue-UltraLightItalic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 1981, 1982, 1983, 1989 and 1993, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved.
-
-The digitally encoded machine readable software for producing the Typefaces licensed to you is now the property of Heidelberger Druckmaschinen AG and its licensors, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG.
-
-Copyright (c) 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved.</string>
- <key>description</key>
- <string>Helvetica (Latin for Swiss) has the objective and functional style which was associated with Swiss typography in the 1950s and 1960s. It is perfect for international correspondence: no ornament, no emotion, just clear presentation of information. Helvetica is still one of the best selling sans-serif fonts.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Helvetica Neue</string>
- <key>fullname</key>
- <string>Helvetica Neue UltraLight Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>UltraLight Italic</string>
- <key>trademark</key>
- <string>"Helvetica Neue" is a trademark of Heidelberger Druckmaschinen AG, which may be registered in certain jurisdictions, exclusivly licensed through Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG.</string>
- <key>unique</key>
- <string>Helvetica Neue UltraLight Italic; 7.0d27e1; 2011-06-23</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d27e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>HelveticaNeue-Light</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 1981, 1982, 1983, 1989 and 1993, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved.
-
-The digitally encoded machine readable software for producing the Typefaces licensed to you is now the property of Heidelberger Druckmaschinen AG and its licensors, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG.
-
-Copyright (c) 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved.</string>
- <key>description</key>
- <string>Helvetica (Latin for Swiss) has the objective and functional style which was associated with Swiss typography in the 1950s and 1960s. It is perfect for international correspondence: no ornament, no emotion, just clear presentation of information. Helvetica is still one of the best selling sans-serif fonts.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Helvetica Neue</string>
- <key>fullname</key>
- <string>Helvetica Neue Light</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Light</string>
- <key>trademark</key>
- <string>"Helvetica Neue" is a trademark of Heidelberger Druckmaschinen AG, which may be registered in certain jurisdictions, exclusivly licensed through Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG.</string>
- <key>unique</key>
- <string>Helvetica Neue Light; 7.0d27e1; 2011-06-23</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d27e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>HelveticaNeue-LightItalic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 1981, 1982, 1983, 1989 and 1993, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved.
-
-The digitally encoded machine readable software for producing the Typefaces licensed to you is now the property of Heidelberger Druckmaschinen AG and its licensors, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG.
-
-Copyright (c) 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved.</string>
- <key>description</key>
- <string>Helvetica (Latin for Swiss) has the objective and functional style which was associated with Swiss typography in the 1950s and 1960s. It is perfect for international correspondence: no ornament, no emotion, just clear presentation of information. Helvetica is still one of the best selling sans-serif fonts.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Helvetica Neue</string>
- <key>fullname</key>
- <string>Helvetica Neue Light Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Light Italic</string>
- <key>trademark</key>
- <string>"Helvetica Neue" is a trademark of Heidelberger Druckmaschinen AG, which may be registered in certain jurisdictions, exclusivly licensed through Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG.</string>
- <key>unique</key>
- <string>Helvetica Neue Light Italic; 7.0d27e1; 2011-06-23</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d27e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>HelveticaNeue-CondensedBlack</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 1981, 1982, 1983, 1989 and 1993, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved.
-
-The digitally encoded machine readable software for producing the Typefaces licensed to you is now the property of Heidelberger Druckmaschinen AG and its licensors, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG.
-
-Copyright (c) 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved.</string>
- <key>description</key>
- <string>Helvetica (Latin for Swiss) has the objective and functional style which was associated with Swiss typography in the 1950s and 1960s. It is perfect for international correspondence: no ornament, no emotion, just clear presentation of information. Helvetica is still one of the best selling sans-serif fonts.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Helvetica Neue</string>
- <key>fullname</key>
- <string>Helvetica Neue Condensed Black</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Condensed Black</string>
- <key>trademark</key>
- <string>"Helvetica Neue" is a trademark of Heidelberger Druckmaschinen AG, which may be registered in certain jurisdictions, exclusivly licensed through Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG.</string>
- <key>unique</key>
- <string>Helvetica Neue Condensed Black; 7.0d27e1; 2011-06-23</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d27e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>HelveticaNeue-Medium</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Part of the digitally encoded machine readable outline data for producing the Typefaces provided is copyrighted © 2003 - 2006 Linotype GmbH, www.linotype.com. All rights reserved. This software is the property of Linotype GmbH, and may not be reproduced, modified, disclosed or transferred without the express written approval of Linotype GmbH. Copyright © 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved. Helvetica is a trademark of Heidelberger Druckmaschinen AG, exclusively licensed through Linotype GmbH, and may be registered in certain jurisdictions. This typeface is original artwork of Linotype Design Studio. The design may be protected in certain jurisdictions.</string>
- <key>description</key>
- <string>Helvetica (Latin for Swiss) has the objective and functional style which was associated with Swiss typography in the 1950s and 1960s. It is perfect for international correspondence: no ornament, no emotion, just clear presentation of information. Helvetica is still one of the best selling sans-serif fonts.</string>
- <key>designer</key>
- <string>Linotype Design Studio</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Helvetica Neue</string>
- <key>fullname</key>
- <string>Helvetica Neue Medium</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Medium</string>
- <key>trademark</key>
- <string>Helvetica is a trademark of Heidelberger Druckmaschinen AG, exclusively licensed through Linotype GmbH, and may be registered in certain jurisdictions.</string>
- <key>unique</key>
- <string>Helvetica Neue Medium; 7.0d27e1; 2011-06-23</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d27e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>PMingLiU.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/PMingLiU.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>PMingLiU</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>(c) Copyright DynaComware Corp. 2008</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>PMingLiU</string>
- <key>fullname</key>
- <string>PMingLiU</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Trademark by DynaComware Corp.</string>
- <key>unique</key>
- <string>PMingLiU</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 7.00</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Lucida Handwriting</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Lucida Handwriting</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>LucidaHandwriting-Italic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 1991 Bigelow &amp; Holmes Inc. All Rights Reserved. Pat. Pend. © 1990-1991 Type Solutions, Inc. All Rights Reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Lucida Handwriting</string>
- <key>fullname</key>
- <string>Lucida Handwriting Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Italic</string>
- <key>trademark</key>
- <string>Lucida® is a registered trademark of Bigelow &amp; Holmes Inc.</string>
- <key>unique</key>
- <string>Lucida Handwriting Italic: B&amp;H: 1991</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.69</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Constantia.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Constantia.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Constantia</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 2009 Microsoft Corporation. All Rights Reserved.</string>
- <key>description</key>
- <string>Constantia is a modulated wedge-serif typeface designed primarily for continuous text in both electronic and paper publishing. The design responds to the recent narrowing of the gap between screen readability and traditional print media, exploiting specific aspects of the most recent advances in ClearType rendering, such as sub-pixel positioning. The classic proportions of relatively small x-height and long extenders make Constantia ideal for book and journal publishing, while the slight squareness and open counters ensure that it remains legible even at small sizes.</string>
- <key>designer</key>
- <string>John Hudson</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Constantia</string>
- <key>fullname</key>
- <string>Constantia</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Constantia is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries.</string>
- <key>unique</key>
- <string>Microsoft: Constantia: 2005</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Microsoft Corporation</string>
- <key>version</key>
- <string>Version 5.90</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Arial Narrow</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Arial Narrow</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>ArialNarrow</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Typeface © The Monotype Corporation plc. Data © The Monotype Corporation plc/Type Solutions Inc.1990-1991 All Rights Reserved.</string>
- <key>description</key>
- <string>Monotype Drawing Office 1982. A contemporary sans serif design, Arial contains more humanist characteristics than many of its predecessors and as such is more in tune with the mood of the last decades of the twentieth century. The overall treatment of curves is softer and fuller than in most industrial-style sans serif faces. Terminal strokes are cut on the diagonal which helps to give the face a less mechanical appearance. Arial is an extremely versatile family of typefaces which can be used with equal success for text setting in reports, presentations, magazines etc, and for display use in newspapers, advertising and promotions.</string>
- <key>designer</key>
- <string>Robin Nicholas, Patricia Saunders</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Arial Narrow</string>
- <key>fullname</key>
- <string>Arial Narrow</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Arial is a registered trademark of The Monotype Corporation plc.</string>
- <key>unique</key>
- <string>Arial Narrow Regular : 1991</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Monotype Typography, Inc.</string>
- <key>version</key>
- <string>Version 2.35</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ArialNarrow-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Typeface © The Monotype Corporation plc. Data © The Monotype Corporation plc / Type Solutions Inc. 1990-91 All Rights Reserved.</string>
- <key>description</key>
- <string>Monotype Drawing Office 1982. A contemporary sans serif design, Arial contains more humanist characteristics than many of its predecessors and as such is more in tune with the mood of the last decades of the twentieth century. The overall treatment of curves is softer and fuller than in most industrial-style sans serif faces. Terminal strokes are cut on the diagonal which helps to give the face a less mechanical appearance. Arial is an extremely versatile family of typefaces which can be used with equal success for text setting in reports, presentations, magazines etc, and for display use in newspapers, advertising and promotions.</string>
- <key>designer</key>
- <string>Robin Nicholas, Patricia Saunders</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Arial Narrow</string>
- <key>fullname</key>
- <string>Arial Narrow Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>Arial is a registered trademark of The Monotype Corporation plc.</string>
- <key>unique</key>
- <string>Arial Narrow Bold : 1991</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Monotype Typography, Inc.</string>
- <key>version</key>
- <string>Version 2.35</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ArialNarrow-Italic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Typeface © The Monotype Corporation plc. Data © The Monotype Corporation plc / Type Solutions Inc. 19-1991 All Rights Reserved.</string>
- <key>description</key>
- <string>Monotype Drawing Office 1982. A contemporary sans serif design, Arial contains more humanist characteristics than many of its predecessors and as such is more in tune with the mood of the last decades of the twentieth century. The overall treatment of curves is softer and fuller than in most industrial-style sans serif faces. Terminal strokes are cut on the diagonal which helps to give the face a less mechanical appearance. Arial is an extremely versatile family of typefaces which can be used with equal success for text setting in reports, presentations, magazines etc, and for display use in newspapers, advertising and promotions.</string>
- <key>designer</key>
- <string>Robin Nicholas, Patricia Saunders</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Arial Narrow</string>
- <key>fullname</key>
- <string>Arial Narrow Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Italic</string>
- <key>trademark</key>
- <string>Arial is a registered trademark of The Monotype Corporation plc.</string>
- <key>unique</key>
- <string>Arial Narrow Italic : 1991</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Monotype Typography, Inc.</string>
- <key>version</key>
- <string>Version 2.35</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ArialNarrow-BoldItalic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Typeface © The Monotype Corporation plc. Data © The Monotype Corporation plc / Type Solutions Inc. 1990-91 All Rights Reserved.</string>
- <key>description</key>
- <string>Monotype Drawing Office 1982. A contemporary sans serif design, Arial contains more humanist characteristics than many of its predecessors and as such is more in tune with the mood of the last decades of the twentieth century. The overall treatment of curves is softer and fuller than in most industrial-style sans serif faces. Terminal strokes are cut on the diagonal which helps to give the face a less mechanical appearance. Arial is an extremely versatile family of typefaces which can be used with equal success for text setting in reports, presentations, magazines etc, and for display use in newspapers, advertising and promotions.</string>
- <key>designer</key>
- <string>Robin Nicholas, Patricia Saunders</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Arial Narrow</string>
- <key>fullname</key>
- <string>Arial Narrow Bold Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold Italic</string>
- <key>trademark</key>
- <string>Arial is a registered trademark of The Monotype Corporation plc.</string>
- <key>unique</key>
- <string>Arial Narrow Bold Italic : 1991</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Monotype Typography, Inc.</string>
- <key>version</key>
- <string>Version 2.35</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Sinhala MN.ttc</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Sinhala MN.ttc</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>SinhalaMN</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 2004 by Muthu Nedumaran. All rights reserved.</string>
- <key>description</key>
- <string>Copyright (c) 2004 by Muthu Nedumaran. All rights reserved.</string>
- <key>designer</key>
- <string>Muthu Nedumaran</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Sinhala MN</string>
- <key>fullname</key>
- <string>Sinhala MN</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Sinhala MN is a trademark of Muthu Nedumaran.</string>
- <key>unique</key>
- <string>Sinhala MN; 7.0d5e1; 2010-11-05</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Muthu Nedumaran</string>
- <key>version</key>
- <string>7.0d5e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>SinhalaMN-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 2004 by Muthu Nedumaran. All rights reserved.</string>
- <key>description</key>
- <string>Copyright (c) 2004 by Muthu Nedumaran. All rights reserved.</string>
- <key>designer</key>
- <string>Muthu Nedumaran</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Sinhala MN</string>
- <key>fullname</key>
- <string>Sinhala MN Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>Sinhala MN is a trademark of Muthu Nedumaran.</string>
- <key>unique</key>
- <string>Sinhala MN Bold; 7.0d5e1; 2010-11-05</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Muthu Nedumaran</string>
- <key>version</key>
- <string>7.0d5e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Myanmar MN.ttc</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Myanmar MN.ttc</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>MyanmarMN</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 2010 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved.</string>
- <key>description</key>
- <string>Copyright (c) 2010 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved.</string>
- <key>designer</key>
- <string>Muthu Nedumaran</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Myanmar MN</string>
- <key>fullname</key>
- <string>Myanmar MN</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Myanmar MN is a trademark of Murasu Systems Sdn. Bhd. Malaysia.</string>
- <key>unique</key>
- <string>Myanmar MN; 7.0d3e1; 2011-08-02</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Murasu Systems Sdn. Bhd. Malaysia</string>
- <key>version</key>
- <string>7.0d3e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MyanmarMN-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 2010 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved.</string>
- <key>description</key>
- <string>Copyright (c) 2010 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved.</string>
- <key>designer</key>
- <string>Muthu Nedumaran</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Myanmar MN</string>
- <key>fullname</key>
- <string>Myanmar MN Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>Myanmar MN Bold is a trademark of Murasu Systems Sdn. Bhd. Malaysia.</string>
- <key>unique</key>
- <string>Myanmar MN Bold; 7.0d3e1; 2011-08-02</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Murasu Systems Sdn. Bhd. Malaysia</string>
- <key>version</key>
- <string>7.0d3e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Cracked</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Cracked</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Cracked</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright © 1993 House Industries, Brand Design Company. Copyright © 2001, 2006 Apple Computer, Inc. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Cracked</string>
- <key>fullname</key>
- <string>Cracked</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>unique</key>
- <string>Cracked; 1.2; 2006-02-27</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>1.2</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple LiGothic Medium.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Apple LiGothic Medium.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>LiGothicMed</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Apple Computer, Inc. 1992-1998</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Apple LiGothic</string>
- <key>fullname</key>
- <string>Apple LiGothic Medium</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Medium</string>
- <key>unique</key>
- <string>Apple LiGothic Medium; 6.1d3e1; 2008-08-11</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>6.1d3e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Braille.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/System/Library/Fonts/Apple Braille.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>AppleBraille</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© Copyright 2007 by Apple, Inc.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Apple Braille</string>
- <key>fullname</key>
- <string>Apple Braille</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>unique</key>
- <string>Apple Braille; 1.0d5e1; 2008-12-15</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>1.0d5e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Palatino Linotype Italic.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Palatino Linotype Italic.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>PalatinoLinotype-Italic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright 1981-1983, 1989,1993, 1998 Heidelberger Druckmaschinen AG. All rights reserved. The digitally encoded machine readable outline data for producing the Typefaces licensed are the property of Heidelberger Druckmaschinen AG and/or its subsidiaries, represented by Linotype Library GmbH, Dupont Strasse 1, 61352 Bad Homburg Germany. Portions © 1996-1998 Microsoft Corporation. All Rights Reserved.</string>
- <key>description</key>
- <string>Palatino Linotype is the definitive new version of Hermann Zapf’s Palatino, which since its design in 1950 has become one of the world's most widely used typefaces. For this new digital version, Professor Zapf has drawn numerous additional characters to include an extensive range of ligatures, numerals, fractions and support for Cyrillic and both monotonic and polytonic Greek. Special care has been taken to enhance the quality of the letterforms when displayed on the computer screen, ensuring that Palatino Linotype is highly legible whether displayed on the screen or in print. This typeface is ideal for use in extended text settings such as books, periodicals and catalogs.</string>
- <key>designer</key>
- <string>Hermann Zapf</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Palatino Linotype</string>
- <key>fullname</key>
- <string>Palatino Linotype Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Italic</string>
- <key>trademark</key>
- <string>Palatino® is a registered trademark of Heidelberger Druckmaschinen AG and its subsidiaries.</string>
- <key>unique</key>
- <string>Palatino Linotype Italic April 1998</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>LINOTYPE-HELL AG</string>
- <key>version</key>
- <string>Version 5.00</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>himalaya.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/himalaya.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>MicrosoftHimalaya</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 2006 Microsoft Corporation. All rights reserved.</string>
- <key>designer</key>
- <string>Founder, Beijing China</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Microsoft Himalaya</string>
- <key>fullname</key>
- <string>Microsoft Himalaya</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Microsoft Himalaya is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries.</string>
- <key>unique</key>
- <string>Microsoft Himalaya</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Microsoft Corporation</string>
- <key>version</key>
- <string>Version 5.00</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Colonna</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Colonna</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>ColonnaMT</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright © The Monotype Corporation plc. 1992. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Colonna MT</string>
- <key>fullname</key>
- <string>Colonna MT</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Colonna MT™ trademark of The Monotype Corporation plc.</string>
- <key>unique</key>
- <string>Colonna MT</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.51</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>STIXVarBol.otf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/STIXVarBol.otf</string>
- <key>type</key>
- <string>opentype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>STIXVariants-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 2001-2010 by the STI Pub Companies, consisting of the American Chemical Society, the American Institute of Physics, the American Mathematical Society, the American Physical Society, Elsevier, Inc., and The Institute of Electrical and Electronic Engineers, Inc. Portions copyright (c) 1998-2003 by MicroPress, Inc. Portions copyright (c) 1990 by Elsevier, Inc. All rights reserved.</string>
- <key>description</key>
- <string>Arie de Ruiter, who in 1995 was Head of Information Technology Development at Elsevier Science, made a proposal to the STI Pub group, an informal group of publishers consisting of representatives from the American Chemical Society (ACS), American Institute of Physics (AIP), American Mathematical Society (AMS), American Physical Society (APS), Elsevier, and Institute of Electrical and Electronics Engineers (IEEE). De Ruiter encouraged the members to consider development of a series of Web fonts, which he proposed should be called the Scientific and Technical Information eXchange, or STIX, Fonts. All STI Pub member organizations enthusiastically endorsed this proposal, and the STI Pub group agreed to embark on what has become a twelve-year project. The goal of the project was to identify all alphabetic, symbolic, and other special characters used in any facet of scientific publishing and to create a set of Unicode-based fonts that would be distributed free to every scientist, student, and other interested party worldwide. The fonts would be consistent with the emerging Unicode standard, and would permit universal representation of every character. With the release of the STIX fonts, de Ruiter's vision has been realized.</string>
- <key>designer</key>
- <string>MicroPress Inc., with final additions and corrections provided by Coen Hoffman, Elsevier (retired)</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>STIXVariants</string>
- <key>fullname</key>
- <string>STIXVariants-Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>STIX Fonts(TM) is a trademark of The Institute of Electrical and Electronics Engineers, Inc.</string>
- <key>unique</key>
- <string>FontMaster:STIXVariants-Bold:1.0.0</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.0.0</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>PCmyoungjo.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/PCmyoungjo.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>JCsmPC</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 1994-2001 Apple Computer, Inc. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>PCMyungjo</string>
- <key>fullname</key>
- <string>PCMyungjo Regular</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>PCMyoungjo is a trademark of Apple Computer, Inc.</string>
- <key>unique</key>
- <string>PCMyungjo Regular; 7.0d1e3; 2010-04-06</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d1e3</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>InaiMathi.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/InaiMathi.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>InaiMathi</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 1986 Murasu Systems Sdn. Bhd. Malaysia. (c) 2000 Grow Momentum (S) Pte. Ltd. All rights reserved.</string>
- <key>designer</key>
- <string>Muthu Nedumaran</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>InaiMathi</string>
- <key>fullname</key>
- <string>InaiMathi</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>InaiMathi is a trademark of Murasu Systems Sdn. Bhd. Malaysia.</string>
- <key>unique</key>
- <string>InaiMathi; 7.0d1e1; 2010-11-05</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Murasu Systems Sdn. Bhd. Malaysia</string>
- <key>version</key>
- <string>7.0d1e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Comic Sans MS Bold.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Comic Sans MS Bold.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>ComicSansMS-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 2006 Microsoft Corporation. All rights reserved.</string>
- <key>description</key>
- <string>Designed by Microsoft's Vincent Connare, this is a face based on the lettering from comic magazines. This casual but legible face has proved very popular with a wide variety of people.</string>
- <key>designer</key>
- <string>Vincent Connare</string>
- <key>duplicate</key>
- <string>yes</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Comic Sans MS</string>
- <key>fullname</key>
- <string>Comic Sans MS Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>unique</key>
- <string>Microsoft Comic Sans Bold</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Microsoft Corporation</string>
- <key>version</key>
- <string>Version 5.00x</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ヒラギノ明朝 ProN W6.otf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/System/Library/Fonts/ヒラギノ明朝 ProN W6.otf</string>
- <key>type</key>
- <string>opentype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>HiraMinProN-W6</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>ver8.10, Copyright (c) 1993-2010 Dainippon Screen Mfg. Co., Ltd. All Rights Reserved.</string>
- <key>designer</key>
- <string>JIYUKOBO Ltd.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Hiragino Mincho ProN</string>
- <key>fullname</key>
- <string>ヒラギノ明朝 ProN W6</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>W6</string>
- <key>trademark</key>
- <string>Hiragino is a trademark of Dainippon Screen Mfg. Co., Ltd.</string>
- <key>unique</key>
- <string>8.10;Dainippon Screen Mfg. Co., Ltd.;Hiragino Mincho ProN W6</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Dainippon Screen Mfg. Co., Ltd.</string>
- <key>version</key>
- <string>Version 8.10</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Verdana.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Verdana.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Verdana</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 2008 Microsoft Corporation. All Rights Reserved.</string>
- <key>designer</key>
- <string>Matthew Carter</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Verdana</string>
- <key>fullname</key>
- <string>Verdana</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Verdana is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries.</string>
- <key>unique</key>
- <string>Microsoft:Verdana Regular:Version 5.02 (Microsoft)</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 5.02</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MS PMincho.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/MS PMincho.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>MS-PMincho</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>(C)2006 data:RICOH Co.,Ltd. typeface:RYOBI IMAGIX CO.</string>
- <key>description</key>
- <string>The default glyph shapes of this font are based on JIS2004. This font also provides access to a set of JIS90 legacy glyphs via 'jp90' OpenType layout table.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>MS PMincho</string>
- <key>fullname</key>
- <string>MS PMincho</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>MS PMincho is a registered trademark of the Microsoft Corporation.</string>
- <key>unique</key>
- <string>Microsoft:MS PMincho:2006</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 5.02</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Gill Sans MT Bold.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Gill Sans MT Bold.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>GillSansMT-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Digitized data copyright © 1997 The Monotype Corporation, Inc. All rights reserved. Gill Sans® is a trademark of The Monotype Corporation, Inc. which may be registered in certain jurisdictions.</string>
- <key>description</key>
- <string>Monotype Type Drawing Office 1928. Gill studied under the renowned calligrapher, Edward Johnston, the designer of the London Underground sans serif typeface. This influenced Gill who later experimented with sans serif designs, and in due course produced a set of capital letters. These became Monotype series 231, produced in 1923, and the forerunner of the extensive Gill Sans range now available. A twentieth century sans serif that has a simplicity of form which does not reject traditional forms and proportions, and gives the face a humanist feel. The lighter weights are highly readable in text and suitable for magazine and book work, whereas the heavier weights are best used for display in advertising, packaging, and labels.</string>
- <key>designer</key>
- <string>Eric Gill</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Gill Sans MT</string>
- <key>fullname</key>
- <string>Gill Sans MT Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>Gill Sans® is a trademark of The Monotype Corporation, Inc. which may be registered in certain jurisdictions.</string>
- <key>unique</key>
- <string>Monotype - Gill Sans MT Bold</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Monotype Typography</string>
- <key>version</key>
- <string>Version 1.65</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Cambria Math.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Cambria Math.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>CambriaMath</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 2009 Microsoft Corporation. All Rights Reserved.</string>
- <key>description</key>
- <string>Cambria has been designed for on-screen reading and to look good when printed at small sizes. It has very even spacing and proportions. Diagonal and vertical hairlines and serifs are relatively strong, while horizontal serifs are small and intend to emphasize stroke endings rather than stand out themselves. This principle is most noticeable in the italics where the lowercase characters are subdued in style to be at their best as elements of word-images. When Cambria is used for captions at sizes over 20 point, the inter-character spacing should be slightly reduced for best results. The design isn't just intended for business documents: The regular weight has been extended with a large set of math and science symbols. The Greek and Cyrillic has been designed under close supervision of an international team of experts, who aimed to set a historical new standard in multi-script type design.</string>
- <key>designer</key>
- <string>Monotype Imaging and Tiro Typeworks</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Cambria Math</string>
- <key>fullname</key>
- <string>Cambria Math</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Cambria is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries.</string>
- <key>unique</key>
- <string>Microsoft: Cambria: 2006</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Microsoft Corporation</string>
- <key>version</key>
- <string>Version 5.96</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ヒラギノ角ゴ StdN W8.otf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/ヒラギノ角ゴ StdN W8.otf</string>
- <key>type</key>
- <string>opentype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>HiraKakuStdN-W8</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>ver8.10, Copyright (c) 1993-2010 Dainippon Screen Mfg. Co., Ltd. All Rights Reserved.</string>
- <key>designer</key>
- <string>JIYUKOBO Ltd.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Hiragino Kaku Gothic StdN</string>
- <key>fullname</key>
- <string>ヒラギノ角ゴ StdN W8</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>W8</string>
- <key>trademark</key>
- <string>Hiragino is a trademark of Dainippon Screen Mfg. Co., Ltd.</string>
- <key>unique</key>
- <string>8.10;Dainippon Screen Mfg. Co., Ltd.;Hiragino Kaku Gothic StdN W8</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Dainippon Screen Mfg. Co., Ltd.</string>
- <key>version</key>
- <string>Version 8.10</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>STIXSizFourSymBol.otf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/STIXSizFourSymBol.otf</string>
- <key>type</key>
- <string>opentype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>STIXSizeFourSym-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 2001-2010 by the STI Pub Companies, consisting of the American Chemical Society, the American Institute of Physics, the American Mathematical Society, the American Physical Society, Elsevier, Inc., and The Institute of Electrical and Electronic Engineers, Inc. Portions copyright (c) 1998-2003 by MicroPress, Inc. Portions copyright (c) 1990 by Elsevier, Inc. All rights reserved.</string>
- <key>description</key>
- <string>Arie de Ruiter, who in 1995 was Head of Information Technology Development at Elsevier Science, made a proposal to the STI Pub group, an informal group of publishers consisting of representatives from the American Chemical Society (ACS), American Institute of Physics (AIP), American Mathematical Society (AMS), American Physical Society (APS), Elsevier, and Institute of Electrical and Electronics Engineers (IEEE). De Ruiter encouraged the members to consider development of a series of Web fonts, which he proposed should be called the Scientific and Technical Information eXchange, or STIX, Fonts. All STI Pub member organizations enthusiastically endorsed this proposal, and the STI Pub group agreed to embark on what has become a twelve-year project. The goal of the project was to identify all alphabetic, symbolic, and other special characters used in any facet of scientific publishing and to create a set of Unicode-based fonts that would be distributed free to every scientist, student, and other interested party worldwide. The fonts would be consistent with the emerging Unicode standard, and would permit universal representation of every character. With the release of the STIX fonts, de Ruiter's vision has been realized.</string>
- <key>designer</key>
- <string>MicroPress Inc., with final additions and corrections provided by Coen Hoffman, Elsevier (retired)</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>STIXSizeFourSym</string>
- <key>fullname</key>
- <string>STIXSizeFourSym-Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>STIX Fonts(TM) is a trademark of The Institute of Electrical and Electronics Engineers, Inc.</string>
- <key>unique</key>
- <string>FontMaster:STIXSizeFourSym-Bold:1.0.0</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.0.0</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Noteworthy.ttc</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Noteworthy.ttc</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Noteworthy-Light</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Noteworthy</string>
- <key>fullname</key>
- <string>Noteworthy Light</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Light</string>
- <key>unique</key>
- <string>Noteworthy Light; 7.0d8e1; 2011-02-18</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d8e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Noteworthy-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Noteworthy</string>
- <key>fullname</key>
- <string>Noteworthy Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>unique</key>
- <string>Noteworthy Bold; 7.0d8e1; 2011-02-18</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d8e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>HeadlineA.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/HeadlineA.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>JCHEadA</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 1994-2001 Apple Computer, Inc. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>HeadLineA</string>
- <key>fullname</key>
- <string>HeadLineA Regular</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>HeadLineA is a trademark of Apple Computer, Inc.</string>
- <key>unique</key>
- <string>HeadLineA Regular; 6.1d5e1; 2008-08-21</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>6.1d5e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>BiauKai.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/BiauKai.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>DFKaiShu-SB-Estd-BF</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>(c) Copyright DynaLab Inc. 1995</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>BiauKai</string>
- <key>fullname</key>
- <string>BiauKai</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Trademark by DynaLab Inc.</string>
- <key>unique</key>
- <string>BiauKai; 6.1d3e1; 2008-08-11</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>6.1d3e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>STHeiti Medium.ttc</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/System/Library/Fonts/STHeiti Medium.ttc</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>STHeitiTC-Medium</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 2000-2007, Changzhou SinoType Technology Co., Ltd. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Heiti TC</string>
- <key>fullname</key>
- <string>Heiti TC Medium</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Medium</string>
- <key>trademark</key>
- <string>STHeiti TC and SinoType are trademarks of Changzhou SinoType Technology Co., Ltd.</string>
- <key>unique</key>
- <string>Heiti TC Medium; 7.0d17e1; 2011-05-05</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>SinoType</string>
- <key>version</key>
- <string>7.0d17e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>STHeitiSC-Medium</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 2000-2007, Changzhou SinoType Technology Co., Ltd. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Heiti SC</string>
- <key>fullname</key>
- <string>Heiti SC Medium</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Medium</string>
- <key>trademark</key>
- <string>STHeiti SC and SinoType are trademarks of Changzhou SinoType Technology Co., Ltd.</string>
- <key>unique</key>
- <string>Heiti SC Medium; 7.0d17e1; 2011-05-05</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>SinoType</string>
- <key>version</key>
- <string>7.0d17e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Times New Roman.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Times New Roman.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>TimesNewRomanPSMT</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 2008 The Monotype Corporation. All Rights Reserved.</string>
- <key>designer</key>
- <string>Monotype Type Drawing Office - Stanley Morison, Victor Lardent 1932</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Times New Roman</string>
- <key>fullname</key>
- <string>Times New Roman</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Times New Roman is a trademark of The Monotype Corporation in the United States and/or other countries.</string>
- <key>unique</key>
- <string>Monotype:Times New Roman Regular:Version 5.05 (Microsoft)</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>The Monotype Corporation</string>
- <key>version</key>
- <string>Version 5.05</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>mingliu_hkscs.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/mingliu_hkscs.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Ming-Lt-HKSCS-UNI-H</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>(c) Copyright DynaComware Corp. 2008</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>MingLiU_HKSCS</string>
- <key>fullname</key>
- <string>MingLiU_HKSCS</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Trademark by DynaComware Corp.</string>
- <key>unique</key>
- <string>MingLiU_HKSCS</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 7.00</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Footlight Light</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Footlight Light</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>FootlightMTLight</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Footlight © The Monotype Corporation plc. Data © The Monotype Corporation plc/Type Solutions Inc. 1990 - 1992 All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Footlight MT Light</string>
- <key>fullname</key>
- <string>Footlight MT Light</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Footlight ® Trademark of The Monotype Corporation plc registered in the US Pat &amp; TM Off. and elsewhere.</string>
- <key>unique</key>
- <string>Footlight MT Light</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.51</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Brush Script.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Brush Script.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>BrushScriptMT</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright © 1993 , Monotype Typography ltd.</string>
- <key>description</key>
- <string>This heavy, informal script looks as though it was written with a brush because its lowercase letters join together. Use the uppercase letters primarily as initials, although you might find it interesting to use all capitals of this typeface for some words.
-</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Brush Script MT</string>
- <key>fullname</key>
- <string>Brush Script MT Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Italic</string>
- <key>trademark</key>
- <string>Brush Script is a Trademark of Monotype Typography ltd.</string>
- <key>unique</key>
- <string>Brush Script MT Italic</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Monotype Typography</string>
- <key>version</key>
- <string>Version 1.52</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>STIXIntUpDReg.otf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/STIXIntUpDReg.otf</string>
- <key>type</key>
- <string>opentype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>STIXIntegralsUpD-Regular</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 2001-2010 by the STI Pub Companies, consisting of the American Chemical Society, the American Institute of Physics, the American Mathematical Society, the American Physical Society, Elsevier, Inc., and The Institute of Electrical and Electronic Engineers, Inc. Portions copyright (c) 1998-2003 by MicroPress, Inc. Portions copyright (c) 1990 by Elsevier, Inc. All rights reserved.</string>
- <key>description</key>
- <string>Arie de Ruiter, who in 1995 was Head of Information Technology Development at Elsevier Science, made a proposal to the STI Pub group, an informal group of publishers consisting of representatives from the American Chemical Society (ACS), American Institute of Physics (AIP), American Mathematical Society (AMS), American Physical Society (APS), Elsevier, and Institute of Electrical and Electronics Engineers (IEEE). De Ruiter encouraged the members to consider development of a series of Web fonts, which he proposed should be called the Scientific and Technical Information eXchange, or STIX, Fonts. All STI Pub member organizations enthusiastically endorsed this proposal, and the STI Pub group agreed to embark on what has become a twelve-year project. The goal of the project was to identify all alphabetic, symbolic, and other special characters used in any facet of scientific publishing and to create a set of Unicode-based fonts that would be distributed free to every scientist, student, and other interested party worldwide. The fonts would be consistent with the emerging Unicode standard, and would permit universal representation of every character. With the release of the STIX fonts, de Ruiter's vision has been realized.</string>
- <key>designer</key>
- <string>MicroPress Inc., with final additions and corrections provided by Coen Hoffman, Elsevier (retired)</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>STIXIntegralsUpD</string>
- <key>fullname</key>
- <string>STIXIntegralsUpD-Regular</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>STIX Fonts(TM) is a trademark of The Institute of Electrical and Electronics Engineers, Inc.</string>
- <key>unique</key>
- <string>FontMaster:STIXIntegralsUpD-Regular:1.0.0</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.0.0</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Nadeem.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Nadeem.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Nadeem</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Nadeem designed by Diwan Software Ltd. Copyright Apple Computer, Inc. and
-its licensors, 1992-1998 all rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Nadeem</string>
- <key>fullname</key>
- <string>Nadeem</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>unique</key>
- <string>Nadeem; 7.0d1e1; 2010-12-14</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d1e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Georgia.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Georgia.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Georgia</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 2006 Microsoft Corporation. All Rights Reserved.</string>
- <key>designer</key>
- <string>Matthew Carter</string>
- <key>duplicate</key>
- <string>yes</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Georgia</string>
- <key>fullname</key>
- <string>Georgia</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Georgia is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries.</string>
- <key>unique</key>
- <string>Microsoft Georgia Regular</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Carter &amp; Cone</string>
- <key>version</key>
- <string>Version 5.00x</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Arial Unicode.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Arial Unicode.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>ArialUnicodeMS</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Digitized data copyright (C) 1993-2000 Agfa Monotype Corporation. All rights reserved. Arial® is a trademark of The Monotype Corporation which may be registered in certain jurisdictions.</string>
- <key>description</key>
- <string>This extended version of Monotype's Arial contains glyphs for all code points within The Unicode Standard, Version 2.1.</string>
- <key>designer</key>
- <string>Original design: Robin Nicholas, Patricia Saunders. Extended glyphs: Monotype Type Drawing Office, Monotype Typography.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Arial Unicode MS</string>
- <key>fullname</key>
- <string>Arial Unicode MS</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Arial® is a trademark of The Monotype Corporation which may be registered in certain jurisdictions.</string>
- <key>unique</key>
- <string>Monotype - Arial Unicode MS</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Agfa Monotype Corporation</string>
- <key>version</key>
- <string>Version 1.01x</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>HelveticaNeueDeskUI.ttc</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/System/Library/Fonts/HelveticaNeueDeskUI.ttc</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>.HelveticaNeueDeskUI</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 1981, 1982, 1983, 1989 and 1993, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved.
-
-The digitally encoded machine readable software for producing the Typefaces licensed to you is now the property of Heidelberger Druckmaschinen AG and its licensors, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG.
-
-Copyright (c) 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved.</string>
- <key>description</key>
- <string>Helvetica (Latin for Swiss) has the objective and functional style which was associated with Swiss typography in the 1950s and 1960s. It is perfect for international correspondence: no ornament, no emotion, just clear presentation of information. Helvetica is still one of the best selling sans-serif fonts.</string>
- <key>designer</key>
- <string>Linotype Design Studio</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>.Helvetica Neue Desk UI</string>
- <key>fullname</key>
- <string>.Helvetica Neue Desk UI</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>"Helvetica Neue" is a trademark of Heidelberger Druckmaschinen AG, which may be registered in certain jurisdictions, exclusivly licensed through Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG.</string>
- <key>unique</key>
- <string>.Helvetica Neue Desk UI; 7.0d27e1; 2011-06-23</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d27e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>.HelveticaNeueDeskUI-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 1981, 1982, 1983, 1989 and 1993, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved.
-
-The digitally encoded machine readable software for producing the Typefaces licensed to you is now the property of Heidelberger Druckmaschinen AG and its licensors, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG.
-
-Copyright (c) 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved.</string>
- <key>description</key>
- <string>Helvetica (Latin for Swiss) has the objective and functional style which was associated with Swiss typography in the 1950s and 1960s. It is perfect for international correspondence: no ornament, no emotion, just clear presentation of information. Helvetica is still one of the best selling sans-serif fonts.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>.Helvetica Neue Desk UI</string>
- <key>fullname</key>
- <string>.Helvetica Neue Desk UI Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>".Helvetica Neue" is a trademark of Heidelberger Druckmaschinen AG, which may be registered in certain jurisdictions, exclusivly licensed through Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG.</string>
- <key>unique</key>
- <string>.Helvetica Neue Desk UI Bold; 7.0d27e1; 2011-06-23</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d27e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>.HelveticaNeueDeskUI-Italic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 1981, 1982, 1983, 1989 and 1993, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved.
-
-The digitally encoded machine readable software for producing the Typefaces licensed to you is now the property of Heidelberger Druckmaschinen AG and its licensors, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG.
-
-Copyright (c) 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved.</string>
- <key>description</key>
- <string>Helvetica (Latin for Swiss) has the objective and functional style which was associated with Swiss typography in the 1950s and 1960s. It is perfect for international correspondence: no ornament, no emotion, just clear presentation of information. Helvetica is still one of the best selling sans-serif fonts.</string>
- <key>designer</key>
- <string>Linotype Design Studio</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>.Helvetica Neue Desk UI</string>
- <key>fullname</key>
- <string>.Helvetica Neue Desk UI Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Italic</string>
- <key>trademark</key>
- <string>".Helvetica Neue" is a trademark of Heidelberger Druckmaschinen AG, which may be registered in certain jurisdictions, exclusivly licensed through Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG.</string>
- <key>unique</key>
- <string>.Helvetica Neue Desk UI Italic; 7.0d27e1; 2011-06-23</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d27e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>.HelveticaNeueDeskUI-BoldItalic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 1981, 1982, 1983, 1989 and 1993, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved.
-
-The digitally encoded machine readable software for producing the Typefaces licensed to you is now the property of Heidelberger Druckmaschinen AG and its licensors, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG.
-
-Copyright (c) 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved.</string>
- <key>description</key>
- <string>Helvetica (Latin for Swiss) has the objective and functional style which was associated with Swiss typography in the 1950s and 1960s. It is perfect for international correspondence: no ornament, no emotion, just clear presentation of information. Helvetica is still one of the best selling sans-serif fonts.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>.Helvetica Neue Desk UI</string>
- <key>fullname</key>
- <string>.Helvetica Neue Desk UI Bold Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold Italic</string>
- <key>trademark</key>
- <string>".Helvetica Neue" is a trademark of Heidelberger Druckmaschinen AG, which may be registered in certain jurisdictions, exclusivly licensed through Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG.</string>
- <key>unique</key>
- <string>.Helvetica Neue Desk UI Bold Italic; 7.0d27e1; 2011-06-23</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d27e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>SimSun-ExtB.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/SimSun-ExtB.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>SimSun-ExtB</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>(c) Beijing ZhongYi Electronics Co., 1995-2003, All rights reserved</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>SimSun-ExtB</string>
- <key>fullname</key>
- <string>SimSun-ExtB</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Trademark of Beijing ZhongYi Electronics Co., China</string>
- <key>unique</key>
- <string>SimSun-ExtB</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 5.00</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Marlett.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Marlett.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Marlett</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 2006 Microsoft Corporation. All Rights Reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Marlett</string>
- <key>fullname</key>
- <string>Marlett</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>unique</key>
- <string>Marlett</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 5.00</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Corbel Bold Italic.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Corbel Bold Italic.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Corbel-BoldItalic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 2008 Microsoft Corporation. All Rights Reserved.</string>
- <key>description</key>
- <string>Corbel is designed to give an uncluttered and clean appearance on screen. The letter forms are open with soft, flowing curves. It is legible, clear and functional at small sizes. At larger sizes the detailing and style of the shapes is more apparent resulting in a modern sans serif type with a wide range of possible uses.</string>
- <key>designer</key>
- <string>Jeremy Tankard</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Corbel</string>
- <key>fullname</key>
- <string>Corbel Bold Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold Italic</string>
- <key>trademark</key>
- <string>Corbel is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries.</string>
- <key>unique</key>
- <string>Microsoft: Corbel Bold Italic: 2005</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Microsoft Corporation</string>
- <key>version</key>
- <string>Version 5.61</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Batang.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Batang.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Batang</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>(c) Copyright HanYang I&amp;C Co.,LTD. 2000</string>
- <key>description</key>
- <string>This version of Batang.ttf is prepared for MAC Office. The EBDT and EBLC tables have been deleted from the original font (ver 2.21).</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Batang</string>
- <key>fullname</key>
- <string>Batang</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Batang is a registered trademark of the Microsoft Corporation.</string>
- <key>unique</key>
- <string>Batang Regular</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.50</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Trebuchet MS Italic.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Trebuchet MS Italic.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>TrebuchetMS-Italic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 2006 Microsoft Corporation. All Rights Reserved.</string>
- <key>description</key>
- <string>Trebuchet, designed by Vincent Connare in 1996, is a humanist sans serif designed for easy screen readability. Trebuchet takes its inspiration from the sans serifs of the 1930s which had large x heights and round features intended to promote readability on signs. The typeface name is credited to a puzzle heard at Microsoft, where the question was asked, "could you build a Trebuchet (a form of medieval catapult) to launch a person from the main campus to the consumer campus, and how?" The Trebuchet fonts are intended to be the vehicle that fires your messages across the Internet. "Launch your message with a Trebuchet page".</string>
- <key>designer</key>
- <string>Vincent Connare</string>
- <key>duplicate</key>
- <string>yes</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Trebuchet MS</string>
- <key>fullname</key>
- <string>Trebuchet MS Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Italic</string>
- <key>unique</key>
- <string>Microsoft Trebuchet Italic</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Microsoft Corporation</string>
- <key>version</key>
- <string>Version 5.00x</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>STIXGeneralBol.otf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/STIXGeneralBol.otf</string>
- <key>type</key>
- <string>opentype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>STIXGeneral-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 2001-2010 by the STI Pub Companies, consisting of the American Chemical Society, the American Institute of Physics, the American Mathematical Society, the American Physical Society, Elsevier, Inc., and The Institute of Electrical and Electronic Engineers, Inc. Portions copyright (c) 1998-2003 by MicroPress, Inc. Portions copyright (c) 1990 by Elsevier, Inc. All rights reserved.</string>
- <key>description</key>
- <string>Arie de Ruiter, who in 1995 was Head of Information Technology Development at Elsevier Science, made a proposal to the STI Pub group, an informal group of publishers consisting of representatives from the American Chemical Society (ACS), American Institute of Physics (AIP), American Mathematical Society (AMS), American Physical Society (APS), Elsevier, and Institute of Electrical and Electronics Engineers (IEEE). De Ruiter encouraged the members to consider development of a series of Web fonts, which he proposed should be called the Scientific and Technical Information eXchange, or STIX, Fonts. All STI Pub member organizations enthusiastically endorsed this proposal, and the STI Pub group agreed to embark on what has become a twelve-year project. The goal of the project was to identify all alphabetic, symbolic, and other special characters used in any facet of scientific publishing and to create a set of Unicode-based fonts that would be distributed free to every scientist, student, and other interested party worldwide. The fonts would be consistent with the emerging Unicode standard, and would permit universal representation of every character. With the release of the STIX fonts, de Ruiter's vision has been realized.</string>
- <key>designer</key>
- <string>MicroPress Inc., with final additions and corrections provided by Coen Hoffman, Elsevier (retired)</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>STIXGeneral</string>
- <key>fullname</key>
- <string>STIXGeneral-Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>STIX Fonts(TM) is a trademark of The Institute of Electrical and Electronics Engineers, Inc.</string>
- <key>unique</key>
- <string>FontMaster:STIXGeneral-Bold:1.0.0</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.0.0</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Malayalam MN.ttc</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Malayalam MN.ttc</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>MalayalamMN</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 2009 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved.</string>
- <key>description</key>
- <string>Copyright (c) 2003 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved.</string>
- <key>designer</key>
- <string>Muthu Nedumaran</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Malayalam MN</string>
- <key>fullname</key>
- <string>Malayalam MN</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Malayalam MN is a trademark of Murasu Systems Sdn. Bhd. Malaysia.</string>
- <key>unique</key>
- <string>Malayalam MN; 7.0d3e1; 2011-01-10</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Murasu Systems Sdn. Bhd. Malaysia</string>
- <key>version</key>
- <string>7.0d3e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MalayalamMN-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 2009 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved.</string>
- <key>description</key>
- <string>Copyright (c) 2003 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved.</string>
- <key>designer</key>
- <string>Muthu Nedumaran</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Malayalam MN</string>
- <key>fullname</key>
- <string>Malayalam MN Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>Malayalam MN Bold is a trademark of Murasu Systems Sdn. Bhd. Malaysia.</string>
- <key>unique</key>
- <string>Malayalam MN Bold; 7.0d3e1; 2011-01-10</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Murasu Systems Sdn. Bhd. Malaysia</string>
- <key>version</key>
- <string>7.0d3e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>DevanagariMT.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/DevanagariMT.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>DevanagariMT</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright © Monotype Typography Ltd 1996. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Devanagari MT</string>
- <key>fullname</key>
- <string>Devanagari MT</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Monotype Devanagari is a Trademark of Monotype Typography Ltd.</string>
- <key>unique</key>
- <string>Devanagari MT; 6.0d4e1; 2009-01-13</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>6.0d4e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Arial Black.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Arial Black.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Arial-Black</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>C 2006 The Monotype Corporation. All Rights Reserved.</string>
- <key>description</key>
- <string>Monotype Drawing Office 1982. A contemporary sans serif design, Arial contains more humanist characteristics than many of its predecessors and as such is more in tune with the mood of the last decades of the twentieth century. The overall treatment of curves is softer and fuller than in most industrial-style sans serif faces. Terminal strokes are cut on the diagonal which helps to give the face a less mechanical appearance. Arial is an extremely versatile family of typefaces which can be used with equal success for text setting in reports, presentations, magazines etc, and for display use in newspapers, advertising and promotions.</string>
- <key>designer</key>
- <string>Robin Nicholas, Patricia Saunders</string>
- <key>duplicate</key>
- <string>yes</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Arial Black</string>
- <key>fullname</key>
- <string>Arial Black</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Arial is a trademark of The Monotype Corporation in the United States and/or other countries.</string>
- <key>unique</key>
- <string>Monotype - Arial Black Regular</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Monotype Typography, Inc.</string>
- <key>version</key>
- <string>Version 5.00.1x</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AquaKana.ttc</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/System/Library/Fonts/AquaKana.ttc</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>AquaKana</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright © 2001-2011 Apple Inc. All rights reserved.</string>
- <key>designer</key>
- <string>JIYU-KOBO Ltd.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>.Aqua Kana</string>
- <key>fullname</key>
- <string>.Aqua かな</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Aqua Kana is a trademark of Apple Inc.</string>
- <key>unique</key>
- <string>.Aqua Kana; 7.0d2e3; 2011-04-20</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>DAINIPPON SCREEN MFG. CO., LTD.</string>
- <key>version</key>
- <string>7.0d2e3</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AquaKana-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright © 2001-2011 Apple Inc. All rights reserved.</string>
- <key>designer</key>
- <string>JIYU-KOBO Ltd.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>.Aqua Kana</string>
- <key>fullname</key>
- <string>.Aqua かな ボールド</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>Aqua Kana is a trademark of Apple Computer, Inc.</string>
- <key>unique</key>
- <string>.Aqua Kana Bold; 7.0d2e3; 2011-04-20</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>DAINIPPON SCREEN MFG. CO., LTD.</string>
- <key>version</key>
- <string>7.0d2e3</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Perpetua Italic.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Perpetua Italic.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Perpetua-Italic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Digitized data copyright The Monotype Corporation 1991-1995. All rights reserved. Perpetua® is a trademark of The Monotype Corporation which may be registered in certain jurisdictions.</string>
- <key>description</key>
- <string>A sensitive adaptation of a style of letter that had been popularized for monumental work in stone by Eric Gill. Large scale drawings by Gill were given to Charles Malin, a Parisian punch-cutter, and his hand cut punches were the basis for the font issued by Monotype. The incised quality of Perpetua will lend distinction to any work compatible with its serenity. First used in a private translation called 'The Passion of Perpetua and Felicity'; the italic was originally called Felicity. Widely used as a text face in quality books, Perpetua is also very popular in advertising and display work.</string>
- <key>designer</key>
- <string>Eric Gill</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Perpetua</string>
- <key>fullname</key>
- <string>Perpetua Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Italic</string>
- <key>trademark</key>
- <string>Perpetua® is a trademark of The Monotype Corporation which may be registered in certain jurisdictions.</string>
- <key>unique</key>
- <string>Monotype - Perpetua Italic</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Monotype Typography</string>
- <key>version</key>
- <string>Version 1.76</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Lucida Blackletter</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Lucida Blackletter</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>LucidaBlackletter</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 1991 Bigelow &amp; Holmes Inc. All Rights Reserved. © 1990-1991 Type Solutions, Inc. All Rights Reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Lucida Blackletter</string>
- <key>fullname</key>
- <string>Lucida Blackletter</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Lucida® is a registered trademark of Bigelow &amp; Holmes Inc.</string>
- <key>unique</key>
- <string>Lucida Blackletter</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.69</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Consolas Italic.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Consolas Italic.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Consolas-Italic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 2008 Microsoft Corporation. All Rights Reserved.</string>
- <key>description</key>
- <string>Consolas is aimed for use in programming environments and other circumstances where a monospaced font is specified. All characters have the same width, like old typewriters, making it a good choice for personal and business correspondance. The improved Windows font display allowed a design with proportions closer to normal text than traditional monospaced fonts like Courier. This allows for more comfortably reading of extended text on screen. OpenType features include hanging or lining numerals; slashed, dotted and normal zeros; and alternative shapes for a number of lowercase letters. The look of text can be tuned to personal taste by varying the number of bars and waves.</string>
- <key>designer</key>
- <string>Luc(as) de Groot</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Consolas</string>
- <key>fullname</key>
- <string>Consolas Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Italic</string>
- <key>trademark</key>
- <string>Consolas is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries.</string>
- <key>unique</key>
- <string>Microsoft: Consolas Italic: 2005</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Microsoft Corporation</string>
- <key>version</key>
- <string>Version 5.22</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Andale Mono</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Andale Mono</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>AndaleMono</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Digitized data copyright (C) 1993-1997 The Monotype Corporation. All rights reserved.</string>
- <key>description</key>
- <string>Andale Monospaced is a highly legible monospaced font.</string>
- <key>designer</key>
- <string>Steven R. Matteson</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Andale Mono</string>
- <key>fullname</key>
- <string>Andale Mono</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Andale™ is a trademark of The Monotype Corporation which may be registered in certain jurisdictions.</string>
- <key>unique</key>
- <string>Andale Mono Regular</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Monotype Typography</string>
- <key>version</key>
- <string>Version 2.00</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Tamil Sangam MN.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Tamil Sangam MN.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>TamilSangamMN</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 1986 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved.</string>
- <key>description</key>
- <string>Copyright (c) 1986 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved.</string>
- <key>designer</key>
- <string>Muthu Nedumaran</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Tamil Sangam MN</string>
- <key>fullname</key>
- <string>Tamil Sangam MN</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Tamil Sangam MN is a trademark of Murasu Systems Sdn. Bhd. Malaysia.</string>
- <key>unique</key>
- <string>Tamil Sangam MN; 7.0d2e1; 2010-11-05</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Murasu Systems Sdn. Bhd. Malaysia</string>
- <key>version</key>
- <string>7.0d2e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>PTSans.ttc</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/PTSans.ttc</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>PTSans-Regular</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright © 2009 ParaType Ltd. All rights reserved.</string>
- <key>description</key>
- <string>PT Sans is a type family of universal use. It consists of 8 styles: regular and bold weights with corresponding italics form a standard computer font family; two narrow styles (regular and bold) are intended for documents that require tight set; two caption styles (regular and bold) are for texts of small point sizes. The design combines traditional conservative appearance with modern trends of humanistic sans serif and characterized by enhanced legibility. These features beside conventional use in business applications and printed stuff made the fonts quite useable for direction and guide signs, schemes, screens of information kiosks and other objects of urban visual communications.
-
-The fonts next to standard Latin and Cyrillic character sets contain signs of title languages of the national republics of Russian Federation and support the most of the languages of neighboring countries. The fonts were developed and released by ParaType in 2009 with financial support from Federal Agency of Print and Mass Communications of Russian Federation. Design - Alexandra Korolkova with assistance of Olga Umpeleva and supervision of Vladimir Yefimov.</string>
- <key>designer</key>
- <string>A.Korolkova, O.Umpeleva, V.Yefimov</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>PT Sans</string>
- <key>fullname</key>
- <string>PT Sans</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>PT Sans is a trademark of the ParaType Ltd.</string>
- <key>unique</key>
- <string>PT Sans; 7.0d1e1; 2010-08-24</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>ParaType Ltd</string>
- <key>version</key>
- <string>7.0d1e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>PTSans-Italic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright © 2009 ParaType Ltd. All rights reserved.</string>
- <key>description</key>
- <string>PT Sans is a type family of universal use. It consists of 8 styles: regular and bold weights with corresponding italics form a standard computer font family; two narrow styles (regular and bold) are intended for documents that require tight set; two caption styles (regular and bold) are for texts of small point sizes. The design combines traditional conservative appearance with modern trends of humanistic sans serif and characterized by enhanced legibility. These features beside conventional use in business applications and printed stuff made the fonts quite useable for direction and guide signs, schemes, screens of information kiosks and other objects of urban visual communications.
-
-The fonts next to standard Latin and Cyrillic character sets contain signs of title languages of the national republics of Russian Federation and support the most of the languages of neighboring countries. The fonts were developed and released by ParaType in 2009 with financial support from Federal Agency of Print and Mass Communications of Russian Federation. Design - Alexandra Korolkova with assistance of Olga Umpeleva and supervision of Vladimir Yefimov.</string>
- <key>designer</key>
- <string>A.Korolkova, O.Umpeleva, V.Yefimov</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>PT Sans</string>
- <key>fullname</key>
- <string>PT Sans Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Italic</string>
- <key>trademark</key>
- <string>PT Sans is a trademark of the ParaType Ltd.</string>
- <key>unique</key>
- <string>PT Sans Italic; 7.0d1e1; 2010-08-24</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>ParaType Ltd</string>
- <key>version</key>
- <string>7.0d1e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>PTSans-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright © 2009 ParaType Ltd. All rights reserved.</string>
- <key>description</key>
- <string>PT Sans is a type family of universal use. It consists of 8 styles: regular and bold weights with corresponding italics form a standard computer font family; two narrow styles (regular and bold) are intended for documents that require tight set; two caption styles (regular and bold) are for texts of small point sizes. The design combines traditional conservative appearance with modern trends of humanistic sans serif and characterized by enhanced legibility. These features beside conventional use in business applications and printed stuff made the fonts quite useable for direction and guide signs, schemes, screens of information kiosks and other objects of urban visual communications.
-
-The fonts next to standard Latin and Cyrillic character sets contain signs of title languages of the national republics of Russian Federation and support the most of the languages of neighboring countries. The fonts were developed and released by ParaType in 2009 with financial support from Federal Agency of Print and Mass Communications of Russian Federation. Design - Alexandra Korolkova with assistance of Olga Umpeleva and supervision of Vladimir Yefimov.</string>
- <key>designer</key>
- <string>A.Korolkova, O.Umpeleva, V.Yefimov</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>PT Sans</string>
- <key>fullname</key>
- <string>PT Sans Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>PT Sans is a trademark of the ParaType Ltd.</string>
- <key>unique</key>
- <string>PT Sans Bold; 7.0d1e1; 2010-08-24</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>ParaType Ltd</string>
- <key>version</key>
- <string>7.0d1e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>PTSans-BoldItalic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright © 2009 ParaType Ltd. All rights reserved.</string>
- <key>description</key>
- <string>PT Sans is a type family of universal use. It consists of 8 styles: regular and bold weights with corresponding italics form a standard computer font family; two narrow styles (regular and bold) are intended for documents that require tight set; two caption styles (regular and bold) are for texts of small point sizes. The design combines traditional conservative appearance with modern trends of humanistic sans serif and characterized by enhanced legibility. These features beside conventional use in business applications and printed stuff made the fonts quite useable for direction and guide signs, schemes, screens of information kiosks and other objects of urban visual communications.
-
-The fonts next to standard Latin and Cyrillic character sets contain signs of title languages of the national republics of Russian Federation and support the most of the languages of neighboring countries. The fonts were developed and released by ParaType in 2009 with financial support from Federal Agency of Print and Mass Communications of Russian Federation. Design - Alexandra Korolkova with assistance of Olga Umpeleva and supervision of Vladimir Yefimov.</string>
- <key>designer</key>
- <string>A.Korolkova, O.Umpeleva, V.Yefimov</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>PT Sans</string>
- <key>fullname</key>
- <string>PT Sans Bold Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold Italic</string>
- <key>trademark</key>
- <string>PT Sans is a trademark of the ParaType Ltd.</string>
- <key>unique</key>
- <string>PT Sans Bold Italic; 7.0d1e1; 2010-08-24</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>ParaType Ltd</string>
- <key>version</key>
- <string>7.0d1e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>PTSans-Caption</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright © 2009 ParaType Ltd. All rights reserved.</string>
- <key>description</key>
- <string>PT Sans is a type family of universal use. It consists of 8 styles: regular and bold weights with corresponding italics form a standard computer font family; two narrow styles (regular and bold) are intended for documents that require tight set; two caption styles (regular and bold) are for texts of small point sizes. The design combines traditional conservative appearance with modern trends of humanistic sans serif and characterized by enhanced legibility. These features beside conventional use in business applications and printed stuff made the fonts quite useable for direction and guide signs, schemes, screens of information kiosks and other objects of urban visual communications.
-
-The fonts next to standard Latin and Cyrillic character sets contain signs of title languages of the national republics of Russian Federation and support the most of the languages of neighboring countries. The fonts were developed and released by ParaType in 2009 with financial support from Federal Agency of Print and Mass Communications of Russian Federation. Design - Alexandra Korolkova with assistance of Olga Umpeleva and supervision of Vladimir Yefimov.</string>
- <key>designer</key>
- <string>A.Korolkova, O.Umpeleva, V.Yefimov</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>PT Sans Caption</string>
- <key>fullname</key>
- <string>PT Sans Caption</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>PT Sans is a trademark of the ParaType Ltd.</string>
- <key>unique</key>
- <string>PT Sans Caption; 7.0d1e1; 2010-08-24</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>ParaType Ltd</string>
- <key>version</key>
- <string>7.0d1e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>PTSans-CaptionBold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright © 2009 ParaType Ltd. All rights reserved.</string>
- <key>description</key>
- <string>PT Sans is a type family of universal use. It consists of 8 styles: regular and bold weights with corresponding italics form a standard computer font family; two narrow styles (regular and bold) are intended for documents that require tight set; two caption styles (regular and bold) are for texts of small point sizes. The design combines traditional conservative appearance with modern trends of humanistic sans serif and characterized by enhanced legibility. These features beside conventional use in business applications and printed stuff made the fonts quite useable for direction and guide signs, schemes, screens of information kiosks and other objects of urban visual communications.
-
-The fonts next to standard Latin and Cyrillic character sets contain signs of title languages of the national republics of Russian Federation and support the most of the languages of neighboring countries. The fonts were developed and released by ParaType in 2009 with financial support from Federal Agency of Print and Mass Communications of Russian Federation. Design - Alexandra Korolkova with assistance of Olga Umpeleva and supervision of Vladimir Yefimov.</string>
- <key>designer</key>
- <string>A.Korolkova, O.Umpeleva, V.Yefimov</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>PT Sans Caption</string>
- <key>fullname</key>
- <string>PT Sans Caption Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>PT Sans is a trademark of the ParaType Ltd.</string>
- <key>unique</key>
- <string>PT Sans Caption Bold; 7.0d1e1; 2010-08-24</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>ParaType Ltd</string>
- <key>version</key>
- <string>7.0d1e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>PTSans-Narrow</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright © 2009 ParaType Ltd. All rights reserved.</string>
- <key>description</key>
- <string>PT Sans is a type family of universal use. It consists of 8 styles: regular and bold weights with corresponding italics form a standard computer font family; two narrow styles (regular and bold) are intended for documents that require tight set; two caption styles (regular and bold) are for texts of small point sizes. The design combines traditional conservative appearance with modern trends of humanistic sans serif and characterized by enhanced legibility. These features beside conventional use in business applications and printed stuff made the fonts quite useable for direction and guide signs, schemes, screens of information kiosks and other objects of urban visual communications.
-
-The fonts next to standard Latin and Cyrillic character sets contain signs of title languages of the national republics of Russian Federation and support the most of the languages of neighboring countries. The fonts were developed and released by ParaType in 2009 with financial support from Federal Agency of Print and Mass Communications of Russian Federation. Design - Alexandra Korolkova with assistance of Olga Umpeleva and supervision of Vladimir Yefimov.</string>
- <key>designer</key>
- <string>A.Korolkova, O.Umpeleva, V.Yefimov</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>PT Sans Narrow</string>
- <key>fullname</key>
- <string>PT Sans Narrow</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>PT Sans is a trademark of the ParaType Ltd.</string>
- <key>unique</key>
- <string>PT Sans Narrow; 7.0d1e1; 2010-08-24</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>ParaType Ltd</string>
- <key>version</key>
- <string>7.0d1e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>PTSans-NarrowBold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright © 2009 ParaType Ltd. All rights reserved.</string>
- <key>description</key>
- <string>PT Sans is a type family of universal use. It consists of 8 styles: regular and bold weights with corresponding italics form a standard computer font family; two narrow styles (regular and bold) are intended for documents that require tight set; two caption styles (regular and bold) are for texts of small point sizes. The design combines traditional conservative appearance with modern trends of humanistic sans serif and characterized by enhanced legibility. These features beside conventional use in business applications and printed stuff made the fonts quite useable for direction and guide signs, schemes, screens of information kiosks and other objects of urban visual communications.
-
-The fonts next to standard Latin and Cyrillic character sets contain signs of title languages of the national republics of Russian Federation and support the most of the languages of neighboring countries. The fonts were developed and released by ParaType in 2009 with financial support from Federal Agency of Print and Mass Communications of Russian Federation. Design - Alexandra Korolkova with assistance of Olga Umpeleva and supervision of Vladimir Yefimov.</string>
- <key>designer</key>
- <string>A.Korolkova, O.Umpeleva, V.Yefimov</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>PT Sans Narrow</string>
- <key>fullname</key>
- <string>PT Sans Narrow Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>PT Sans is a trademark of the ParaType Ltd.</string>
- <key>unique</key>
- <string>PT Sans Narrow Bold; 7.0d1e1; 2010-08-24</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>ParaType Ltd</string>
- <key>version</key>
- <string>7.0d1e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Kannada Sangam MN.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Kannada Sangam MN.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>KannadaSangamMN</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 2009 by Muthu Nedumaran. All rights reserved.</string>
- <key>description</key>
- <string>Copyright (c) 2009 by Muthu Nedumaran. All rights reserved.</string>
- <key>designer</key>
- <string>Muthu Nedumaran</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Kannada Sangam MN</string>
- <key>fullname</key>
- <string>Kannada Sangam MN</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Kannada Sangam MN is a trademark of Muthu Nedumaran.</string>
- <key>unique</key>
- <string>Kannada Sangam MN; 7.0d2e1; 2010-11-04</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Muthu Nedumaran</string>
- <key>version</key>
- <string>7.0d2e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>CorsivaBold.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/CorsivaBold.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>CorsivaHebrew-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Typeface © Monotype Typography ltd. Data © Monotype Typography ltd. /Type Solutions Inc. 1990-91-92-93 All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Corsiva Hebrew</string>
- <key>fullname</key>
- <string>Corsiva Hebrew Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>Corsiva™ Trademark of The Monotype Corporation registered in certain countries.</string>
- <key>unique</key>
- <string>Corsiva Hebrew Bold; 6.0d2e1; 2006-10-26</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>6.0d2e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AlBayan.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/AlBayan.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>AlBayan</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>AlBayan designed by Al Bayan Company for Computer Services. Copyright Apple Computer, Inc. and its licensors, 1992-1998 all rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Al Bayan</string>
- <key>fullname</key>
- <string>Al Bayan Plain</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Plain</string>
- <key>unique</key>
- <string>Al Bayan Plain; 7.0d2e1; 2010-12-14</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d2e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Wingdings.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Wingdings.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Wingdings-Regular</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 2006 Microsoft Corporation. All Rights Reserved.</string>
- <key>description</key>
- <string>The Wingdings fonts were designed by Kris Holmes and Charles Bigelow in 1990 and 1991.
-
-The fonts were originally named Lucida Icons, Arrows, and Stars to complement the Lucida text font family by the same designers. Renamed, reorganized, and released in 1992 as Microsoft Wingdings, the three fonts provide a harmoniously designed set of icons representing the common components of personal computer systems and the elements of graphical user interfaces.
-
-There are icons for PC, monitor, keyboard, mouse, trackball, hard drive, diskette, tape cassette, printer, fax, etc., as well as icons for file folders, documents, mail, mailboxes, windows, clipboard, and wastebasket. In addition, Wingdings includes icons with both traditional and computer significance, such as writing tools and hands, reading glasses, clipping scissors, bell, bomb, check boxes, as well as more traditional images such as weather signs, religious symbols, astrological signs, encircled numerals, a selection of ampersands and interrobangs, plus elegant flowers and flourishes.
-
-Pointing and indicating are frequent functions in graphical interfaces, so in addition to a wide selection of pointing hands, the Wingdings fonts also offer arrows in careful gradations of weight and different directions and styles. For variety and impact as bullets, asterisks, and ornaments, Windings also offers a varied set of geometric circles, squares, polygons, targets, and stars.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Wingdings</string>
- <key>fullname</key>
- <string>Wingdings</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Wingdings is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries. </string>
- <key>unique</key>
- <string>Wingdings Regular: MS: 2006</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Microsoft Typography</string>
- <key>version</key>
- <string>Version 5.03</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MT Extra</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/MT Extra</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>MT-Extra</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) Design Science, Inc, 1999-2004.</string>
- <key>description</key>
- <string>MT Extra is supplied with MathType and Equation Editor, software applications for the editing of mathematical notation. It supplies commonly used math symbols that are not present in the Symbol font. Visit www.dessci.com for details.</string>
- <key>designer</key>
- <string>Mike Evans, Paul Topping, Jim King</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>MT Extra</string>
- <key>fullname</key>
- <string>MT Extra</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>MT Extra and MathType are trademarks of Design Science, Inc.</string>
- <key>unique</key>
- <string>Design Science: MT Extra: 4.3</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Design Science, Inc.</string>
- <key>version</key>
- <string>Version 4.30 (January 2001)</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Gloucester MT Extra Condensed</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Gloucester MT Extra Condensed</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>GloucesterMT-ExtraCondensed</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Typeface data Copyright 1992-94 The Monotype Corporation. Copyright 1994 Microsoft Corporation. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Gloucester MT Extra Condensed</string>
- <key>fullname</key>
- <string>Gloucester MT Extra Condensed</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Gloucester(TM) Trademark of The Monotype Corporation.</string>
- <key>unique</key>
- <string>Monotype - Gloucester MT Extra Condensed</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.51</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Candara Italic.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Candara Italic.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Candara-Italic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 2008 Microsoft Corporation. All Rights Reserved.</string>
- <key>description</key>
- <string>Candara is a casual humanist sans with verticals showing a graceful entasis on stems, high-branching arcades in the lowercase, large apertures in all open forms, and unique ogee curves on diagonals. The resultant texture is lively but not intrusive, and makes for a friendly and readable text.</string>
- <key>designer</key>
- <string>Gary Munch</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Candara</string>
- <key>fullname</key>
- <string>Candara Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Italic</string>
- <key>trademark</key>
- <string>Candara is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries.</string>
- <key>unique</key>
- <string>Microsoft: Candara Italic: 2005</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Microsoft Corporation</string>
- <key>version</key>
- <string>Version 5.61</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>华文宋体.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/华文宋体.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>STSong</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 2002, Changzhou SinoType Technology Co., Ltd. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>STSong</string>
- <key>fullname</key>
- <string>STSong</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>STSong and SinoType are trademarks of Changzhou SinoType Technology Co., Ltd.</string>
- <key>unique</key>
- <string>STSong; 6.1d7e1; 2008-10-03</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>6.1d7e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>STIXSizThreeSymBol.otf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/STIXSizThreeSymBol.otf</string>
- <key>type</key>
- <string>opentype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>STIXSizeThreeSym-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 2001-2010 by the STI Pub Companies, consisting of the American Chemical Society, the American Institute of Physics, the American Mathematical Society, the American Physical Society, Elsevier, Inc., and The Institute of Electrical and Electronic Engineers, Inc. Portions copyright (c) 1998-2003 by MicroPress, Inc. Portions copyright (c) 1990 by Elsevier, Inc. All rights reserved.</string>
- <key>description</key>
- <string>Arie de Ruiter, who in 1995 was Head of Information Technology Development at Elsevier Science, made a proposal to the STI Pub group, an informal group of publishers consisting of representatives from the American Chemical Society (ACS), American Institute of Physics (AIP), American Mathematical Society (AMS), American Physical Society (APS), Elsevier, and Institute of Electrical and Electronics Engineers (IEEE). De Ruiter encouraged the members to consider development of a series of Web fonts, which he proposed should be called the Scientific and Technical Information eXchange, or STIX, Fonts. All STI Pub member organizations enthusiastically endorsed this proposal, and the STI Pub group agreed to embark on what has become a twelve-year project. The goal of the project was to identify all alphabetic, symbolic, and other special characters used in any facet of scientific publishing and to create a set of Unicode-based fonts that would be distributed free to every scientist, student, and other interested party worldwide. The fonts would be consistent with the emerging Unicode standard, and would permit universal representation of every character. With the release of the STIX fonts, de Ruiter's vision has been realized.</string>
- <key>designer</key>
- <string>MicroPress Inc., with final additions and corrections provided by Coen Hoffman, Elsevier (retired)</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>STIXSizeThreeSym</string>
- <key>fullname</key>
- <string>STIXSizeThreeSym-Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>STIX Fonts(TM) is a trademark of The Institute of Electrical and Electronics Engineers, Inc.</string>
- <key>unique</key>
- <string>FontMaster:STIXSizeThreeSym-Bold:1.0.0</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.0.0</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Osaka.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Osaka.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Osaka</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>ver J-6.1d3e1, © 1990-2008 Apple Inc.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Osaka</string>
- <key>fullname</key>
- <string>Osaka</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>HeiseiKakuGothic is a typeface developed under the license agreement with JSA Font Development and Promotion Center</string>
- <key>unique</key>
- <string>Apple Computer Osaka, 6.1d3e1, 2008-08-18</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>6.1d3e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Hiragino Sans GB W3.otf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Hiragino Sans GB W3.otf</string>
- <key>type</key>
- <string>opentype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>HiraginoSansGB-W3</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>ver3.10, Copyright © 2007-2011 Dainippon Screen Mfg. Co., Ltd. All Rights Reserved.</string>
- <key>designer</key>
- <string>JIYUKOBO Ltd. and Beijing Hanyi Keyin Information Technology Co., Ltd.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Hiragino Sans GB</string>
- <key>fullname</key>
- <string>Hiragino Sans GB W3</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>W3</string>
- <key>trademark</key>
- <string>HIRAGINO is a trademark of Dainippon Screen Mfg. Co., Ltd.</string>
- <key>unique</key>
- <string>3.10;Dainippon Screen Mfg. Co., Ltd.;Hiragino Sans GB W3</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Dainippon Screen Mfg. Co., Ltd.</string>
- <key>version</key>
- <string>Version 3.10</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Times LT MM</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/System/Library/Fonts/Times LT MM</string>
- <key>type</key>
- <string>postscript</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>TimesLTMM</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright © 1985, 1987, 1989, 1990, 1993, 1997 - 1999 Adobe Systems Incorporated. All Rights Reserved. © 1981, 1999, 2002 - 2004 Heidelberger Druckmaschinen AG. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>.Times LT MM</string>
- <key>fullname</key>
- <string>.Times LT MM</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Times is a trademark of Heidelberger Druckmaschinen AG, exclusively licensed through Linotype Library GmbH, and oay be registered in certain jurisdictions.</string>
- <key>unique</key>
- <string>.Times LT MM</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>001.006</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Tw Cen MT Italic.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Tw Cen MT Italic.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>TwCenMT-Italic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Digitized data copyright The Monotype Corporation 1991-1997. All rights reserved. Twentieth Century™ is a trademark of The Monotype Corporation which may be registered in certain jurisdictions.</string>
- <key>description</key>
- <string>20th Century was designed and drawn by Sol Hess in the Lanston Monotype drawing office between 1936 and 1947. The first weights were added to the Monotype typeface library in 1959. This is a face based on geometric shapes which originated in Germany in the early 1920's and became an integral part of the Bauhaus movement of that time. Form and function became the key words, unnecessary decoration was scorned. This clean cut, sans serif with geometric shapes was most appropriate. The lighter weights can be used for text setting, the bold and condensed fonts are suitable for display in headlines and advertising.</string>
- <key>designer</key>
- <string>Sol Hess</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Tw Cen MT</string>
- <key>fullname</key>
- <string>Tw Cen MT Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Italic</string>
- <key>trademark</key>
- <string>Twentieth Century™ is a trademark of The Monotype Corporation which may be registered in certain jurisdictions.</string>
- <key>unique</key>
- <string>Monotype - Tw Cen MT Italic</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Monotype Typography</string>
- <key>version</key>
- <string>Version 1.02</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Monotype Corsiva</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Monotype Corsiva</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>MonotypeCorsiva</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Digitized data copyright The Monotype Corporation 1991-1995. All rights reserved. Monotype Corsiva™ is a trademark of The Monotype Corporation which may be registered in certain jurisdictions.</string>
- <key>description</key>
- <string>An italic typeface made in the style of the early Italian cursives, as exemplified by the work of the writing master Ludovico degli Arrighi in the sixteenth century. The capitals are of swash design, with characteristic flourishes, designed primarily for use as initial letters. Corsiva can be used for short text passages in advertising but is best used to add sparkle to invitations, greeting cards and menus, and to give a sense of occasion to certificates and awards.</string>
- <key>designer</key>
- <string>Monotype Type Drawing Office - Patricia Saunders</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Monotype Corsiva</string>
- <key>fullname</key>
- <string>Monotype Corsiva</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Monotype Corsiva™ is a trademark of The Monotype Corporation which may be registered in certain jurisdictions.</string>
- <key>unique</key>
- <string>Monotype Corsiva : 1991</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Monotype Typography, Inc.</string>
- <key>version</key>
- <string>Version 2.35</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Franklin Gothic Medium.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Franklin Gothic Medium.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>FranklinGothic-Medium</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string> ITC Franklin Gothic is a trademark of The International Typeface Corporation which may be registered in certain jurisdictions. Portions copyright Microsoft Corporation. All rights reserved.</string>
- <key>description</key>
- <string>Designed in 1902 by Morris Fuller Benton for the American Type Founders company, Franklin Gothic still reigns as one of the most-widely used sans serif typefaces. Originally issued in only one weight, the ATF version of Franklin Gothic was eventually expanded to include five additional weights, but no light or intermediate weights were ever developed. In 1979, under license from ATF, ITC developed four new weights in roman and italic: book, medium, demi and heavy. Designed by Victor Caruso, ITC’s new weights matched the original face’s characteristics, but featured a slightly enlarged lowercase x-height. ITC Franklin Gothic also features a slightly condensed lowercase a-z alphabet. In 1991, ITC commissioned the Font Bureau in Boston to create condensed, compressed and extra compressed versions of ITC Franklin Gothic, which increased the flexibility and usefulness of the design.</string>
- <key>designer</key>
- <string>Victor Caruso</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Franklin Gothic Medium</string>
- <key>fullname</key>
- <string>Franklin Gothic Medium</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>ITC Franklin Gothic is a trademark of The International Typeface Corporation which may be registered in certain jurisdictions.</string>
- <key>unique</key>
- <string>Monotype - Franklin Gothic Medium Regular</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>International Typeface Corporation</string>
- <key>version</key>
- <string>Version 2.20</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Calibri.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Calibri.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Calibri</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 2008 Microsoft Corporation. All Rights Reserved.</string>
- <key>description</key>
- <string>Calibri is a modern sans serif family with subtle roundings on stems and corners. It features real italics, small caps, and multiple numeral sets. Its proportions allow high impact in tightly set lines of big and small text alike. Calibri's many curves and the new rasteriser team up in bigger sizes to reveal a warm and soft character.</string>
- <key>designer</key>
- <string>Luc(as) de Groot</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Calibri</string>
- <key>fullname</key>
- <string>Calibri</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Calibri is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries.</string>
- <key>unique</key>
- <string>Microsoft: Calibri: 2005</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Microsoft Corporation</string>
- <key>version</key>
- <string>Version 5.62</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ヒラギノ明朝 Pro W3.otf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/ヒラギノ明朝 Pro W3.otf</string>
- <key>type</key>
- <string>opentype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>HiraMinPro-W3</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>ver7.11, Copyright (c) 1993-2002 Dainippon Screen Mfg. Co., Ltd. All Rights Reserved.</string>
- <key>designer</key>
- <string>JIYUKOBO Ltd.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Hiragino Mincho Pro</string>
- <key>fullname</key>
- <string>ヒラギノ明朝 Pro W3</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>W3</string>
- <key>trademark</key>
- <string>Hiragino is a trademark of Dainippon Screen Mfg. Co., Ltd. registered in Japan.</string>
- <key>unique</key>
- <string>Dainippon Screen Mfg. Co., Ltd. Hiragino Mincho Pro W3</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Dainippon Screen Mfg. Co., Ltd.</string>
- <key>version</key>
- <string>7.11</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>STIXNonUni.otf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/STIXNonUni.otf</string>
- <key>type</key>
- <string>opentype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>STIXNonUnicode-Regular</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 2001-2010 by the STI Pub Companies, consisting of the American Chemical Society, the American Institute of Physics, the American Mathematical Society, the American Physical Society, Elsevier, Inc., and The Institute of Electrical and Electronic Engineers, Inc. Portions copyright (c) 1998-2003 by MicroPress, Inc. Portions copyright (c) 1990 by Elsevier, Inc. All rights reserved.</string>
- <key>description</key>
- <string>Arie de Ruiter, who in 1995 was Head of Information Technology Development at Elsevier Science, made a proposal to the STI Pub group, an informal group of publishers consisting of representatives from the American Chemical Society (ACS), American Institute of Physics (AIP), American Mathematical Society (AMS), American Physical Society (APS), Elsevier, and Institute of Electrical and Electronics Engineers (IEEE). De Ruiter encouraged the members to consider development of a series of Web fonts, which he proposed should be called the Scientific and Technical Information eXchange, or STIX, Fonts. All STI Pub member organizations enthusiastically endorsed this proposal, and the STI Pub group agreed to embark on what has become a twelve-year project. The goal of the project was to identify all alphabetic, symbolic, and other special characters used in any facet of scientific publishing and to create a set of Unicode-based fonts that would be distributed free to every scientist, student, and other interested party worldwide. The fonts would be consistent with the emerging Unicode standard, and would permit universal representation of every character. With the release of the STIX fonts, de Ruiter's vision has been realized.</string>
- <key>designer</key>
- <string>MicroPress Inc., with final additions and corrections provided by Coen Hoffman, Elsevier (retired)</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>STIXNonUnicode</string>
- <key>fullname</key>
- <string>STIXNonUnicode-Regular</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>STIX Fonts(TM) is a trademark of The Institute of Electrical and Electronics Engineers, Inc.</string>
- <key>unique</key>
- <string>FontMaster:STIXNonUnicode-Regular:1.0.0</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.0.0</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>NewPeninimMT.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/NewPeninimMT.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>NewPeninimMT</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Typeface © Monotype Typography ltd. Data © Monotype Typography ltd, Type Solutions Inc 1990-1993. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>New Peninim MT</string>
- <key>fullname</key>
- <string>New Peninim MT</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Peninim ® is a Trademark of The Monotype Corporation registered in certain countries.</string>
- <key>unique</key>
- <string>New Peninim MT; 6.0d2e1; 2006-10-23</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>6.0d2e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>GujaratiMTBold.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/GujaratiMTBold.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>GujaratiMT-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright © Monotype Typography Ltd 1994 . All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Gujarati MT</string>
- <key>fullname</key>
- <string>Gujarati MT Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>Monotype Gujarati is a Trademark of Monotype Typography Ltd.</string>
- <key>unique</key>
- <string>Gujarati MT Bold; 6.0d2e1; 2006-10-20</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>6.0d2e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Devanagari Sangam MN.ttc</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Devanagari Sangam MN.ttc</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>DevanagariSangamMN</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 2003 by Muthu Nedumaran. All rights reserved.</string>
- <key>description</key>
- <string>Copyright (c) 2003 by Muthu Nedumaran. All rights reserved.</string>
- <key>designer</key>
- <string>Muthu Nedumaran</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Devanagari Sangam MN</string>
- <key>fullname</key>
- <string>Devanagari Sangam MN</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Devanagari Sangam MN is a trademark of Muthu Nedumaran.</string>
- <key>unique</key>
- <string>Devanagari Sangam MN; 7.0d10e1; 2011-08-12</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Muthu Nedumaran</string>
- <key>version</key>
- <string>7.0d10e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>DevanagariSangamMN-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 2003 by Muthu Nedumaran. All rights reserved.</string>
- <key>description</key>
- <string>Copyright (c) 2003 by Muthu Nedumaran. All rights reserved.</string>
- <key>designer</key>
- <string>Muthu Nedumaran</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Devanagari Sangam MN</string>
- <key>fullname</key>
- <string>Devanagari Sangam MN Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>Devanagari Sangam MN is a trademark of Muthu Nedumaran.</string>
- <key>unique</key>
- <string>Devanagari Sangam MN Bold; 7.0d10e1; 2011-08-12</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Muthu Nedumaran</string>
- <key>version</key>
- <string>7.0d10e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>LucidaGrande.ttc</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/System/Library/Fonts/LucidaGrande.ttc</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>LucidaGrande</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright © 1989 Bigelow &amp; Holmes, Inc. All rights reserved. Lucida is a trademark of Bigelow &amp; Holmes Inc. registered in the U.S. Patent and Trademark Office and other jurisdictions. Lucida typeface designs created by Kris Holmes and Charles Bigelow.</string>
- <key>designer</key>
- <string>Kris Holmes and Charles Bigelow</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Lucida Grande</string>
- <key>fullname</key>
- <string>Lucida Grande</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Lucida is a registered trademark of Bigelow &amp; Holmes Inc.</string>
- <key>unique</key>
- <string>Lucida Grande; 7.0d2e2; 2011-04-27</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d2e2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>LucidaGrande-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright © 1989 Bigelow &amp; Holmes, Inc. All rights reserved. Lucida is a trademark of Bigelow &amp; Holmes Inc. registered in the U.S. Patent and Trademark Office and other jurisdictions. Lucida typeface designs created by Kris Holmes and Charles Bigelow.</string>
- <key>designer</key>
- <string>Kris Holmes and Charles Bigelow</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Lucida Grande</string>
- <key>fullname</key>
- <string>Lucida Grande Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>Lucida is a registered trademark of Bigelow &amp; Holmes Inc.</string>
- <key>unique</key>
- <string>Lucida Grande Bold; 7.0d2e2; 2011-04-27</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d2e2</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>taile.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/taile.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>MicrosoftTaiLe</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 2009 Microsoft Corporation. All Rights Reserved. Portions © 2009 DynaComware Corp. All Rights Reserved. Portions © 2009 Ascender Corp. All Rights Reserved.</string>
- <key>description</key>
- <string>The Tai Le portions of this font were created by the design teams of Ascender and DynaComware.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Microsoft Tai Le</string>
- <key>fullname</key>
- <string>Microsoft Tai Le</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>unique</key>
- <string>Microsoft Tai Le Regular</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Microsoft Corporation</string>
- <key>version</key>
- <string>Version 5.90</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Meiryo Italic.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Meiryo Italic.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Meiryo-Italic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 2010 Microsoft Corporation. All Rights Reserved.</string>
- <key>description</key>
- <string>Meiryo is a very versatile modern sans serif type designed to give an exceptionally clean appearance on screen, as well as in print. It is optimized for on-screen reading. The letterforms are generously open and well-proportioned; legible and clear at smaller sizes, and dynamic at larger display sizes. The beauty of this face is that it sets text lines in Japanese with Roman seamlessly and harmoniously. The balanced inter-letter spacing enhances horizontal alignment, facilitating smooth reading flow. Meiryo has a very large character set with Japanese and Roman combined, fully scalable outline technology, making it extremely functional for all aspects of communication and publishing. It is a robust legible typeface yet compact enough to enable tight inter-line spacing which is good for space economy.</string>
- <key>designer</key>
- <string>C&amp;G Inc.; Eiichi Kono; Matthew Carter</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Meiryo</string>
- <key>fullname</key>
- <string>Meiryo Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Italic</string>
- <key>trademark</key>
- <string>Meiryo is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries.</string>
- <key>unique</key>
- <string>Microsoft: Meiryo Italic: 2005</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Microsoft Corporation</string>
- <key>version</key>
- <string>Version 6.03</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Curlz MT</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Curlz MT</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>CurlzMT</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Digitized data copyright The Monotype Corporation 1991-1995. All rights reserved. Curlz™ is a trademark of The Monotype Corporation which may be registered in certain jurisdictions.</string>
- <key>description</key>
- <string>Curlz was designed by Steve Matteson and Carl Crossgrove in 1995. For a unique, festive touch, add a little Curlz to posters, flyers, invitations, menus and tee shirts.</string>
- <key>designer</key>
- <string> Steve Matteson and Carl Crossgrove</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Curlz MT</string>
- <key>fullname</key>
- <string>Curlz MT</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Curlz™ is a trademark of The Monotype Corporation which may be registered in certain jurisdictions.</string>
- <key>unique</key>
- <string>Monotype - Curlz MT Regular</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Monotype Typography</string>
- <key>version</key>
- <string>Version 1.01</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Book Antiqua</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Book Antiqua</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>BookAntiqua</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Digitized data copyright The Monotype Corporation 1991-1995. All rights reserved. Book Antiqua™ is a trademark of The Monotype Corporation which may be registered in certain jurisdictions.</string>
- <key>description</key>
- <string>This is a roman typeface based on pen-drawn letters of the Italian Renaissance. Because it is distinctive and gentle in appearance it can be used to give a document a different feel than is given by the more geometrical designs of most text faces. It is also useful for occasional lines, as in letter headings and compliments slips. Its beautiful italic has many uses of its own.
-</string>
- <key>designer</key>
- <string>Monotype Type Drawing Office</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Book Antiqua</string>
- <key>fullname</key>
- <string>Book Antiqua</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Book Antiqua™ is a trademark of The Monotype Corporation which may be registered in certain jurisdictions.</string>
- <key>unique</key>
- <string>Book Antiqua Regular : 1991</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Monotype Typography, Inc.</string>
- <key>version</key>
- <string>Version 2.35</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>BookAntiqua-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Digitized data copyright The Monotype Corporation 1991-1995. All rights reserved. Book Antiqua™ is a trademark of The Monotype Corporation which may be registered in certain jurisdictions.</string>
- <key>description</key>
- <string>This is a roman typeface based on pen-drawn letters of the Italian Renaissance. Because it is distinctive and gentle in appearance it can be used to give a document a different feel than is given by the more geometrical designs of most text faces. It is also useful for occasional lines, as in letter headings and compliments slips. Its beautiful italic has many uses of its own.
-</string>
- <key>designer</key>
- <string>Monotype Type Drawing Office</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Book Antiqua</string>
- <key>fullname</key>
- <string>Book Antiqua Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>Book Antiqua™ is a trademark of The Monotype Corporation which may be registered in certain jurisdictions.</string>
- <key>unique</key>
- <string>Book Antiqua Bold : 1991</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Monotype Typography, Inc.</string>
- <key>version</key>
- <string>Version 2.35</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>BookAntiqua-Italic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Digitized data copyright The Monotype Corporation 1991-1995. All rights reserved. Book Antiqua™ is a trademark of The Monotype Corporation which may be registered in certain jurisdictions.</string>
- <key>description</key>
- <string>This is a roman typeface based on pen-drawn letters of the Italian Renaissance. Because it is distinctive and gentle in appearance it can be used to give a document a different feel than is given by the more geometrical designs of most text faces. It is also useful for occasional lines, as in letter headings and compliments slips. Its beautiful italic has many uses of its own.
-</string>
- <key>designer</key>
- <string>Monotype Type Drawing Office</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Book Antiqua</string>
- <key>fullname</key>
- <string>Book Antiqua Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Italic</string>
- <key>trademark</key>
- <string>Book Antiqua™ is a trademark of The Monotype Corporation which may be registered in certain jurisdictions.</string>
- <key>unique</key>
- <string>Book Antiqua Italic : 1991</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Monotype Typography, Inc.</string>
- <key>version</key>
- <string>Version 2.35</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>BookAntiqua-BoldItalic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Digitized data copyright The Monotype Corporation 1991-1995. All rights reserved. Book Antiqua™ is a trademark of The Monotype Corporation which may be registered in certain jurisdictions.</string>
- <key>description</key>
- <string>This is a roman typeface based on pen-drawn letters of the Italian Renaissance. Because it is distinctive and gentle in appearance it can be used to give a document a different feel than is given by the more geometrical designs of most text faces. It is also useful for occasional lines, as in letter headings and compliments slips. Its beautiful italic has many uses of its own.
-</string>
- <key>designer</key>
- <string>Monotype Type Drawing Office</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Book Antiqua</string>
- <key>fullname</key>
- <string>Book Antiqua Bold Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold Italic</string>
- <key>trademark</key>
- <string>Book Antiqua™ is a trademark of The Monotype Corporation which may be registered in certain jurisdictions.</string>
- <key>unique</key>
- <string>Book Antiqua Bold Italic : 1991</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Monotype Typography, Inc.</string>
- <key>version</key>
- <string>Version 2.35</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>STIXIntDReg.otf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/STIXIntDReg.otf</string>
- <key>type</key>
- <string>opentype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>STIXIntegralsD-Regular</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 2001-2010 by the STI Pub Companies, consisting of the American Chemical Society, the American Institute of Physics, the American Mathematical Society, the American Physical Society, Elsevier, Inc., and The Institute of Electrical and Electronic Engineers, Inc. Portions copyright (c) 1998-2003 by MicroPress, Inc. Portions copyright (c) 1990 by Elsevier, Inc. All rights reserved.</string>
- <key>description</key>
- <string>Arie de Ruiter, who in 1995 was Head of Information Technology Development at Elsevier Science, made a proposal to the STI Pub group, an informal group of publishers consisting of representatives from the American Chemical Society (ACS), American Institute of Physics (AIP), American Mathematical Society (AMS), American Physical Society (APS), Elsevier, and Institute of Electrical and Electronics Engineers (IEEE). De Ruiter encouraged the members to consider development of a series of Web fonts, which he proposed should be called the Scientific and Technical Information eXchange, or STIX, Fonts. All STI Pub member organizations enthusiastically endorsed this proposal, and the STI Pub group agreed to embark on what has become a twelve-year project. The goal of the project was to identify all alphabetic, symbolic, and other special characters used in any facet of scientific publishing and to create a set of Unicode-based fonts that would be distributed free to every scientist, student, and other interested party worldwide. The fonts would be consistent with the emerging Unicode standard, and would permit universal representation of every character. With the release of the STIX fonts, de Ruiter's vision has been realized.</string>
- <key>designer</key>
- <string>MicroPress Inc., with final additions and corrections provided by Coen Hoffman, Elsevier (retired)</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>STIXIntegralsD</string>
- <key>fullname</key>
- <string>STIXIntegralsD-Regular</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>STIX Fonts(TM) is a trademark of The Institute of Electrical and Electronics Engineers, Inc.</string>
- <key>unique</key>
- <string>FontMaster:STIXIntegralsD-Regular:1.0.0</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.0.0</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MshtakanBoldOblique.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/MshtakanBoldOblique.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>MshtakanBoldOblique</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Mshtakan-BoldOblique 1.1 © 2002-2003 Michael Everson. All Rights Reserved.</string>
- <key>designer</key>
- <string>Michael Everson</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Mshtakan</string>
- <key>fullname</key>
- <string>Mshtakan BoldOblique</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>BoldOblique</string>
- <key>trademark</key>
- <string>Mshtakan BoldOblique is a trademark of Michael Everson.</string>
- <key>unique</key>
- <string>Mshtakan BoldOblique; 6.0d2e1; 2006-10-20</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Michael Everson</string>
- <key>version</key>
- <string>6.0d2e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Futura.ttc</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Futura.ttc</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Futura-Medium</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© Copyright 1998, Neufville Digital. ALL RIGHTS RESERVED. This font is licensed, not sold, and may not be reproduced without the written consent of Neufville Digital. Parts © Visualogik Technology &amp; Design, 1998.</string>
- <key>description</key>
- <string>Paul Renner (1878-1956) was a painter, typographer, typeface designer and teacher. Between 1908 and 1917 he designed thousands of books for Munich publishers in a refined traditional style. In the early 1920s he began to support the modern styles of architecture and typography, becoming a leading proponent of the New Typography. Renner is best known for designing the typeface Futura, which became a standard tool for the New Typography, and remains a popular typeface today. Futura does give a restful, almost bland impression, which accords with Renner's objectives. Futura seems classical, not only due to the form of its capitals, but also to the open, wide forms of the geometrical small letters. The typeface relies on notions of classical, yet contemporary form, - harmony and evenness of texture. Thanks to the modern digital technology Futura lives on in a greater variety than ever, offering a wide choice of typographic solutions for contemporary design in the new millennium.</string>
- <key>designer</key>
- <string>Paul Renner (1928)</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Futura</string>
- <key>fullname</key>
- <string>Futura Medium</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Medium</string>
- <key>trademark</key>
- <string>Futura is a registered trademark of Bauer Types SA. Unauthorised use prohibited. ALL RIGHTS RESERVED. Neufville Digital is a trademark of Visualogik, used with the permission of Neufville SL.</string>
- <key>unique</key>
- <string>Futura Medium; 6.2d1e1; 2011-04-27</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>6.2d1e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Futura-MediumItalic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© Copyright 1998, Neufville Digital. ALL RIGHTS RESERVED. This font is licensed, not sold, and may not be reproduced without the written consent of Neufville Digital. Parts © Visualogik Technology &amp; Design, 1998.</string>
- <key>description</key>
- <string>Paul Renner (1878-1956) was a painter, typographer, typeface designer and teacher. Between 1908 and 1917 he designed thousands of books for Munich publishers in a refined traditional style. In the early 1920s he began to support the modern styles of architecture and typography, becoming a leading proponent of the New Typography. Renner is best known for designing the typeface Futura, which became a standard tool for the New Typography, and remains a popular typeface today. Futura does give a restful, almost bland impression, which accords with Renner's objectives. Futura seems classical, not only due to the form of its capitals, but also to the open, wide forms of the geometrical small letters. The typeface relies on notions of classical, yet contemporary form, - harmony and evenness of texture. Thanks to the modern digital technology Futura lives on in a greater variety than ever, offering a wide choice of typographic solutions for contemporary design in the new millennium.</string>
- <key>designer</key>
- <string>Paul Renner (1928)</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Futura</string>
- <key>fullname</key>
- <string>Futura Medium Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Medium Italic</string>
- <key>trademark</key>
- <string>Futura is a registered trademark of Bauer Types SA. Unauthorised use prohibited. ALL RIGHTS RESERVED. Neufville Digital is a trademark of Visualogik, used with the permission of Neufville SL.</string>
- <key>unique</key>
- <string>Futura Medium Italic; 6.2d1e1; 2011-04-27</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>6.2d1e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Futura-CondensedMedium</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© Copyright 1998, Neufville Digital. ALL RIGHTS RESERVED. This font is licensed, not sold, and may not be reproduced without the written consent of Neufville Digital. Parts © Visualogik Technology &amp; Design, 1998.</string>
- <key>description</key>
- <string>Paul Renner (1878-1956) was a painter, typographer, typeface designer and teacher. Between 1908 and 1917 he designed thousands of books for Munich publishers in a refined traditional style. In the early 1920s he began to support the modern styles of architecture and typography, becoming a leading proponent of the New Typography. Renner is best known for designing the typeface Futura, which became a standard tool for the New Typography, and remains a popular typeface today. Futura does give a restful, almost bland impression, which accords with Renner's objectives. Futura seems classical, not only due to the form of its capitals, but also to the open, wide forms of the geometrical small letters. The typeface relies on notions of classical, yet contemporary form, - harmony and evenness of texture. Thanks to the modern digital technology Futura lives on in a greater variety than ever, offering a wide choice of typographic solutions for contemporary design in the new millennium.</string>
- <key>designer</key>
- <string>Paul Renner (1928)</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Futura</string>
- <key>fullname</key>
- <string>Futura Condensed Medium</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Condensed Medium</string>
- <key>trademark</key>
- <string>Futura is a registered trademark of Bauer Types SA. Unauthorised use prohibited. ALL RIGHTS RESERVED. Neufville Digital is a trademark of Visualogik, used with the permission of Neufville SL.</string>
- <key>unique</key>
- <string>Futura Condensed Medium; 6.2d1e1; 2011-04-27</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>6.2d1e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Futura-CondensedExtraBold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© Copyright 1998, Neufville Digital. ALL RIGHTS RESERVED. This font is licensed, not sold, and may not be reproduced without the written consent of Neufville Digital. Parts © Visualogik Technology &amp; Design, 1998.</string>
- <key>description</key>
- <string>Paul Renner (1878-1956) was a painter, typographer, typeface designer and teacher. Between 1908 and 1917 he designed thousands of books for Munich publishers in a refined traditional style. In the early 1920s he began to support the modern styles of architecture and typography, becoming a leading proponent of the New Typography. Renner is best known for designing the typeface Futura, which became a standard tool for the New Typography, and remains a popular typeface today. Futura does give a restful, almost bland impression, which accords with Renner's objectives. Futura seems classical, not only due to the form of its capitals, but also to the open, wide forms of the geometrical small letters. The typeface relies on notions of classical, yet contemporary form, - harmony and evenness of texture. Thanks to the modern digital technology Futura lives on in a greater variety than ever, offering a wide choice of typographic solutions for contemporary design in the new millennium.</string>
- <key>designer</key>
- <string>Paul Renner (1928)</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Futura</string>
- <key>fullname</key>
- <string>Futura Condensed ExtraBold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Condensed ExtraBold</string>
- <key>trademark</key>
- <string>Futura is a registered trademark of Bauer Types SA. Unauthorised use prohibited. ALL RIGHTS RESERVED. Neufville Digital is a trademark of Visualogik, used with the permission of Neufville SL.</string>
- <key>unique</key>
- <string>Futura Condensed ExtraBold; 6.2d1e1; 2011-04-27</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>6.2d1e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Arial Narrow Bold Italic.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Arial Narrow Bold Italic.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>ArialNarrow-BoldItalic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 2007 The Monotype Corporation. All Rights Reserved.</string>
- <key>description</key>
- <string>Monotype Drawing Office 1982. A contemporary sans serif design, Arial contains more humanist characteristics than many of its predecessors and as such is more in tune with the mood of the last decades of the twentieth century. The overall treatment of curves is softer and fuller than in most industrial-style sans serif faces. Terminal strokes are cut on the diagonal which helps to give the face a less mechanical appearance. Arial is an extremely versatile family of typefaces which can be used with equal success for text setting in reports, presentations, magazines etc, and for display use in newspapers, advertising and promotions.</string>
- <key>designer</key>
- <string>Robin Nicholas, Patricia Saunders</string>
- <key>duplicate</key>
- <string>yes</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Arial Narrow</string>
- <key>fullname</key>
- <string>Arial Narrow Bold Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold Italic</string>
- <key>trademark</key>
- <string>Arial is a trademark of The Monotype Corporation in the United States and/or other countries.</string>
- <key>unique</key>
- <string>Arial Narrow Bold Italic : 2007</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>The Monotype Corporation</string>
- <key>version</key>
- <string>Version 2.38.1x</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Geneva.dfont</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/System/Library/Fonts/Geneva.dfont</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Geneva</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 1990-2008 Apple Inc. © 1990-98 Type Solutions Inc. © 1990-98 The Font Bureau Inc. TrueType outline design of Geneva typeface created by Kris Holmes and Charles Bigelow.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Geneva</string>
- <key>fullname</key>
- <string>Geneva</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>unique</key>
- <string>Geneva; 7.0d1e2; 2011-04-27</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d1e2</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>PMingLiU-ExtB.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/PMingLiU-ExtB.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>PMingLiU-ExtB</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>(c) Copyright DynaComware Corp. 2008</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>PMingLiU-ExtB</string>
- <key>fullname</key>
- <string>PMingLiU-ExtB</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Trademark by DynaComware Corp.</string>
- <key>unique</key>
- <string>PMingLiU-ExtB</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 7.00</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Lucida Fax</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Lucida Fax</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>LucidaFax</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 1991 Bigelow &amp; Holmes Inc. Pat. 289,421. All Rights Reserved. © 1990-1991 Type Solutions, Inc. All Rights Reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Lucida Fax</string>
- <key>fullname</key>
- <string>Lucida Fax Regular</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Lucida® is a registered trademark of Bigelow &amp; Holmes Inc.</string>
- <key>unique</key>
- <string>Lucida Fax Regular: B&amp;H: 1991</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.69</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>LucidaFax-Demi</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 1991 Bigelow &amp; Holmes Inc. Pat. 289,422. All Rights Reserved. © 1990-1991 Type Solutions, Inc. All Rights Reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Lucida Fax</string>
- <key>fullname</key>
- <string>Lucida Fax Demibold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Demibold</string>
- <key>trademark</key>
- <string>Lucida® is a registered trademark of Bigelow &amp; Holmes Inc.</string>
- <key>unique</key>
- <string>Lucida Fax Demibold: B&amp;H: 1991</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.69</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>LucidaFax-Italic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 1991 Bigelow &amp; Holmes Inc. Pat. 289,773. All Rights Reserved. © 1990-1991 Type Solutions, Inc. All Rights Reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Lucida Fax</string>
- <key>fullname</key>
- <string>Lucida Fax Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Italic</string>
- <key>trademark</key>
- <string>Lucida® is a registered trademark of Bigelow &amp; Holmes Inc.</string>
- <key>unique</key>
- <string>Lucida Fax Italic: B&amp;H: 1991</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.69</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>LucidaFax-DemiItalic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 1991 Bigelow &amp; Holmes Inc. All Rights Reserved. © 1990-1991 Type Solutions, Inc. All Rights Reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Lucida Fax</string>
- <key>fullname</key>
- <string>Lucida Fax Demibold Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Demibold Italic</string>
- <key>trademark</key>
- <string>Lucida® is a registered trademark of Bigelow &amp; Holmes Inc.</string>
- <key>unique</key>
- <string>Lucida Fax Demibold Italic: B&amp;H: 1991</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.69</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Constantia Italic.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Constantia Italic.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Constantia-Italic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 2009 Microsoft Corporation. All Rights Reserved.</string>
- <key>description</key>
- <string>Constantia is a modulated wedge-serif typeface designed primarily for continuous text in both electronic and paper publishing. The design responds to the recent narrowing of the gap between screen readability and traditional print media, exploiting specific aspects of the most recent advances in ClearType rendering, such as sub-pixel positioning. The classic proportions of relatively small x-height and long extenders make Constantia ideal for book and journal publishing, while the slight squareness and open counters ensure that it remains legible even at small sizes.</string>
- <key>designer</key>
- <string>John Hudson</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Constantia</string>
- <key>fullname</key>
- <string>Constantia Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Italic</string>
- <key>trademark</key>
- <string>Constantia is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries.</string>
- <key>unique</key>
- <string>Microsoft: Constantia Italic: 2005</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Microsoft Corporation</string>
- <key>version</key>
- <string>Version 5.90</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Arial Italic.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Arial Italic.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Arial-ItalicMT</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 2008 The Monotype Corporation. All Rights Reserved.</string>
- <key>designer</key>
- <string>Monotype Type Drawing Office - Robin Nicholas, Patricia Saunders 1982</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Arial</string>
- <key>fullname</key>
- <string>Arial Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Italic</string>
- <key>trademark</key>
- <string>Arial is a trademark of The Monotype Corporation in the United States and/or other countries.</string>
- <key>unique</key>
- <string>Monotype:Arial Regular Italic:Version 5.06 (Microsoft)</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>The Monotype Corporation</string>
- <key>version</key>
- <string>Version 5.06</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Kokonor.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Kokonor.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Kokonor</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) Otani University Shin Buddhist Research Institute, 2006. All rights reserved.</string>
- <key>designer</key>
- <string>Shojiro Nomura</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Kokonor</string>
- <key>fullname</key>
- <string>Kokonor</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>unique</key>
- <string>Kokonor Regular; 7.0d1e2; 2010-09-30</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Shojiro Nomura and Steve Hartwell</string>
- <key>version</key>
- <string>7.0d1e2</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Courier New.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Courier New.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>CourierNewPSMT</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 2008 The Monotype Corporation. All Rights Reserved.</string>
- <key>designer</key>
- <string>Howard Kettler</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Courier New</string>
- <key>fullname</key>
- <string>Courier New</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Courier New is a trademark of The Monotype Corporation in the United States and/or other countries.</string>
- <key>unique</key>
- <string>Monotype:Courier New:version 5.00 (Microsoft)</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>The Monotype Corporation</string>
- <key>version</key>
- <string>Version 5.00.2x</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Chancery.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Apple Chancery.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Apple-Chancery</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 1993-1999 Apple Computer, Inc.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Apple Chancery</string>
- <key>fullname</key>
- <string>Apple Chancery</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Chancery</string>
- <key>trademark</key>
- <string>Apple Chancery is a trademark of Apple Computer, Inc.</string>
- <key>unique</key>
- <string>Apple Chancery; 6.1d4e1; 2008-12-17</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>6.1d4e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Braille Pinpoint 8 Dot.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/System/Library/Fonts/Apple Braille Pinpoint 8 Dot.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>AppleBraille-Pinpoint8Dot</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© Copyright 2007 by Apple, Inc.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Apple Braille</string>
- <key>fullname</key>
- <string>Apple Braille Pinpoint 8 Dot</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Pinpoint 8 Dot</string>
- <key>unique</key>
- <string>Apple Braille Pinpoint 8 Dot; 1.0d5e1; 2008-12-15</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>1.0d5e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Palatino Linotype Bold.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Palatino Linotype Bold.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>PalatinoLinotype-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright 1981-1983, 1989,1993, 1998 Heidelberger Druckmaschinen AG. All rights reserved. The digitally encoded machine readable outline data for producing the Typefaces licensed are the property of Heidelberger Druckmaschinen AG and/or its subsidiaries, represented by Linotype Library GmbH, Dupont Strasse 1, 61352 Bad Homburg Germany. Portions © 1996-1998 Microsoft Corporation. All Rights Reserved.</string>
- <key>description</key>
- <string>Palatino Linotype is the definitive new version of Hermann Zapf’s Palatino, which since its design in 1950 has become one of the world's most widely used typefaces. For this new digital version, Professor Zapf has drawn numerous additional characters to include an extensive range of ligatures, numerals, fractions and support for Cyrillic and both monotonic and polytonic Greek. Special care has been taken to enhance the quality of the letterforms when displayed on the computer screen, ensuring that Palatino Linotype is highly legible whether displayed on the screen or in print. This typeface is ideal for use in extended text settings such as books, periodicals and catalogs.</string>
- <key>designer</key>
- <string>Hermann Zapf</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Palatino Linotype</string>
- <key>fullname</key>
- <string>Palatino Linotype Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>Palatino® is a registered trademark of Heidelberger Druckmaschinen AG and its subsidiaries.</string>
- <key>unique</key>
- <string>Palatino Linotype Bold April 1998</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>LINOTYPE-HELL AG</string>
- <key>version</key>
- <string>Version 5.00</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Harrington</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Harrington</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Harrington</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>©1992. The Font Bureau, Inc. Portions © 1992 Microsoft Corp. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Harrington</string>
- <key>fullname</key>
- <string>Harrington</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>unique</key>
- <string>Harrington</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.51</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Century Schoolbook</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Century Schoolbook</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>CenturySchoolbook</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Typeface © The Monotype Corporation plc. Data © The Monotype Corporation plc / Type Solutions Inc. 1990-91 All Rights Reserved.</string>
- <key>description</key>
- <string>Another member of the Century family which was based on Century Expanded. Designed to fulfill the need for a solid, legible face for printing schoolbooks. It is wider and heavier than Century Expanded, there is also less contrast between thick and thin strokes. First cut by Monotype in 1934 and based on versions from ATF and Lanston Monotype. The sturdy nature of this typeface, coupled with its inherent legibility, has made it a popular choice for setting books, newspapers and magazines.</string>
- <key>designer</key>
- <string>Morris Fuller Benton</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Century Schoolbook</string>
- <key>fullname</key>
- <string>Century Schoolbook</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Century Schoolbook is a registered trademark of The Monotype Corporation plc.</string>
- <key>unique</key>
- <string>Century Schoolbook Regular : 1991</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Monotype Typography, Inc.</string>
- <key>version</key>
- <string>Version 1.60</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>CenturySchoolbook-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Typeface © The Monotype Corporation plc. Data © The Monotype Corporation plc / Type Solutions Inc. 1990-91 All Rights Reserved.</string>
- <key>description</key>
- <string>Another member of the Century family which was based on Century Expanded. Designed to fulfill the need for a solid, legible face for printing schoolbooks. It is wider and heavier than Century Expanded, there is also less contrast between thick and thin strokes. First cut by Monotype in 1934 and based on versions from ATF and Lanston Monotype. The sturdy nature of this typeface, coupled with its inherent legibility, has made it a popular choice for setting books, newspapers and magazines.</string>
- <key>designer</key>
- <string>Morris Fuller Benton</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Century Schoolbook</string>
- <key>fullname</key>
- <string>Century Schoolbook Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>Century Schoolbook is a registered trademark of The Monotype Corporation plc.</string>
- <key>unique</key>
- <string>Century Schoolbook Bold : 1991</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Monotype Typography, Inc.</string>
- <key>version</key>
- <string>Version 1.60</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>CenturySchoolbook-Italic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Typeface © The Monotype Corporation plc. Data © The Monotype Corporation plc / Type Solutions Inc. 1990-91 All Rights Reserved.</string>
- <key>description</key>
- <string>Another member of the Century family which was based on Century Expanded. Designed to fulfill the need for a solid, legible face for printing schoolbooks. It is wider and heavier than Century Expanded, there is also less contrast between thick and thin strokes. First cut by Monotype in 1934 and based on versions from ATF and Lanston Monotype. The sturdy nature of this typeface, coupled with its inherent legibility, has made it a popular choice for setting books, newspapers and magazines.</string>
- <key>designer</key>
- <string>Morris Fuller Benton</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Century Schoolbook</string>
- <key>fullname</key>
- <string>Century Schoolbook Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Italic</string>
- <key>trademark</key>
- <string>Century Schoolbook is a registered trademark of The Monotype Corporation plc.</string>
- <key>unique</key>
- <string>Century Schoolbook Italic : 1991</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Monotype Typography, Inc.</string>
- <key>version</key>
- <string>Version 1.60</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>CenturySchoolbook-BoldItalic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Typeface © The Monotype Corporation plc. Data © The Monotype Corporation plc / Type Solutions Inc. 1990-91 All Rights Reserved.</string>
- <key>description</key>
- <string>Another member of the Century family which was based on Century Expanded. Designed to fulfill the need for a solid, legible face for printing schoolbooks. It is wider and heavier than Century Expanded, there is also less contrast between thick and thin strokes. First cut by Monotype in 1934 and based on versions from ATF and Lanston Monotype. The sturdy nature of this typeface, coupled with its inherent legibility, has made it a popular choice for setting books, newspapers and magazines.</string>
- <key>designer</key>
- <string>Morris Fuller Benton</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Century Schoolbook</string>
- <key>fullname</key>
- <string>Century Schoolbook Bold Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold Italic</string>
- <key>trademark</key>
- <string>Century Schoolbook is a registered trademark of The Monotype Corporation plc.</string>
- <key>unique</key>
- <string>Century Schoolbook Bold Italic : 1991</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Monotype Typography, Inc.</string>
- <key>version</key>
- <string>Version 1.60</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>STIXVar.otf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/STIXVar.otf</string>
- <key>type</key>
- <string>opentype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>STIXVariants-Regular</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 2001-2010 by the STI Pub Companies, consisting of the American Chemical Society, the American Institute of Physics, the American Mathematical Society, the American Physical Society, Elsevier, Inc., and The Institute of Electrical and Electronic Engineers, Inc. Portions copyright (c) 1998-2003 by MicroPress, Inc. Portions copyright (c) 1990 by Elsevier, Inc. All rights reserved.</string>
- <key>description</key>
- <string>Arie de Ruiter, who in 1995 was Head of Information Technology Development at Elsevier Science, made a proposal to the STI Pub group, an informal group of publishers consisting of representatives from the American Chemical Society (ACS), American Institute of Physics (AIP), American Mathematical Society (AMS), American Physical Society (APS), Elsevier, and Institute of Electrical and Electronics Engineers (IEEE). De Ruiter encouraged the members to consider development of a series of Web fonts, which he proposed should be called the Scientific and Technical Information eXchange, or STIX, Fonts. All STI Pub member organizations enthusiastically endorsed this proposal, and the STI Pub group agreed to embark on what has become a twelve-year project. The goal of the project was to identify all alphabetic, symbolic, and other special characters used in any facet of scientific publishing and to create a set of Unicode-based fonts that would be distributed free to every scientist, student, and other interested party worldwide. The fonts would be consistent with the emerging Unicode standard, and would permit universal representation of every character. With the release of the STIX fonts, de Ruiter's vision has been realized.</string>
- <key>designer</key>
- <string>MicroPress Inc., with final additions and corrections provided by Coen Hoffman, Elsevier (retired)</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>STIXVariants</string>
- <key>fullname</key>
- <string>STIXVariants-Regular</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>STIX Fonts(TM) is a trademark of The Institute of Electrical and Electronics Engineers, Inc.</string>
- <key>unique</key>
- <string>FontMaster:STIXVariants-Regular:1.0.0</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.0.0</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Papyrus.ttc</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Papyrus.ttc</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Papyrus</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Digitized data copyright © 2001 Agfa Monotype Corporation. All rights reserved. COPYRIGHT ESSELTE LETRASET LTD., 1990. Papyrus™ is a trademark of Esselte Corp.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Papyrus</string>
- <key>fullname</key>
- <string>Papyrus</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Papyrus™ is a trademark of Esselte Corp.</string>
- <key>unique</key>
- <string>Papyrus; 6.1d10e2; 2010-09-08</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>6.1d10e2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Papyrus-Condensed</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Digitized data copyright © 2001 Agfa Monotype Corporation. All rights reserved. COPYRIGHT ESSELTE LETRASET LTD., 1990. Papyrus™ is a trademark of Esselte Corp.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Papyrus</string>
- <key>fullname</key>
- <string>Papyrus Condensed</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Condensed</string>
- <key>trademark</key>
- <string>Papyrus™ is a trademark of Esselte Corp.</string>
- <key>unique</key>
- <string>Papyrus Condensed; 6.1d10e2; 2010-09-08</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>6.1d10e2</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Impact.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Impact.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Impact</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 2006 The Monotype Corporation. All Rights Reserved.</string>
- <key>description</key>
- <string>1965. Designed for the Stephenson Blake type foundry. A very heavy, narrow, sans serif face intended for use in newspapers, for headlines and in advertisements. Aptly named, this face has a very large "x" height with short ascenders and descenders.</string>
- <key>designer</key>
- <string>Geoffrey Lee</string>
- <key>duplicate</key>
- <string>yes</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Impact</string>
- <key>fullname</key>
- <string>Impact</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Impact is a trademark of Stephenson Blake (Holdings) Ltd.</string>
- <key>unique</key>
- <string>Impact - 1992</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>The Monotype Corporation</string>
- <key>version</key>
- <string>Version 5.00x</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Cochin.ttc</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Cochin.ttc</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Cochin</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 1981 Linotype AG and/or its subsidiaries.</string>
- <key>description</key>
- <string>(c) 1981 Linotype AG and/or its subsidiaries. All Rights Reserved. This data is the property of Linotype AG and/or its subsidiaries and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Linotype AG and/or its subsidiaries.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Cochin</string>
- <key>fullname</key>
- <string>Cochin</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>unique</key>
- <string>Cochin; 7.0d1e1; 2011-03-12</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d1e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Cochin-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 1981 Linotype AG and/or its subsidiaries.</string>
- <key>description</key>
- <string>(c) 1981 Linotype AG and/or its subsidiaries. All Rights Reserved. This data is the property of Linotype AG and/or its subsidiaries and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Linotype AG and/or its subsidiaries.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Cochin</string>
- <key>fullname</key>
- <string>Cochin Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>unique</key>
- <string>Cochin Bold; 7.0d1e1; 2011-03-12</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d1e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Cochin-Italic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 1981 Linotype AG and/or its subsidiaries.</string>
- <key>description</key>
- <string>(c) 1981 Linotype AG and/or its subsidiaries. All Rights Reserved. This data is the property of Linotype AG and/or its subsidiaries and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Linotype AG and/or its subsidiaries.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Cochin</string>
- <key>fullname</key>
- <string>Cochin Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Italic</string>
- <key>unique</key>
- <string>Cochin Italic; 7.0d1e1; 2011-03-12</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d1e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Cochin-BoldItalic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 1981 Linotype AG and/or its subsidiaries.</string>
- <key>description</key>
- <string>(c) 1981 Linotype AG and/or its subsidiaries. All Rights Reserved. This data is the property of Linotype AG and/or its subsidiaries and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Linotype AG and/or its subsidiaries.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Cochin</string>
- <key>fullname</key>
- <string>Cochin Bold Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>BoldItalic</string>
- <key>unique</key>
- <string>Cochin Bold Italic; 7.0d1e1; 2011-03-12</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d1e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ヒラギノ明朝 ProN W3.otf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/System/Library/Fonts/ヒラギノ明朝 ProN W3.otf</string>
- <key>type</key>
- <string>opentype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>HiraMinProN-W3</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>ver8.10, Copyright (c) 1993-2010 Dainippon Screen Mfg. Co., Ltd. All Rights Reserved.</string>
- <key>designer</key>
- <string>JIYUKOBO Ltd.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Hiragino Mincho ProN</string>
- <key>fullname</key>
- <string>ヒラギノ明朝 ProN W3</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>W3</string>
- <key>trademark</key>
- <string>Hiragino is a trademark of Dainippon Screen Mfg. Co., Ltd.</string>
- <key>unique</key>
- <string>8.10;Dainippon Screen Mfg. Co., Ltd.;Hiragino Mincho ProN W3</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Dainippon Screen Mfg. Co., Ltd.</string>
- <key>version</key>
- <string>Version 8.10</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Verdana Italic.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Verdana Italic.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Verdana-Italic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 2008 Microsoft Corporation. All Rights Reserved.</string>
- <key>designer</key>
- <string>Matthew Carter</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Verdana</string>
- <key>fullname</key>
- <string>Verdana Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Italic</string>
- <key>trademark</key>
- <string>Verdana is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries.</string>
- <key>unique</key>
- <string>Microsoft:Verdana Italic:Version 5.02 (Microsoft)</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 5.02</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MS PGothic.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/MS PGothic.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>MS-PGothic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>(C)2006 data:RICOH Co.,Ltd. typeface:RYOBI IMAGIX CO.</string>
- <key>description</key>
- <string>The default glyph shapes of this font are based on JIS2004. This font also provides access to a set of JIS90 legacy glyphs via 'jp90' OpenType layout table.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>MS PGothic</string>
- <key>fullname</key>
- <string>MS PGothic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>MS PGothic is a registered trademark of the Microsoft Corporation.</string>
- <key>unique</key>
- <string>Microsoft:MS PGothic:2006</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 5.02</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Gill Sans MT Bold Italic.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Gill Sans MT Bold Italic.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>GillSansMT-BoldItalic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Digitized data copyright © 1997 The Monotype Corporation, Inc. All rights reserved. Gill Sans® is a trademark of The Monotype Corporation, Inc. which may be registered in certain jurisdictions.</string>
- <key>description</key>
- <string>Monotype Type Drawing Office 1928. Gill studied under the renowned calligrapher, Edward Johnston, the designer of the London Underground sans serif typeface. This influenced Gill who later experimented with sans serif designs, and in due course produced a set of capital letters. These became Monotype series 231, produced in 1923, and the forerunner of the extensive Gill Sans range now available. A twentieth century sans serif that has a simplicity of form which does not reject traditional forms and proportions, and gives the face a humanist feel. The lighter weights are highly readable in text and suitable for magazine and book work, whereas the heavier weights are best used for display in advertising, packaging, and labels.</string>
- <key>designer</key>
- <string>Eric Gill</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Gill Sans MT</string>
- <key>fullname</key>
- <string>Gill Sans MT Bold Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold Italic</string>
- <key>trademark</key>
- <string>Gill Sans® is a trademark of The Monotype Corporation, Inc. which may be registered in certain jurisdictions.</string>
- <key>unique</key>
- <string>Monotype - Gill Sans MT Bold Italic</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Monotype Typography</string>
- <key>version</key>
- <string>Version 1.65</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Cambria Italic.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Cambria Italic.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Cambria-Italic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 2009 Microsoft Corporation. All Rights Reserved.</string>
- <key>description</key>
- <string>Cambria has been designed for on-screen reading and to look good when printed at small sizes. It has very even spacing and proportions. Diagonal and vertical hairlines and serifs are relatively strong, while horizontal serifs are small and intend to emphasize stroke endings rather than stand out themselves. This principle is most noticeable in the italics where the lowercase characters are subdued in style to be at their best as elements of word-images. When Cambria is used for captions at sizes over 20 point, the inter-character spacing should be slightly reduced for best results. The design isn't just intended for business documents: The regular weight has been extended with a large set of math and science symbols. The Greek and Cyrillic has been designed under close supervision of an international team of experts, who aimed to set a historical new standard in multi-script type design.</string>
- <key>designer</key>
- <string>Monotype Imaging and Tiro Typeworks</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Cambria</string>
- <key>fullname</key>
- <string>Cambria Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Italic</string>
- <key>trademark</key>
- <string>Cambria is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries.</string>
- <key>unique</key>
- <string>Microsoft: Cambria Italic: 2005</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Microsoft Corporation</string>
- <key>version</key>
- <string>Version 5.96</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ヒラギノ角ゴ Std W8.otf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/ヒラギノ角ゴ Std W8.otf</string>
- <key>type</key>
- <string>opentype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>HiraKakuStd-W8</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>ver7.10, Copyright (c) 1993-2002 Dainippon Screen Mfg. Co., Ltd. All Rights Reserved.</string>
- <key>designer</key>
- <string>JIYU KOBO Ltd.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Hiragino Kaku Gothic Std</string>
- <key>fullname</key>
- <string>ヒラギノ角ゴ Std W8</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>W8</string>
- <key>trademark</key>
- <string>Hiragino is a trademark of Dainippon Screen Mfg. Co., Ltd. registered in Japan.</string>
- <key>unique</key>
- <string>Dainippon Screen Mfg. Co., Ltd. Hiragino Kaku Gothic Std W8</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Dainippon Screen Mfg. Co., Ltd.</string>
- <key>version</key>
- <string>7.10</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>STIXSizFiveSymReg.otf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/STIXSizFiveSymReg.otf</string>
- <key>type</key>
- <string>opentype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>STIXSizeFiveSym-Regular</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 2001-2010 by the STI Pub Companies, consisting of the American Chemical Society, the American Institute of Physics, the American Mathematical Society, the American Physical Society, Elsevier, Inc., and The Institute of Electrical and Electronic Engineers, Inc. Portions copyright (c) 1998-2003 by MicroPress, Inc. Portions copyright (c) 1990 by Elsevier, Inc. All rights reserved.</string>
- <key>description</key>
- <string>Arie de Ruiter, who in 1995 was Head of Information Technology Development at Elsevier Science, made a proposal to the STI Pub group, an informal group of publishers consisting of representatives from the American Chemical Society (ACS), American Institute of Physics (AIP), American Mathematical Society (AMS), American Physical Society (APS), Elsevier, and Institute of Electrical and Electronics Engineers (IEEE). De Ruiter encouraged the members to consider development of a series of Web fonts, which he proposed should be called the Scientific and Technical Information eXchange, or STIX, Fonts. All STI Pub member organizations enthusiastically endorsed this proposal, and the STI Pub group agreed to embark on what has become a twelve-year project. The goal of the project was to identify all alphabetic, symbolic, and other special characters used in any facet of scientific publishing and to create a set of Unicode-based fonts that would be distributed free to every scientist, student, and other interested party worldwide. The fonts would be consistent with the emerging Unicode standard, and would permit universal representation of every character. With the release of the STIX fonts, de Ruiter's vision has been realized.</string>
- <key>designer</key>
- <string>MicroPress Inc., with final additions and corrections provided by Coen Hoffman, Elsevier (retired)</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>STIXSizeFiveSym</string>
- <key>fullname</key>
- <string>STIXSizeFiveSym-Regular</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>STIX Fonts(TM) is a trademark of The Institute of Electrical and Electronics Engineers, Inc.</string>
- <key>unique</key>
- <string>FontMaster:STIXSizeFiveSym-Regular:1.0.0</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.0.0</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>NISC18030.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/NISC18030.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>GB18030Bitmap</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright © 2002 NISC, People's Republic of China.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>GB18030 Bitmap</string>
- <key>fullname</key>
- <string>GB18030 Bitmap</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>unique</key>
- <string>GB18030 Bitmap; 6.0d2e1; 2009-02-26</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>NISC, People's Republic of China</string>
- <key>version</key>
- <string>6.0d2e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Handwriting - Dakota</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Handwriting - Dakota</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Handwriting-Dakota</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright © 1995 vLetter.com, Inc., © 2001 Apple Computer, Inc.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Handwriting - Dakota</string>
- <key>fullname</key>
- <string>Handwriting - Dakota</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>unique</key>
- <string>Handwriting - Dakota; 1.2.1; 2006-03-03</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>1.2.1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Baskerville.ttc</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Baskerville.ttc</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Baskerville</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Digitized data copyright Monotype Typography, Ltd 1991-1997. All rights reserved. Monotype Baskervilleª is a trademark of Monotype Typography, Ltd which may be registered in certain jurisdictions.</string>
- <key>description</key>
- <string>-</string>
- <key>designer</key>
- <string>John Baskerville</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Baskerville</string>
- <key>fullname</key>
- <string>Baskerville</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Monotype Baskervilleª is a trademark of Monotype Typography, Ltd which may be registered in certain jurisdictions.</string>
- <key>unique</key>
- <string>Baskerville; 7.0d4e2; 2011-03-16</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d4e2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Baskerville-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Digitized data copyright Monotype Typography, Ltd 1991-1997. All rights reserved. Monotype Baskervilleª is a trademark of Monotype Typography, Ltd which may be registered in certain jurisdictions.</string>
- <key>description</key>
- <string>-</string>
- <key>designer</key>
- <string>John Baskerville</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Baskerville</string>
- <key>fullname</key>
- <string>Baskerville Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>Monotype Baskervilleª is a trademark of Monotype Typography, Ltd which may be registered in certain jurisdictions.</string>
- <key>unique</key>
- <string>Baskerville Bold; 7.0d4e2; 2011-03-16</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d4e2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Baskerville-Italic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Digitized data copyright Monotype Typography, Ltd 1991-1997. All rights reserved. Monotype Baskervilleª is a trademark of Monotype Typography, Ltd which may be registered in certain jurisdictions.</string>
- <key>description</key>
- <string>-</string>
- <key>designer</key>
- <string>John Baskerville</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Baskerville</string>
- <key>fullname</key>
- <string>Baskerville Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Italic</string>
- <key>trademark</key>
- <string>Monotype Baskervilleª is a trademark of Monotype Typography, Ltd which may be registered in certain jurisdictions.</string>
- <key>unique</key>
- <string>Baskerville Italic; 7.0d4e2; 2011-03-16</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d4e2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Baskerville-SemiBoldItalic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Digitized data copyright © 2000 Agfa Monotype Corporation. All rights reserved. Monotype Baskervilleª is a trademark of Agfa Monotype Corporation.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Baskerville</string>
- <key>fullname</key>
- <string>Baskerville SemiBold Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>SemiBold Italic</string>
- <key>trademark</key>
- <string>Monotype Baskervilleª is a trademark of Agfa Monotype Corporation.</string>
- <key>unique</key>
- <string>Baskerville SemiBold Italic; 7.0d4e2; 2011-03-16</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d4e2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Baskerville-BoldItalic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Digitized data copyright Monotype Typography, Ltd 1991-1997. All rights reserved. Monotype Baskervilleª is a trademark of Monotype Typography, Ltd which may be registered in certain jurisdictions.</string>
- <key>description</key>
- <string>-</string>
- <key>designer</key>
- <string>John Baskerville</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Baskerville</string>
- <key>fullname</key>
- <string>Baskerville Bold Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold Italic</string>
- <key>trademark</key>
- <string>Monotype Baskervilleª is a trademark of Monotype Typography, Ltd which may be registered in certain jurisdictions.</string>
- <key>unique</key>
- <string>Baskerville Bold Italic; 7.0d4e2; 2011-03-16</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d4e2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Baskerville-SemiBold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Digitized data copyright © 2000 Agfa Monotype Corporation. All rights reserved. Monotype Baskervilleª is a trademark of Agfa Monotype Corporation.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Baskerville</string>
- <key>fullname</key>
- <string>Baskerville SemiBold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>SemiBold</string>
- <key>trademark</key>
- <string>Monotype Baskervilleª is a trademark of Agfa Monotype Corporation.</string>
- <key>unique</key>
- <string>Baskerville SemiBold; 7.0d4e2; 2011-03-16</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d4e2</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>STHeiti Light.ttc</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/System/Library/Fonts/STHeiti Light.ttc</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>STHeitiTC-Light</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 2000-2007, Changzhou SinoType Technology Co., Ltd. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Heiti TC</string>
- <key>fullname</key>
- <string>Heiti TC Light</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Light</string>
- <key>trademark</key>
- <string>STHeiti and SinoType are trademarks of Changzhou SinoType Technology Co., Ltd.</string>
- <key>unique</key>
- <string>Heiti TC Light; 7.0d17e1; 2011-05-05</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>SinoType</string>
- <key>version</key>
- <string>7.0d17e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>STHeitiSC-Light</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 2000-2007, Changzhou SinoType Technology Co., Ltd. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Heiti SC</string>
- <key>fullname</key>
- <string>Heiti SC Light</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Light</string>
- <key>trademark</key>
- <string>STHeiti and SinoType are trademarks of Changzhou SinoType Technology Co.,Ltd.</string>
- <key>unique</key>
- <string>Heiti SC Light; 7.0d17e1; 2011-05-05</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>SinoType</string>
- <key>version</key>
- <string>7.0d17e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Times New Roman Italic.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Times New Roman Italic.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>TimesNewRomanPS-ItalicMT</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 2008 The Monotype Corporation. All Rights Reserved.</string>
- <key>designer</key>
- <string>Monotype Type Drawing Office - Stanley Morison, Victor Lardent 1932</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Times New Roman</string>
- <key>fullname</key>
- <string>Times New Roman Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Italic</string>
- <key>trademark</key>
- <string>Times New Roman is a trademark of The Monotype Corporation in the United States and/or other countries.</string>
- <key>unique</key>
- <string>Monotype:Times New Roman Italic:Version 3.13 (Microsoft)</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>The Monotype Corporation</string>
- <key>version</key>
- <string>Version 5.05</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MingLiU_HKSCS-ExtB.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/MingLiU_HKSCS-ExtB.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Ming-Lt-HKSCS-ExtB</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>(c) Copyright DynaComware Corp. 2008</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>MingLiU_HKSCS-ExtB</string>
- <key>fullname</key>
- <string>MingLiU_HKSCS-ExtB</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Trademark by DynaComware Corp.</string>
- <key>unique</key>
- <string>MingLiU_HKSCS-ExtB</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 7.00</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Eurostile</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Eurostile</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>EurostileRegular</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Typeface © 1992 Fonderia Caratteri Svizzera Walter Fruttiger A.G. Data © 1992 URW. Portions © 1992 Microsoft Corp. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Eurostile</string>
- <key>fullname</key>
- <string>Eurostile</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Eurostile is a licensed trademark of Fonderia Caratteri Svizzera Walter Fruttiger A.G.</string>
- <key>unique</key>
- <string>Eurostile</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.51</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>EurostileBold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Typeface © 1992 Fonderia Caratteri Svizzera Walter Fruttiger A.G. Data © 1992 URW. Portions © 1992 Microsoft Corp. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Eurostile</string>
- <key>fullname</key>
- <string>Eurostile Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>Eurostile is a licensed trademark of Fonderia Caratteri Svizzera Walter Fruttiger A.G.</string>
- <key>unique</key>
- <string>Eurostile Bold</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.51</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Britannic Bold</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Britannic Bold</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>BritannicBold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Typeface © 1992 Stephenson Blake (Holdings) Ltd. Data © 1992 URW. Portions © 1992 Microsoft Corp. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Britannic Bold</string>
- <key>fullname</key>
- <string>Britannic Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Britannic ® Trademark of Stephenson Blake (Holdings) Ltd.</string>
- <key>unique</key>
- <string>Brittanic Bold</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.51</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>STIXIntUpDBol.otf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/STIXIntUpDBol.otf</string>
- <key>type</key>
- <string>opentype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>STIXIntegralsUpD-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 2001-2010 by the STI Pub Companies, consisting of the American Chemical Society, the American Institute of Physics, the American Mathematical Society, the American Physical Society, Elsevier, Inc., and The Institute of Electrical and Electronic Engineers, Inc. Portions copyright (c) 1998-2003 by MicroPress, Inc. Portions copyright (c) 1990 by Elsevier, Inc. All rights reserved.</string>
- <key>description</key>
- <string>Arie de Ruiter, who in 1995 was Head of Information Technology Development at Elsevier Science, made a proposal to the STI Pub group, an informal group of publishers consisting of representatives from the American Chemical Society (ACS), American Institute of Physics (AIP), American Mathematical Society (AMS), American Physical Society (APS), Elsevier, and Institute of Electrical and Electronics Engineers (IEEE). De Ruiter encouraged the members to consider development of a series of Web fonts, which he proposed should be called the Scientific and Technical Information eXchange, or STIX, Fonts. All STI Pub member organizations enthusiastically endorsed this proposal, and the STI Pub group agreed to embark on what has become a twelve-year project. The goal of the project was to identify all alphabetic, symbolic, and other special characters used in any facet of scientific publishing and to create a set of Unicode-based fonts that would be distributed free to every scientist, student, and other interested party worldwide. The fonts would be consistent with the emerging Unicode standard, and would permit universal representation of every character. With the release of the STIX fonts, de Ruiter's vision has been realized.</string>
- <key>designer</key>
- <string>MicroPress Inc., with final additions and corrections provided by Coen Hoffman, Elsevier (retired)</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>STIXIntegralsUpD</string>
- <key>fullname</key>
- <string>STIXIntegralsUpD-Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>STIX Fonts(TM) is a trademark of The Institute of Electrical and Electronics Engineers, Inc.</string>
- <key>unique</key>
- <string>FontMaster:STIXIntegralsUpD-Bold:1.0.0</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.0.0</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Sathu.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Sathu.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Sathu</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 1992-2003 Apple Computer, Inc.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Sathu</string>
- <key>fullname</key>
- <string>Sathu</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>unique</key>
- <string>Sathu; 10.8d1e1; 2011-10-20</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>10.8d1e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Georgia Italic.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Georgia Italic.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Georgia-Italic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 2006 Microsoft Corporation. All Rights Reserved.</string>
- <key>designer</key>
- <string>Matthew Carter</string>
- <key>duplicate</key>
- <string>yes</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Georgia</string>
- <key>fullname</key>
- <string>Georgia Italic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Italic</string>
- <key>trademark</key>
- <string>Georgia is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries.</string>
- <key>unique</key>
- <string>Microsoft Georgia Italic</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Carter &amp; Cone</string>
- <key>version</key>
- <string>Version 5.00x</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Arial Rounded Bold.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Arial Rounded Bold.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>ArialRoundedMTBold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright © 1993 , Monotype Typography ltd.</string>
- <key>duplicate</key>
- <string>yes</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Arial Rounded MT Bold</string>
- <key>fullname</key>
- <string>Arial Rounded MT Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Arial ® Trademark of Monotype Typography ltd registered in the US Pat &amp; TM.and elsewhere.</string>
- <key>unique</key>
- <string>Arial Rounded MT Bold</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.51x</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Helvetica.dfont</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/System/Library/Fonts/Helvetica.dfont</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Helvetica</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 1990-2006 Apple Computer Inc. © 1981 Linotype AG © 1990-91 Type Solutions Inc.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Helvetica</string>
- <key>fullname</key>
- <string>Helvetica</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Helvetica is a registered trademark of Linotype AG</string>
- <key>unique</key>
- <string>Helvetica; 7.0d20e1; 2011-04-05</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d20e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Helvetica-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 1990-2006 Apple Computer Inc. © 1981 Linotype AG © 1990-91 Type Solutions Inc.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Helvetica</string>
- <key>fullname</key>
- <string>Helvetica Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>Helvetica is a registered trademark of Linotype AG</string>
- <key>unique</key>
- <string>Helvetica Bold; 7.0d20e1; 2011-04-05</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d20e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Helvetica-Oblique</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 1990-2006 Apple Computer Inc. © 1981 Linotype AG © 1990-91 Type Solutions Inc.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Helvetica</string>
- <key>fullname</key>
- <string>Helvetica Oblique</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Oblique</string>
- <key>trademark</key>
- <string>Helvetica is a registered trademark of Linotype AG</string>
- <key>unique</key>
- <string>Helvetica Oblique; 7.0d20e1; 2011-04-05</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d20e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Helvetica-BoldOblique</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 1990-2006 Apple Computer Inc. © 1981 Linotype AG © 1990-91 Type Solutions Inc.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Helvetica</string>
- <key>fullname</key>
- <string>Helvetica Bold Oblique</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold Oblique</string>
- <key>trademark</key>
- <string>Helvetica is a registered trademark of Linotype AG</string>
- <key>unique</key>
- <string>Helvetica Bold Oblique; 7.0d20e1; 2011-04-05</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d20e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Helvetica-Light</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 1990-2006 Apple Computer Inc. © 1981 Linotype AG © 1990-91 Type Solutions Inc.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Helvetica</string>
- <key>fullname</key>
- <string>Helvetica Light</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Light</string>
- <key>trademark</key>
- <string>Helvetica is a registered trademark of Linotype AG</string>
- <key>unique</key>
- <string>Helvetica Light; 7.0d20e1; 2011-04-05</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d20e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Helvetica-LightOblique</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 1990-2006 Apple Computer Inc. © 1981 Linotype AG © 1990-91 Type Solutions Inc.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Helvetica</string>
- <key>fullname</key>
- <string>Helvetica Light Oblique</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Light Oblique</string>
- <key>trademark</key>
- <string>Helvetica is a registered trademark of Linotype AG</string>
- <key>unique</key>
- <string>Helvetica Light Oblique; 7.0d20e1; 2011-04-05</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d20e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>SimHei.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/SimHei.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>SimHei</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© Beijing ZhongYi Electronics Co., 1995-2005, All rights reserved</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>SimHei</string>
- <key>fullname</key>
- <string>SimHei</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Trademark of Beijing ZhongYi Electronics Co., China</string>
- <key>unique</key>
- <string>SimHei</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 5.01</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Lucida Sans Unicode.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Lucida Sans Unicode.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>LucidaSansUnicode</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright © 1993 Bigelow &amp; Holmes Inc. All rights reserved. Pat. Des. 289,420. Pats. Pend.</string>
- <key>description</key>
- <string>Characteristics:
-Large x-height, making it readable at all sizes.
-
-Uses: Wide range of uses including directories, tables, forms, memos, telefaxes, manuals, heads, titles, posters, and displays.
-
-Guidelines: At larger sizes (14 points or more), subtracting a few units of letter spacing gives a tighter look. When using all capitals, you can use small amounts of additional letter spacing. At larger sizes, space capitals more tightly. Complementary fonts include Lucida Bright, Lucida Arrows, and Lucida Stars. Lucida Fax at smaller sizes and lower resolutions. The ampersands, interrobangs, and circled Lucida Sans numerals in Lucida Icons combine well.
-</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Lucida Sans Unicode</string>
- <key>fullname</key>
- <string>Lucida Sans Unicode</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Lucida is a registered trademark of Bigelow &amp; Holmes Inc.</string>
- <key>unique</key>
- <string>Lucida Sans Unicode Regular; B&amp;H; April 15, 1993;</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 5.00</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Copperplate Gothic Light</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Copperplate Gothic Light</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>CopperplateGothic-Light</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Data copyright © URW Software &amp; Type GbmH., additional data copyright The Font Bureau, Inc. Copyright 1994 Microsoft Corporation. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Copperplate Gothic Light</string>
- <key>fullname</key>
- <string>Copperplate Gothic Light</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>unique</key>
- <string>Copperplate Gothic Light</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.51</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Baskerville Old Face</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Baskerville Old Face</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>BaskOldFace</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Typeface © 1992 Stephenson Blake (Holdings) Ltd. Data © 1992 URW. Portions © 1992 Microsoft Corp. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Baskerville Old Face</string>
- <key>fullname</key>
- <string>Baskerville Old Face</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Baskerville Old Face ® Trademark of Stephenson Blake (Holdings) Ltd.</string>
- <key>unique</key>
- <string>Baskerville Old Face</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.51</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Trebuchet MS Bold.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Trebuchet MS Bold.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>TrebuchetMS-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 2006 Microsoft Corporation. All Rights Reserved.</string>
- <key>description</key>
- <string>Trebuchet, designed by Vincent Connare in 1996, is a humanist sans serif designed for easy screen readability. Trebuchet takes its inspiration from the sans serifs of the 1930s which had large x heights and round features intended to promote readability on signs. The typeface name is credited to a puzzle heard at Microsoft, where the question was asked, "could you build a Trebuchet (a form of medieval catapult) to launch a person from the main campus to the consumer campus, and how?" The Trebuchet fonts are intended to be the vehicle that fires your messages across the Internet. "Launch your message with a Trebuchet page".</string>
- <key>designer</key>
- <string>Vincent Connare</string>
- <key>duplicate</key>
- <string>yes</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Trebuchet MS</string>
- <key>fullname</key>
- <string>Trebuchet MS Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>unique</key>
- <string>Microsoft Trebuchet Bold</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Microsoft Corporation</string>
- <key>version</key>
- <string>Version 5.00x</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>STIXGeneral.otf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/STIXGeneral.otf</string>
- <key>type</key>
- <string>opentype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>STIXGeneral-Regular</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 2001-2010 by the STI Pub Companies, consisting of the American Chemical Society, the American Institute of Physics, the American Mathematical Society, the American Physical Society, Elsevier, Inc., and The Institute of Electrical and Electronic Engineers, Inc. Portions copyright (c) 1998-2003 by MicroPress, Inc. Portions copyright (c) 1990 by Elsevier, Inc. All rights reserved.</string>
- <key>description</key>
- <string>Arie de Ruiter, who in 1995 was Head of Information Technology Development at Elsevier Science, made a proposal to the STI Pub group, an informal group of publishers consisting of representatives from the American Chemical Society (ACS), American Institute of Physics (AIP), American Mathematical Society (AMS), American Physical Society (APS), Elsevier, and Institute of Electrical and Electronics Engineers (IEEE). De Ruiter encouraged the members to consider development of a series of Web fonts, which he proposed should be called the Scientific and Technical Information eXchange, or STIX, Fonts. All STI Pub member organizations enthusiastically endorsed this proposal, and the STI Pub group agreed to embark on what has become a twelve-year project. The goal of the project was to identify all alphabetic, symbolic, and other special characters used in any facet of scientific publishing and to create a set of Unicode-based fonts that would be distributed free to every scientist, student, and other interested party worldwide. The fonts would be consistent with the emerging Unicode standard, and would permit universal representation of every character. With the release of the STIX fonts, de Ruiter's vision has been realized.</string>
- <key>designer</key>
- <string>MicroPress Inc., with final additions and corrections provided by Coen Hoffman, Elsevier (retired)</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>STIXGeneral</string>
- <key>fullname</key>
- <string>STIXGeneral-Regular</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>STIX Fonts(TM) is a trademark of The Institute of Electrical and Electronics Engineers, Inc.</string>
- <key>unique</key>
- <string>FontMaster:STIXGeneral-Regular:1.0.0</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.0.0</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Lao Sangam MN.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Lao Sangam MN.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>LaoSangamMN</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 2010 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved.</string>
- <key>description</key>
- <string>Copyright (c) 2010 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved.</string>
- <key>designer</key>
- <string>Muthu Nedumaran</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Lao Sangam MN</string>
- <key>fullname</key>
- <string>Lao Sangam MN</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Lao Sangam MN is a trademark of Murasu Systems Sdn. Bhd. Malaysia.</string>
- <key>unique</key>
- <string>Lao Sangam MN; 7.0d2e1; 2010-11-05</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Murasu Systems Sdn. Bhd. Malaysia</string>
- <key>version</key>
- <string>7.0d2e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Krungthep.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Krungthep.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Krungthep</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 1992-2003 Apple Computer, Inc.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Krungthep</string>
- <key>fullname</key>
- <string>Krungthep</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>unique</key>
- <string>Krungthep; 10.8d1e1; 2011-10-20</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>10.8d1e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppleMyungjo.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/AppleMyungjo.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>AppleMyungjo</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 1994-2007 Apple, Inc. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>AppleMyungjo</string>
- <key>fullname</key>
- <string>AppleMyungjo</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>AppleMyungjo is a trademark of Apple Computer, Inc.</string>
- <key>unique</key>
- <string>AppleMyungjo Regular; 7.0d2e6; 2011-04-09</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d2e6</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppleGothic.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/System/Library/Fonts/AppleGothic.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>AppleGothic</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright © 1994-2006 Apple Computer, Inc. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>AppleGothic</string>
- <key>fullname</key>
- <string>AppleGothic</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>AppleGothic is a trademark of Apple Computer, Inc.</string>
- <key>unique</key>
- <string>AppleGothic Regular; 7.0d5e1; 2011-04-22</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>7.0d5e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Perpetua Bold.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Perpetua Bold.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Perpetua-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Digitized data copyright The Monotype Corporation 1991-1995. All rights reserved. Perpetua® is a trademark of The Monotype Corporation which may be registered in certain jurisdictions.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Perpetua</string>
- <key>fullname</key>
- <string>Perpetua Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>Perpetua® is a trademark of The Monotype Corporation which may be registered in certain jurisdictions.</string>
- <key>unique</key>
- <string>Monotype - Perpetua Bold</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.76</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Kino</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Kino</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>KinoMT</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright © The Monotype Corporation plc. 1992. All rights reserved</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Kino MT</string>
- <key>fullname</key>
- <string>Kino MT</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Kino ™ Trademark of The Monotype Corporation plc.</string>
- <key>unique</key>
- <string>Kino MT</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.51</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Consolas Bold.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Consolas Bold.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Consolas-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>© 2008 Microsoft Corporation. All Rights Reserved.</string>
- <key>description</key>
- <string>Consolas is aimed for use in programming environments and other circumstances where a monospaced font is specified. All characters have the same width, like old typewriters, making it a good choice for personal and business correspondance. The improved Windows font display allowed a design with proportions closer to normal text than traditional monospaced fonts like Courier. This allows for more comfortably reading of extended text on screen. OpenType features include hanging or lining numerals; slashed, dotted and normal zeros; and alternative shapes for a number of lowercase letters. The look of text can be tuned to personal taste by varying the number of bars and waves.</string>
- <key>designer</key>
- <string>Luc(as) de Groot</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Consolas</string>
- <key>fullname</key>
- <string>Consolas Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>Consolas is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries.</string>
- <key>unique</key>
- <string>Microsoft: Consolas Bold: 2005</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Microsoft Corporation</string>
- <key>version</key>
- <string>Version 5.22</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Abadi MT Condensed Light</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Microsoft/Abadi MT Condensed Light</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>AbadiMT-CondensedLight</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Typeface data Copyright © 1992-94 The Monotype Corporation. Copyright 1994 Microsoft Corporation. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Abadi MT Condensed Light</string>
- <key>fullname</key>
- <string>Abadi MT Condensed Light</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Abadi® Trademark of The Monotype Corporation. Registered in U.S. Patent and Trademark Office.</string>
- <key>unique</key>
- <string>Abadi MT Condensed Light - 1992</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>Version 1.51</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Tamil MN.ttc</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Tamil MN.ttc</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>TamilMN</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 2003 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved.</string>
- <key>description</key>
- <string>Copyright (c) 2003 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved.</string>
- <key>designer</key>
- <string>Muthu Nedumaran</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Tamil MN</string>
- <key>fullname</key>
- <string>Tamil MN</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Tamil MN is a trademark of Murasu Systems Sdn. Bhd. Malaysia.</string>
- <key>unique</key>
- <string>Tamil MN; 7.0d2e1; 2010-11-05</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Murasu Systems Sdn. Bhd. Malaysia</string>
- <key>version</key>
- <string>7.0d2e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>TamilMN-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 2009 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved.</string>
- <key>description</key>
- <string>Copyright (c) 2003 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved.</string>
- <key>designer</key>
- <string>Muthu Nedumaran</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Tamil MN</string>
- <key>fullname</key>
- <string>Tamil MN Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>Tamil MN Bold is a trademark of Murasu Systems Sdn. Bhd. Malaysia.</string>
- <key>unique</key>
- <string>Tamil MN Bold; 7.0d2e1; 2010-11-05</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Murasu Systems Sdn. Bhd. Malaysia</string>
- <key>version</key>
- <string>7.0d2e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>PortagoITC TT</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/PortagoITC TT</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>PortagoITCTT</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright © 1995-1997 International Typeface Corporation. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>PortagoITC TT</string>
- <key>fullname</key>
- <string>PortagoITC TT</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>unique</key>
- <string>PortagoITC TT; 3.4; 2006-02-21</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>3.4</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Kannada MN.ttc</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Kannada MN.ttc</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>KannadaMN</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 2009 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved.</string>
- <key>description</key>
- <string>Copyright (c) 2003 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved.</string>
- <key>designer</key>
- <string>Muthu Nedumaran</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Kannada MN</string>
- <key>fullname</key>
- <string>Kannada MN</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Kannada MN is a trademark of Murasu Systems Sdn. Bhd. Malaysia.</string>
- <key>unique</key>
- <string>Kannada MN; 7.0d3e1; 2010-11-04</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Murasu Systems Sdn. Bhd. Malaysia</string>
- <key>version</key>
- <string>7.0d3e1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>KannadaMN-Bold</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Copyright (c) 2009 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved.</string>
- <key>description</key>
- <string>Copyright (c) 2003 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved.</string>
- <key>designer</key>
- <string>Muthu Nedumaran</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Kannada MN</string>
- <key>fullname</key>
- <string>Kannada MN Bold</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Bold</string>
- <key>trademark</key>
- <string>Kannada MN Bold is a trademark of Murasu Systems Sdn. Bhd. Malaysia.</string>
- <key>unique</key>
- <string>Kannada MN Bold; 7.0d3e1; 2010-11-04</string>
- <key>valid</key>
- <string>yes</string>
- <key>vendor</key>
- <string>Murasu Systems Sdn. Bhd. Malaysia</string>
- <key>version</key>
- <string>7.0d3e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Corsiva.ttf</string>
- <key>enabled</key>
- <string>yes</string>
- <key>path</key>
- <string>/Library/Fonts/Corsiva.ttf</string>
- <key>type</key>
- <string>truetype</string>
- <key>typefaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>CorsivaHebrew</string>
- <key>copy_protected</key>
- <string>no</string>
- <key>copyright</key>
- <string>Typeface © Monotype Typography ltd. Data © Monotype Typography ltd. /Type Solutions Inc. 1990-91-92-93. All rights reserved.</string>
- <key>duplicate</key>
- <string>no</string>
- <key>embeddable</key>
- <string>yes</string>
- <key>enabled</key>
- <string>yes</string>
- <key>family</key>
- <string>Corsiva Hebrew</string>
- <key>fullname</key>
- <string>Corsiva Hebrew</string>
- <key>outline</key>
- <string>yes</string>
- <key>style</key>
- <string>Regular</string>
- <key>trademark</key>
- <string>Corsiva™ Trademark of The Monotype Corporation registered in certain contries.</string>
- <key>unique</key>
- <string>Corsiva Hebrew; 6.0d2e1; 2006-10-26</string>
- <key>valid</key>
- <string>yes</string>
- <key>version</key>
- <string>6.0d2e1</string>
- </dict>
- </array>
- <key>valid</key>
- <string>yes</string>
- </dict>
- </array>
- <key>_parentDataType</key>
- <string>SPSoftwareDataType</string>
- <key>_properties</key>
- <dict>
- <key>_name</key>
- <dict>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_order</key>
- <integer>10</integer>
- </dict>
- <key>checksum</key>
- <dict>
- <key>_order</key>
- <integer>200</integer>
- </dict>
- <key>copy_protected</key>
- <dict>
- <key>_order</key>
- <integer>85</integer>
- </dict>
- <key>copyright</key>
- <dict>
- <key>_order</key>
- <integer>29</integer>
- </dict>
- <key>description</key>
- <dict>
- <key>_order</key>
- <integer>31</integer>
- </dict>
- <key>designer</key>
- <dict>
- <key>_order</key>
- <integer>27</integer>
- </dict>
- <key>designer_url</key>
- <dict>
- <key>_order</key>
- <integer>28</integer>
- </dict>
- <key>duplicate</key>
- <dict>
- <key>_order</key>
- <integer>80</integer>
- </dict>
- <key>embeddable</key>
- <dict>
- <key>_order</key>
- <integer>90</integer>
- </dict>
- <key>enabled</key>
- <dict>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_order</key>
- <integer>70</integer>
- </dict>
- <key>family</key>
- <dict>
- <key>_order</key>
- <integer>21</integer>
- </dict>
- <key>fullname</key>
- <dict>
- <key>_order</key>
- <integer>20</integer>
- </dict>
- <key>license</key>
- <dict>
- <key>_order</key>
- <integer>32</integer>
- </dict>
- <key>license_url</key>
- <dict>
- <key>_order</key>
- <integer>33</integer>
- </dict>
- <key>outline</key>
- <dict>
- <key>_order</key>
- <integer>50</integer>
- </dict>
- <key>path</key>
- <dict>
- <key>_order</key>
- <integer>100</integer>
- </dict>
- <key>style</key>
- <dict>
- <key>_order</key>
- <integer>22</integer>
- </dict>
- <key>trademark</key>
- <dict>
- <key>_order</key>
- <integer>30</integer>
- </dict>
- <key>type</key>
- <dict>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_order</key>
- <integer>40</integer>
- </dict>
- <key>typefaces</key>
- <dict>
- <key>_order</key>
- <integer>500</integer>
- </dict>
- <key>unique</key>
- <dict>
- <key>_order</key>
- <integer>26</integer>
- </dict>
- <key>valid</key>
- <dict>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_order</key>
- <integer>60</integer>
- </dict>
- <key>vendor</key>
- <dict>
- <key>_order</key>
- <integer>24</integer>
- </dict>
- <key>vendor_url</key>
- <dict>
- <key>_order</key>
- <integer>25</integer>
- </dict>
- <key>version</key>
- <dict>
- <key>_order</key>
- <integer>23</integer>
- </dict>
- <key>volumes_anonymous</key>
- <dict>
- <key>_detailLevel</key>
- <string>-1</string>
- <key>_maxDetailLevel</key>
- <string>-1</string>
- </dict>
- </dict>
- <key>_timeStamp</key>
- <date>2012-12-04T21:30:12Z</date>
- <key>_versionInfo</key>
- <dict>
- <key>com.apple.SystemProfiler.SPFontReporter</key>
- <string>8</string>
- </dict>
- </dict>
- <dict>
- <key>_SPCommandLineArguments</key>
- <array>
- <string>/usr/sbin/system_profiler</string>
- <string>-xml</string>
- <string>-detailLevel</string>
- <string>mini</string>
- <string>SPParallelATADataType</string>
- <string>SPApplicationsDataType</string>
- <string>SPAudioDataType</string>
- <string>SPBluetoothDataType</string>
- <string>SPCardReaderDataType</string>
- <string>SPComponentDataType</string>
- <string>SPDeveloperToolsDataType</string>
- <string>SPDiagnosticsDataType</string>
- <string>SPDiscBurningDataType</string>
- <string>SPEthernetDataType</string>
- <string>SPExtensionsDataType</string>
- <string>SPFibreChannelDataType</string>
- <string>SPFireWireDataType</string>
- <string>SPFirewallDataType</string>
- <string>SPFontsDataType</string>
- <string>SPFrameworksDataType</string>
- <string>SPDisplaysDataType</string>
- <string>SPHardwareRAIDDataType</string>
- <string>SPNetworkLocationDataType</string>
- <string>SPLogsDataType</string>
- <string>SPManagedClientDataType</string>
- <string>SPMemoryDataType</string>
- <string>SPModemDataType</string>
- <string>SPNetworkDataType</string>
- <string>SPPCIDataType</string>
- <string>SPParallelSCSIDataType</string>
- <string>SPPowerDataType</string>
- <string>SPPrefPaneDataType</string>
- <string>SPPrintersSoftwareDataType</string>
- <string>SPPrintersDataType</string>
- <string>SPConfigurationProfileDataType</string>
- <string>SPSASDataType</string>
- <string>SPSerialATADataType</string>
- <string>SPSoftwareDataType</string>
- <string>SPStartupItemDataType</string>
- <string>SPSyncServicesDataType</string>
- <string>SPThunderboltDataType</string>
- <string>SPUSBDataType</string>
- <string>SPUniversalAccessDataType</string>
- <string>SPNetworkVolumeDataType</string>
- <string>SPWWANDataType</string>
- <string>SPAirPortDataType</string>
- </array>
- <key>_SPCompletionInterval</key>
- <real>4.5985470414161682</real>
- <key>_dataType</key>
- <string>SPFrameworksDataType</string>
- <key>_detailLevel</key>
- <integer>1</integer>
- <key>_items</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Accelerate</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>vImage, DSP, BLAS, LAPACK, Vector Math, and Large Number Library</string>
- <key>lastModified</key>
- <date>2012-11-30T21:10:45Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/Accelerate.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.7</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>vecLib</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>DSP, BLAS, LAPACK, Vector Math, and Large Number Library</string>
- <key>lastModified</key>
- <date>2012-11-30T21:10:45Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>3.7</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>vImage</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:45Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>5.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AddressBook</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:45Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/AddressBook.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>6.1.3</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AGL</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>OpenGL Carbon compatibility dylib for Mac OS X</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:45Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/AGL.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>3.2.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppKit</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:45Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/AppKit.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>6.7.5</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppKitScripting</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>lastModified</key>
- <date>2012-11-30T21:10:45Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/AppKitScripting.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>6.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppleScriptKit</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T21:10:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/AppleScriptKit.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.5.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppleScriptObjC</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T21:10:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/AppleScriptObjC.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppleShareClientCore</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>Low Level AppleShare Client Framework, Copyright © 2000 - 2012, Apple Inc.</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/AppleShareClientCore.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>2.5.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppleTalk</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/AppleTalk.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.2.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ApplicationServices</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T21:10:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/ApplicationServices.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>41</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ATS</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T21:10:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>317.12.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ColorSync</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>4.7.4</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>CoreGraphics</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T21:10:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/ApplicationServices.framework/Frameworks/CoreGraphics.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.600.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>CoreText</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T21:10:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/ApplicationServices.framework/Frameworks/CoreText.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>220.22.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>HIServices</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T21:10:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/ApplicationServices.framework/Frameworks/HIServices.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.21</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ImageIO</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>3.1.2</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/ApplicationServices.framework/Frameworks/ImageIO.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>3.1.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>LangAnalysis</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T21:10:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/ApplicationServices.framework/Frameworks/LangAnalysis.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.7.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>PrintCore</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/ApplicationServices.framework/Frameworks/PrintCore.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>7.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>QD</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T21:10:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/ApplicationServices.framework/Frameworks/QD.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>3.40</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>SpeechSynthesis</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T21:10:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/ApplicationServices.framework/Frameworks/SpeechSynthesis.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>4.0.74</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AudioToolbox</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/AudioToolbox.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.7.3</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AudioUnit</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/AudioUnit.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.7.3</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Automator</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/Automator.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.2.4</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MediaBrowser</string>
- <key>lastModified</key>
- <date>2011-12-09T05:19:43Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/Automator.framework/Frameworks/MediaBrowser.framework</string>
- <key>private_framework</key>
- <string>no</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AVFoundation</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/AVFoundation.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>2.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>CalendarStore</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/CalendarStore.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>5.0.3</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Carbon</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T21:10:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/Carbon.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>153</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>CarbonSound</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>info</key>
- <string>Carbon Sound Manager for OSX</string>
- <key>lastModified</key>
- <date>2012-11-30T21:10:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/Carbon.framework/Frameworks/CarbonSound.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>3.9.4.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>CommonPanels</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>CommonPanels version 1.2.4, Copyright 2000-2006, Apple Computer Inc.</string>
- <key>lastModified</key>
- <date>2012-11-30T21:10:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/Carbon.framework/Frameworks/CommonPanels.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.2.5</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Help</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>Help.framework 1.3, Copyright 2000-2010, Apple Computer, Inc.</string>
- <key>lastModified</key>
- <date>2012-11-30T21:10:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/Carbon.framework/Frameworks/Help.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.3.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>HIToolbox</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T21:10:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/Carbon.framework/Frameworks/HIToolbox.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.9</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>HTMLRendering</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>info</key>
- <string>HTMLRendering.framework 1.1.4, Copyright 2000-2005, Apple Computer, Inc.</string>
- <key>lastModified</key>
- <date>2012-11-30T21:10:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/Carbon.framework/Frameworks/HTMLRendering.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>76</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ImageCapture</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/Carbon.framework/Frameworks/ImageCapture.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>7.1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Ink</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>10.7.5, Copyright 2001-2012 Apple Inc.</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/Carbon.framework/Frameworks/Ink.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>10.7.5</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>NavigationServices</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/Carbon.framework/Frameworks/NavigationServices.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>3.7</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>OpenScripting</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>Supplies support for scripting languages</string>
- <key>lastModified</key>
- <date>2012-11-30T21:10:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/Carbon.framework/Frameworks/OpenScripting.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.3.3</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Print</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/Carbon.framework/Frameworks/Print.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>7.4</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>SecurityHI</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T21:10:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/Carbon.framework/Frameworks/SecurityHI.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>4.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>SpeechRecognition</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/Carbon.framework/Frameworks/SpeechRecognition.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>4.0.21</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Cocoa</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T21:10:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/Cocoa.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>6.6</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Collaboration</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/Collaboration.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>63.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>CoreAudio</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>CoreAudio 4.0.3</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/CoreAudio.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>4.0.3</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>CoreAudioKit</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/CoreAudioKit.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.6.3</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>CoreData</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/CoreData.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>104.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>CoreFoundation</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/CoreFoundation.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>6.7.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>CoreLocation</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/CoreLocation.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>330.12</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>CoreMedia</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/CoreMedia.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>CoreMediaIO</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/CoreMediaIO.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>216.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>CoreMIDI</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/CoreMIDI.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.8</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>CoreMIDIServer</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/CoreMIDIServer.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.8</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>CoreServices</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T21:10:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/CoreServices.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>53</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AE</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/CoreServices.framework/Frameworks/AE.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>527.7</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>CarbonCore</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>960.25</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>CFNetwork</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/CoreServices.framework/Frameworks/CFNetwork.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>520.5.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>DictionaryServices</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/CoreServices.framework/Frameworks/DictionaryServices.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.2.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>LaunchServices</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>10.6, Copyright © 2000-2007 Apple Inc., All Rights Reserved</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>480.40</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Metadata</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>10.7.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>OSServices</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>OS Services Framework</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/CoreServices.framework/Frameworks/OSServices.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>478.49</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>SearchKit</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T21:10:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/CoreServices.framework/Frameworks/SearchKit.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.4.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>CoreVideo</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/CoreVideo.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.7</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>CoreWLAN</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>2.1.3, Copyright © 2009–2012 Apple Inc. All rights reserved.</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/CoreWLAN.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>2.1.3</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>DirectoryService</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/DirectoryService.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>10.7</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>DiscRecording</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/DiscRecording.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>6.0.4</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>DiscRecordingUI</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/DiscRecordingUI.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>6.0.4</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>DiskArbitration</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/DiskArbitration.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>2.4.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>DrawSprocket</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>info</key>
- <string>DrawSprocket version 2.0.87 dylib for Mac OS X</string>
- <key>lastModified</key>
- <date>2012-11-30T21:10:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/DrawSprocket.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>2.0.87</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>DVComponentGlue</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>info</key>
- <string>IOFWDVComponents version 2.0.7, Copyright © 2010 Apple Inc. All rights reserved.</string>
- <key>lastModified</key>
- <date>2012-11-30T21:10:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/DVComponentGlue.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>2.0.7</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>DVDPlayback</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>DVDPlayback Framework</string>
- <key>lastModified</key>
- <date>2012-11-30T21:10:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/DVDPlayback.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>5.5.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ExceptionHandling</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T21:10:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/ExceptionHandling.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.5</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ForceFeedback</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>1.0.4, Copyright Apple Computer, Inc. 2002-2008</string>
- <key>lastModified</key>
- <date>2012-11-30T21:10:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/ForceFeedback.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0.4</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Foundation</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/Foundation.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>6.7.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>FWAUserLib</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>FWAUserLib 2.6.5, Copyright 2002-2012 Apple Inc.</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/FWAUserLib.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>2.6.5</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>GLUT</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>3.4.9, Copyright © 2001-2011 Apple Inc. All rights reserved.</string>
- <key>lastModified</key>
- <date>2012-11-30T21:10:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/GLUT.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>3.4.9</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>GSS</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T21:10:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/GSS.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>2.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ICADevices</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>7.1.0, © Copyright 2000-2011 Apple Inc., all rights reserved.</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/ICADevices.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>7.1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ImageCaptureCore</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/ImageCaptureCore.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>3.1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>IMCore</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/IMCore.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>6.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>IMDaemonCore</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/IMCore.framework/Frameworks/IMDaemonCore.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>6.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>IMDAppleServices</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/IMCore.framework/Frameworks/IMDAppleServices.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>6.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>IMFoundation</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/IMCore.framework/Frameworks/IMFoundation.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>6.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>IMServicePlugIn</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T21:10:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/IMServicePlugIn.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>IMServicePlugInSupport</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/IMServicePlugIn.framework/Frameworks/IMServicePlugInSupport.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>InputMethodKit</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T21:10:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/InputMethodKit.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>InstallerPlugins</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/InstallerPlugins.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>5.0.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>InstantMessage</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/InstantMessage.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>6.0.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>IMRenderingFoundation</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/InstantMessage.framework/Frameworks/IMRenderingFoundation.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>6.0.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>IOBluetooth</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>4.0.8, Copyright © 2002-2012 Apple Inc. All rights reserved.</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/IOBluetooth.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>4.0.8</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>CoreBluetooth</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T21:10:44Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/IOBluetooth.framework/Frameworks/CoreBluetooth.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>100.7</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>IOBluetoothUI</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>4.0.8, Copyright © 2002-2012 Apple Inc. All rights reserved.</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/IOBluetoothUI.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>4.0.8</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>IOKit</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>I/O Kit Framework, Apple Computer Inc</string>
- <key>lastModified</key>
- <date>2012-11-30T21:10:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/IOKit.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>2.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>IOSurface</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/IOSurface.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>80.0.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>JavaFrameEmbedding</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T21:47:10Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/JavaFrameEmbedding.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>14.5.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>JavaScriptCore</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>7534.57.3, Copyright 2003-2012 Apple Inc.; Copyright 1999-2001 Harri Porten &lt;porten@kde.org&gt;; Copyright 2001 Peter Kelly &lt;pmk@post.com&gt;; Copyright 1997-2005 University of Cambridge; Copyright 1991, 2000, 2001 by Lucent Technologies.</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/JavaScriptCore.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>7534.57</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>JavaVM</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T21:47:10Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/JavaVM.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>14.5.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>JavaNativeFoundation</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T21:47:10Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/JavaVM.framework/Frameworks/JavaNativeFoundation.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>14.5.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>JavaRuntimeSupport</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T21:47:10Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/JavaVM.framework/Frameworks/JavaRuntimeSupport.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>14.5.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Kerberos</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T21:10:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/Kerberos.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Kernel</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/Kernel.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>version</key>
- <string>11.4.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>LatentSemanticMapping</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T21:10:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/LatentSemanticMapping.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>2.8.10</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>LDAP</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>OpenLDAP framework v2.4.19</string>
- <key>lastModified</key>
- <date>2012-02-28T00:39:44Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/LDAP.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>3.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Message</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/Message.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>5.3</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>NetFS</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T21:10:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/NetFS.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>4.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>OpenAL</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/OpenAL.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.5.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>OpenCL</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>2.0.19, Copyright 2008-2012 Apple Inc.</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/OpenCL.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>2.0.19</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>OpenDirectory</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/OpenDirectory.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>10.7</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>CFOpenDirectory</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/OpenDirectory.framework/Frameworks/CFOpenDirectory.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>10.7</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>OpenGL</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>OpenGL 1.8.1.45.0</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/OpenGL.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.8.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>OSAKit</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>1.2.4, Copyright © 2005-2012 Apple Inc. All Rights Reserved</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/OSAKit.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.2.4</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>PCSC</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T21:10:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/PCSC.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>7.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>PreferencePanes</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T21:10:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/PreferencePanes.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>15.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>PubSub</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T21:10:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/PubSub.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0.5</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Python</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>Python Runtime and Library</string>
- <key>lastModified</key>
- <date>2012-11-30T21:10:46Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/Python.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>2.7.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>QTKit</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>QTKit 7.7.1, Copyright 2003-2011, Apple Inc.</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:51Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/QTKit.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>7.7.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Quartz</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T21:10:50Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/Quartz.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.5</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ImageKit</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T21:10:50Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/Quartz.framework/Frameworks/ImageKit.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>2.1.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>PDFKit</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>PDF Kit version 2.6.4, Copyright © 2005-2012 Apple Inc.</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:51Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/Quartz.framework/Frameworks/PDFKit.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>2.6.4</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>QuartzComposer</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:51Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/Quartz.framework/Frameworks/QuartzComposer.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>5.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>QuartzFilters</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T21:10:50Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/Quartz.framework/Frameworks/QuartzFilters.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.7.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>QuickLookUI</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>3.2, Copyright Apple Inc. 2007-2011</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:51Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/Quartz.framework/Frameworks/QuickLookUI.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>3.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>QuartzCore</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:51Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/QuartzCore.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.7</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>CoreImage</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:51Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/QuartzCore.framework/Frameworks/CoreImage.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>7.99.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ScalableUserInterface</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:39:49Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/QuartzCore.framework/Frameworks/ScalableUserInterface.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>QuickLook</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>3.2, Copyright Apple Inc. 2007-2011</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:51Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/QuickLook.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>3.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>QuickTime</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:51Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/QuickTime.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>7.7.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Ruby</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>Ruby Runtime and Library</string>
- <key>lastModified</key>
- <date>2012-11-30T21:10:50Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/Ruby.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.8.7.72</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>RubyCocoa</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>RubyCocoa 1.0.1 Copyright (c) 2002 FUJIMOTO Hisakuni.</string>
- <key>lastModified</key>
- <date>2012-11-30T21:10:51Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/RubyCocoa.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ScreenSaver</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:51Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/ScreenSaver.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>4.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Scripting</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>lastModified</key>
- <date>2012-11-30T21:10:51Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/Scripting.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>6.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ScriptingBridge</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T21:10:51Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/ScriptingBridge.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.2.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Security</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:51Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/Security.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>7.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>SecurityFoundation</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:51Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/SecurityFoundation.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>5.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>SecurityInterface</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:51Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/SecurityInterface.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>5.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ServerNotification</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:51Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/ServerNotification.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>4.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ServiceManagement</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T21:10:51Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/ServiceManagement.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>2.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>StoreKit</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:51Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/StoreKit.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>SyncServices</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>© 2003-2004 Apple</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:52Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/SyncServices.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>6.3</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>System</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:39:50Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/System.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>11</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>SystemConfiguration</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>1.11</string>
- <key>lastModified</key>
- <date>2012-11-30T21:10:51Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/SystemConfiguration.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.11.3</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Tcl</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>Tcl 8.5.9,
-Copyright © 1987-2011 Tcl Core Team,
-Copyright © 2001-2011 Daniel A. Steffen,
-Copyright © 2001-2009 Apple Inc.,
-Copyright © 2001-2002 Jim Ingham &amp; Ian Reid</string>
- <key>lastModified</key>
- <date>2012-11-30T21:10:51Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/Tcl.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>8.5.9</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Tk</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>Tk AQUA 8.5.9,
-Copyright © 1989-2011 Tcl Core Team,
-Copyright © 2002-2011 Daniel A. Steffen,
-Copyright © 2001-2009 Apple Inc.,
-Copyright © 2001-2002 Jim Ingham &amp; Ian Reid</string>
- <key>lastModified</key>
- <date>2012-11-30T21:10:51Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/Tk.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>8.5.9</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>TWAIN</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>1.9.5, © Copyright 2001-2012, TWAIN Working Group</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:52Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/TWAIN.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.9.5</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>vecLib</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>DSP, BLAS, LAPACK, Vector Math, and Large Number Library</string>
- <key>lastModified</key>
- <date>2012-11-30T21:10:51Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/vecLib.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>3.7</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>VideoDecodeAcceleration</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T21:10:51Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/VideoDecodeAcceleration.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>WebKit</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>7534.57.7, Copyright 2003-2012 Apple Inc.</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:52Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/WebKit.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>7534.57</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>WebCore</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>7534.57.7, Copyright 2003-2012 Apple Inc.; Copyright 1997 Martin Jones &lt;mjones@kde.org&gt;; Copyright 1998, 1999 Torben Weis &lt;weis@kde.org&gt;; Copyright 1998, 1999, 2002 Waldo Bastian &lt;bastian@kde.org&gt;; Copyright 1998-2000 Lars Knoll &lt;knoll@kde.org&gt;; Copyright 1999, 2001 Antti Koivisto &lt;koivisto@kde.org&gt;; Copyright 1999-2001 Harri Porten &lt;porten@kde.org&gt;; Copyright 2000 Simon Hausmann &lt;hausmann@kde.org&gt;; Copyright 2000, 2001 Dirk Mueller &lt;mueller@kde.org&gt;; Copyright 2000, 2001 Peter Kelly &lt;pmk@post.com&gt;; Copyright 2000 Daniel Molkentin &lt;molkentin@kde.org&gt;; Copyright 2000 Stefan Schimanski &lt;schimmi@kde.org&gt;; Copyright 1998-2000 Netscape Communications Corporation; Copyright 1998, 1999, 2000 Thai Open Source Software Center Ltd and Clark Cooper; Copyright 2001, 2002 Expat maintainers.</string>
- <key>lastModified</key>
- <date>2012-02-28T00:39:51Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/WebKit.framework/Frameworks/WebCore.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>7534.57</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>XgridFoundation</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>10.7, Copyright 2003-2010 Apple Inc. All Rights Reserved</string>
- <key>lastModified</key>
- <date>2012-11-30T21:10:51Z</date>
- <key>path</key>
- <string>/System/Library/Frameworks/XgridFoundation.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>10.7</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Admin</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>Admin Framework</string>
- <key>lastModified</key>
- <date>2012-02-28T00:39:52Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/Admin.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>11.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AirPortDevices</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>1.0 (100.6), Copyright © 2009-2010 Apple Inc. All Rights Reserved.</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/AirPortDevices.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AirTrafficHost</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:46:24Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/AirTrafficHost.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>283</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AOSAccounts</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:46:24Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/AOSAccounts.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AOSKit</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:46:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/AOSKit.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.021</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AOSMigrate</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/AOSMigrate.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AOSNotification</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>AOS Notification, Copyright 2008-2010 Apple Inc.</string>
- <key>lastModified</key>
- <date>2012-11-30T18:46:26Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/AOSNotification.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.4.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AOSUI</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:46:26Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/AOSUI.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppContainer</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:39:53Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/AppContainer.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.5</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple80211</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>7.4.1, Copyright © 2000–2012 Apple Inc. All rights reserved.</string>
- <key>lastModified</key>
- <date>2012-02-28T00:39:53Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/Apple80211.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>7.4.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppleAppSupport</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:39:53Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/AppleAppSupport.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.5</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppleFSCompression</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:39:53Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/AppleFSCompression.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>37</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppleGVA</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/AppleGVA.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>3.1.9</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppleProfileFamily</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/AppleProfileFamily.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.85.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ApplePushService</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:46:31Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/ApplePushService.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>2.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppleScript</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/AppleScript.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>2.2.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppleSRP</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:39:53Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/AppleSRP.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppleSystemInfo</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:39:53Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/AppleSystemInfo.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppleVA</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:39:53Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/AppleVA.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>5.0.16</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AppSandbox</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:39:53Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/AppSandbox.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.5</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Assistant</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:39:53Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/Assistant.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>2.0.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AVConference</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/AVConference.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ICE</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/AVConference.framework/Frameworks/ICE.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>LegacyHandle</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/AVConference.framework/Frameworks/LegacyHandle.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>SimpleKeyExchange</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/AVConference.framework/Frameworks/SimpleKeyExchange.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>snatmap</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/AVConference.framework/Frameworks/snatmap.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ViceroyTrace</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/AVConference.framework/Frameworks/ViceroyTrace.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>AVFoundationCF</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/AVFoundationCF.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>2.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Backup</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:39:53Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/Backup.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.3.5</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>BEEP</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>10.7, Copyright 2003-2010 Apple Inc. All Rights Reserved</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/BEEP.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>10.7</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>BezelServices</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>232.3</string>
- <key>lastModified</key>
- <date>2012-02-28T00:39:53Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/BezelServices.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>232.3</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Bom</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:39:53Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/Bom.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>11.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>BookmarkDAV</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/BookmarkDAV.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.1.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>SafariDAVNotifier</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/BookmarkDAV.framework/Frameworks/SafariDAVNotifier.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.1.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>BrowserKit</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/BrowserKit.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>4.2.3</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ByteRangeLocking</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/ByteRangeLocking.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.1.3</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Calculate</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/Calculate.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.3.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>CalDAV</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/CalDAV.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>CalendarDraw</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:42:28Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/CalendarDraw.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>5.0.3</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>CaptiveNetwork</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/CaptiveNetwork.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ChunkingLibrary</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:39:53Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/ChunkingLibrary.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ClockMenuExtraPreferences</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/ClockMenuExtraPreferences.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>CommerceKit</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:39:53Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/CommerceKit.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>CommerceCore</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:39:53Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/CommerceKit.framework/Frameworks/CommerceCore.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>CommonAuth</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:39:54Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/CommonAuth.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>2.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>CommonCandidateWindow</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:39:54Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/CommonCandidateWindow.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.3</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ConfigProfileHelper</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/ConfigProfileHelper.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>3.6</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ConfigurationProfiles</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/ConfigurationProfiles.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>3.6</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>CoreAUC</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:39:54Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/CoreAUC.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>6.16.12</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>CoreChineseEngine</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/CoreChineseEngine.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>2.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>CoreDaemon</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/CoreDaemon.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>CoreDAV</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/CoreDAV.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>CoreFP</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:46:37Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/CoreFP.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>2.2.31</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>CoreHandwriting</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/CoreHandwriting.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>CoreKE</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/CoreKE.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.1.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>CoreMediaAuthoring</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:39:54Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/CoreMediaAuthoring.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>2.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>CoreMediaIOServices</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/CoreMediaIOServices.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>151.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>CoreMediaIOServicesPrivate</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>52.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>CoreMediaPrivate</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/CoreMediaPrivate.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>20.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>CoreMediaStream</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:46:38Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/CoreMediaStream.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>CorePDF</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:39:54Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/CorePDF.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>3.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>CoreProfile</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/CoreProfile.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.20.8</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>CoreRAID</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>107, Copyright 2007-2009 Apple Inc.</string>
- <key>lastModified</key>
- <date>2012-02-28T00:39:54Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/CoreRAID.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>107</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>CoreServicesInternal</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:39:54Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/CoreServicesInternal.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>113.19</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>CoreSymbolication</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/CoreSymbolication.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>2.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>CoreUI</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:39:54Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/CoreUI.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.2.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>CoreWLANKit</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>1.0.3, Copyright © 2011–2012 Apple Inc. All rights reserved.</string>
- <key>lastModified</key>
- <date>2012-02-28T00:39:55Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/CoreWLANKit.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0.3</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>CrashReporterSupport</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:39:55Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/CrashReporterSupport.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>10.7.4</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>CSLogging</string>
- <key>lastModified</key>
- <date>2011-12-21T19:12:34Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/CSLogging.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>DashboardClient</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/DashboardClient.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.8</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>DataDetectors</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/DataDetectors.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>3.3</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>DataDetectorsCore</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:39:55Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/DataDetectorsCore.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>3.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>DAVKit</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:42:28Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/DAVKit.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>5.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>DCERPC</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/DCERPC.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>DebugSymbols</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/DebugSymbols.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>2.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>DesktopServicesPriv</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>Desktop Services</string>
- <key>lastModified</key>
- <date>2012-02-28T00:39:55Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/DesktopServicesPriv.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.6.5</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>DeviceLink</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:46:46Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/DeviceLink.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>5.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>DeviceToDeviceKit</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>DeviceToDeviceKit 1.0, Copyright 2010 Apple Inc.</string>
- <key>lastModified</key>
- <date>2012-11-30T18:46:46Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/DeviceToDeviceKit.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>DeviceToDeviceManager</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:39:55Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/DeviceToDeviceManager.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>29.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>DigiHubPreference</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/DigiHubPreference.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.7</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>DirectoryEditor</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/DirectoryEditor.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>10.7</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>DirectoryServiceCore</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/DirectoryServiceCore.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>10.7</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>DiskImages</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:46:48Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/DiskImages.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>10.7.4</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>DiskManagement</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>Disk Management version 4.2.1, Copyright © 1998-2011 Apple Inc. All Rights Reserved.</string>
- <key>lastModified</key>
- <date>2012-11-30T18:46:52Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/DiskManagement.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>4.2.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>DisplayServices</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>DisplayServices 2.5.4</string>
- <key>lastModified</key>
- <date>2012-11-30T18:46:52Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/DisplayServices.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>2.5.4</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>DMNotification</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>.Mac Notification Framework, Copyright 2004-2007 Apple, Inc.</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/DMNotification.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.2.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>DNSManager</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/DNSManager.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>10.7</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>DotMacLegacy</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/DotMacLegacy.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>3.3</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>DotMacSyncManager</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/DotMacSyncManager.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>6.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>DSObjCWrappers</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:39:56Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/DSObjCWrappers.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>10.7</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>DVD</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/DVD.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>4.1.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>EAP8021X</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:39:56Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/EAP8021X.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>11.0.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>EFILogin</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:39:56Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/EFILogin.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ExchangeWebServices</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/ExchangeWebServices.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>2.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>FaceCoreLight</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/FaceCoreLight.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.4.7</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>FamilyControls</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:39:56Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/FamilyControls.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>3.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>FileSync</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>© Copyright 2009 Apple Inc., all rights reserved.</string>
- <key>lastModified</key>
- <date>2012-02-28T00:39:56Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/FileSync.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>6.0.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>FinderKit</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:39:56Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/FinderKit.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0.5</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>FindMyMac</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:39:56Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/FindMyMac.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>FTClientServices</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/FTClientServices.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>6.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>FTServices</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/FTServices.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>6.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>FWAVC</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:47:00Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/FWAVC.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>201.47</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>FWAVCPrivate</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/FWAVCPrivate.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>52.47</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>GenerationalStorage</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:39:56Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/GenerationalStorage.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>GeoKit</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/GeoKit.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>2.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>GoogleContactSync</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>GoogleContactSync 87 © 2007-2011 Google Inc.</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/GoogleContactSync.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>87</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>GPUSupport</string>
- <key>lastModified</key>
- <date>2012-11-30T18:41:03Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/GPUSupport.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>GraphicsAppSupport</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/GraphicsAppSupport.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ImageIO</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>3.1.2</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:46Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Frameworks/ImageIO.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>3.1.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ImageKit</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T21:10:50Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Frameworks/ImageKit.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>2.1.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>QuartzComposer</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:51Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Frameworks/QuartzComposer.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>5.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>GraphKit</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/GraphKit.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0.5</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Heimdal</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:39:56Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/Heimdal.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>2.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>HeimODAdmin</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/HeimODAdmin.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>2.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>HelpData</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/HelpData.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>2.1.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>iCalendar</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/iCalendar.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>5.0.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ICANotifications</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>7.1.0, © Copyright 2000-2010 Apple Inc., all rights reserved.</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/ICANotifications.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>7.1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>iLifeMediaBrowser</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/iLifeMediaBrowser.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>2.6.4</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>IMAVCore</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/IMAVCore.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>6.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>IMCore</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/IMCore.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>6.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>IMDaemonCore</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/IMCore.framework/Frameworks/IMDaemonCore.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>6.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>IMDAppleServices</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/IMCore.framework/Frameworks/IMDAppleServices.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>6.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>IMFoundation</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/IMCore.framework/Frameworks/IMFoundation.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>6.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Install</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:39:56Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/Install.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>600</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>DistributionKit</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:39:56Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/Install.framework/Frameworks/DistributionKit.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>600</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>OSInstall</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:39:56Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/Install.framework/Frameworks/OSInstall.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>600</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>International</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>Copyright Apple Inc. 2008</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/International.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>3.0.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>InternetAccounts</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/InternetAccounts.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>IntlPreferences</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/IntlPreferences.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.5.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>iPod</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>iPod version 1.7, Copyright 2002-2008, Apple Computer, Inc.</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/iPod.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.7</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>iPodSync</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/iPodSync.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>6.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ISSupport</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:39:57Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/ISSupport.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.9.8</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>iTunesAccess</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>iTunes Access 11.0, © 2000 -2012 Apple Inc. All rights reserved.</string>
- <key>lastModified</key>
- <date>2012-11-30T18:47:07Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/iTunesAccess.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>11.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>JavaApplicationLauncher</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T21:47:11Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/JavaApplicationLauncher.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>14.5.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>JavaLaunching</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T21:47:11Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/JavaLaunching.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>14.5.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>KerberosHelper</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:39:57Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/KerberosHelper.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>3.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>LegacyMediaBridge</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/LegacyMediaBridge.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Librarian</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:51:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/Librarian.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>LibraryRepair</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:41:03Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/LibraryRepair.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>LLDB</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T19:29:01Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/LLDB.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.167.5</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>login</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/login.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>LoginUIKit</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:39:57Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/LoginUIKit.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.3</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>LoginUICore</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:39:57Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/LoginUIKit.framework/Frameworks/LoginUICore.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.3</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Lookup</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/Lookup.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MachineSettings</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>MachineSettings Framework</string>
- <key>lastModified</key>
- <date>2012-02-28T00:39:57Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/MachineSettings.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>11.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MacRuby</string>
- <key>info</key>
- <string>MacRuby Runtime and Library</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/MacRuby.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>version</key>
- <string>0.11</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ManagedClient</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/ManagedClient.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>3.6</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Marco</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/Marco.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>6.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MDSChannel</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/MDSChannel.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0.6</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MediaKit</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>Esoteric Media Manipulation</string>
- <key>lastModified</key>
- <date>2012-02-28T00:39:57Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/MediaKit.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>12</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MediaToolbox</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:39:57Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/MediaToolbox.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MediaUI</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/MediaUI.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MMCS</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:47:14Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/MMCS.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MobileDevice</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:47:14Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/MobileDevice.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>555.40</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MobileMeAccounts</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/MobileMeAccounts.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MonitorPanel</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>2.1, Copyright © 2001-2012, Apple Inc.</string>
- <key>lastModified</key>
- <date>2012-02-28T00:39:57Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/MonitorPanel.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>2.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MPWXmlCore</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/MPWXmlCore.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>5.1.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MultitouchSupport</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:39:57Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/MultitouchSupport.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>231.4</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>NetAuth</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:39:57Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/NetAuth.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>3.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>NetInfo</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:39:57Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/NetInfo.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>NetworkDiagnosticsUI</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/NetworkDiagnosticsUI.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.1.5</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>NetworkMenusCommon</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2011-05-25T19:59:19Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/NetworkMenusCommon.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>2.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>NetworkStatistics</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/NetworkStatistics.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>nt</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/nt.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>OfficeImport</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/OfficeImport.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>3.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>oncrpc</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:39:57Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/oncrpc.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>OpenDirectoryConfig</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/OpenDirectoryConfig.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>10.7</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>OpenDirectoryConfigUI</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/OpenDirectoryConfigUI.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>10.7</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>OpenTransport</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>info</key>
- <string>OpenTransport</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/OpenTransport.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>10.6.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>PackageKit</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:39:57Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/PackageKit.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>2.0.3</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>PackageUIKit</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:39:57Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/PackageKit.framework/Frameworks/PackageUIKit.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>2.0.3</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>PasswordServer</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/PasswordServer.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>7.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>PerformanceAnalysis</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:39:57Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/PerformanceAnalysis.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.11</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>PhoneNumbers</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/PhoneNumbers.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>PlatformHardwareManagement</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:39:57Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/PlatformHardwareManagement.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>2.0.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>PodcastLibrary</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/PodcastLibrary.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>PodcastProducerCore</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>3.0, Copyright © 2011 Apple Inc., All Rights Reserved</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/PodcastProducerCore.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>3.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>PodcastProducerKit</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>2.0, Copyright © 2011 Apple Inc., All Rights Reserved</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/PodcastProducerKit.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>2.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>PostgreSQLClient</string>
- <key>lastModified</key>
- <date>2011-12-21T19:12:37Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/PostgreSQLClient.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>PreferencePanesSupport</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/PreferencePanesSupport.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>PrintingPrivate</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/PrintingPrivate.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>7.4</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ProKit</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>ProKit version 7.2.3, Copyright (c) 2003-2010 Apple Inc.</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/ProKit.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>7.2.3</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ProtocolBuffer</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:39:57Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/ProtocolBuffer.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>PSNormalizer</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/PSNormalizer.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>7.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>RemotePacketCapture</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T19:26:40Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/RemotePacketCapture.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>RemoteViewServices</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:40:57Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/RemoteViewServices.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.5</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Restore</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:39:57Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/Restore.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.9</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Safari</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:39:57Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/Safari.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>7534</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>SafariServices</string>
- <key>lastModified</key>
- <date>2012-10-19T00:18:08Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/SafariServices.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>SceneKit</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:39:58Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/SceneKit.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>125.3</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>SCEP</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/SCEP.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ScreenReader</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:39:58Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/ScreenReader.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>4.4</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ScreenReaderBrailleDriver</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>Copyright © 2008-2011 Apple Inc. All Rights Reserved.</string>
- <key>lastModified</key>
- <date>2012-02-28T00:39:58Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/ScreenReader.framework/Frameworks/ScreenReaderBrailleDriver.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>4.4</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ScreenReaderCore</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:39:58Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/ScreenReader.framework/Frameworks/ScreenReaderCore.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>4.4</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ScreenReaderOutput</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:39:59Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/ScreenReader.framework/Frameworks/ScreenReaderOutput.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>4.4</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ScreenReaderOutputServer</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>Copyright © 2009-2011 Apple Inc. All Rights Reserved.</string>
- <key>lastModified</key>
- <date>2012-02-28T00:39:59Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/ScreenReader.framework/Frameworks/ScreenReaderOutputServer.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>4.4</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ScreenSharing</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/ScreenSharing.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>version</key>
- <string>2.0.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>SecCodeWrapper</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:40:00Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/SecCodeWrapper.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.5</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>SecurityTokend</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/SecurityTokend.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>4.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>SemanticDocumentManagement</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/SemanticDocumentManagement.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.1.26</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ServerAssistant</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/ServerAssistant.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>10.7.4</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ServerAssistantFoundation</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/ServerAssistant.framework/Frameworks/ServerAssistantFoundation.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0.4</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ServerAssistantPages</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/ServerAssistant.framework/Frameworks/ServerAssistantPages.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0.4</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ServerMigration</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/ServerAssistant.framework/Frameworks/ServerMigration.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0.4</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ServerFoundation</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/ServerFoundation.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>10.7.3</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ServerInformation</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:40:00Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/ServerInformation.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ServerKit</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/ServerKit.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>10.7.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>SetupAssistant</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>Copyright Apple Computer, Inc. 2005</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/SetupAssistant.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>10.7</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>SetupAssistantSupport</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>Copyright Apple Computer, Inc. 2006</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/SetupAssistantSupport.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>10.7</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Shinkansen</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/Shinkansen.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Shortcut</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/Shortcut.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>2.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>SMBClient</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/SMBClient.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.7.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>SoftwareUpdate</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/SoftwareUpdate.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>5.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>SpeechDictionary</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:40:00Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/SpeechDictionary.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>4.0.60</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>SpeechObjects</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:40:00Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/SpeechObjects.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>4.6.24</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>SpnegoApache</string>
- <key>lastModified</key>
- <date>2011-11-15T23:23:34Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/SpnegoApache.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>SpotlightIndex</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/SpotlightIndex.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>10.7.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>SPSupport</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>10.5, Copyright 1997-2005 Apple Computer, Inc.</string>
- <key>lastModified</key>
- <date>2012-02-28T00:40:01Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/SPSupport.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>10.8</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Suggestions</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:40:01Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/Suggestions.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Symbolication</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/Symbolication.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.3</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>SyncedDefaults</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:47:43Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/SyncedDefaults.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>SyncServicesUI</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/SyncServicesUI.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>6.3</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>SyndicationUI</string>
- <key>lastModified</key>
- <date>2012-02-28T00:40:01Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/SyndicationUI.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>version</key>
- <string>2.0.5</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>SystemMigration</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:40:01Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/SystemMigration.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>402</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>SystemUIPlugin</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>SystemUIPlugin version 1.7, Copyright 2000-2009, Apple Computer, Inc.</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/SystemUIPlugin.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.7</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>TrustEvaluationAgent</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:40:01Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/TrustEvaluationAgent.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>2.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Ubiquity</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T18:47:46Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/Ubiquity.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>UIRecording</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/UIRecording.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Uninstall</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/Uninstall.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>UniversalAccess</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/UniversalAccess.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>5.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>UniversalAccessCore</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/UniversalAccess.framework/Frameworks/UniversalAccessCore.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>5.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>VCXMPP</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/VCXMPP.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apollo</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/VCXMPP.framework/Frameworks/Apollo.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>libxml</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/VCXMPP.framework/Frameworks/libxml.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Pear</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/VCXMPP.framework/Frameworks/Pear.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>uxmi</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/VCXMPP.framework/Frameworks/uxmi.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>XMPPToolkit</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/VCXMPP.framework/Frameworks/XMPPToolkit.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>VideoConference</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/VideoConference.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>454.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>VideoProcessing</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/VideoProcessing.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>36.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>VideoToolbox</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:40:01Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/VideoToolbox.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>vmutils</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>info</key>
- <string>vmutils 4.1, Copyright 2002-2006 Apple Computer, Inc.</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:24Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/vmutils.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>4.2.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>WebContentAnalysis</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:40:01Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/WebContentAnalysis.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>2.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>WebFilterDNS</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:40:01Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/WebFilterDNS.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>WebKit2</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>7534.57.7, Copyright 2003-2012 Apple Inc.</string>
- <key>lastModified</key>
- <date>2012-02-28T00:40:01Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/WebKit2.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>7534.57</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>WhitePages</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/WhitePages.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>10.7.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>XgridInterface</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>10.7, Copyright 2003-2010 Apple Inc. All Rights Reserved</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/XgridInterface.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>10.7</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>XMPP</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/XMPP.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>XMPPCore</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/XMPPCore.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>6.0.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>XPCService</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:40:01Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/XPCService.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.3</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>XQuery</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>XQuery version 1.3, Copyright (c) 2004-2009 Apple Inc.</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/XQuery.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.3</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>YahooSync</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-28T00:41:25Z</date>
- <key>path</key>
- <string>/System/Library/PrivateFrameworks/YahooSync.framework</string>
- <key>private_framework</key>
- <string>yes</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.5</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Adobe AIR</string>
- <key>has64BitIntelCode</key>
- <string>no</string>
- <key>lastModified</key>
- <date>2012-10-29T04:00:09Z</date>
- <key>path</key>
- <string>/Library/Frameworks/Adobe AIR.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>3.5.0.600</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>iLifeFaceRecognition</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-26T22:00:51Z</date>
- <key>path</key>
- <string>/Library/Frameworks/iLifeFaceRecognition.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>iLifeKit</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-26T22:01:04Z</date>
- <key>path</key>
- <string>/Library/Frameworks/iLifeKit.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.3</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>iLifePageLayout</string>
- <key>lastModified</key>
- <date>2012-02-26T22:01:04Z</date>
- <key>path</key>
- <string>/Library/Frameworks/iLifePageLayout.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>version</key>
- <string>1.3</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ExpressCheckout</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-26T22:01:04Z</date>
- <key>path</key>
- <string>/Library/Frameworks/iLifePageLayout.framework/Frameworks/ExpressCheckout.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>iLifeImageAnalysis</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-26T22:01:04Z</date>
- <key>path</key>
- <string>/Library/Frameworks/iLifePageLayout.framework/Frameworks/iLifeImageAnalysis.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>3.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>iLifeSlideshow</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-26T22:13:09Z</date>
- <key>path</key>
- <string>/Library/Frameworks/iLifeSlideshow.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>2.3.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>iLifeSlideshowCore</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-26T22:13:09Z</date>
- <key>path</key>
- <string>/Library/Frameworks/iLifeSlideshow.framework/Frameworks/iLifeSlideshowCore.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>2.3.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>iLifeSlideshowExporter</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-26T22:13:09Z</date>
- <key>path</key>
- <string>/Library/Frameworks/iLifeSlideshow.framework/Frameworks/iLifeSlideshowExporter.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>2.3.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>iLifeSlideshowProducer</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-26T22:13:09Z</date>
- <key>path</key>
- <string>/Library/Frameworks/iLifeSlideshow.framework/Frameworks/iLifeSlideshowProducer.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>2.3.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>iLifeSlideshowRenderer</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-26T22:13:09Z</date>
- <key>path</key>
- <string>/Library/Frameworks/iLifeSlideshow.framework/Frameworks/iLifeSlideshowRenderer.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>2.3.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>iLifeSQLAccess</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-02-26T22:01:04Z</date>
- <key>path</key>
- <string>/Library/Frameworks/iLifeSQLAccess.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.6</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>iTunesLibrary</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>iTunes Library 11.0, © 2000 -2012 Apple Inc. All rights reserved.</string>
- <key>lastModified</key>
- <date>2012-11-30T18:41:14Z</date>
- <key>path</key>
- <string>/Library/Frameworks/iTunesLibrary.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>11.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>NyxAudioAnalysis</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>lastModified</key>
- <date>2012-11-30T21:10:45Z</date>
- <key>path</key>
- <string>/Library/Frameworks/NyxAudioAnalysis.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>12.3</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>PluginManager</string>
- <key>has64BitIntelCode</key>
- <string>yes</string>
- <key>info</key>
- <string>Plugin Manager</string>
- <key>lastModified</key>
- <date>2012-11-30T21:10:45Z</date>
- <key>path</key>
- <string>/Library/Frameworks/PluginManager.framework</string>
- <key>private_framework</key>
- <string>no</string>
- <key>runtime_environment</key>
- <string>arch_x86</string>
- <key>version</key>
- <string>1.7.6</string>
- </dict>
- </array>
- <key>_parentDataType</key>
- <string>SPSoftwareDataType</string>
- <key>_properties</key>
- <dict>
- <key>_name</key>
- <dict>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>0</string>
- <key>_width</key>
- <string>300</string>
- </dict>
- <key>has64BitIntelCode</key>
- <dict>
- <key>_isColumn</key>
- <true/>
- <key>_order</key>
- <integer>4</integer>
- </dict>
- <key>lastModified</key>
- <dict>
- <key>_dateFormat</key>
- <string>%X</string>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>2</string>
- <key>_width</key>
- <string>150</string>
- </dict>
- <key>runtime_environment</key>
- <dict>
- <key>_isColumn</key>
- <true/>
- <key>_order</key>
- <integer>3</integer>
- </dict>
- <key>version</key>
- <dict>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>1</string>
- <key>_width</key>
- <string>150</string>
- </dict>
- <key>volumes_anonymous</key>
- <dict>
- <key>_detailLevel</key>
- <string>-1</string>
- <key>_maxDetailLevel</key>
- <string>-1</string>
- </dict>
- </dict>
- <key>_timeStamp</key>
- <date>2012-12-04T21:30:12Z</date>
- <key>_versionInfo</key>
- <dict>
- <key>com.apple.SystemProfiler.SPFrameworksReporter</key>
- <string>733</string>
- </dict>
- </dict>
- <dict>
- <key>_SPCommandLineArguments</key>
- <array>
- <string>/usr/sbin/system_profiler</string>
- <string>-xml</string>
- <string>-detailLevel</string>
- <string>mini</string>
- <string>SPParallelATADataType</string>
- <string>SPApplicationsDataType</string>
- <string>SPAudioDataType</string>
- <string>SPBluetoothDataType</string>
- <string>SPCardReaderDataType</string>
- <string>SPComponentDataType</string>
- <string>SPDeveloperToolsDataType</string>
- <string>SPDiagnosticsDataType</string>
- <string>SPDiscBurningDataType</string>
- <string>SPEthernetDataType</string>
- <string>SPExtensionsDataType</string>
- <string>SPFibreChannelDataType</string>
- <string>SPFireWireDataType</string>
- <string>SPFirewallDataType</string>
- <string>SPFontsDataType</string>
- <string>SPFrameworksDataType</string>
- <string>SPDisplaysDataType</string>
- <string>SPHardwareRAIDDataType</string>
- <string>SPNetworkLocationDataType</string>
- <string>SPLogsDataType</string>
- <string>SPManagedClientDataType</string>
- <string>SPMemoryDataType</string>
- <string>SPModemDataType</string>
- <string>SPNetworkDataType</string>
- <string>SPPCIDataType</string>
- <string>SPParallelSCSIDataType</string>
- <string>SPPowerDataType</string>
- <string>SPPrefPaneDataType</string>
- <string>SPPrintersSoftwareDataType</string>
- <string>SPPrintersDataType</string>
- <string>SPConfigurationProfileDataType</string>
- <string>SPSASDataType</string>
- <string>SPSerialATADataType</string>
- <string>SPSoftwareDataType</string>
- <string>SPStartupItemDataType</string>
- <string>SPSyncServicesDataType</string>
- <string>SPThunderboltDataType</string>
- <string>SPUSBDataType</string>
- <string>SPUniversalAccessDataType</string>
- <string>SPNetworkVolumeDataType</string>
- <string>SPWWANDataType</string>
- <string>SPAirPortDataType</string>
- </array>
- <key>_SPCompletionInterval</key>
- <real>0.070185005664825439</real>
- <key>_dataType</key>
- <string>SPDisplaysDataType</string>
- <key>_detailLevel</key>
- <integer>-1</integer>
- <key>_items</key>
- <array>
- <dict>
- <key>_name</key>
- <string>kHW_AMDRadeonHD6750MItem</string>
- <key>spdisplays_device-id</key>
- <string>0x6741</string>
- <key>spdisplays_efi-version</key>
- <string>01.00.573</string>
- <key>spdisplays_gmux-version</key>
- <string>1.9.23</string>
- <key>spdisplays_ndrvs</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Color LCD</string>
- <key>_spdisplays_display-product-id</key>
- <string>a005</string>
- <key>_spdisplays_display-vendor-id</key>
- <string>610</string>
- <key>_spdisplays_display-week</key>
- <string>49</string>
- <key>_spdisplays_display-year</key>
- <string>2010</string>
- <key>_spdisplays_edid</key>
- <string>0x00ffffffffffff00061005a00000000031140103802115780a50c59858528e27255054000000010101010101010101010101010101017c2e90a0601a1e40302036004bcf10000018000000010006103000000000000000000a20000000fe004c503135345745332d544c4232000000fc00436f6c6f72204c43440a202020005e</string>
- <key>_spdisplays_pixels</key>
- <string>1680 x 1050</string>
- <key>spdisplays_builtin</key>
- <string>spdisplays_yes</string>
- <key>spdisplays_depth</key>
- <string>CGSThirtytwoBitColor</string>
- <key>spdisplays_display_type</key>
- <string>spdisplays_LCD</string>
- <key>spdisplays_main</key>
- <string>spdisplays_yes</string>
- <key>spdisplays_mirror</key>
- <string>spdisplays_off</string>
- <key>spdisplays_online</key>
- <string>spdisplays_yes</string>
- <key>spdisplays_resolution</key>
- <string>1680 x 1050</string>
- </dict>
- </array>
- <key>spdisplays_pcie_width</key>
- <string>x8</string>
- <key>spdisplays_revision-id</key>
- <string>0x0000</string>
- <key>spdisplays_rom-revision</key>
- <string>113-C0170L-573</string>
- <key>spdisplays_vendor</key>
- <string>ATI (0x1002)</string>
- <key>spdisplays_vram</key>
- <string>512 MB</string>
- <key>sppci_bus</key>
- <string>spdisplays_pcie_device</string>
- <key>sppci_device_type</key>
- <string>spdisplays_gpu</string>
- <key>sppci_model</key>
- <string>AMD Radeon HD 6750M</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>kHW_IntelHD3000Item</string>
- <key>spdisplays_device-id</key>
- <string>0x0116</string>
- <key>spdisplays_gmux-version</key>
- <string>1.9.23</string>
- <key>spdisplays_revision-id</key>
- <string>0x0009</string>
- <key>spdisplays_vendor</key>
- <string>Intel (0x8086)</string>
- <key>spdisplays_vram</key>
- <string>512 MB</string>
- <key>sppci_bus</key>
- <string>spdisplays_builtin</string>
- <key>sppci_device_type</key>
- <string>spdisplays_gpu</string>
- <key>sppci_model</key>
- <string>Intel HD Graphics 3000</string>
- </dict>
- </array>
- <key>_parentDataType</key>
- <string>SPHardwareDataType</string>
- <key>_properties</key>
- <dict>
- <key>_name</key>
- <dict>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>0</string>
- </dict>
- <key>spdisplays_coreimage</key>
- <dict>
- <key>_order</key>
- <string>164</string>
- </dict>
- <key>spdisplays_depth</key>
- <dict>
- <key>_order</key>
- <string>150</string>
- </dict>
- <key>spdisplays_device-id</key>
- <dict>
- <key>_order</key>
- <string>165</string>
- </dict>
- <key>spdisplays_display-product-id</key>
- <dict>
- <key>_order</key>
- <string>159</string>
- </dict>
- <key>spdisplays_display-serial-number</key>
- <dict>
- <key>_order</key>
- <string>161</string>
- </dict>
- <key>spdisplays_display-vendor-id</key>
- <dict>
- <key>_order</key>
- <string>160</string>
- </dict>
- <key>spdisplays_display-week</key>
- <dict>
- <key>_order</key>
- <string>162</string>
- </dict>
- <key>spdisplays_display-year</key>
- <dict>
- <key>_order</key>
- <string>163</string>
- </dict>
- <key>spdisplays_display_type</key>
- <dict>
- <key>_order</key>
- <string>130</string>
- </dict>
- <key>spdisplays_displayport_device</key>
- <dict>
- <key>_order</key>
- <string>171</string>
- </dict>
- <key>spdisplays_gmux-version</key>
- <dict>
- <key>_order</key>
- <string>176</string>
- </dict>
- <key>spdisplays_main</key>
- <dict>
- <key>_order</key>
- <string>165</string>
- </dict>
- <key>spdisplays_mirror</key>
- <dict>
- <key>_order</key>
- <string>166</string>
- </dict>
- <key>spdisplays_mirror_status</key>
- <dict>
- <key>_order</key>
- <string>167</string>
- </dict>
- <key>spdisplays_online</key>
- <dict>
- <key>_order</key>
- <string>168</string>
- </dict>
- <key>spdisplays_pcie_width</key>
- <dict>
- <key>_order</key>
- <string>40</string>
- </dict>
- <key>spdisplays_quartzextreme</key>
- <dict>
- <key>_order</key>
- <string>169</string>
- </dict>
- <key>spdisplays_resolution</key>
- <dict>
- <key>_order</key>
- <string>145</string>
- </dict>
- <key>spdisplays_retina</key>
- <dict>
- <key>_order</key>
- <string>146</string>
- </dict>
- <key>spdisplays_revision-id</key>
- <dict>
- <key>_order</key>
- <string>170</string>
- </dict>
- <key>spdisplays_rom-revision</key>
- <dict>
- <key>_order</key>
- <string>175</string>
- </dict>
- <key>spdisplays_rotation</key>
- <dict>
- <key>_order</key>
- <string>170</string>
- </dict>
- <key>spdisplays_vendor</key>
- <dict>
- <key>_order</key>
- <string>155</string>
- </dict>
- <key>spdisplays_vram</key>
- <dict>
- <key>_order</key>
- <string>135</string>
- </dict>
- <key>sppci_bus</key>
- <dict>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>25</string>
- </dict>
- <key>sppci_device-id</key>
- <dict>
- <key>_order</key>
- <string>50</string>
- </dict>
- <key>sppci_device_type</key>
- <dict>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>20</string>
- </dict>
- <key>sppci_indentifer</key>
- <dict>
- <key>_order</key>
- <string>180</string>
- </dict>
- <key>sppci_kextinfo</key>
- <dict>
- <key>_order</key>
- <string>185</string>
- </dict>
- <key>sppci_model</key>
- <dict>
- <key>_order</key>
- <string>1</string>
- </dict>
- <key>sppci_name</key>
- <dict>
- <key>_order</key>
- <string>10</string>
- </dict>
- <key>sppci_revision-id</key>
- <dict>
- <key>_order</key>
- <string>90</string>
- </dict>
- <key>sppci_rom-revision</key>
- <dict>
- <key>_order</key>
- <string>80</string>
- </dict>
- <key>sppci_slot_name</key>
- <dict>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>30</string>
- </dict>
- <key>sppci_subsystem-id</key>
- <dict>
- <key>_order</key>
- <string>70</string>
- </dict>
- <key>sppci_subsystem-vendor-id</key>
- <dict>
- <key>_order</key>
- <string>60</string>
- </dict>
- <key>sppci_vendor-id</key>
- <dict>
- <key>_order</key>
- <string>35</string>
- </dict>
- <key>volumes_anonymous</key>
- <dict>
- <key>_detailLevel</key>
- <string>-1</string>
- <key>_maxDetailLevel</key>
- <string>-1</string>
- </dict>
- </dict>
- <key>_timeStamp</key>
- <date>2012-12-04T21:30:17Z</date>
- <key>_versionInfo</key>
- <dict>
- <key>com.apple.SystemProfiler.SPDisplaysReporter</key>
- <string>266</string>
- </dict>
- </dict>
- <dict>
- <key>_SPCommandLineArguments</key>
- <array>
- <string>/usr/sbin/system_profiler</string>
- <string>-xml</string>
- <string>-detailLevel</string>
- <string>mini</string>
- <string>SPParallelATADataType</string>
- <string>SPApplicationsDataType</string>
- <string>SPAudioDataType</string>
- <string>SPBluetoothDataType</string>
- <string>SPCardReaderDataType</string>
- <string>SPComponentDataType</string>
- <string>SPDeveloperToolsDataType</string>
- <string>SPDiagnosticsDataType</string>
- <string>SPDiscBurningDataType</string>
- <string>SPEthernetDataType</string>
- <string>SPExtensionsDataType</string>
- <string>SPFibreChannelDataType</string>
- <string>SPFireWireDataType</string>
- <string>SPFirewallDataType</string>
- <string>SPFontsDataType</string>
- <string>SPFrameworksDataType</string>
- <string>SPDisplaysDataType</string>
- <string>SPHardwareRAIDDataType</string>
- <string>SPNetworkLocationDataType</string>
- <string>SPLogsDataType</string>
- <string>SPManagedClientDataType</string>
- <string>SPMemoryDataType</string>
- <string>SPModemDataType</string>
- <string>SPNetworkDataType</string>
- <string>SPPCIDataType</string>
- <string>SPParallelSCSIDataType</string>
- <string>SPPowerDataType</string>
- <string>SPPrefPaneDataType</string>
- <string>SPPrintersSoftwareDataType</string>
- <string>SPPrintersDataType</string>
- <string>SPConfigurationProfileDataType</string>
- <string>SPSASDataType</string>
- <string>SPSerialATADataType</string>
- <string>SPSoftwareDataType</string>
- <string>SPStartupItemDataType</string>
- <string>SPSyncServicesDataType</string>
- <string>SPThunderboltDataType</string>
- <string>SPUSBDataType</string>
- <string>SPUniversalAccessDataType</string>
- <string>SPNetworkVolumeDataType</string>
- <string>SPWWANDataType</string>
- <string>SPAirPortDataType</string>
- </array>
- <key>_SPCompletionInterval</key>
- <real>0.073382019996643066</real>
- <key>_dataType</key>
- <string>SPHardwareRAIDDataType</string>
- <key>_detailLevel</key>
- <integer>-1</integer>
- <key>_items</key>
- <array/>
- <key>_parentDataType</key>
- <string>SPHardwareDataType</string>
- <key>_properties</key>
- <dict>
- <key>_name</key>
- <dict>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_isOutlineColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>0</string>
- </dict>
- <key>batteryFault</key>
- <dict>
- <key>_order</key>
- <string>140</string>
- </dict>
- <key>batteryFirmwareRevision</key>
- <dict>
- <key>_order</key>
- <string>110</string>
- </dict>
- <key>batteryFirstInstallDate</key>
- <dict>
- <key>_order</key>
- <string>120</string>
- </dict>
- <key>batteryInfo</key>
- <dict>
- <key>_order</key>
- <string>90</string>
- </dict>
- <key>batteryLastConditionDate</key>
- <dict>
- <key>_order</key>
- <string>125</string>
- </dict>
- <key>batteryState</key>
- <dict>
- <key>_order</key>
- <string>130</string>
- </dict>
- <key>batteryStatus</key>
- <dict>
- <key>_order</key>
- <string>150</string>
- </dict>
- <key>batteryType</key>
- <dict>
- <key>_order</key>
- <string>100</string>
- </dict>
- <key>cardExpansionROMVersion</key>
- <dict>
- <key>_order</key>
- <string>70</string>
- </dict>
- <key>cardPCISlot</key>
- <dict>
- <key>_order</key>
- <string>10</string>
- </dict>
- <key>controllerHWVersion</key>
- <dict>
- <key>_order</key>
- <string>30</string>
- </dict>
- <key>controllerSWVersion</key>
- <dict>
- <key>_order</key>
- <string>40</string>
- </dict>
- <key>controllerSerialNumber</key>
- <dict>
- <key>_order</key>
- <string>20</string>
- </dict>
- <key>controllerShutdownStatus</key>
- <dict>
- <key>_order</key>
- <string>80</string>
- </dict>
- <key>controllerWriteCache</key>
- <dict>
- <key>_order</key>
- <string>85</string>
- </dict>
- <key>driveFirmwareRevision</key>
- <dict>
- <key>_order</key>
- <string>180</string>
- </dict>
- <key>driveGroups</key>
- <dict>
- <key>_order</key>
- <string>220</string>
- </dict>
- <key>driveInterface</key>
- <dict>
- <key>_order</key>
- <string>190</string>
- </dict>
- <key>driveIsJBOD</key>
- <dict>
- <key>_order</key>
- <string>215</string>
- </dict>
- <key>driveProductID</key>
- <dict>
- <key>_order</key>
- <string>160</string>
- </dict>
- <key>driveSMARTStatus</key>
- <dict>
- <key>_order</key>
- <string>200</string>
- </dict>
- <key>driveSerialNumber</key>
- <dict>
- <key>_order</key>
- <string>170</string>
- </dict>
- <key>driveStatus</key>
- <dict>
- <key>_order</key>
- <string>230</string>
- </dict>
- <key>driveTotalCapacity</key>
- <dict>
- <key>_deprecated</key>
- <true/>
- <key>_order</key>
- <string>210</string>
- </dict>
- <key>driveTotalCapacityInBytes</key>
- <dict>
- <key>_isByteSize</key>
- <true/>
- <key>_order</key>
- <string>211</string>
- </dict>
- <key>driveVendorID</key>
- <dict>
- <key>_order</key>
- <string>160</string>
- </dict>
- <key>groupAvailableCapacity</key>
- <dict>
- <key>_deprecated</key>
- <true/>
- <key>_order</key>
- <string>270</string>
- </dict>
- <key>groupAvailableCapacityInBytes</key>
- <dict>
- <key>_isByteSize</key>
- <true/>
- <key>_order</key>
- <string>271</string>
- </dict>
- <key>groupDrives</key>
- <dict>
- <key>_order</key>
- <string>280</string>
- </dict>
- <key>groupMirrorCount</key>
- <dict>
- <key>_order</key>
- <string>250</string>
- </dict>
- <key>groupRAIDLevel</key>
- <dict>
- <key>_order</key>
- <string>240</string>
- </dict>
- <key>groupSpares</key>
- <dict>
- <key>_order</key>
- <string>285</string>
- </dict>
- <key>groupStatus</key>
- <dict>
- <key>_order</key>
- <string>300</string>
- </dict>
- <key>groupTotalCapacity</key>
- <dict>
- <key>_deprecated</key>
- <true/>
- <key>_order</key>
- <string>260</string>
- </dict>
- <key>groupTotalCapacityInBytes</key>
- <dict>
- <key>_isByteSize</key>
- <true/>
- <key>_order</key>
- <string>261</string>
- </dict>
- <key>groupVolumes</key>
- <dict>
- <key>_order</key>
- <string>290</string>
- </dict>
- <key>taskPercentComplete</key>
- <dict>
- <key>_order</key>
- <string>410</string>
- </dict>
- <key>taskScope</key>
- <dict>
- <key>_order</key>
- <string>390</string>
- </dict>
- <key>taskStatus</key>
- <dict>
- <key>_order</key>
- <string>400</string>
- </dict>
- <key>volumeBSDName</key>
- <dict>
- <key>_order</key>
- <string>310</string>
- </dict>
- <key>volumeCreateTime</key>
- <dict>
- <key>_order</key>
- <string>320</string>
- </dict>
- <key>volumeErrorCode</key>
- <dict>
- <key>_order</key>
- <string>370</string>
- </dict>
- <key>volumeGroup</key>
- <dict>
- <key>_order</key>
- <string>360</string>
- </dict>
- <key>volumeSeqPostReadCmdSize</key>
- <dict>
- <key>_order</key>
- <string>340</string>
- </dict>
- <key>volumeSeqReadAheadMargin</key>
- <dict>
- <key>_order</key>
- <string>350</string>
- </dict>
- <key>volumeStatus</key>
- <dict>
- <key>_order</key>
- <string>380</string>
- </dict>
- <key>volumeTotalCapacity</key>
- <dict>
- <key>_deprecated</key>
- <true/>
- <key>_order</key>
- <string>330</string>
- </dict>
- <key>volumeTotalCapacityInBytes</key>
- <dict>
- <key>_isByteSize</key>
- <true/>
- <key>_order</key>
- <string>331</string>
- </dict>
- <key>volumes_anonymous</key>
- <dict>
- <key>_detailLevel</key>
- <string>-1</string>
- <key>_maxDetailLevel</key>
- <string>-1</string>
- </dict>
- </dict>
- <key>_timeStamp</key>
- <date>2012-12-04T21:30:17Z</date>
- <key>_versionInfo</key>
- <dict>
- <key>com.apple.SystemProfiler.SPHardwareRAIDReporter</key>
- <string>200</string>
- </dict>
- </dict>
- <dict>
- <key>_SPCommandLineArguments</key>
- <array>
- <string>/usr/sbin/system_profiler</string>
- <string>-xml</string>
- <string>-detailLevel</string>
- <string>mini</string>
- <string>SPParallelATADataType</string>
- <string>SPApplicationsDataType</string>
- <string>SPAudioDataType</string>
- <string>SPBluetoothDataType</string>
- <string>SPCardReaderDataType</string>
- <string>SPComponentDataType</string>
- <string>SPDeveloperToolsDataType</string>
- <string>SPDiagnosticsDataType</string>
- <string>SPDiscBurningDataType</string>
- <string>SPEthernetDataType</string>
- <string>SPExtensionsDataType</string>
- <string>SPFibreChannelDataType</string>
- <string>SPFireWireDataType</string>
- <string>SPFirewallDataType</string>
- <string>SPFontsDataType</string>
- <string>SPFrameworksDataType</string>
- <string>SPDisplaysDataType</string>
- <string>SPHardwareRAIDDataType</string>
- <string>SPNetworkLocationDataType</string>
- <string>SPLogsDataType</string>
- <string>SPManagedClientDataType</string>
- <string>SPMemoryDataType</string>
- <string>SPModemDataType</string>
- <string>SPNetworkDataType</string>
- <string>SPPCIDataType</string>
- <string>SPParallelSCSIDataType</string>
- <string>SPPowerDataType</string>
- <string>SPPrefPaneDataType</string>
- <string>SPPrintersSoftwareDataType</string>
- <string>SPPrintersDataType</string>
- <string>SPConfigurationProfileDataType</string>
- <string>SPSASDataType</string>
- <string>SPSerialATADataType</string>
- <string>SPSoftwareDataType</string>
- <string>SPStartupItemDataType</string>
- <string>SPSyncServicesDataType</string>
- <string>SPThunderboltDataType</string>
- <string>SPUSBDataType</string>
- <string>SPUniversalAccessDataType</string>
- <string>SPNetworkVolumeDataType</string>
- <string>SPWWANDataType</string>
- <string>SPAirPortDataType</string>
- </array>
- <key>_SPCompletionInterval</key>
- <real>0.017340958118438721</real>
- <key>_dataType</key>
- <string>SPNetworkLocationDataType</string>
- <key>_detailLevel</key>
- <integer>0</integer>
- <key>_items</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Automatic</string>
- <key>spnetworklocation_isActive</key>
- <string>yes</string>
- <key>spnetworklocation_services</key>
- <array>
- <dict>
- <key>IPv4</key>
- <dict>
- <key>ConfigMethod</key>
- <string>PPP</string>
- </dict>
- <key>IPv6</key>
- <dict>
- <key>ConfigMethod</key>
- <string>Automatic</string>
- </dict>
- <key>PPP</key>
- <dict>
- <key>ACSPEnabled</key>
- <string>no</string>
- <key>CommDisplayTerminalWindow</key>
- <string>no</string>
- <key>CommRedialCount</key>
- <integer>1</integer>
- <key>CommRedialEnabled</key>
- <string>yes</string>
- <key>CommRedialInterval</key>
- <integer>5</integer>
- <key>CommUseTerminalScript</key>
- <string>no</string>
- <key>DialOnDemand</key>
- <string>no</string>
- <key>DisconnectOnFastUserSwitch</key>
- <string>yes</string>
- <key>DisconnectOnIdle</key>
- <string>yes</string>
- <key>DisconnectOnIdleTimer</key>
- <integer>600</integer>
- <key>DisconnectOnLogout</key>
- <string>yes</string>
- <key>DisconnectOnSleep</key>
- <string>yes</string>
- <key>IPCPCompressionVJ</key>
- <string>yes</string>
- <key>IdleReminder</key>
- <string>no</string>
- <key>IdleReminderTimer</key>
- <integer>1800</integer>
- <key>LCPEchoEnabled</key>
- <string>no</string>
- <key>LCPEchoFailure</key>
- <integer>4</integer>
- <key>LCPEchoInterval</key>
- <integer>10</integer>
- <key>Logfile</key>
- <string>/var/log/ppp.log</string>
- <key>VerboseLogging</key>
- <string>no</string>
- </dict>
- <key>Proxies</key>
- <dict>
- <key>FTPPassive</key>
- <string>yes</string>
- </dict>
- <key>_name</key>
- <string>Bluetooth DUN</string>
- <key>type</key>
- <string>PPP</string>
- </dict>
- <dict>
- <key>IPv4</key>
- <dict>
- <key>ConfigMethod</key>
- <string>DHCP</string>
- </dict>
- <key>IPv6</key>
- <dict>
- <key>ConfigMethod</key>
- <string>Automatic</string>
- </dict>
- <key>Proxies</key>
- <dict>
- <key>ExceptionsList</key>
- <array>
- <string>*.local</string>
- <string>169.254/16</string>
- </array>
- <key>FTPPassive</key>
- <string>yes</string>
- </dict>
- <key>_name</key>
- <string>Ethernet</string>
- <key>bsd_device_name</key>
- <string>en0</string>
- <key>hardware_address</key>
- <string>3c:07:54:74:1e:2b</string>
- <key>type</key>
- <string>Ethernet</string>
- </dict>
- <dict>
- <key>IPv4</key>
- <dict>
- <key>ConfigMethod</key>
- <string>DHCP</string>
- </dict>
- <key>IPv6</key>
- <dict>
- <key>ConfigMethod</key>
- <string>Automatic</string>
- </dict>
- <key>Proxies</key>
- <dict>
- <key>ExceptionsList</key>
- <array>
- <string>*.local</string>
- <string>169.254/16</string>
- </array>
- <key>FTPPassive</key>
- <string>yes</string>
- </dict>
- <key>_name</key>
- <string>FireWire</string>
- <key>bsd_device_name</key>
- <string>fw0</string>
- <key>hardware_address</key>
- <string>3c:07:54:ff:fe:b1:43:4c</string>
- <key>type</key>
- <string>FireWire</string>
- </dict>
- <dict>
- <key>IEEE80211</key>
- <dict>
- <key>JoinMode</key>
- <string>Automatic</string>
- <key>PowerEnabled</key>
- <true/>
- <key>RememberJoinedNetworks</key>
- <true/>
- <key>RequireAdminIBSS</key>
- <false/>
- <key>RequireAdminNetworkChange</key>
- <false/>
- <key>RequireAdminPowerToggle</key>
- <false/>
- </dict>
- <key>IPv4</key>
- <dict>
- <key>ConfigMethod</key>
- <string>DHCP</string>
- </dict>
- <key>IPv6</key>
- <dict>
- <key>ConfigMethod</key>
- <string>Automatic</string>
- </dict>
- <key>Proxies</key>
- <dict>
- <key>ExceptionsList</key>
- <array>
- <string>*.local</string>
- <string>169.254/16</string>
- </array>
- <key>FTPPassive</key>
- <string>yes</string>
- </dict>
- <key>_name</key>
- <string>Wi-Fi</string>
- <key>bsd_device_name</key>
- <string>en1</string>
- <key>hardware_address</key>
- <string>68:a8:6d:50:89:64</string>
- <key>type</key>
- <string>IEEE80211</string>
- </dict>
- <dict>
- <key>IPv4</key>
- <dict>
- <key>ConfigMethod</key>
- <string>DHCP</string>
- </dict>
- <key>IPv6</key>
- <dict>
- <key>ConfigMethod</key>
- <string>Automatic</string>
- </dict>
- <key>Proxies</key>
- <dict>
- <key>ExceptionsList</key>
- <array>
- <string>*.local</string>
- <string>169.254/16</string>
- </array>
- <key>FTPPassive</key>
- <string>yes</string>
- </dict>
- <key>_name</key>
- <string>Bluetooth PAN</string>
- <key>bsd_device_name</key>
- <string>en2</string>
- <key>type</key>
- <string>Ethernet</string>
- </dict>
- </array>
- </dict>
- </array>
- <key>_parentDataType</key>
- <string>SPNetworkDataType</string>
- <key>_properties</key>
- <dict>
- <key>AppleTalk</key>
- <dict>
- <key>_order</key>
- <string>300</string>
- </dict>
- <key>DNS</key>
- <dict>
- <key>_order</key>
- <string>400</string>
- </dict>
- <key>Ethernet</key>
- <dict>
- <key>_order</key>
- <string>700</string>
- </dict>
- <key>IPv4</key>
- <dict>
- <key>_order</key>
- <string>100</string>
- </dict>
- <key>IPv6</key>
- <dict>
- <key>_order</key>
- <string>200</string>
- </dict>
- <key>Proxies</key>
- <dict>
- <key>_order</key>
- <string>600</string>
- </dict>
- <key>_name</key>
- <dict>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>0</string>
- </dict>
- <key>bsd_device_name</key>
- <dict>
- <key>_order</key>
- <string>20</string>
- </dict>
- <key>dhcp</key>
- <dict>
- <key>_order</key>
- <string>500</string>
- </dict>
- <key>hardware_address</key>
- <dict>
- <key>_order</key>
- <string>25</string>
- </dict>
- <key>spnetworklocation_isActive</key>
- <dict>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>1</string>
- </dict>
- <key>type</key>
- <dict>
- <key>_order</key>
- <string>10</string>
- </dict>
- <key>volumes_anonymous</key>
- <dict>
- <key>_detailLevel</key>
- <string>-1</string>
- <key>_maxDetailLevel</key>
- <string>-1</string>
- </dict>
- </dict>
- <key>_timeStamp</key>
- <date>2012-12-04T21:30:17Z</date>
- <key>_versionInfo</key>
- <dict>
- <key>com.apple.SystemProfiler.SPNetworkLocationReporter</key>
- <string>733</string>
- </dict>
- </dict>
- <dict>
- <key>_SPCommandLineArguments</key>
- <array>
- <string>/usr/sbin/system_profiler</string>
- <string>-xml</string>
- <string>-detailLevel</string>
- <string>mini</string>
- <string>SPParallelATADataType</string>
- <string>SPApplicationsDataType</string>
- <string>SPAudioDataType</string>
- <string>SPBluetoothDataType</string>
- <string>SPCardReaderDataType</string>
- <string>SPComponentDataType</string>
- <string>SPDeveloperToolsDataType</string>
- <string>SPDiagnosticsDataType</string>
- <string>SPDiscBurningDataType</string>
- <string>SPEthernetDataType</string>
- <string>SPExtensionsDataType</string>
- <string>SPFibreChannelDataType</string>
- <string>SPFireWireDataType</string>
- <string>SPFirewallDataType</string>
- <string>SPFontsDataType</string>
- <string>SPFrameworksDataType</string>
- <string>SPDisplaysDataType</string>
- <string>SPHardwareRAIDDataType</string>
- <string>SPNetworkLocationDataType</string>
- <string>SPLogsDataType</string>
- <string>SPManagedClientDataType</string>
- <string>SPMemoryDataType</string>
- <string>SPModemDataType</string>
- <string>SPNetworkDataType</string>
- <string>SPPCIDataType</string>
- <string>SPParallelSCSIDataType</string>
- <string>SPPowerDataType</string>
- <string>SPPrefPaneDataType</string>
- <string>SPPrintersSoftwareDataType</string>
- <string>SPPrintersDataType</string>
- <string>SPConfigurationProfileDataType</string>
- <string>SPSASDataType</string>
- <string>SPSerialATADataType</string>
- <string>SPSoftwareDataType</string>
- <string>SPStartupItemDataType</string>
- <string>SPSyncServicesDataType</string>
- <string>SPThunderboltDataType</string>
- <string>SPUSBDataType</string>
- <string>SPUniversalAccessDataType</string>
- <string>SPNetworkVolumeDataType</string>
- <string>SPWWANDataType</string>
- <string>SPAirPortDataType</string>
- </array>
- <key>_SPCompletionInterval</key>
- <real>1.603987991809845</real>
- <key>_dataType</key>
- <string>SPLogsDataType</string>
- <key>_detailLevel</key>
- <integer>1</integer>
- <key>_items</key>
- <array>
- <dict>
- <key>_name</key>
- <string>asl_messages_description</string>
- <key>byteSize</key>
- <integer>128020</integer>
- <key>contents</key>
- <string>2012-12-03 09:35:00 -0700 iTerm[297]: Restore app &lt;NSRunningApplication: 0x101673fa0 (com.sublimetext.2 - 2489)&gt;
-2012-12-03 09:42:31 -0700 iTerm[297]: Restore app &lt;NSRunningApplication: 0x10851be20 (com.google.Chrome - 11423)&gt;
-2012-12-03 09:42:31 -0700 iTerm[297]: Restore app &lt;NSRunningApplication: 0x100583c70 (com.google.Chrome - 11423)&gt;
-2012-12-03 09:42:33 -0700 iTerm[297]: Restore app &lt;NSRunningApplication: 0x1012cbe90 (com.google.Chrome - 11423)&gt;
-2012-12-03 09:42:33 -0700 iTerm[297]: Restore app &lt;NSRunningApplication: 0x106d132f0 (com.google.Chrome - 11423)&gt;
-2012-12-03 09:43:04 -0700 iTerm[297]: Restore app &lt;NSRunningApplication: 0x1012ccbb0 (com.google.Chrome - 11423)&gt;
-2012-12-03 09:50:16 -0700 iTerm[297]: Restore app &lt;NSRunningApplication: 0x1012a0b70 (com.google.Chrome - 11423)&gt;
-2012-12-03 09:50:16 -0700 iTerm[297]: Restore app &lt;NSRunningApplication: 0x1016a0f20 (com.google.Chrome - 11423)&gt;
-2012-12-03 09:53:38 -0700 sudo[15230]: paul : TTY=ttys002 ; PWD=/Users/paul/Github/paulmooring/SublimeREPL ; USER=root ; COMMAND=/usr/libexec/locate.updatedb
-2012-12-03 09:53:43 -0700 iTerm[297]: Restore app &lt;NSRunningApplication: 0x100584700 (com.adiumX.adiumX - 280)&gt;
-2012-12-03 09:54:15 -0700 iTerm[297]: Restore app &lt;NSRunningApplication: 0x1016598a0 (com.hipchat.87969878BBF1203EC547B61E69990E8273C4626D.1 - 258)&gt;
-2012-12-03 09:54:15 -0700 iTerm[297]: Restore app &lt;NSRunningApplication: 0x106d0ef10 (com.hipchat.87969878BBF1203EC547B61E69990E8273C4626D.1 - 258)&gt;
-2012-12-03 09:56:00 -0700 iTerm[297]: Restore app &lt;NSRunningApplication: 0x1014a8960 (com.sublimetext.2 - 14370)&gt;
-2012-12-03 09:59:16 -0700 iTerm[297]: Restore app &lt;NSRunningApplication: 0x1014b8fd0 (com.google.Chrome - 11423)&gt;
-2012-12-03 09:59:34 -0700 iTerm[297]: Restore app &lt;NSRunningApplication: 0x1085138c0 (com.google.Chrome - 11423)&gt;
-2012-12-03 09:59:34 -0700 iTerm[297]: Restore app &lt;NSRunningApplication: 0x101478590 (com.google.Chrome - 11423)&gt;
-2012-12-03 10:00:25 -0700 iTerm[297]: Restore app &lt;NSRunningApplication: 0x10146e0c0 (com.google.Chrome - 11423)&gt;
-2012-12-03 10:04:38 -0700 iTerm[297]: Restore app &lt;NSRunningApplication: 0x1014bd110 (com.apple.finder - 237)&gt;
-2012-12-03 10:06:23 -0700 iTerm[297]: Restore app &lt;NSRunningApplication: 0x108511480 (com.sublimetext.2 - 17389)&gt;
-2012-12-03 10:07:24 -0700 iTerm[297]: Restore app &lt;NSRunningApplication: 0x10146e0c0 (com.google.Chrome - 11423)&gt;
-2012-12-03 10:08:56 -0700 sudo[18533]: paul : TTY=ttys002 ; PWD=/Users/paul/Library/Application Support/Sublime Text 2/Packages/SublimeREPL/config/Ruby ; USER=root ; COMMAND=/bin/bash
-2012-12-03 10:09:10 -0700 defaults[18569]:
-The domain/default pair of (org.x.X11, cache_fonts) does not exist
-2012-12-03 10:09:10 -0700 defaults[18571]:
-The domain/default pair of (/Users/paul/Library/Preferences/org.x.X11.plist, no_auth) does not exist
-2012-12-03 10:09:10 -0700 defaults[18573]:
-The domain/default pair of (/Users/paul/Library/Preferences/org.x.X11.plist, nolisten_tcp) does not exist
-2012-12-03 10:09:10 -0700 org.x.startx[18568]: font_cache: Scanning user font directories to generate X11 font caches
-2012-12-03 10:09:10 -0700 org.x.privileged_startx[18579]: stat: /tmp/.ICE-unix: stat: No such file or directory
-2012-12-03 10:09:10 -0700 org.x.privileged_startx[18579]: mktemp: mkdtemp failed on /tmp//tmp/.ICE-unix-3YhHA6Dh: No such file or directory
-2012-12-03 10:09:10 -0700 org.x.startx[18568]: font_cache: Updating FC cache
-2012-12-03 10:09:10 -0700 org.x.privileged_startx[18579]: usage: mv [-f | -i | -n] [-v] source target
-2012-12-03 10:09:10 -0700 org.x.privileged_startx[18579]: mv [-f | -i | -n] [-v] source ... directory
-2012-12-03 10:09:10 -0700 org.x.privileged_startx[18579]: /tmp/.ICE-unix exists but is insecure. It has been moved into
-2012-12-03 10:09:10 -0700 org.x.privileged_startx[18579]: stat: /tmp/.X11-unix: stat: No such file or directory
-2012-12-03 10:09:10 -0700 org.x.privileged_startx[18579]: mktemp: mkdtemp failed on /tmp//tmp/.X11-unix-6a7eEX9f: No such file or directory
-2012-12-03 10:09:10 -0700 org.x.privileged_startx[18579]: usage: mv [-f | -i | -n] [-v] source target
-2012-12-03 10:09:10 -0700 org.x.privileged_startx[18579]: mv [-f | -i | -n] [-v] source ... directory
-2012-12-03 10:09:10 -0700 org.x.privileged_startx[18579]: /tmp/.X11-unix exists but is insecure. It has been moved into
-2012-12-03 10:09:10 -0700 org.x.privileged_startx[18579]: stat: /tmp/.font-unix: stat: No such file or directory
-2012-12-03 10:09:10 -0700 org.x.privileged_startx[18579]: mktemp: mkdtemp failed on /tmp//tmp/.font-unix-3QzBFsgB: No such file or directory
-2012-12-03 10:09:10 -0700 org.x.privileged_startx[18579]: usage: mv [-f | -i | -n] [-v] source target
-2012-12-03 10:09:10 -0700 org.x.privileged_startx[18579]: mv [-f | -i | -n] [-v] source ... directory
-2012-12-03 10:09:10 -0700 org.x.privileged_startx[18579]: /tmp/.font-unix exists but is insecure. It has been moved into
-2012-12-03 10:09:10 -0700 org.x.privileged_startx[18579]: font_cache: Scanning system font directories to generate X11 font caches
-2012-12-03 10:09:11 -0700 defaults[18613]:
-The domain/default pair of (/Users/paul/Library/Preferences/org.x.X11.plist, dpi) does not exist
-2012-12-03 10:09:11 -0700 org.x.startx[18568]: xauth: file /Users/paul/.serverauth.18568 does not exist
-2012-12-03 10:09:11 -0700 org.x.startx[18568]: xauth: file /Users/paul/.Xauthority does not exist
-2012-12-03 10:09:11 -0700 org.x.startx[18568]: xauth: file /Users/paul/.Xauthority does not exist
-2012-12-03 10:09:11 -0700 org.x.startx[18568]: Xquartz: Unable to locate waiting server: org.x.X11
-2012-12-03 10:09:11 -0700 org.x.startx[18568]: Xquartz: X11.app = /Applications/Utilities/X11.app/Contents/MacOS/X11
-2012-12-03 10:09:11 -0700 org.x.startx[18568]: Xquartz: Starting X server: /Applications/Utilities/X11.app/Contents/MacOS/X11 --listenonly
-2012-12-03 10:09:11 -0700 org.x.privileged_startx[18579]: font_cache: Making fonts.dir for updated directories.
-2012-12-03 10:09:13 -0700 org.x.privileged_startx[18579]: Unknown Type 1 weight "All"
-2012-12-03 10:09:13 -0700 org.x.privileged_startx[18579]: Couldn't determine weight for HelveLTMM
-2012-12-03 10:09:13 -0700 org.x.startx[18568]: waiting for X server to begin accepting connections
-2012-12-03 10:09:14 -0700 org.x.privileged_startx[18579]: Unknown Type 1 weight "All"
-2012-12-03 10:09:14 -0700 org.x.privileged_startx[18579]: Couldn't determine weight for TimesLTMM
-2012-12-03 10:09:14 -0700 org.x.startx[18568]: .
-2012-12-03 10:09:15 -0700 org.x.startx[18568]: .
-2012-12-03 10:09:16 -0700 org.x.startx[18568]: X11.app: main(): argc=2
-2012-12-03 10:09:16 -0700 org.x.startx[18568]: argv[0] = /Applications/Utilities/X11.app/Contents/MacOS/X11.bin
-2012-12-03 10:09:16 -0700 org.x.startx[18568]: argv[1] = --listenonly
-2012-12-03 10:09:16 -0700 org.x.startx[18568]: Waiting for startup parameters via Mach IPC.
-2012-12-03 10:09:16 -0700 org.x.startx[18568]: X11.app: Listening on socket for fd handoff: (3) /var/tmp/tmp.0.eLVAKo
-2012-12-03 10:09:16 -0700 org.x.startx[18568]: X11.app: Thread created for handoff. Returning success to tell caller to connect and push the fd.
-2012-12-03 10:09:16 -0700 org.x.startx[18568]: Xquartz: Handoff connection established (try 1 of 5) on fd 6, "/var/tmp/tmp.0.eLVAKo". Sending message.
-2012-12-03 10:09:16 -0700 org.x.startx[18568]: Xquartz: Message sent. Closing handoff fd.
-2012-12-03 10:09:16 -0700 org.x.startx[18568]: X11.app: do_start_x11_server(): argc=6
-2012-12-03 10:09:16 -0700 org.x.startx[18568]: argv[0] = /usr/X11/bin/X
-2012-12-03 10:09:16 -0700 org.x.startx[18568]: argv[1] = :0
-2012-12-03 10:09:16 -0700 org.x.startx[18568]: argv[2] = -nolisten
-2012-12-03 10:09:16 -0700 org.x.startx[18568]: argv[3] = tcp
-2012-12-03 10:09:16 -0700 org.x.startx[18568]: argv[4] = -auth
-2012-12-03 10:09:16 -0700 org.x.startx[18568]: argv[5] = /Users/paul/.serverauth.18568
-2012-12-03 10:09:16 -0700 org.x.startx[18568]: X11.app Handing off fd to server thread via DarwinListenOnOpenFD(5)
-2012-12-03 10:09:16 -0700 org.x.startx[18568]: DarwinListenOnOpenFD: 5
-2012-12-03 10:09:16 -0700 org.x.startx[18568]: Xquartz starting:
-2012-12-03 10:09:16 -0700 org.x.startx[18568]: X.Org X Server 1.10.6
-2012-12-03 10:09:16 -0700 org.x.startx[18568]: Build Date: 20120823
-2012-12-03 10:09:16 -0700 org.x.startx[18568]: .
-2012-12-03 10:09:16 -0700 org.x.startx[18568]: [dix] Could not init font path element /Library/Fonts, removing from list!
-2012-12-03 10:09:17 -0700 org.x.startx[18568]: X11.app: DarwinProcessFDAdditionQueue_thread: Sleeping to allow xinitrc to catchup.
-2012-12-03 10:09:17 -0700 org.x.startx[18568]: (EE) Error loading keymap /tmp/server-0.xkm
-2012-12-03 10:09:17 -0700 org.x.startx[18568]: (EE) XKB: Failed to load keymap. Loading default keymap instead.
-2012-12-03 10:09:17 -0700 org.x.startx[18568]: /usr/X11/bin/xinit: XFree86_VT property unexpectedly has 0 items instead of 1
-2012-12-03 10:09:18 -0700 iTerm[297]: Restore app &lt;NSRunningApplication: 0x1014b5270 (com.hipchat.87969878BBF1203EC547B61E69990E8273C4626D.1 - 258)&gt;
-2012-12-03 10:09:20 -0700 org.x.startx[18568]: Calling ListenOnOpenFD() for new fd: 5
-2012-12-03 10:09:21 -0700 xterm[18892]: USER_PROCESS: 18892 ttys003
-2012-12-03 10:09:31 -0700 mds[44]: (Warning) DiskStore: Ignored bogus fetch for &lt;MDSQueryWithBlockTask: 0x7fa1ad404c80&gt;{taskID:0x00001048 age:2ms} (not live not complete) _kMDItemQueryPath=1542780
-2012-12-03 10:09:32 -0700 mds[44]: (Error) DiskStore: No block in wakeup
-2012-12-03 10:09:46 -0700 org.x.startx[18568]: /System/Library/Fonts: failed to write cache
-2012-12-03 10:09:48 -0700 org.x.privileged_startx[18579]: font_cache: Updating FC cache
-2012-12-03 10:09:52 -0700 xterm[18565]: DEAD_PROCESS: 18892 ttys003
-2012-12-03 10:09:57 -0700 mdworker[18540]: Unable to talk to lsboxd
-2012-12-03 10:09:59 -0700 org.x.startx[18568]: font_cache: Done
-2012-12-03 10:10:02 -0700 org.x.privileged_startx[18579]: font_cache: Done
-2012-12-03 10:10:11 -0700 iTerm[297]: Restore app &lt;NSRunningApplication: 0x108515fc0 (com.google.Chrome - 11423)&gt;
-2012-12-03 10:13:11 -0700 sudo[19444]: paul : TTY=ttys002 ; PWD=/Users/paul/Library/Application Support/Sublime Text 2/Packages/SublimeREPL/config/Ruby ; USER=root ; COMMAND=/Users/paul/.rbenv/shims/gem install pry
-2012-12-03 10:13:32 -0700 iTerm[297]: Restore app &lt;NSRunningApplication: 0x101452100 (com.adiumX.adiumX - 280)&gt;
-2012-12-03 10:13:40 -0700 login[11574]: DEAD_PROCESS: 11574 ttys002
-2012-12-03 10:17:53 -0700 org.x.startx[18568]: /usr/X11/bin/xinit: connection to X server lost
-2012-12-03 10:17:53 -0700 org.x.startx[18568]: waiting for X server to shut down
-2012-12-03 10:17:53 -0700 org.x.startx[18568]: Quitting Xquartz
-2012-12-03 10:17:56 -0700 iTerm[297]: Restore app &lt;NSRunningApplication: 0x10146de00 (com.adiumX.adiumX - 280)&gt;
-2012-12-03 10:17:56 -0700 iTerm[297]: Restore app &lt;NSRunningApplication: 0x106d18b90 (com.adiumX.adiumX - 280)&gt;
-2012-12-03 10:18:02 -0700 iTerm[297]: Restore app &lt;NSRunningApplication: 0x10146d730 (com.adiumX.adiumX - 280)&gt;
-2012-12-03 10:18:02 -0700 iTerm[297]: Restore app &lt;NSRunningApplication: 0x10850ee00 (com.adiumX.adiumX - 280)&gt;
-2012-12-03 10:22:32 -0700 kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=19965[GoogleSoftwareUp] clearing CS_VALID
-2012-12-03 10:25:54 -0700 iTerm[297]: Restore app &lt;NSRunningApplication: 0x1014468f0 (com.rdio.desktop - 587)&gt;
-2012-12-03 10:27:29 -0700 iTerm[297]: Restore app &lt;NSRunningApplication: 0x10147c030 (com.adiumX.adiumX - 280)&gt;
-2012-12-03 10:36:24 -0700 sudo[22044]: paul : TTY=ttys003 ; PWD=/Users/paul/Library/Application Support/Sublime Text 2/Packages/SublimeREPL/config/Ruby ; USER=root ; COMMAND=/Users/paul/.rbenv/shims/gem install chef
-2012-12-03 10:36:37 -0700 iTerm[297]: Restore app &lt;NSRunningApplication: 0x101452e50 (com.adiumX.adiumX - 280)&gt;
-2012-12-03 10:36:37 -0700 iTerm[297]: Restore app &lt;NSRunningApplication: 0x101290090 (com.adiumX.adiumX - 280)&gt;
-2012-12-03 10:36:41 -0700 iTerm[297]: Restore app &lt;NSRunningApplication: 0x101465fe0 (com.adiumX.adiumX - 280)&gt;
-2012-12-03 10:36:41 -0700 iTerm[297]: Restore app &lt;NSRunningApplication: 0x101452100 (com.adiumX.adiumX - 280)&gt;
-2012-12-03 10:36:57 -0700 iTerm[297]: Restore app &lt;NSRunningApplication: 0x106b10d40 (com.google.Chrome - 11423)&gt;
-2012-12-03 10:37:06 -0700 iTerm[297]: Restore app &lt;NSRunningApplication: 0x1014471e0 (com.adiumX.adiumX - 280)&gt;
-2012-12-03 10:37:06 -0700 iTerm[297]: Restore app &lt;NSRunningApplication: 0x1016c1f70 (com.adiumX.adiumX - 280)&gt;
-2012-12-03 10:37:24 -0700 iTerm[297]: Restore app &lt;NSRunningApplication: 0x101452e50 (com.adiumX.adiumX - 280)&gt;
-2012-12-03 10:37:24 -0700 iTerm[297]: Restore app &lt;NSRunningApplication: 0x10149e1a0 (com.adiumX.adiumX - 280)&gt;
-2012-12-03 10:38:10 -0700 login[22198]: USER_PROCESS: 22198 ttys004
-2012-12-03 10:38:41 -0700 iTerm[297]: Components for \S+ are (
- begin
-)
-2012-12-03 10:38:41 -0700 iTerm[297]: Components for ([a-zA-Z0-9_]+::)+[a-zA-Z0-9_]+ are (
- "Chef::Config",
- "Chef::"
-)
-2012-12-03 10:38:41 -0700 iTerm[297]: Components for \~?/?([[:letter:][:number:]._-]+/+)+[[:letter:][:number:]._-]+/? are (
- "irb/completion",
- "irb/"
-)
-2012-12-03 10:38:41 -0700 iTerm[297]: Components for @?"(?:[^"\\]|\\.)*" are (
- "\"rubygems\""
-)
-2012-12-03 10:38:41 -0700 iTerm[297]: Components for ([[:letter:][:number:]._]+\.)+[[:letter:][:number:]._]+ are (
- "File.expand_path",
- "File."
-)
-2012-12-03 10:38:44 -0700 iTerm[297]: Components for \S+ are (
- irb
-)
-2012-12-03 10:42:02 -0700 sudo[23261]: paul : TTY=ttys004 ; PWD=/Users/paul ; USER=root ; COMMAND=/usr/bin/su -
-2012-12-03 10:46:04 -0700 iTerm[297]: Components for \S+ are (
- "Error:"
-)
-2012-12-03 10:46:04 -0700 iTerm[297]: Components for \~?/?([[:letter:][:number:]._-]+/+)+[[:letter:][:number:]._-]+/? are (
- "/usr/bin/xcode-select",
- "bin/"
-)
-2012-12-03 10:48:15 -0700 mdworker[21317]: Unable to talk to lsboxd
-2012-12-03 10:57:22 -0700 sudo[23554]: paul : TTY=ttys004 ; PWD=/Users/paul ; USER=root ; COMMAND=/usr/bin/su -
-2012-12-03 10:58:35 -0700 iTerm[297]: Restore app &lt;NSRunningApplication: 0x10164c230 (com.citrixonline.GoToMeeting - 23550)&gt;
-2012-12-03 10:59:58 -0700 iTerm[297]: Restore app &lt;NSRunningApplication: 0x1005cec80 (com.sublimetext.2 - 23512)&gt;
-2012-12-03 11:00:50 -0700 iTerm[297]: Restore app &lt;NSRunningApplication: 0x10145aa60 (org.vim.MacVim - 24587)&gt;
-2012-12-03 11:00:50 -0700 iTerm[297]: Restore app &lt;NSRunningApplication: 0x10052c500 (org.vim.MacVim - 24587)&gt;
-2012-12-03 11:02:23 -0700 iTerm[297]: Restore app &lt;NSRunningApplication: 0x109300b10 (org.vim.MacVim - 24587)&gt;
-2012-12-03 11:03:17 -0700 iTerm[297]: Restore app &lt;NSRunningApplication: 0x10147c030 (org.vim.MacVim - 24587)&gt;
-2012-12-03 11:03:49 -0700 iTerm[297]: Restore app &lt;NSRunningApplication: 0x10147c930 (com.citrixonline.GoToMeeting - 23550)&gt;
-2012-12-03 11:15:30 -0700 [0x0-0x7b07b].com.citrixonline.GoToMeeting[23550]: DVFreeThread - CFMachPortCreateWithPort hack = 0x102aa90, fPowerNotifyPort= 0x1039400
-2012-12-03 11:15:30 -0700 [0x0-0x7b07b].com.citrixonline.GoToMeeting[23550]: DVFreeThread - CFMachPortCreateWithPort hack = 0x101faf0, fPowerNotifyPort= 0x101b590
-2012-12-03 11:15:30 -0700 [0x0-0x7b07b].com.citrixonline.GoToMeeting[23550]: DVFreeThread - CFMachPortCreateWithPort hack = 0x15535c0, fPowerNotifyPort= 0x153e3f0
-2012-12-03 11:15:30 -0700 [0x0-0x7b07b].com.citrixonline.GoToMeeting[23550]: DVFreeThread - CFMachPortCreateWithPort hack = 0x1332a20, fPowerNotifyPort= 0x13277b0
-2012-12-03 11:15:30 -0700 [0x0-0x7b07b].com.citrixonline.GoToMeeting[23550]: DVFreeThread - CFMachPortCreateWithPort hack = 0x3c48190, fPowerNotifyPort= 0x3c3d530
-2012-12-03 11:15:30 -0700 [0x0-0x7b07b].com.citrixonline.GoToMeeting[23550]: DVFreeThread - CFMachPortCreateWithPort hack = 0x3c9be10, fPowerNotifyPort= 0x3c481b0
-2012-12-03 11:21:15 -0700 kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=25187[GoogleSoftwareUp] clearing CS_VALID
-2012-12-03 11:31:04 -0700 iTerm[297]: Restore app &lt;NSRunningApplication: 0x106d1b160 (org.vim.MacVim - 24587)&gt;
-2012-12-03 11:32:35 -0700 iTerm[297]: Components for \S+ are (
- begin
-)
-2012-12-03 11:32:35 -0700 iTerm[297]: Components for ([a-zA-Z0-9_]+::)+[a-zA-Z0-9_]+ are (
- "Chef::Config",
- "Chef::"
-)
-2012-12-03 11:32:35 -0700 iTerm[297]: Components for \~?/?([[:letter:][:number:]._-]+/+)+[[:letter:][:number:]._-]+/? are (
- "irb/completion",
- "irb/"
-)
-2012-12-03 11:32:35 -0700 iTerm[297]: Components for @?"(?:[^"\\]|\\.)*" are (
- "\"rubygems\""
-)
-2012-12-03 11:32:35 -0700 iTerm[297]: Components for ([[:letter:][:number:]._]+\.)+[[:letter:][:number:]._]+ are (
- "File.expand_path",
- "File."
-)
-2012-12-03 11:34:20 -0700 iTerm[297]: Restore app &lt;NSRunningApplication: 0x10147eef0 (com.sublimetext.2 - 23512)&gt;
-2012-12-03 11:34:20 -0700 iTerm[297]: Restore app &lt;NSRunningApplication: 0x1014b5ea0 (com.sublimetext.2 - 23512)&gt;
-2012-12-03 11:34:39 -0700 login[22198]: DEAD_PROCESS: 22198 ttys004
-2012-12-03 11:36:58 -0700 iTerm[297]: Restore app &lt;NSRunningApplication: 0x101454940 (com.twitter.twitter-mac - 11440)&gt;
-2012-12-03 11:36:58 -0700 iTerm[297]: Restore app &lt;NSRunningApplication: 0x10147eef0 (com.twitter.twitter-mac - 11440)&gt;
-2012-12-03 11:46:29 -0700 com.apple.SecurityServer[23]: Failed to authorize right 'system.install.apple-software' by client '/System/Library/PrivateFrameworks/PackageKit.framework/Versions/A/Resources/installd' [27339] for authorization created by '/Applications/App Store.app' [27317]
-2012-12-03 11:46:29 -0700 com.apple.SecurityServer[23]: Failed to authorize right 'system.install.software' by client '/System/Library/PrivateFrameworks/PackageKit.framework/Versions/A/Resources/installd' [27339] for authorization created by '/Applications/App Store.app' [27317]
-2012-12-03 11:46:39 -0700 installd[27339]: PackageKit: ----- Begin install -----
-2012-12-03 11:46:40 -0700 installd[27339]: Installed "Shush" ()
-2012-12-03 11:46:40 -0700 installd[27339]: PackageKit: ----- End install -----
-2012-12-03 11:46:41 -0700 mdworker[27333]: Unable to talk to lsboxd
-2012-12-03 11:47:02 -0700 com.apple.SecurityServer[23]: Session 100012 created
-2012-12-03 11:47:02 -0700 Shush[27359]: Launcher 'com.mizage.ShushHelper' is not configured to start at login
-2012-12-03 11:47:57 -0700 com.apple.Dock.agent[235]: CPSPostEventRecordTo failed -600 /Library/Widgets/iCal.wdgt/
-2012-12-03 11:47:57 -0700 com.apple.Dock.agent[235]: CPSPostEventRecordTo failed -600 /Library/Widgets/World Clock.wdgt/
-2012-12-03 11:47:57 -0700 com.apple.Dock.agent[235]: CPSPostEventRecordTo failed -600 /Library/Widgets/Calculator.wdgt/
-2012-12-03 11:47:58 -0700 DashboardClient[27366]: error [1001] setting colorSpace to DELL U2711 colorspace
-2012-12-03 11:47:58 -0700 com.apple.Dock.agent[235]: 2012-12-03 11:47:58.511 DashboardClient[27366:403] error [1001] setting colorSpace to DELL U2711 colorspace
-2012-12-03 11:47:58 -0700 DashboardClient[27366]: error [1001] setting colorSpace to DELL U2711 colorspace
-2012-12-03 11:47:58 -0700 com.apple.Dock.agent[235]: 2012-12-03 11:47:58.566 DashboardClient[27366:403] error [1001] setting colorSpace to DELL U2711 colorspace
-2012-12-03 11:47:58 -0700 DashboardClient[27366]: error [1001] setting colorSpace to DELL U2711 colorspace
-2012-12-03 11:47:58 -0700 com.apple.Dock.agent[235]: 2012-12-03 11:47:58.662 DashboardClient[27366:403] error [1001] setting colorSpace to DELL U2711 colorspace
-2012-12-03 11:47:58 -0700 DashboardClient[27366]: error [1001] setting colorSpace to DELL U2711 colorspace
-2012-12-03 11:47:58 -0700 com.apple.Dock.agent[235]: 2012-12-03 11:47:58.878 DashboardClient[27366:403] error [1001] setting colorSpace to DELL U2711 colorspace
-2012-12-03 11:49:53 -0700 Shush[27359]: LSRegisterURL failed!
-2012-12-03 11:49:53 -0700 lsboxd[5951]: @AE relay 61657674:72617070
-2012-12-03 12:01:23 -0700 [0x0-0x99099].com.google.GoogleTalkPluginD[27409]: objc[27409]: Class MacCocoaSocketServerHelper is implemented in both /Library/Application Support/Google/GoogleTalkPlugin.app/Contents/MacOS/GoogleTalkPlugin and /Library/Application Support/Google/GoogleTalkPlugin.app/Contents/Frameworks/libgoogletalkremoting.dylib. One of the two will be used. Which one is undefined.
-2012-12-03 12:01:23 -0700 [0x0-0x9a09a].com.google.GoogleTalkPluginD[27410]: objc[27410]: Class MacCocoaSocketServerHelper is implemented in both /Library/Application Support/Google/GoogleTalkPlugin.app/Contents/MacOS/GoogleTalkPlugin and /Library/Application Support/Google/GoogleTalkPlugin.app/Contents/Frameworks/libgoogletalkremoting.dylib. One of the two will be used. Which one is undefined.
-2012-12-03 12:01:23 -0700 [0x0-0x9b09b].com.google.GoogleTalkPluginD[27411]: objc[27411]: Class MacCocoaSocketServerHelper is implemented in both /Library/Application Support/Google/GoogleTalkPlugin.app/Contents/MacOS/GoogleTalkPlugin and /Library/Application Support/Google/GoogleTalkPlugin.app/Contents/Frameworks/libgoogletalkremoting.dylib. One of the two will be used. Which one is undefined.
-2012-12-03 12:01:23 -0700 GoogleTalkPlugin[27409]: QuickTimeUSBVDCDigitizer: Found a camera (0xfffffffffa131300) , but was not able to start it up (0xe00002c5)
-2012-12-03 12:01:23 -0700 GoogleTalkPlugin[27410]: QuickTimeUSBVDCDigitizer: Found a camera (0xfffffffffa200000) , but was not able to start it up (0xe00002c5)
-2012-12-03 12:01:23 -0700 GoogleTalkPlugin[27409]: QuickTimeUSBVDCDigitizer: Found a camera (0xfffffffffa200000) , but was not able to start it up (0xe00002c5)
-2012-12-03 12:01:23 -0700 [0x0-0x9c09c].com.google.GoogleTalkPluginD[27412]: objc[27412]: Class MacCocoaSocketServerHelper is implemented in both /Library/Application Support/Google/GoogleTalkPlugin.app/Contents/MacOS/GoogleTalkPlugin and /Library/Application Support/Google/GoogleTalkPlugin.app/Contents/Frameworks/libgoogletalkremoting.dylib. One of the two will be used. Which one is undefined.
-2012-12-03 12:01:24 -0700 [0x0-0x9b09b].com.google.GoogleTalkPluginD[27411]: DVFreeThread - CFMachPortCreateWithPort hack = 0x3b45c80, fPowerNotifyPort= 0x3b44c30
-2012-12-03 12:01:24 -0700 [0x0-0x9b09b].com.google.GoogleTalkPluginD[27411]: DVFreeThread - CFMachPortCreateWithPort hack = 0x3842e40, fPowerNotifyPort= 0x3842e20
-2012-12-03 12:01:24 -0700 com.apple.launchd.peruser.501[214]: Exited with code: 1
-2012-12-03 12:01:24 -0700 [0x0-0x9a09a].com.google.GoogleTalkPluginD[27410]: DVFreeThread - CFMachPortCreateWithPort hack = 0x303bbc0, fPowerNotifyPort= 0x193fc30
-2012-12-03 12:01:24 -0700 [0x0-0x9a09a].com.google.GoogleTalkPluginD[27410]: DVFreeThread - CFMachPortCreateWithPort hack = 0x1e2a770, fPowerNotifyPort= 0x1e2a8a0
-2012-12-03 12:01:24 -0700 [0x0-0x9a09a].com.google.GoogleTalkPluginD[27410]: DVFreeThread - CFMachPortCreateWithPort hack = 0x5a2ccd0, fPowerNotifyPort= 0x5a2cd70
-2012-12-03 12:01:24 -0700 com.apple.launchd.peruser.501[214]: Exited with code: 1
-2012-12-03 12:01:24 -0700 [0x0-0x9c09c].com.google.GoogleTalkPluginD[27412]: DVFreeThread - CFMachPortCreateWithPort hack = 0x5b4e6b0, fPowerNotifyPort= 0x5b4d660
-2012-12-03 12:01:24 -0700 [0x0-0x9c09c].com.google.GoogleTalkPluginD[27412]: DVFreeThread - CFMachPortCreateWithPort hack = 0x1d620e0, fPowerNotifyPort= 0x1d60aa0
-2012-12-03 12:01:24 -0700 [0x0-0x9c09c].com.google.GoogleTalkPluginD[27412]: DVFreeThread - CFMachPortCreateWithPort hack = 0xf6d900, fPowerNotifyPort= 0xf6b3a0
-2012-12-03 12:01:24 -0700 com.apple.launchd.peruser.501[214]: Exited with code: 1
-2012-12-03 12:01:32 -0700 [0x0-0x99099].com.google.GoogleTalkPluginD[27409]: WARNING: no real random source present!
-2012-12-03 12:01:52 -0700 com.apple.SecurityServer[23]: Killing auth hosts
-2012-12-03 12:01:52 -0700 com.apple.SecurityServer[23]: Session 100012 destroyed
-2012-12-03 12:02:17 -0700 [0x0-0x47047].com.google.Chrome[11423]: [1203/120217:ERROR:renderer_cairo.cc(907)] Not implemented reached in virtual void o3d::o2d::RendererCairo::InitCommon()
-2012-12-03 12:03:10 -0700 [0x0-0x99099].com.google.GoogleTalkPluginD[27409]: DVFreeThread - CFMachPortCreateWithPort hack = 0x5818ba0, fPowerNotifyPort= 0x3d11120
-2012-12-03 12:03:10 -0700 [0x0-0x99099].com.google.GoogleTalkPluginD[27409]: DVFreeThread - CFMachPortCreateWithPort hack = 0x1a1e820, fPowerNotifyPort= 0x1a1de30
-2012-12-03 12:03:10 -0700 [0x0-0x47047].com.google.Chrome[11423]: [1203/120310:ERROR:renderer_cairo.cc(911)] Not implemented reached in virtual void o3d::o2d::RendererCairo::UninitCommon()
-2012-12-03 12:03:48 -0700 [0x0-0xa10a1].com.google.GoogleTalkPluginD[27421]: objc[27421]: Class MacCocoaSocketServerHelper is implemented in both /Library/Application Support/Google/GoogleTalkPlugin.app/Contents/MacOS/GoogleTalkPlugin and /Library/Application Support/Google/GoogleTalkPlugin.app/Contents/Frameworks/libgoogletalkremoting.dylib. One of the two will be used. Which one is undefined.
-2012-12-03 12:03:49 -0700 [0x0-0xa20a2].com.google.GoogleTalkPluginD[27422]: objc[27422]: Class MacCocoaSocketServerHelper is implemented in both /Library/Application Support/Google/GoogleTalkPlugin.app/Contents/MacOS/GoogleTalkPlugin and /Library/Application Support/Google/GoogleTalkPlugin.app/Contents/Frameworks/libgoogletalkremoting.dylib. One of the two will be used. Which one is undefined.
-2012-12-03 12:03:49 -0700 GoogleTalkPlugin[27422]: QuickTimeUSBVDCDigitizer: Found a camera (0xfffffffffa200000) , but was not able to start it up (0xe00002c5)
-2012-12-03 12:03:49 -0700 [0x0-0xa20a2].com.google.GoogleTalkPluginD[27422]: DVFreeThread - CFMachPortCreateWithPort hack = 0xf75f40, fPowerNotifyPort= 0xf75e90
-2012-12-03 12:03:49 -0700 [0x0-0xa20a2].com.google.GoogleTalkPluginD[27422]: DVFreeThread - CFMachPortCreateWithPort hack = 0xf76440, fPowerNotifyPort= 0xf76900
-2012-12-03 12:03:49 -0700 [0x0-0xa20a2].com.google.GoogleTalkPluginD[27422]: DVFreeThread - CFMachPortCreateWithPort hack = 0x6453e30, fPowerNotifyPort= 0x5201ed0
-2012-12-03 12:03:49 -0700 com.apple.launchd.peruser.501[214]: Exited with code: 1
-2012-12-03 12:03:51 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120351:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:03:56 -0700 [0x0-0xa10a1].com.google.GoogleTalkPluginD[27421]: WARNING: no real random source present!
-2012-12-03 12:03:57 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120357:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:03:57 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120357:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:03:57 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120357:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:03:59 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120359:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:03:59 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120359:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:03:59 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120359:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:03:59 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120359:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:03:59 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120359:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:03:59 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120359:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:03:59 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120359:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:04:01 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120401:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:04:02 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120402:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:04:04 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120404:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:04:05 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: nsBuiltinDecoderStateMachine::RunStateMachine queuing nsBuiltinDecoder::PlaybackEnded
-2012-12-03 12:04:06 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120406:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:04:06 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120406:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:04:06 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120406:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:04:18 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120418:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:04:18 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120418:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:04:18 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120418:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:04:18 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120418:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:04:18 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120418:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:04:18 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120418:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:04:19 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120419:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:04:19 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120419:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:04:23 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120423:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:04:33 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120433:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:04:34 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120434:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:04:34 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120434:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:04:34 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120434:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:04:36 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120436:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:04:51 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120451:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:04:51 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120451:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:04:51 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120451:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:04:51 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120451:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:04:52 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120452:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:04:52 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120452:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:04:53 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120453:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:04:53 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120453:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:04:53 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120453:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:04:55 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120455:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:04:55 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120455:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:04:55 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120455:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:04:57 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120457:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:04:57 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120457:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:04:58 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: nsBuiltinDecoderStateMachine::RunStateMachine queuing nsBuiltinDecoder::PlaybackEnded
-2012-12-03 12:05:00 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120500:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:05:04 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120504:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:05:04 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120504:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:05:04 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120504:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:05:04 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120504:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:05:04 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120504:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:05:04 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120504:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:05:04 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120504:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:05:05 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120505:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:05:05 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120505:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:05:07 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120507:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:05:07 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120507:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:05:11 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120511:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:05:11 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120511:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:05:17 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120517:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:05:17 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120517:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:05:17 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120517:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:05:21 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120521:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:05:22 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120522:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:05:22 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120522:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:05:23 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120523:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:05:23 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120523:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:05:25 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120525:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:05:25 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120525:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:05:25 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120525:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:05:25 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120525:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:05:28 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120528:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:05:28 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120528:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:05:28 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120528:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:05:28 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120528:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:05:28 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120528:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:05:28 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120528:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:05:28 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120528:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:05:28 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120528:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:05:28 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120528:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:05:28 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120528:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:05:33 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120533:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:05:33 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120533:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:05:36 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120536:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:05:38 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120538:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:05:38 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120538:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:05:40 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120540:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:05:40 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120540:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:05:40 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120540:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:05:40 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120540:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:05:40 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120540:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:05:40 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120540:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:05:45 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120545:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:05:51 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120551:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:05:53 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120553:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:05:53 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120553:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:05:53 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120553:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:05:53 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120553:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:05:53 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120553:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:05:53 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120553:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:05:58 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120558:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:05:58 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120558:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:05:58 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120558:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:06:03 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120603:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:06:09 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120609:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:06:13 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120613:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:06:13 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120613:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:06:13 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120613:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:06:13 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120613:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:06:13 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120613:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:06:24 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120624:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:06:24 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120624:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:06:24 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120624:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:06:35 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120635:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:06:35 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120635:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:06:35 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120635:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:06:35 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120635:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:06:35 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120635:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:06:43 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120643:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:06:47 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120647:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:06:47 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120647:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:06:58 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120658:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:06:58 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120658:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:06:59 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120659:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:06:59 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120659:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:06:59 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120659:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:06:59 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120659:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:06:59 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120659:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:06:59 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120659:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:06:59 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120659:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:07:01 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120701:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:07:01 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120701:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:07:01 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120701:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:07:04 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120704:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:07:04 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120704:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:07:04 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120704:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:07:05 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120705:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:07:05 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120705:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:07:05 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120705:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:07:05 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120705:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:07:05 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120705:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:07:06 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120706:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:07:06 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120706:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:07:06 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120706:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:07:06 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120706:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:07:06 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120706:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:07:06 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120706:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:07:06 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120706:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:07:06 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120706:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:07:07 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120707:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:07:07 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120707:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:07:10 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120710:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:07:10 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120710:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:07:10 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120710:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:07:10 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120710:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:07:10 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120710:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:07:10 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120710:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:07:10 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120710:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:07:10 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120710:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:07:10 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120710:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:07:11 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120711:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:07:11 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120711:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:07:14 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120714:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:07:14 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120714:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:07:14 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120714:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:07:15 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120715:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:07:15 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120715:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:07:20 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120720:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:07:20 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120720:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:07:27 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120727:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:07:27 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120727:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:07:29 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120729:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:07:29 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120729:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:07:34 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120734:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:07:36 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120736:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:07:36 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120736:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:07:36 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120736:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:07:36 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120736:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:07:36 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120736:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:07:36 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120736:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:07:37 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120737:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:07:37 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120737:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:07:40 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120740:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:07:40 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120740:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:07:41 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120741:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:07:42 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120742:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:07:44 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120744:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:07:44 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120744:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:07:46 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120746:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:07:46 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120746:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:07:46 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120746:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:07:47 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120747:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:07:47 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120747:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:07:53 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120753:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:07:53 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120753:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:07:53 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120753:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:07:53 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120753:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:07:54 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120754:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:07:54 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120754:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:07:55 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120755:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:07:55 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120755:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:08:00 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120800:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:08:04 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120804:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:08:04 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120804:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:08:04 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120804:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:08:04 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120804:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:08:04 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120804:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:08:08 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120808:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:08:08 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120808:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:08:08 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120808:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:08:11 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120811:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:08:13 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120813:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:08:13 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120813:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:08:14 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120814:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:08:14 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120814:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:08:19 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120819:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:08:19 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120819:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:08:19 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120819:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:08:20 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120820:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:08:20 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120820:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:08:23 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120823:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:08:23 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120823:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:08:28 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120828:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:08:33 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120833:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:08:35 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120835:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:08:37 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120837:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:08:42 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120842:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:08:42 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120842:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:08:43 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120843:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:08:43 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120843:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:08:46 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120846:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:08:48 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120848:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:08:49 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120849:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:09:01 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120901:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:09:01 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120901:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:09:07 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120907:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:09:07 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120907:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:09:07 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120907:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:09:09 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120909:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:09:10 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120910:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:09:10 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120910:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:09:15 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120915:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:09:26 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120926:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:09:26 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120926:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:09:26 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120926:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:09:29 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120929:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:09:29 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120929:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:09:29 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120929:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:09:29 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120929:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:09:29 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120929:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:09:29 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120929:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:09:29 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120929:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:09:31 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120931:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:09:33 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120933:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:09:33 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120933:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:09:33 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120933:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:09:36 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120936:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:09:36 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120936:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:09:36 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120936:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:09:36 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120936:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:09:39 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120939:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:09:39 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120939:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:09:42 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120942:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:09:42 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120942:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:09:43 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120943:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:09:43 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120943:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:09:43 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120943:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:09:43 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120943:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:09:43 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120943:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:09:43 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120943:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:09:45 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120945:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:09:45 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120945:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:09:48 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120948:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:09:48 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120948:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:09:49 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120949:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:09:49 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120949:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:09:49 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120949:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:09:51 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120951:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:09:51 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120951:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:09:54 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120954:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:09:56 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120956:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:09:57 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120957:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:09:57 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/120957:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:10:00 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/121000:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:10:00 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/121000:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:10:18 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/121018:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:10:27 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/121027:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:10:28 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/121028:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:10:28 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/121028:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:10:59 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/121059:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:11:14 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/121114:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:11:14 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/121114:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:11:17 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/121117:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:11:17 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/121117:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:11:23 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/121123:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:11:23 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/121123:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:11:24 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/121124:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:11:24 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/121124:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:11:26 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/121126:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:11:32 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/121132:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:11:39 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/121139:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:11:41 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/121141:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:12:06 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/121206:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:12:06 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/121206:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:12:13 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/121213:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:12:13 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/121213:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:12:17 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/121217:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:12:17 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/121217:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:12:24 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/121224:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:12:30 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/121230:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:12:30 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/121230:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:12:52 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/121252:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:12:52 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/121252:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:12:59 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/121259:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:12:59 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/121259:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:13:02 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/121302:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:13:02 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/121302:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:13:14 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/121314:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:13:14 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/121314:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:13:15 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: NOTE: child process received `Goodbye', closing down
-2012-12-03 12:13:45 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/121345:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:14:57 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: nsBuiltinDecoderStateMachine::RunStateMachine queuing nsBuiltinDecoder::PlaybackEnded
-2012-12-03 12:15:52 -0700 iTerm[297]: Restore app &lt;NSRunningApplication: 0x1014ab950 (org.mozilla.firefox - 27416)&gt;
-2012-12-03 12:15:52 -0700 iTerm[297]: Restore app &lt;NSRunningApplication: 0x101478860 (org.mozilla.firefox - 27416)&gt;
-2012-12-03 12:19:58 -0700 kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=27551[GoogleSoftwareUp] clearing CS_VALID
-2012-12-03 12:20:01 -0700 [0x0-0x8f08f].com.apple.systempreferences[27375]: System Preferences(27375,0x10d1b2000) malloc: *** auto malloc[27375]: error: GC operation on unregistered thread. Thread registered implicitly. Break on auto_zone_thread_registration_error() to debug.
-2012-12-03 12:20:23 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/122023:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:20:27 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/122027:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:20:27 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/122027:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:20:46 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/122046:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:20:55 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/122055:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:20:57 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/122057:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:20:57 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/122057:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:20:59 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/122059:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:21:02 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/122102:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:21:04 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/122104:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:21:05 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/122105:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:21:11 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/122111:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:21:17 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/122117:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:21:17 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/122117:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:21:17 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/122117:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:21:17 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/122117:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:21:46 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/122146:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:21:54 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/122154:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:21:54 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/122154:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:22:03 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/122203:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:22:09 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/122209:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:22:09 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/122209:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:22:40 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/122240:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:22:44 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/122244:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:22:44 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/122244:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:22:44 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/122244:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:23:05 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/122305:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:23:05 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/122305:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:23:31 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/122331:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:24:52 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/122452:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:24:52 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/122452:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:25:16 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/122516:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:26:39 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/122639:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:26:39 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/122639:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:26:53 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/122653:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:26:54 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/122654:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:27:05 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/122705:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:27:05 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/122705:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:27:21 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/122721:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:27:37 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/122737:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:27:37 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/122737:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:27:52 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/122752:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:27:57 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/122757:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:27:57 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/122757:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:28:03 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/122803:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:28:03 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/122803:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:28:20 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/122820:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:28:20 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/122820:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:28:26 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/122826:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:28:26 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/122826:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:30:18 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: NOTE: child process received `Goodbye', closing down
-2012-12-03 12:33:30 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/123330:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:33:30 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/123330:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:33:46 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/123346:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:34:02 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/123402:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:34:02 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/123402:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:34:35 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/123435:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:34:50 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/123450:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:34:50 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/123450:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:35:56 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/123556:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:35:58 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/123558:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:35:58 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/123558:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:37:26 -0700 DiskImages UI Agent[27569]: *** -[NSMachPort handlePortMessage:]: dropping incoming DO message because the connection is invalid
-2012-12-03 12:37:26 -0700 [0x0-0xaa0aa].com.apple.DiskImageMounter[27565]: 2012-12-03 12:37:26.433 DiskImages UI Agent[27569:707] *** -[NSMachPort handlePortMessage:]: dropping incoming DO message because the connection is invalid
-2012-12-03 12:38:46 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/123846:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:38:52 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/123852:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:42:25 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: NOTE: child process received `Goodbye', closing down
-2012-12-03 12:43:09 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/124309:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:43:09 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/124309:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:43:20 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/124320:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:43:20 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/124320:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:43:21 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/124321:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:43:38 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/124338:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:43:40 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/124340:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:43:40 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/124340:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:44:12 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/124412:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:44:23 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/124423:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:44:23 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/124423:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:44:38 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/124438:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:44:38 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/124438:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:45:27 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/124527:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:45:27 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/124527:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:45:34 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/124534:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:45:38 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/124538:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:45:44 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/124544:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:46:00 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/124600:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:46:00 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/124600:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:46:54 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/124654:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:47:16 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/124716:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:47:16 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/124716:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:47:39 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/124739:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:47:39 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/124739:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:49:25 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/124925:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:49:25 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/124925:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:50:53 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/125053:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:50:53 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/125053:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:51:10 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/125110:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:51:20 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/125120:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:51:20 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/125120:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:51:23 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/125123:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:51:29 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/125129:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:51:29 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/125129:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:51:42 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/125142:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:51:42 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/125142:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:51:45 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/125145:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:51:45 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/125145:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:51:48 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/125148:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:51:48 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/125148:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 12:54:17 -0700 iTerm[297]: Restore app &lt;NSRunningApplication: 0x1014aebe0 (org.mozilla.firefox - 27416)&gt;
-2012-12-03 12:54:17 -0700 iTerm[297]: Restore app &lt;NSRunningApplication: 0x10145fd00 (org.mozilla.firefox - 27416)&gt;
-2012-12-03 12:54:45 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: NOTE: child process received `Goodbye', closing down
-2012-12-03 13:02:26 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/130226:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 13:02:26 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/130226:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 13:02:27 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/130227:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 13:02:58 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/130258:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 13:02:58 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/130258:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 13:02:58 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/130258:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 13:02:58 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/130258:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 13:03:01 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/130301:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 13:03:02 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/130302:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 13:03:49 -0700 [0x0-0xb60b6].com.google.GoogleTalkPluginD[27747]: objc[27747]: Class MacCocoaSocketServerHelper is implemented in both /Library/Application Support/Google/GoogleTalkPlugin.app/Contents/MacOS/GoogleTalkPlugin and /Library/Application Support/Google/GoogleTalkPlugin.app/Contents/Frameworks/libgoogletalkremoting.dylib. One of the two will be used. Which one is undefined.
-2012-12-03 13:03:49 -0700 [0x0-0xb70b7].com.google.GoogleTalkPluginD[27748]: objc[27748]: Class MacCocoaSocketServerHelper is implemented in both /Library/Application Support/Google/GoogleTalkPlugin.app/Contents/MacOS/GoogleTalkPlugin and /Library/Application Support/Google/GoogleTalkPlugin.app/Contents/Frameworks/libgoogletalkremoting.dylib. One of the two will be used. Which one is undefined.
-2012-12-03 13:03:49 -0700 GoogleTalkPlugin[27748]: QuickTimeUSBVDCDigitizer: Found a camera (0xfffffffffa200000) , but was not able to start it up (0xe00002c5)
-2012-12-03 13:03:49 -0700 [0x0-0xb80b8].com.google.GoogleTalkPluginD[27749]: objc[27749]: Class MacCocoaSocketServerHelper is implemented in both /Library/Application Support/Google/GoogleTalkPlugin.app/Contents/MacOS/GoogleTalkPlugin and /Library/Application Support/Google/GoogleTalkPlugin.app/Contents/Frameworks/libgoogletalkremoting.dylib. One of the two will be used. Which one is undefined.
-2012-12-03 13:03:50 -0700 [0x0-0xb70b7].com.google.GoogleTalkPluginD[27748]: DVFreeThread - CFMachPortCreateWithPort hack = 0x1960fc0, fPowerNotifyPort= 0x19609b0
-2012-12-03 13:03:50 -0700 [0x0-0xb70b7].com.google.GoogleTalkPluginD[27748]: DVFreeThread - CFMachPortCreateWithPort hack = 0x1960870, fPowerNotifyPort= 0x1955940
-2012-12-03 13:03:50 -0700 [0x0-0xb70b7].com.google.GoogleTalkPluginD[27748]: DVFreeThread - CFMachPortCreateWithPort hack = 0x1c49990, fPowerNotifyPort= 0x1c47340
-2012-12-03 13:03:50 -0700 com.apple.launchd.peruser.501[214]: Exited with code: 1
-2012-12-03 13:03:50 -0700 [0x0-0xb80b8].com.google.GoogleTalkPluginD[27749]: DVFreeThread - CFMachPortCreateWithPort hack = 0x38648e0, fPowerNotifyPort= 0x38642d0
-2012-12-03 13:03:50 -0700 [0x0-0xb80b8].com.google.GoogleTalkPluginD[27749]: DVFreeThread - CFMachPortCreateWithPort hack = 0xf77330, fPowerNotifyPort= 0xf754a0
-2012-12-03 13:03:50 -0700 [0x0-0xb80b8].com.google.GoogleTalkPluginD[27749]: DVFreeThread - CFMachPortCreateWithPort hack = 0x38630b0, fPowerNotifyPort= 0x38643b0
-2012-12-03 13:03:50 -0700 com.apple.launchd.peruser.501[214]: Exited with code: 1
-2012-12-03 13:03:56 -0700 [0x0-0xb60b6].com.google.GoogleTalkPluginD[27747]: DVFreeThread - CFMachPortCreateWithPort hack = 0x5227a50, fPowerNotifyPort= 0x5225ee0
-2012-12-03 13:03:56 -0700 [0x0-0xb60b6].com.google.GoogleTalkPluginD[27747]: DVFreeThread - CFMachPortCreateWithPort hack = 0xf40b00, fPowerNotifyPort= 0xf40a80
-2012-12-03 13:04:02 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: NOTE: child process received `Goodbye', closing down
-2012-12-03 13:04:05 -0700 [0x0-0xbb0bb].com.google.GoogleTalkPluginD[27757]: objc[27757]: Class MacCocoaSocketServerHelper is implemented in both /Library/Application Support/Google/GoogleTalkPlugin.app/Contents/MacOS/GoogleTalkPlugin and /Library/Application Support/Google/GoogleTalkPlugin.app/Contents/Frameworks/libgoogletalkremoting.dylib. One of the two will be used. Which one is undefined.
-2012-12-03 13:04:05 -0700 [0x0-0xbc0bc].com.google.GoogleTalkPluginD[27758]: objc[27758]: Class MacCocoaSocketServerHelper is implemented in both /Library/Application Support/Google/GoogleTalkPlugin.app/Contents/MacOS/GoogleTalkPlugin and /Library/Application Support/Google/GoogleTalkPlugin.app/Contents/Frameworks/libgoogletalkremoting.dylib. One of the two will be used. Which one is undefined.
-2012-12-03 13:04:06 -0700 [0x0-0xbc0bc].com.google.GoogleTalkPluginD[27758]: DVFreeThread - CFMachPortCreateWithPort hack = 0x1e28940, fPowerNotifyPort= 0x1e278f0
-2012-12-03 13:04:06 -0700 [0x0-0xbc0bc].com.google.GoogleTalkPluginD[27758]: DVFreeThread - CFMachPortCreateWithPort hack = 0x5933940, fPowerNotifyPort= 0x5933c10
-2012-12-03 13:04:06 -0700 [0x0-0xbc0bc].com.google.GoogleTalkPluginD[27758]: DVFreeThread - CFMachPortCreateWithPort hack = 0x1c25780, fPowerNotifyPort= 0x1c25fb0
-2012-12-03 13:04:06 -0700 com.apple.launchd.peruser.501[214]: Exited with code: 1
-2012-12-03 13:04:07 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/130407:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 13:04:10 -0700 [0x0-0xbb0bb].com.google.GoogleTalkPluginD[27757]: WARNING: no real random source present!
-2012-12-03 13:04:11 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/130411:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 13:04:12 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/130412:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 13:04:12 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/130412:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 13:04:12 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/130412:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 13:04:12 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/130412:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 13:04:14 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/130414:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 13:04:14 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/130414:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 13:04:14 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/130414:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 13:04:14 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/130414:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 13:04:14 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/130414:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 13:04:20 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: nsBuiltinDecoderStateMachine::RunStateMachine queuing nsBuiltinDecoder::PlaybackEnded
-2012-12-03 13:04:51 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/130451:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 13:04:51 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/130451:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 13:04:54 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/130454:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 13:04:54 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/130454:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 13:04:58 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/130458:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 13:04:58 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/130458:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 13:05:30 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: nsBuiltinDecoderStateMachine::RunStateMachine queuing nsBuiltinDecoder::PlaybackEnded
-2012-12-03 13:06:20 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/130620:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 13:06:28 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/130628:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 13:06:33 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/130633:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 13:06:36 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/130636:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 13:06:36 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/130636:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 13:07:01 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/130701:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 13:07:01 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/130701:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 13:07:03 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/130703:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 13:07:03 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/130703:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 13:07:10 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/130710:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 13:07:19 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/130719:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 13:07:19 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/130719:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 13:07:23 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/130723:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 13:07:23 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/130723:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 13:07:45 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/130745:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 13:07:45 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/130745:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 13:07:54 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/130754:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 13:07:54 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/130754:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 13:08:40 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/130840:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 13:08:40 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/130840:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 13:08:40 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/130840:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 13:08:42 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/130842:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 13:08:42 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/130842:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 13:08:47 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/130847:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 13:08:47 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/130847:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 13:08:47 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/130847:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 13:08:47 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/130847:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 13:08:47 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/130847:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 13:08:47 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/130847:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 13:08:47 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/130847:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 13:08:47 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/130847:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 13:08:50 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/130850:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 13:08:59 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/130859:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 13:08:59 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/130859:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 13:08:59 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/130859:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 13:09:00 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/130900:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 13:09:00 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/130900:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 13:09:08 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/130908:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 13:09:08 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/130908:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 13:09:08 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/130908:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 13:09:08 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/130908:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 13:09:17 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/130917:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 13:09:17 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/130917:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 13:13:58 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: nsBuiltinDecoderStateMachine::RunStateMachine queuing nsBuiltinDecoder::PlaybackEnded
-2012-12-03 13:14:01 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: [1203/131401:ERROR:message_queue.cc(496)] Failed to send boolean response to client handle : Broken pipe
-2012-12-03 13:18:41 -0700 GoogleSoftwareUpdateDaemon[27776]: -[KeystoneDaemon logServiceState] GoogleSoftwareUpdate daemon (1.1.0.3659) vending:
- com.google.Keystone.Daemon.UpdateEngine: 2 connection(s)
- com.google.Keystone.Daemon.Administration: 0 connection(s)
-2012-12-03 13:18:41 -0700 GoogleSoftwareUpdateDaemon[27776]: -[KSUpdateEngine updateProductID:] KSUpdateEngine updating product ID: "com.google.Keystone"
-2012-12-03 13:18:41 -0700 GoogleSoftwareUpdateDaemon[27776]: -[KSCheckAction performAction] KSCheckAction checking 1 ticket(s).
-2012-12-03 13:18:41 -0700 GoogleSoftwareUpdateDaemon[27776]: -[KSUpdateCheckAction performAction] KSUpdateCheckAction starting update check for ticket(s): {(
- &lt;KSTicket:0x20755d0
- productID=com.google.Keystone
- version=1.1.0.3659
- xc=&lt;KSPathExistenceChecker:0x2074fa0 path=/Library/Google/GoogleSoftwareUpdate/GoogleSoftwareUpdate.bundle/&gt;
- serverType=Omaha
- url=https://tools.google.com/service/update2
- creationDate=2012-11-30 19:00:42
- &gt;
-)}
-Using server: &lt;KSOmahaServer:0x678f90
- engine=&lt;KSDaemonUpdateEngine:0x2377db0&gt;
- params={
- EngineVersion = "1.1.0.3659";
- ActivesInfo = {
- "com.google.Chrome" = {
- LastRollCallPingDate = 2012-12-03 08:00:00 +0000;
- LastActivePingDate = 2012-12-03 08:00:00 +0000;
- LastActiveDate = 2012-12-03 20:15:37 +0000;
- };
- "com.google.Keystone" = {
- LastRollCallPingDate = 2012-12-03 08:00:00 +0000;
- LastActivePingDate = 2012-12-03 08:00:00 +0000;
- LastActiveDate = 2012-12-03 20:18:41 +0000;
- };
- "com.google.talkplugin" = {
- LastRollCallPingDate = 2012-12-03 08:00:00 +0000;
- LastActivePingDate = 2012-12-01 08:00:00 +0000;
- LastActiveDate = 2012-12-03 20:04:18 +0000;
- };
- };
- UserInitiated = 0;
- IsSystem = 1;
- OmahaOSVersion = "10.7.5_i486";
- Identity = KeystoneDaemon;
- AllowedSubdomains = (
- ".omaha.sandbox.google.com",
- ".tools.google.com",
- ".www.google.com",
- ".corp.google.com"
- );
- }
-&gt;
-2012-12-03 13:18:41 -0700 GoogleSoftwareUpdateDaemon[27776]: -[KSUpdateCheckAction performAction] KSUpdateCheckAction running KSServerUpdateRequest: &lt;KSOmahaServerUpdateRequest:0x67d2a0
- server=&lt;KSOmahaServer:0x678f90&gt;
- url="https://tools.google.com/service/update2"
- runningFetchers=0
- tickets=1
- activeTickets=0
- rollCallTickets=0
- body=
- &lt;?xml version="1.0" encoding="UTF-8" standalone="yes"?&gt;
- &lt;o:gupdate xmlns:o="http://www.google.com/update2/request" protocol="2.0" version="KeystoneDaemon-1.1.0.3659" ismachine="1"&gt;
- &lt;o:os platform="mac" version="MacOSX" sp="10.7.5_i486"&gt;&lt;/o:os&gt;
- &lt;o:app appid="com.google.Keystone" version="1.1.0.3659" lang="en-us" installage="3" brand="GGLG"&gt;
- &lt;o:updatecheck&gt;&lt;/o:updatecheck&gt;
- &lt;/o:app&gt;
- &lt;/o:gupdate&gt;
-&gt;
-2012-12-03 13:18:41 -0700 GoogleSoftwareUpdateDaemon[27776]: -[KSUpdateCheckAction(KSServerUpdateRequestDelegate) serverRequest:fetchedWithResponse:] KSUpdateCheckAction received KSServerUpdateResponse: &lt;KSOmahaServerUpdateResponse:0x2574c00
- server=&lt;KSOmahaServer:0x678f90&gt;
- url="https://tools.google.com/service/update2"
- status=200
- tickets=1
- activeTickets=0
- rollCallTickets=0
- data=
- &lt;?xml version="1.0" encoding="UTF-8" standalone="yes"?&gt;
- &lt;gupdate xmlns="http://www.google.com/update2/response" protocol="2.0" server="prod"&gt;
- &lt;daystart elapsed_seconds="44321"&gt;&lt;/daystart&gt;
- &lt;app appid="com.google.Keystone" status="ok"&gt;
- &lt;updatecheck status="noupdate"&gt;&lt;/updatecheck&gt;
- &lt;/app&gt;
- &lt;/gupdate&gt;
-&gt;
-2012-12-03 13:18:41 -0700 GoogleSoftwareUpdateDaemon[27776]: -[KSUpdateCheckAction(PrivateMethods) finishAction] KSUpdateCheckAction found updates: {( )}
-2012-12-03 13:18:41 -0700 GoogleSoftwareUpdateDaemon[27776]: -[KSPrefetchAction performAction] KSPrefetchAction no updates to prefetch.
-2012-12-03 13:18:41 -0700 GoogleSoftwareUpdateDaemon[27776]: -[KSMultiUpdateAction performAction] KSSilentUpdateAction had no updates to apply.
-2012-12-03 13:18:41 -0700 GoogleSoftwareUpdateDaemon[27776]: -[KSMultiUpdateAction performAction] KSPromptAction had no updates to apply.
-2012-12-03 13:18:41 -0700 GoogleSoftwareUpdateDaemon[27776]: -[KSUpdateEngine(PrivateMethods) updateFinish] KSUpdateEngine update processing complete.
-2012-12-03 13:18:42 -0700 kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=27775[GoogleSoftwareUp] clearing CS_VALID
-2012-12-03 13:18:42 -0700 GoogleSoftwareUpdateDaemon[27776]: -[KSUpdateEngine updateAllProducts] KSUpdateEngine updating all installed products.
-2012-12-03 13:18:42 -0700 GoogleSoftwareUpdateDaemon[27776]: -[KSCheckAction performAction] KSCheckAction checking 2 ticket(s).
-2012-12-03 13:18:42 -0700 GoogleSoftwareUpdateDaemon[27776]: -[KSUpdateCheckAction performAction] KSUpdateCheckAction starting update check for ticket(s): {(
- &lt;KSTicket:0x2377fc0
- productID=com.google.Keystone
- version=1.1.0.3659
- xc=&lt;KSPathExistenceChecker:0x2377b50 path=/Library/Google/GoogleSoftwareUpdate/GoogleSoftwareUpdate.bundle/&gt;
- serverType=Omaha
- url=https://tools.google.com/service/update2
- creationDate=2012-11-30 19:00:42
- &gt;,
- &lt;KSTicket:0x237c350
- productID=com.google.talkplugin
- version=3.10.2.10212
- xc=&lt;KSPathExistenceChecker:0x237d590 path=/Library/Application Support/Google/GoogleTalkPlugin.app&gt;
- serverType=Omaha
- url=https://tools.google.com/service/update2
- creationDate=2012-11-30 19:00:42
- &gt;
-)}
-Using server: &lt;KSOmahaServer:0x2077ef0
- engine=&lt;KSDaemonUpdateEngine:0x2377db0&gt;
- params={
- EngineVersion = "1.1.0.3659";
- ActivesInfo = {
- "com.google.Chrome" = {
- LastRollCallPingDate = 2012-12-03 08:00:00 +0000;
- LastActivePingDate = 2012-12-03 08:00:00 +0000;
- LastActiveDate = 2012-12-03 20:15:37 +0000;
- };
- "com.google.Keystone" = {
- LastRollCallPingDate = 2012-12-03 08:00:00 +0000;
- LastActivePingDate = 2012-12-03 08:00:00 +0000;
- LastActiveDate = 2012-12-03 20:18:41 +0000;
- };
- "com.google.talkplugin" = {
- LastRollCallPingDate = 2012-12-03 08:00:00 +0000;
- LastActivePingDate = 2012-12-01 08:00:00 +0000;
- LastActiveDate = 2012-12-03 20:04:18 +0000;
- };
- };
- UserInitiated = 0;
- IsSystem = 1;
- OmahaOSVersion = "10.7.5_i486";
- Identity = KeystoneDaemon;
- AllowedSubdomains = (
- ".omaha.sandbox.google.com",
- ".tools.google.com",
- ".www.google.com",
- ".corp.google.com"
- );
- }
-&gt;
-2012-12-03 13:18:42 -0700 GoogleSoftwareUpdateDaemon[27776]: -[KSUpdateCheckAction performAction] KSUpdateCheckAction running KSServerUpdateRequest: &lt;KSOmahaServerUpdateRequest:0x207d100
- server=&lt;KSOmahaServer:0x2077ef0&gt;
- url="https://tools.google.com/service/update2"
- runningFetchers=0
- tickets=2
- activeTickets=1
- rollCallTickets=0
- body=
- &lt;?xml version="1.0" encoding="UTF-8" standalone="yes"?&gt;
- &lt;o:gupdate xmlns:o="http://www.google.com/update2/request" protocol="2.0" version="KeystoneDaemon-1.1.0.3659" ismachine="1"&gt;
- &lt;o:os platform="mac" version="MacOSX" sp="10.7.5_i486"&gt;&lt;/o:os&gt;
- &lt;o:app appid="com.google.Keystone" version="1.1.0.3659" lang="en-us" installage="3" brand="GGLG"&gt;
- &lt;o:updatecheck&gt;&lt;/o:updatecheck&gt;
- &lt;/o:app&gt;
- &lt;o:app appid="com.google.talkplugin" version="3.10.2.10212" lang="en-us" installage="3" brand="GGLG"&gt;
- &lt;o:ping a="2"&gt;&lt;/o:ping&gt;
- &lt;o:updatecheck&gt;&lt;/o:updatecheck&gt;
- &lt;/o:app&gt;
- &lt;/o:gupdate&gt;
-&gt;
-2012-12-03 13:18:42 -0700 GoogleSoftwareUpdateDaemon[27776]: -[KSUpdateCheckAction(KSServerUpdateRequestDelegate) serverRequest:fetchedWithResponse:] KSUpdateCheckAction received KSServerUpdateResponse: &lt;KSOmahaServerUpdateResponse:0x20797f0
- server=&lt;KSOmahaServer:0x2077ef0&gt;
- url="https://tools.google.com/service/update2"
- status=200
- tickets=2
- activeTickets=1
- rollCallTickets=0
- data=
- &lt;?xml version="1.0" encoding="UTF-8" standalone="yes"?&gt;
- &lt;gupdate xmlns="http://www.google.com/update2/response" protocol="2.0" server="prod"&gt;
- &lt;daystart elapsed_seconds="44322"&gt;&lt;/daystart&gt;
- &lt;app appid="com.google.Keystone" status="ok"&gt;
- &lt;updatecheck status="noupdate"&gt;&lt;/updatecheck&gt;
- &lt;/app&gt;
- &lt;app appid="com.google.talkplugin" status="ok"&gt;
- &lt;ping status="ok"&gt;&lt;/ping&gt;
- &lt;updatecheck status="noupdate"&gt;&lt;/updatecheck&gt;
- &lt;/app&gt;
- &lt;/gupdate&gt;
-&gt;
-2012-12-03 13:18:42 -0700 GoogleSoftwareUpdateDaemon[27776]: -[KSUpdateCheckAction(PrivateMethods) finishAction] KSUpdateCheckAction found updates: {( )}
-2012-12-03 13:18:42 -0700 GoogleSoftwareUpdateDaemon[27776]: -[KSPrefetchAction performAction] KSPrefetchAction no updates to prefetch.
-2012-12-03 13:18:42 -0700 GoogleSoftwareUpdateDaemon[27776]: -[KSMultiUpdateAction performAction] KSSilentUpdateAction had no updates to apply.
-2012-12-03 13:18:42 -0700 GoogleSoftwareUpdateDaemon[27776]: -[KSMultiUpdateAction performAction] KSPromptAction had no updates to apply.
-2012-12-03 13:18:42 -0700 GoogleSoftwareUpdateDaemon[27776]: -[KSUpdateEngine(PrivateMethods) updateFinish] KSUpdateEngine update processing complete.
-2012-12-03 13:18:45 -0700 GoogleSoftwareUpdateDaemon[27776]: -[KeystoneDaemon logServiceState] GoogleSoftwareUpdate daemon (1.1.0.3659) vending:
- com.google.Keystone.Daemon.UpdateEngine: 1 connection(s)
- com.google.Keystone.Daemon.Administration: 0 connection(s)
-2012-12-03 13:19:11 -0700 GoogleSoftwareUpdateDaemon[27776]: -[KeystoneDaemon main] GoogleSoftwareUpdateDaemon inactive, shutdown.
-2012-12-03 13:36:12 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: NOTE: child process received `Goodbye', closing down
-2012-12-03 13:48:07 -0700 [0x0-0x9f09f].org.mozilla.firefox[27416]: NOTE: child process received `Goodbye', closing down
-</string>
- <key>lastModified</key>
- <date>2012-12-03T20:48:07Z</date>
- <key>source</key>
- <string>/var/log/asl</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>diagnostic_messages_description</string>
- <key>byteSize</key>
- <integer>65603</integer>
- <key>contents</key>
- <string>Message: PKG: pre-install scripts for "com.apple.pkg.iTunesX"
-PID: 700
-ReadGID: 80
-Sender: installd
-Time: 2012-11-30 11:41:50 -0700
-com.apple.message.domain: com.apple.PackageKit.install.package.preinstall
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: com.apple.pkg.iTunesX
-com.apple.message.signature2: 11.0.0.0.1.1188253749
-com.apple.message.uuid: D701998B-B549-45C1-A2C7-7B4F30666B83
-com.apple.message.value: 5.90350
-
-Message: PKG: pre-install scripts for "com.apple.pkg.CoreFP"
-PID: 700
-ReadGID: 80
-Sender: installd
-Time: 2012-11-30 11:41:50 -0700
-com.apple.message.domain: com.apple.PackageKit.install.package.preinstall
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: com.apple.pkg.CoreFP
-com.apple.message.signature2: 2.0.0.0.1.1188253749
-com.apple.message.uuid: D701998B-B549-45C1-A2C7-7B4F30666B83
-com.apple.message.value: 5.90362
-
-Message: PKG: pre-install scripts for "com.apple.pkg.iTunesAccess"
-PID: 700
-ReadGID: 80
-Sender: installd
-Time: 2012-11-30 11:41:50 -0700
-com.apple.message.domain: com.apple.PackageKit.install.package.preinstall
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: com.apple.pkg.iTunesAccess
-com.apple.message.signature2: 11.0.0.0.1.1188253749
-com.apple.message.uuid: D701998B-B549-45C1-A2C7-7B4F30666B83
-com.apple.message.value: 5.90369
-
-Message: REQ: moving files into place with shove
-PID: 700
-ReadGID: 80
-Sender: installd
-Time: 2012-11-30 11:48:16 -0700
-com.apple.message.domain: com.apple.PackageKit.install.shove
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: Software Update
-com.apple.message.uuid: D701998B-B549-45C1-A2C7-7B4F30666B83
-com.apple.message.value: 380.67613
-
-Message: PKG: post-install scripts for "com.apple.pkg.GarageBand6.0.5Update"
-PID: 700
-ReadGID: 80
-Sender: installd
-Time: 2012-11-30 11:49:22 -0700
-com.apple.message.domain: com.apple.PackageKit.install.package.postinstall
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: com.apple.pkg.GarageBand6.0.5Update
-com.apple.message.signature2: 6.0.5.0.1.1203730862
-com.apple.message.uuid: D701998B-B549-45C1-A2C7-7B4F30666B83
-com.apple.message.value: 0.00010
-
-Message: PKG: post-install scripts for "com.apple.pkg.AirPortUtility"
-PID: 700
-ReadGID: 80
-Sender: installd
-Time: 2012-11-30 11:49:23 -0700
-com.apple.message.domain: com.apple.PackageKit.install.package.postinstall
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: com.apple.pkg.AirPortUtility
-com.apple.message.signature2: 6.1.1.1245777430
-com.apple.message.uuid: D701998B-B549-45C1-A2C7-7B4F30666B83
-com.apple.message.value: 1.13632
-
-Message: PKG: post-install scripts for "com.apple.pkg.FlashbackMalwareRemover"
-PID: 700
-ReadGID: 80
-Sender: installd
-Time: 2012-11-30 11:49:23 -0700
-com.apple.message.domain: com.apple.PackageKit.install.package.postinstall
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: com.apple.pkg.FlashbackMalwareRemover
-com.apple.message.signature2: 1.0.0.0.1.1247562015
-com.apple.message.uuid: D701998B-B549-45C1-A2C7-7B4F30666B83
-com.apple.message.value: 1.66319
-
-Message: PKG: post-install scripts for "com.apple.pkg.RemoteDesktopClient"
-PID: 700
-ReadGID: 80
-Sender: installd
-Time: 2012-11-30 11:49:35 -0700
-com.apple.message.domain: com.apple.PackageKit.install.package.postinstall
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: com.apple.pkg.RemoteDesktopClient
-com.apple.message.signature2: 3.6.1.0.1.1192644438
-com.apple.message.uuid: D701998B-B549-45C1-A2C7-7B4F30666B83
-com.apple.message.value: 13.94442
-
-PID: 2328
-ReadGID: 80
-Sender: java_home
-Time: 2012-11-30 11:49:46 -0700
-com.apple.message.domain: com.apple.java.usage2.InstalledJVMs
-com.apple.message.domain.version: 11G63
-com.apple.message.value: 0
-
-Message: PKG: post-install scripts for "com.apple.pkg.update.os.10.7.5.11G63.combo"
-PID: 700
-ReadGID: 80
-Sender: installd
-Time: 2012-11-30 11:49:46 -0700
-com.apple.message.domain: com.apple.PackageKit.install.package.postinstall
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: com.apple.pkg.update.os.10.7.5.11G63.combo
-com.apple.message.signature2: 1.0.0.0.1.1306847324
-com.apple.message.uuid: D701998B-B549-45C1-A2C7-7B4F30666B83
-com.apple.message.value: 24.51323
-
-Message: PKG: post-install scripts for "com.apple.pkg.JavaEssentials"
-PID: 700
-ReadGID: 80
-Sender: installd
-Time: 2012-11-30 11:49:46 -0700
-com.apple.message.domain: com.apple.PackageKit.install.package.postinstall
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: com.apple.pkg.JavaEssentials
-com.apple.message.signature2: 1.0.0.0.1.1306847324
-com.apple.message.uuid: D701998B-B549-45C1-A2C7-7B4F30666B83
-com.apple.message.value: 24.67643
-
-Message: PKG: post-install scripts for "com.apple.pkg.RemoteDesktop"
-PID: 700
-ReadGID: 80
-Sender: installd
-Time: 2012-11-30 11:49:46 -0700
-com.apple.message.domain: com.apple.PackageKit.install.package.postinstall
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: com.apple.pkg.RemoteDesktop
-com.apple.message.signature2: 1.0.1.1306847324
-com.apple.message.uuid: D701998B-B549-45C1-A2C7-7B4F30666B83
-com.apple.message.value: 24.67657
-
-Message: PKG: post-install scripts for "com.apple.pkg.MobileDevice"
-PID: 700
-ReadGID: 80
-Sender: installd
-Time: 2012-11-30 11:49:49 -0700
-com.apple.message.domain: com.apple.PackageKit.install.package.postinstall
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: com.apple.pkg.MobileDevice
-com.apple.message.signature2: 4.0.0.0.1.1217269835
-com.apple.message.uuid: D701998B-B549-45C1-A2C7-7B4F30666B83
-com.apple.message.value: 26.98750
-
-Message: PKG: post-install scripts for "com.apple.pkg.iTunesX"
-PID: 700
-ReadGID: 80
-Sender: installd
-Time: 2012-11-30 11:49:49 -0700
-com.apple.message.domain: com.apple.PackageKit.install.package.postinstall
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: com.apple.pkg.iTunesX
-com.apple.message.signature2: 11.0.0.0.1.1188253749
-com.apple.message.uuid: D701998B-B549-45C1-A2C7-7B4F30666B83
-com.apple.message.value: 27.44537
-
-Message: PKG: post-install scripts for "com.apple.pkg.CoreFP"
-PID: 700
-ReadGID: 80
-Sender: installd
-Time: 2012-11-30 11:49:49 -0700
-com.apple.message.domain: com.apple.PackageKit.install.package.postinstall
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: com.apple.pkg.CoreFP
-com.apple.message.signature2: 2.0.0.0.1.1188253749
-com.apple.message.uuid: D701998B-B549-45C1-A2C7-7B4F30666B83
-com.apple.message.value: 27.44548
-
-Message: PKG: post-install scripts for "com.apple.pkg.iTunesAccess"
-PID: 700
-ReadGID: 80
-Sender: installd
-Time: 2012-11-30 11:49:49 -0700
-com.apple.message.domain: com.apple.PackageKit.install.package.postinstall
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: com.apple.pkg.iTunesAccess
-com.apple.message.signature2: 11.0.0.0.1.1188253749
-com.apple.message.uuid: D701998B-B549-45C1-A2C7-7B4F30666B83
-com.apple.message.value: 27.44557
-
-Message: PKG: writing receipt for "com.apple.pkg.GarageBand6.0.5Update"
-PID: 700
-ReadGID: 80
-Sender: installd
-Time: 2012-11-30 11:49:51 -0700
-com.apple.message.domain: com.apple.PackageKit.install.package.writeReceipt
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: com.apple.pkg.GarageBand6.0.5Update
-com.apple.message.signature2: 6.0.5.0.1.1203730862
-com.apple.message.uuid: D701998B-B549-45C1-A2C7-7B4F30666B83
-com.apple.message.value: 2.38817
-
-Message: PKG: writing receipt for "com.apple.pkg.AirPortUtility"
-PID: 700
-ReadGID: 80
-Sender: installd
-Time: 2012-11-30 11:49:52 -0700
-com.apple.message.domain: com.apple.PackageKit.install.package.writeReceipt
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: com.apple.pkg.AirPortUtility
-com.apple.message.signature2: 6.1.1.1245777430
-com.apple.message.uuid: D701998B-B549-45C1-A2C7-7B4F30666B83
-com.apple.message.value: 3.13841
-
-Message: PKG: writing receipt for "com.apple.pkg.FlashbackMalwareRemover"
-PID: 700
-ReadGID: 80
-Sender: installd
-Time: 2012-11-30 11:49:52 -0700
-com.apple.message.domain: com.apple.PackageKit.install.package.writeReceipt
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: com.apple.pkg.FlashbackMalwareRemover
-com.apple.message.signature2: 1.0.0.0.1.1247562015
-com.apple.message.uuid: D701998B-B549-45C1-A2C7-7B4F30666B83
-com.apple.message.value: 3.15628
-
-Message: PKG: writing receipt for "com.apple.pkg.RemoteDesktopClient"
-PID: 700
-ReadGID: 80
-Sender: installd
-Time: 2012-11-30 11:49:52 -0700
-com.apple.message.domain: com.apple.PackageKit.install.package.writeReceipt
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: com.apple.pkg.RemoteDesktopClient
-com.apple.message.signature2: 3.6.1.0.1.1192644438
-com.apple.message.uuid: D701998B-B549-45C1-A2C7-7B4F30666B83
-com.apple.message.value: 3.41081
-
-Message: PKG: writing receipt for "com.apple.pkg.update.os.10.7.5.11G63.combo"
-PID: 700
-ReadGID: 80
-Sender: installd
-Time: 2012-11-30 11:50:51 -0700
-com.apple.message.domain: com.apple.PackageKit.install.package.writeReceipt
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: com.apple.pkg.update.os.10.7.5.11G63.combo
-com.apple.message.signature2: 1.0.0.0.1.1306847324
-com.apple.message.uuid: D701998B-B549-45C1-A2C7-7B4F30666B83
-com.apple.message.value: 61.94661
-
-Message: PKG: writing receipt for "com.apple.pkg.JavaEssentials"
-PID: 700
-ReadGID: 80
-Sender: installd
-Time: 2012-11-30 11:50:52 -0700
-com.apple.message.domain: com.apple.PackageKit.install.package.writeReceipt
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: com.apple.pkg.JavaEssentials
-com.apple.message.signature2: 1.0.0.0.1.1306847324
-com.apple.message.uuid: D701998B-B549-45C1-A2C7-7B4F30666B83
-com.apple.message.value: 62.65012
-
-Message: PKG: writing receipt for "com.apple.pkg.RemoteDesktop"
-PID: 700
-ReadGID: 80
-Sender: installd
-Time: 2012-11-30 11:50:52 -0700
-com.apple.message.domain: com.apple.PackageKit.install.package.writeReceipt
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: com.apple.pkg.RemoteDesktop
-com.apple.message.signature2: 1.0.1.1306847324
-com.apple.message.uuid: D701998B-B549-45C1-A2C7-7B4F30666B83
-com.apple.message.value: 62.66690
-
-Message: PKG: writing receipt for "com.apple.pkg.MobileDevice"
-PID: 700
-ReadGID: 80
-Sender: installd
-Time: 2012-11-30 11:50:52 -0700
-com.apple.message.domain: com.apple.PackageKit.install.package.writeReceipt
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: com.apple.pkg.MobileDevice
-com.apple.message.signature2: 4.0.0.0.1.1217269835
-com.apple.message.uuid: D701998B-B549-45C1-A2C7-7B4F30666B83
-com.apple.message.value: 62.74646
-
-Message: PKG: writing receipt for "com.apple.pkg.iTunesX"
-PID: 700
-ReadGID: 80
-Sender: installd
-Time: 2012-11-30 11:50:53 -0700
-com.apple.message.domain: com.apple.PackageKit.install.package.writeReceipt
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: com.apple.pkg.iTunesX
-com.apple.message.signature2: 11.0.0.0.1.1188253749
-com.apple.message.uuid: D701998B-B549-45C1-A2C7-7B4F30666B83
-com.apple.message.value: 64.24984
-
-Message: PKG: writing receipt for "com.apple.pkg.CoreFP"
-PID: 700
-ReadGID: 80
-Sender: installd
-Time: 2012-11-30 11:50:53 -0700
-com.apple.message.domain: com.apple.PackageKit.install.package.writeReceipt
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: com.apple.pkg.CoreFP
-com.apple.message.signature2: 2.0.0.0.1.1188253749
-com.apple.message.uuid: D701998B-B549-45C1-A2C7-7B4F30666B83
-com.apple.message.value: 64.31461
-
-Message: PKG: writing receipt for "com.apple.pkg.iTunesAccess"
-PID: 700
-ReadGID: 80
-Sender: installd
-Time: 2012-11-30 11:50:53 -0700
-com.apple.message.domain: com.apple.PackageKit.install.package.writeReceipt
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: com.apple.pkg.iTunesAccess
-com.apple.message.signature2: 11.0.0.0.1.1188253749
-com.apple.message.uuid: D701998B-B549-45C1-A2C7-7B4F30666B83
-com.apple.message.value: 64.34900
-
-Message: REQ: install succeeded
-PID: 700
-ReadGID: 80
-Sender: installd
-Time: 2012-11-30 11:51:04 -0700
-com.apple.message.domain: com.apple.PackageKit.install
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: Software Update
-com.apple.message.uuid: D701998B-B549-45C1-A2C7-7B4F30666B83
-com.apple.message.value: 760.99169
-
-Message: SWU: installing "GarageBand Update, 6.0.5"
-PID: 958
-ReadGID: 80
-Sender: Software Update
-Time: 2012-11-30 11:51:06 -0700
-com.apple.message.domain: com.apple.SoftwareUpdate.install
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: 041-3708
-com.apple.message.signature2: Software Update
-com.apple.message.uuid: D701998B-B549-45C1-A2C7-7B4F30666B83
-
-Message: SWU: installing "AirPort Utility, 6.1"
-PID: 958
-ReadGID: 80
-Sender: Software Update
-Time: 2012-11-30 11:51:06 -0700
-com.apple.message.domain: com.apple.SoftwareUpdate.install
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: 041-4169
-com.apple.message.signature2: Software Update
-com.apple.message.uuid: D701998B-B549-45C1-A2C7-7B4F30666B83
-
-Message: SWU: installing "Flashback malware removal tool, 1.0"
-PID: 958
-ReadGID: 80
-Sender: Software Update
-Time: 2012-11-30 11:51:06 -0700
-com.apple.message.domain: com.apple.SoftwareUpdate.install
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: 041-6215
-com.apple.message.signature2: Software Update
-com.apple.message.uuid: D701998B-B549-45C1-A2C7-7B4F30666B83
-
-Message: SWU: installing "Remote Desktop Client Update, 3.6.1"
-PID: 958
-ReadGID: 80
-Sender: Software Update
-Time: 2012-11-30 11:51:06 -0700
-com.apple.message.domain: com.apple.SoftwareUpdate.install
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: 041-7028
-com.apple.message.signature2: Software Update
-com.apple.message.uuid: D701998B-B549-45C1-A2C7-7B4F30666B83
-
-Message: SWU: installing "Mac OS X Update Combined, 10.7.5"
-PID: 958
-ReadGID: 80
-Sender: Software Update
-Time: 2012-11-30 11:51:06 -0700
-com.apple.message.domain: com.apple.SoftwareUpdate.install
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: 041-7686
-com.apple.message.signature2: Software Update
-com.apple.message.uuid: D701998B-B549-45C1-A2C7-7B4F30666B83
-
-Message: SWU: installing "iTunes, 11"
-PID: 958
-ReadGID: 80
-Sender: Software Update
-Time: 2012-11-30 11:51:06 -0700
-com.apple.message.domain: com.apple.SoftwareUpdate.install
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: zzzz041-1846
-com.apple.message.signature2: Software Update
-com.apple.message.uuid: D701998B-B549-45C1-A2C7-7B4F30666B83
-
-Message: SWU: system version changed from 10.7.3 (11D50) to 10.7.5 (11G63)
-PID: 52
-ReadGID: 80
-Sender: mtversionlog
-Time: 2012-11-30 11:52:17 -0700
-com.apple.message.domain: com.apple.SoftwareUpdate.SystemVersionChanged
-com.apple.message.result: noop
-com.apple.message.signature: INFO: system version changed
-com.apple.message.signature2: 10.7.5, 11G63
-com.apple.message.signature3: 10.7.3, 11D50
-com.apple.message.value: 1354301496
-
-Message: assessment denied for pkg but overridden
-PID: 367
-ReadGID: 80
-Sender: syspolicyd
-Time: 2012-11-30 12:00:29 -0700
-com.apple.message.domain: com.apple.security.assessment.outcome
-com.apple.message.signature: override:Developer ID
-com.apple.message.signature2: bundle:UNBUNDLED
-com.apple.message.signature3: pkg
-
-Message: assessment denied for pkg but overridden
-PID: 367
-ReadGID: 80
-Sender: syspolicyd
-Time: 2012-11-30 12:19:03 -0700
-com.apple.message.domain: com.apple.security.assessment.outcome
-com.apple.message.signature: override:Developer ID
-com.apple.message.signature2: bundle:UNBUNDLED
-com.apple.message.signature3: pkg
-
-Message: assessment denied for app but overridden
-PID: 367
-ReadGID: 80
-Sender: syspolicyd
-Time: 2012-11-30 12:23:35 -0700
-com.apple.message.domain: com.apple.security.assessment.outcome
-com.apple.message.signature: override:Developer ID
-com.apple.message.signature2: bundle:com.vmware.fusion
-com.apple.message.signature3: app
-
-Message: assessment denied for app but overridden
-PID: 64080
-ReadGID: 80
-Sender: syspolicyd
-Time: 2012-11-30 14:02:58 -0700
-com.apple.message.domain: com.apple.security.assessment.outcome
-com.apple.message.signature: override:Developer ID
-com.apple.message.signature2: bundle:com.adiumX.adiumX
-com.apple.message.signature3: app
-
-Message: assessment denied for pkg but overridden
-PID: 64080
-ReadGID: 80
-Sender: syspolicyd
-Time: 2012-11-30 14:09:31 -0700
-com.apple.message.domain: com.apple.security.assessment.outcome
-com.apple.message.signature: override:no usable signature
-com.apple.message.signature2: bundle:UNBUNDLED
-com.apple.message.signature3: pkg
-
-Message: assessment denied for pkg but overridden
-PID: 64080
-ReadGID: 80
-Sender: syspolicyd
-Time: 2012-11-30 14:41:23 -0700
-com.apple.message.domain: com.apple.security.assessment.outcome
-com.apple.message.signature: override:Developer ID
-com.apple.message.signature2: bundle:UNBUNDLED
-com.apple.message.signature3: pkg
-
-Message: assessment denied for pkg but overridden
-PID: 64080
-ReadGID: 80
-Sender: syspolicyd
-Time: 2012-11-30 14:41:42 -0700
-com.apple.message.domain: com.apple.security.assessment.outcome
-com.apple.message.signature: override:no authority
-com.apple.message.signature2: bundle:UNBUNDLED
-com.apple.message.signature3: pkg
-
-Message: assessment denied for app but overridden
-PID: 64080
-ReadGID: 80
-Sender: syspolicyd
-Time: 2012-11-30 14:44:12 -0700
-com.apple.message.domain: com.apple.security.assessment.outcome
-com.apple.message.signature: override:Developer ID
-com.apple.message.signature2: bundle:org.mozilla.firefox
-com.apple.message.signature3: app
-
-Message: app:org.mozilla.firefox
-PID: 46920
-ReadGID: 80
-Sender: Download Java Components
-Time: 2012-11-30 14:46:13 -0700
-com.apple.message.domain: com.apple.java.usage2.DownloadOnDemand.request
-com.apple.message.domain.version: 11G63
-com.apple.message.signature: task:JNI
-
-Message: SWU: scan found 1 products:
-041-7414
-PID: 46922
-ReadGID: 80
-Sender: Software Update
-Time: 2012-11-30 14:46:27 -0700
-com.apple.message.domain: com.apple.SoftwareUpdate.time.scan
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: http://swscan.apple.com/
-com.apple.message.signature2: Software Update
-com.apple.message.signature3: SUScanResultCode, 0
-com.apple.message.uuid: 630AC0B3-F21B-4EBF-B34C-64557DE395E3
-com.apple.message.value: 6.87849
-com.apple.message.value2: 12706.009
-
-PID: 46920
-ReadGID: 80
-Sender: Download Java Components
-Time: 2012-11-30 14:46:32 -0700
-com.apple.message.domain: com.apple.java.usage2.DownloadOnDemand.request
-com.apple.message.domain.version: 11G63
-com.apple.message.signature: task:CommandLine
-
-Message: SWU: downloading "Java for OS X 2012-006, 1.0"
-PID: 46922
-ReadGID: 80
-Sender: Software Update
-Time: 2012-11-30 14:46:53 -0700
-com.apple.message.domain: com.apple.SoftwareUpdate.time.download
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: 041-7414
-com.apple.message.signature2: Software Update
-com.apple.message.uuid: 630AC0B3-F21B-4EBF-B34C-64557DE395E3
-com.apple.message.value: 26.03347
-com.apple.message.value2: 0
-com.apple.message.value3: 66627601
-
-Message: PKG: extracting "com.apple.pkg.JavaEssentials"
-PID: 46927
-ReadGID: 80
-Sender: installd
-Time: 2012-11-30 14:46:55 -0700
-com.apple.message.domain: com.apple.PackageKit.install.package.extract
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: com.apple.pkg.JavaEssentials
-com.apple.message.signature2: 1.0.0.0.1.1247562015
-com.apple.message.uuid: 630AC0B3-F21B-4EBF-B34C-64557DE395E3
-com.apple.message.value: 0.85943
-
-Message: PKG: extracting "com.apple.pkg.JavaForMacOSX107"
-PID: 46927
-ReadGID: 80
-Sender: installd
-Time: 2012-11-30 14:46:57 -0700
-com.apple.message.domain: com.apple.PackageKit.install.package.extract
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: com.apple.pkg.JavaForMacOSX107
-com.apple.message.signature2: 1.0.0.0.1.1247562015
-com.apple.message.uuid: 630AC0B3-F21B-4EBF-B34C-64557DE395E3
-com.apple.message.value: 2.93379
-
-Message: PKG: extracting "com.apple.pkg.JavaSecurity"
-PID: 46927
-ReadGID: 80
-Sender: installd
-Time: 2012-11-30 14:46:57 -0700
-com.apple.message.domain: com.apple.PackageKit.install.package.extract
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: com.apple.pkg.JavaSecurity
-com.apple.message.signature2: 1.0.0.0.1.1247562015
-com.apple.message.uuid: 630AC0B3-F21B-4EBF-B34C-64557DE395E3
-com.apple.message.value: 3.18652
-
-Message: PKG: extracting "com.apple.pkg.JavaMDNS"
-PID: 46927
-ReadGID: 80
-Sender: installd
-Time: 2012-11-30 14:46:57 -0700
-com.apple.message.domain: com.apple.PackageKit.install.package.extract
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: com.apple.pkg.JavaMDNS
-com.apple.message.signature2: 1.0.0.0.1.1247562015
-com.apple.message.uuid: 630AC0B3-F21B-4EBF-B34C-64557DE395E3
-com.apple.message.value: 3.19570
-
-Message: PKG: pre-install scripts for "com.apple.pkg.JavaEssentials"
-PID: 46927
-ReadGID: 80
-Sender: installd
-Time: 2012-11-30 14:47:09 -0700
-com.apple.message.domain: com.apple.PackageKit.install.package.preinstall
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: com.apple.pkg.JavaEssentials
-com.apple.message.signature2: 1.0.0.0.1.1247562015
-com.apple.message.uuid: 630AC0B3-F21B-4EBF-B34C-64557DE395E3
-com.apple.message.value: 0.00009
-
-Message: PKG: pre-install scripts for "com.apple.pkg.JavaForMacOSX107"
-PID: 46927
-ReadGID: 80
-Sender: installd
-Time: 2012-11-30 14:47:09 -0700
-com.apple.message.domain: com.apple.PackageKit.install.package.preinstall
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: com.apple.pkg.JavaForMacOSX107
-com.apple.message.signature2: 1.0.0.0.1.1247562015
-com.apple.message.uuid: 630AC0B3-F21B-4EBF-B34C-64557DE395E3
-com.apple.message.value: 0.00019
-
-Message: PKG: pre-install scripts for "com.apple.pkg.JavaSecurity"
-PID: 46927
-ReadGID: 80
-Sender: installd
-Time: 2012-11-30 14:47:09 -0700
-com.apple.message.domain: com.apple.PackageKit.install.package.preinstall
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: com.apple.pkg.JavaSecurity
-com.apple.message.signature2: 1.0.0.0.1.1247562015
-com.apple.message.uuid: 630AC0B3-F21B-4EBF-B34C-64557DE395E3
-com.apple.message.value: 0.00026
-
-Message: PKG: pre-install scripts for "com.apple.pkg.JavaMDNS"
-PID: 46927
-ReadGID: 80
-Sender: installd
-Time: 2012-11-30 14:47:09 -0700
-com.apple.message.domain: com.apple.PackageKit.install.package.preinstall
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: com.apple.pkg.JavaMDNS
-com.apple.message.signature2: 1.0.0.0.1.1247562015
-com.apple.message.uuid: 630AC0B3-F21B-4EBF-B34C-64557DE395E3
-com.apple.message.value: 0.00034
-
-Message: REQ: moving files into place with shove
-PID: 46927
-ReadGID: 80
-Sender: installd
-Time: 2012-11-30 14:47:11 -0700
-com.apple.message.domain: com.apple.PackageKit.install.shove
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: Software Update
-com.apple.message.uuid: 630AC0B3-F21B-4EBF-B34C-64557DE395E3
-com.apple.message.value: 1.78309
-
-Message: PKG: post-install scripts for "com.apple.pkg.JavaEssentials"
-PID: 46927
-ReadGID: 80
-Sender: installd
-Time: 2012-11-30 14:47:12 -0700
-com.apple.message.domain: com.apple.PackageKit.install.package.postinstall
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: com.apple.pkg.JavaEssentials
-com.apple.message.signature2: 1.0.0.0.1.1247562015
-com.apple.message.uuid: 630AC0B3-F21B-4EBF-B34C-64557DE395E3
-com.apple.message.value: 0.32106
-
-Message: PKG: post-install scripts for "com.apple.pkg.JavaForMacOSX107"
-PID: 46927
-ReadGID: 80
-Sender: installd
-Time: 2012-11-30 14:47:12 -0700
-com.apple.message.domain: com.apple.PackageKit.install.package.postinstall
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: com.apple.pkg.JavaForMacOSX107
-com.apple.message.signature2: 1.0.0.0.1.1247562015
-com.apple.message.uuid: 630AC0B3-F21B-4EBF-B34C-64557DE395E3
-com.apple.message.value: 0.32116
-
-Message: PKG: post-install scripts for "com.apple.pkg.JavaSecurity"
-PID: 46927
-ReadGID: 80
-Sender: installd
-Time: 2012-11-30 14:47:12 -0700
-com.apple.message.domain: com.apple.PackageKit.install.package.postinstall
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: com.apple.pkg.JavaSecurity
-com.apple.message.signature2: 1.0.0.0.1.1247562015
-com.apple.message.uuid: 630AC0B3-F21B-4EBF-B34C-64557DE395E3
-com.apple.message.value: 0.47575
-
-Message: PKG: post-install scripts for "com.apple.pkg.JavaMDNS"
-PID: 46927
-ReadGID: 80
-Sender: installd
-Time: 2012-11-30 14:47:12 -0700
-com.apple.message.domain: com.apple.PackageKit.install.package.postinstall
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: com.apple.pkg.JavaMDNS
-com.apple.message.signature2: 1.0.0.0.1.1247562015
-com.apple.message.uuid: 630AC0B3-F21B-4EBF-B34C-64557DE395E3
-com.apple.message.value: 0.47584
-
-Message: PKG: writing receipt for "com.apple.pkg.JavaEssentials"
-PID: 46927
-ReadGID: 80
-Sender: installd
-Time: 2012-11-30 14:47:12 -0700
-com.apple.message.domain: com.apple.PackageKit.install.package.writeReceipt
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: com.apple.pkg.JavaEssentials
-com.apple.message.signature2: 1.0.0.0.1.1247562015
-com.apple.message.uuid: 630AC0B3-F21B-4EBF-B34C-64557DE395E3
-com.apple.message.value: 0.04651
-
-Message: PKG: writing receipt for "com.apple.pkg.JavaForMacOSX107"
-PID: 46927
-ReadGID: 80
-Sender: installd
-Time: 2012-11-30 14:47:12 -0700
-com.apple.message.domain: com.apple.PackageKit.install.package.writeReceipt
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: com.apple.pkg.JavaForMacOSX107
-com.apple.message.signature2: 1.0.0.0.1.1247562015
-com.apple.message.uuid: 630AC0B3-F21B-4EBF-B34C-64557DE395E3
-com.apple.message.value: 0.11594
-
-Message: PKG: writing receipt for "com.apple.pkg.JavaSecurity"
-PID: 46927
-ReadGID: 80
-Sender: installd
-Time: 2012-11-30 14:47:12 -0700
-com.apple.message.domain: com.apple.PackageKit.install.package.writeReceipt
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: com.apple.pkg.JavaSecurity
-com.apple.message.signature2: 1.0.0.0.1.1247562015
-com.apple.message.uuid: 630AC0B3-F21B-4EBF-B34C-64557DE395E3
-com.apple.message.value: 0.15512
-
-Message: PKG: writing receipt for "com.apple.pkg.JavaMDNS"
-PID: 46927
-ReadGID: 80
-Sender: installd
-Time: 2012-11-30 14:47:12 -0700
-com.apple.message.domain: com.apple.PackageKit.install.package.writeReceipt
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: com.apple.pkg.JavaMDNS
-com.apple.message.signature2: 1.0.0.0.1.1247562015
-com.apple.message.uuid: 630AC0B3-F21B-4EBF-B34C-64557DE395E3
-com.apple.message.value: 0.16926
-
-Message: REQ: install succeeded
-PID: 46927
-ReadGID: 80
-Sender: installd
-Time: 2012-11-30 14:47:12 -0700
-com.apple.message.domain: com.apple.PackageKit.install
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: Software Update
-com.apple.message.uuid: 630AC0B3-F21B-4EBF-B34C-64557DE395E3
-com.apple.message.value: 18.27898
-
-Message: SWU: installing "Java for OS X 2012-006, 1.0"
-PID: 46922
-ReadGID: 80
-Sender: Software Update
-Time: 2012-11-30 14:47:13 -0700
-com.apple.message.domain: com.apple.SoftwareUpdate.install
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: 041-7414
-com.apple.message.signature2: Software Update
-com.apple.message.uuid: 630AC0B3-F21B-4EBF-B34C-64557DE395E3
-
-PID: 46920
-ReadGID: 80
-Sender: Download Java Components
-Time: 2012-11-30 14:47:38 -0700
-com.apple.message.domain: com.apple.java.usage2.DownloadOnDemand.complete
-com.apple.message.domain.version: 11G63
-com.apple.message.result: success
-com.apple.message.signature: install_finished
-
-Message: assessment denied for pkg but overridden
-PID: 64080
-ReadGID: 80
-Sender: syspolicyd
-Time: 2012-11-30 14:55:53 -0700
-com.apple.message.domain: com.apple.security.assessment.outcome
-com.apple.message.signature: override:no authority
-com.apple.message.signature2: bundle:UNBUNDLED
-com.apple.message.signature3: pkg
-
-Message: assessment denied for app but overridden
-PID: 499
-ReadGID: 80
-Sender: syspolicyd
-Time: 2012-11-30 16:15:57 -0700
-com.apple.message.domain: com.apple.security.assessment.outcome
-com.apple.message.signature: override:Developer ID
-com.apple.message.signature2: bundle:com.rdio.desktop
-com.apple.message.signature3: app
-
-Message: SWU: scan found 3 products:
-041-6929
-041-7738
-041-8084
-PID: 8179
-ReadGID: 80
-Sender: Software Update
-Time: 2012-11-30 16:36:59 -0700
-com.apple.message.domain: com.apple.SoftwareUpdate.time.scan
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: http://swscan.apple.com/
-com.apple.message.signature2: Software Update
-com.apple.message.signature3: SUScanResultCode, 0
-com.apple.message.uuid: 0C1D41FB-FAEB-4FD4-889A-70E953AE7E29
-com.apple.message.value: 26.26618
-com.apple.message.value2: 6612.547
-
-PID: 9479
-ReadGID: 80
-Sender: ReportCrash
-Time: 2012-11-30 16:38:42 -0700
-com.apple.message.domain: com.apple.crashreporter.writereport.crash
-com.apple.message.result: NO
-com.apple.message.signature: clang
-com.apple.message.signature2: UNBUNDLED ||| 2.1 (163.7.1)
-com.apple.message.signature3: E3A7967CB11917E64D61CBD305FD4EE7
-com.apple.message.summarize: YES
-
-Message: SWU: downloading "iPhoto Update, 9.4.2"
-PID: 8179
-ReadGID: 80
-Sender: Software Update
-Time: 2012-11-30 16:40:56 -0700
-com.apple.message.domain: com.apple.SoftwareUpdate.time.download
-com.apple.message.result: failure
-com.apple.message.signature: FAILURE: 041-7738
-com.apple.message.signature2: Software Update
-com.apple.message.signature3: SUSessionErrorDomain, 4
-com.apple.message.uuid: 0C1D41FB-FAEB-4FD4-889A-70E953AE7E29
-com.apple.message.value: 228.95912
-com.apple.message.value2: 0
-com.apple.message.value3: 797252101
-
-Message: SWU: downloading "iMovie Update, 9.0.8"
-PID: 8179
-ReadGID: 80
-Sender: Software Update
-Time: 2012-11-30 16:40:56 -0700
-com.apple.message.domain: com.apple.SoftwareUpdate.time.download
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: 041-6929
-com.apple.message.signature2: Software Update
-com.apple.message.uuid: 0C1D41FB-FAEB-4FD4-889A-70E953AE7E29
-com.apple.message.value: 0.00060
-com.apple.message.value2: 0
-com.apple.message.value3: 1080360416
-
-Message: SWU: downloading "Safari, 6.0.2"
-PID: 8179
-ReadGID: 80
-Sender: Software Update
-Time: 2012-11-30 16:40:56 -0700
-com.apple.message.domain: com.apple.SoftwareUpdate.time.download
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: 041-8084
-com.apple.message.signature2: Software Update
-com.apple.message.uuid: 0C1D41FB-FAEB-4FD4-889A-70E953AE7E29
-com.apple.message.value: 0.00060
-com.apple.message.value2: 0
-com.apple.message.value3: 48495233
-
-Message: SWU: scan found 3 products:
-041-6929
-041-7738
-041-8084
-PID: 65531
-ReadGID: 80
-Sender: Software Update
-Time: 2012-11-30 17:11:38 -0700
-com.apple.message.domain: com.apple.SoftwareUpdate.time.scan
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: http://swscan.apple.com/
-com.apple.message.signature2: Software Update
-com.apple.message.signature3: SUScanResultCode, 0
-com.apple.message.uuid: 581C5BD9-3FA5-41F5-87A6-8207CFB4323D
-com.apple.message.value: 8.28830
-com.apple.message.value2: 2097.081
-
-Message: SWU: downloading "iPhoto Update, 9.4.2"
-PID: 65531
-ReadGID: 80
-Sender: Software Update
-Time: 2012-11-30 17:19:03 -0700
-com.apple.message.domain: com.apple.SoftwareUpdate.time.download
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: 041-7738
-com.apple.message.signature2: Software Update
-com.apple.message.uuid: 581C5BD9-3FA5-41F5-87A6-8207CFB4323D
-com.apple.message.value: 440.53151
-com.apple.message.value2: 213052854
-com.apple.message.value3: 797252101
-
-PID: 229
-ReadGID: 80
-Sender: Finder
-Time: 2012-11-30 17:29:43 -0700
-com.apple.message.domain: com.apple.usage.airdrop.session
-com.apple.message.value: 9.40398
-
-PID: 229
-ReadGID: 80
-Sender: Finder
-Time: 2012-11-30 17:29:43 -0700
-com.apple.message.domain: com.apple.usage.airdrop.discovery
-com.apple.message.value: -1
-com.apple.message.value2: 0
-
-PID: 229
-ReadGID: 80
-Sender: Finder
-Time: 2012-11-30 17:29:43 -0700
-com.apple.message.domain: com.apple.usage.airdrop.discovery
-com.apple.message.value: -1
-com.apple.message.value2: 0
-
-Message: SWU: downloading "iMovie Update, 9.0.8"
-PID: 65531
-ReadGID: 80
-Sender: Software Update
-Time: 2012-11-30 17:31:41 -0700
-com.apple.message.domain: com.apple.SoftwareUpdate.time.download
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: 041-6929
-com.apple.message.signature2: Software Update
-com.apple.message.uuid: 581C5BD9-3FA5-41F5-87A6-8207CFB4323D
-com.apple.message.value: 757.75015
-com.apple.message.value2: 0
-com.apple.message.value3: 1080360416
-
-Message: assessment denied for prefPane but overridden
-PID: 499
-ReadGID: 80
-Sender: syspolicyd
-Time: 2012-11-30 17:31:44 -0700
-com.apple.message.domain: com.apple.security.assessment.outcome
-com.apple.message.signature: override:no usable signature
-com.apple.message.signature2: bundle:RCDefaultAppPref
-com.apple.message.signature3: prefPane
-
-Message: assessment denied for app but overridden
-PID: 499
-ReadGID: 80
-Sender: syspolicyd
-Time: 2012-11-30 17:31:53 -0700
-com.apple.message.domain: com.apple.security.assessment.outcome
-com.apple.message.signature: override:no usable signature
-com.apple.message.signature2: bundle:com.rubicode.RCDefaultApp.DoNothing
-com.apple.message.signature3: app
-
-Message: SWU: downloading "Safari, 6.0.2"
-PID: 65531
-ReadGID: 80
-Sender: Software Update
-Time: 2012-11-30 17:32:06 -0700
-com.apple.message.domain: com.apple.SoftwareUpdate.time.download
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: 041-8084
-com.apple.message.signature2: Software Update
-com.apple.message.uuid: 581C5BD9-3FA5-41F5-87A6-8207CFB4323D
-com.apple.message.value: 25.30060
-com.apple.message.value2: 0
-com.apple.message.value3: 48495233
-
-Message: PKG: extracting "com.apple.pkg.iMovie9.0.8Update"
-PID: 8183
-ReadGID: 80
-Sender: installd
-Time: 2012-11-30 17:32:36 -0700
-com.apple.message.domain: com.apple.PackageKit.install.package.extract
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: com.apple.pkg.iMovie9.0.8Update
-com.apple.message.signature2: 9.0.8.0.1.1263389684
-com.apple.message.uuid: 581C5BD9-3FA5-41F5-87A6-8207CFB4323D
-com.apple.message.value: 27.70356
-
-Message: PKG: extracting "com.apple.pkg.iPhoto9.4.2Update"
-PID: 8183
-ReadGID: 80
-Sender: installd
-Time: 2012-11-30 17:32:58 -0700
-com.apple.message.domain: com.apple.PackageKit.install.package.extract
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: com.apple.pkg.iPhoto9.4.2Update
-com.apple.message.signature2: 9.4.2.0.1.1263389684
-com.apple.message.uuid: 581C5BD9-3FA5-41F5-87A6-8207CFB4323D
-com.apple.message.value: 49.39134
-
-Message: PKG: extracting "com.apple.pkg.iPhoto9.4.2ContentUpdate"
-PID: 8183
-ReadGID: 80
-Sender: installd
-Time: 2012-11-30 17:33:04 -0700
-com.apple.message.domain: com.apple.PackageKit.install.package.extract
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: com.apple.pkg.iPhoto9.4.2ContentUpdate
-com.apple.message.signature2: 9.4.2.0.1.1263389684
-com.apple.message.uuid: 581C5BD9-3FA5-41F5-87A6-8207CFB4323D
-com.apple.message.value: 55.67730
-
-Message: PKG: extracting "com.apple.pkg.Safari6.0.2Lion"
-PID: 8183
-ReadGID: 80
-Sender: installd
-Time: 2012-11-30 17:33:09 -0700
-com.apple.message.domain: com.apple.PackageKit.install.package.extract
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: com.apple.pkg.Safari6.0.2Lion
-com.apple.message.signature2: 1.0.0.0.1.1191932192
-com.apple.message.uuid: 581C5BD9-3FA5-41F5-87A6-8207CFB4323D
-com.apple.message.value: 59.77661
-
-Message: PKG: pre-install scripts for "com.apple.pkg.iMovie9.0.8Update"
-PID: 8183
-ReadGID: 80
-Sender: installd
-Time: 2012-11-30 17:33:20 -0700
-com.apple.message.domain: com.apple.PackageKit.install.package.preinstall
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: com.apple.pkg.iMovie9.0.8Update
-com.apple.message.signature2: 9.0.8.0.1.1263389684
-com.apple.message.uuid: 581C5BD9-3FA5-41F5-87A6-8207CFB4323D
-com.apple.message.value: 2.19048
-
-Message: PKG: pre-install scripts for "com.apple.pkg.iPhoto9.4.2Update"
-PID: 8183
-ReadGID: 80
-Sender: installd
-Time: 2012-11-30 17:33:22 -0700
-com.apple.message.domain: com.apple.PackageKit.install.package.preinstall
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: com.apple.pkg.iPhoto9.4.2Update
-com.apple.message.signature2: 9.4.2.0.1.1263389684
-com.apple.message.uuid: 581C5BD9-3FA5-41F5-87A6-8207CFB4323D
-com.apple.message.value: 4.29148
-
-Message: PKG: pre-install scripts for "com.apple.pkg.iPhoto9.4.2ContentUpdate"
-PID: 8183
-ReadGID: 80
-Sender: installd
-Time: 2012-11-30 17:33:22 -0700
-com.apple.message.domain: com.apple.PackageKit.install.package.preinstall
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: com.apple.pkg.iPhoto9.4.2ContentUpdate
-com.apple.message.signature2: 9.4.2.0.1.1263389684
-com.apple.message.uuid: 581C5BD9-3FA5-41F5-87A6-8207CFB4323D
-com.apple.message.value: 4.29157
-
-Message: PKG: pre-install scripts for "com.apple.pkg.Safari6.0.2Lion"
-PID: 8183
-ReadGID: 80
-Sender: installd
-Time: 2012-11-30 17:33:37 -0700
-com.apple.message.domain: com.apple.PackageKit.install.package.preinstall
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: com.apple.pkg.Safari6.0.2Lion
-com.apple.message.signature2: 1.0.0.0.1.1191932192
-com.apple.message.uuid: 581C5BD9-3FA5-41F5-87A6-8207CFB4323D
-com.apple.message.value: 19.77068
-
-Message: REQ: moving files into place with shove
-PID: 8183
-ReadGID: 80
-Sender: installd
-Time: 2012-11-30 17:33:57 -0700
-com.apple.message.domain: com.apple.PackageKit.install.shove
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: Software Update
-com.apple.message.uuid: 581C5BD9-3FA5-41F5-87A6-8207CFB4323D
-com.apple.message.value: 20.13984
-
-Message: PKG: post-install scripts for "com.apple.pkg.iMovie9.0.8Update"
-PID: 8183
-ReadGID: 80
-Sender: installd
-Time: 2012-11-30 17:33:57 -0700
-com.apple.message.domain: com.apple.PackageKit.install.package.postinstall
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: com.apple.pkg.iMovie9.0.8Update
-com.apple.message.signature2: 9.0.8.0.1.1263389684
-com.apple.message.uuid: 581C5BD9-3FA5-41F5-87A6-8207CFB4323D
-com.apple.message.value: 0.00006
-
-Message: PKG: post-install scripts for "com.apple.pkg.iPhoto9.4.2Update"
-PID: 8183
-ReadGID: 80
-Sender: installd
-Time: 2012-11-30 17:33:57 -0700
-com.apple.message.domain: com.apple.PackageKit.install.package.postinstall
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: com.apple.pkg.iPhoto9.4.2Update
-com.apple.message.signature2: 9.4.2.0.1.1263389684
-com.apple.message.uuid: 581C5BD9-3FA5-41F5-87A6-8207CFB4323D
-com.apple.message.value: 0.00020
-
-Message: PKG: post-install scripts for "com.apple.pkg.iPhoto9.4.2ContentUpdate"
-PID: 8183
-ReadGID: 80
-Sender: installd
-Time: 2012-11-30 17:33:57 -0700
-com.apple.message.domain: com.apple.PackageKit.install.package.postinstall
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: com.apple.pkg.iPhoto9.4.2ContentUpdate
-com.apple.message.signature2: 9.4.2.0.1.1263389684
-com.apple.message.uuid: 581C5BD9-3FA5-41F5-87A6-8207CFB4323D
-com.apple.message.value: 0.00028
-
-Message: PKG: post-install scripts for "com.apple.pkg.Safari6.0.2Lion"
-PID: 8183
-ReadGID: 80
-Sender: installd
-Time: 2012-11-30 17:33:58 -0700
-com.apple.message.domain: com.apple.PackageKit.install.package.postinstall
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: com.apple.pkg.Safari6.0.2Lion
-com.apple.message.signature2: 1.0.0.0.1.1191932192
-com.apple.message.uuid: 581C5BD9-3FA5-41F5-87A6-8207CFB4323D
-com.apple.message.value: 0.74606
-
-Message: PKG: writing receipt for "com.apple.pkg.iMovie9.0.8Update"
-PID: 8183
-ReadGID: 80
-Sender: installd
-Time: 2012-11-30 17:33:59 -0700
-com.apple.message.domain: com.apple.PackageKit.install.package.writeReceipt
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: com.apple.pkg.iMovie9.0.8Update
-com.apple.message.signature2: 9.0.8.0.1.1263389684
-com.apple.message.uuid: 581C5BD9-3FA5-41F5-87A6-8207CFB4323D
-com.apple.message.value: 0.51915
-
-Message: PKG: writing receipt for "com.apple.pkg.iPhoto9.4.2Update"
-PID: 8183
-ReadGID: 80
-Sender: installd
-Time: 2012-11-30 17:33:59 -0700
-com.apple.message.domain: com.apple.PackageKit.install.package.writeReceipt
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: com.apple.pkg.iPhoto9.4.2Update
-com.apple.message.signature2: 9.4.2.0.1.1263389684
-com.apple.message.uuid: 581C5BD9-3FA5-41F5-87A6-8207CFB4323D
-com.apple.message.value: 1.39882
-
-Message: PKG: writing receipt for "com.apple.pkg.iPhoto9.4.2ContentUpdate"
-PID: 8183
-ReadGID: 80
-Sender: installd
-Time: 2012-11-30 17:34:00 -0700
-com.apple.message.domain: com.apple.PackageKit.install.package.writeReceipt
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: com.apple.pkg.iPhoto9.4.2ContentUpdate
-com.apple.message.signature2: 9.4.2.0.1.1263389684
-com.apple.message.uuid: 581C5BD9-3FA5-41F5-87A6-8207CFB4323D
-com.apple.message.value: 1.53357
-
-Message: PKG: writing receipt for "com.apple.pkg.Safari6.0.2Lion"
-PID: 8183
-ReadGID: 80
-Sender: installd
-Time: 2012-11-30 17:34:00 -0700
-com.apple.message.domain: com.apple.PackageKit.install.package.writeReceipt
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: com.apple.pkg.Safari6.0.2Lion
-com.apple.message.signature2: 1.0.0.0.1.1191932192
-com.apple.message.uuid: 581C5BD9-3FA5-41F5-87A6-8207CFB4323D
-com.apple.message.value: 1.73156
-
-Message: REQ: install succeeded
-PID: 8183
-ReadGID: 80
-Sender: installd
-Time: 2012-11-30 17:34:00 -0700
-com.apple.message.domain: com.apple.PackageKit.install
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: Software Update
-com.apple.message.uuid: 581C5BD9-3FA5-41F5-87A6-8207CFB4323D
-com.apple.message.value: 113.21896
-
-Message: SWU: installing "iMovie Update, 9.0.8"
-PID: 65531
-ReadGID: 80
-Sender: Software Update
-Time: 2012-11-30 17:36:44 -0700
-com.apple.message.domain: com.apple.SoftwareUpdate.install
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: 041-6929
-com.apple.message.signature2: Software Update
-com.apple.message.uuid: 581C5BD9-3FA5-41F5-87A6-8207CFB4323D
-
-Message: SWU: installing "iPhoto Update, 9.4.2"
-PID: 65531
-ReadGID: 80
-Sender: Software Update
-Time: 2012-11-30 17:36:44 -0700
-com.apple.message.domain: com.apple.SoftwareUpdate.install
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: 041-7738
-com.apple.message.signature2: Software Update
-com.apple.message.uuid: 581C5BD9-3FA5-41F5-87A6-8207CFB4323D
-
-Message: SWU: installing "Safari, 6.0.2"
-PID: 65531
-ReadGID: 80
-Sender: Software Update
-Time: 2012-11-30 17:36:44 -0700
-com.apple.message.domain: com.apple.SoftwareUpdate.install
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: 041-8084
-com.apple.message.signature2: Software Update
-com.apple.message.uuid: 581C5BD9-3FA5-41F5-87A6-8207CFB4323D
-
-Message: SWU: scan found 1 products:
-041-8758
-PID: 65531
-ReadGID: 80
-Sender: Software Update
-Time: 2012-11-30 17:36:55 -0700
-com.apple.message.domain: com.apple.SoftwareUpdate.time.scan
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: http://swscan.apple.com/
-com.apple.message.signature2: Software Update
-com.apple.message.signature3: SUScanResultCode, 0
-com.apple.message.uuid: 581C5BD9-3FA5-41F5-87A6-8207CFB4323D
-com.apple.message.value: 9.78197
-com.apple.message.value2: 1515.938
-
-Message: SWU: downloading "Digital Camera RAW Compatibility Update, 4.02"
-PID: 65531
-ReadGID: 80
-Sender: Software Update
-Time: 2012-11-30 17:37:45 -0700
-com.apple.message.domain: com.apple.SoftwareUpdate.time.download
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: 041-8758
-com.apple.message.signature2: Software Update
-com.apple.message.uuid: 581C5BD9-3FA5-41F5-87A6-8207CFB4323D
-com.apple.message.value: 5.01429
-com.apple.message.value2: 0
-com.apple.message.value3: 5022418
-
-Message: PKG: extracting "com.apple.pkg.RAWCameraUpdate4"
-PID: 8183
-ReadGID: 80
-Sender: installd
-Time: 2012-11-30 17:37:45 -0700
-com.apple.message.domain: com.apple.PackageKit.install.package.extract
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: com.apple.pkg.RAWCameraUpdate4
-com.apple.message.signature2: 4020.1.1306847324
-com.apple.message.uuid: 581C5BD9-3FA5-41F5-87A6-8207CFB4323D
-com.apple.message.value: 0.38837
-
-Message: PKG: pre-install scripts for "com.apple.pkg.RAWCameraUpdate4"
-PID: 8183
-ReadGID: 80
-Sender: installd
-Time: 2012-11-30 17:38:19 -0700
-com.apple.message.domain: com.apple.PackageKit.install.package.preinstall
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: com.apple.pkg.RAWCameraUpdate4
-com.apple.message.signature2: 4020.1.1306847324
-com.apple.message.uuid: 581C5BD9-3FA5-41F5-87A6-8207CFB4323D
-com.apple.message.value: 0.03771
-
-Message: REQ: moving files into place with shove
-PID: 8183
-ReadGID: 80
-Sender: installd
-Time: 2012-11-30 17:38:19 -0700
-com.apple.message.domain: com.apple.PackageKit.install.shove
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: Software Update
-com.apple.message.uuid: 581C5BD9-3FA5-41F5-87A6-8207CFB4323D
-com.apple.message.value: 0.15008
-
-Message: PKG: post-install scripts for "com.apple.pkg.RAWCameraUpdate4"
-PID: 8183
-ReadGID: 80
-Sender: installd
-Time: 2012-11-30 17:38:20 -0700
-com.apple.message.domain: com.apple.PackageKit.install.package.postinstall
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: com.apple.pkg.RAWCameraUpdate4
-com.apple.message.signature2: 4020.1.1306847324
-com.apple.message.uuid: 581C5BD9-3FA5-41F5-87A6-8207CFB4323D
-com.apple.message.value: 0.06417
-
-Message: PKG: writing receipt for "com.apple.pkg.RAWCameraUpdate4"
-PID: 8183
-ReadGID: 80
-Sender: installd
-Time: 2012-11-30 17:38:20 -0700
-com.apple.message.domain: com.apple.PackageKit.install.package.writeReceipt
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: com.apple.pkg.RAWCameraUpdate4
-com.apple.message.signature2: 4020.1.1306847324
-com.apple.message.uuid: 581C5BD9-3FA5-41F5-87A6-8207CFB4323D
-com.apple.message.value: 0.00790
-
-Message: REQ: install succeeded
-PID: 8183
-ReadGID: 80
-Sender: installd
-Time: 2012-11-30 17:38:20 -0700
-com.apple.message.domain: com.apple.PackageKit.install
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: Software Update
-com.apple.message.uuid: 581C5BD9-3FA5-41F5-87A6-8207CFB4323D
-com.apple.message.value: 34.98929
-
-Message: SWU: installing "Digital Camera RAW Compatibility Update, 4.02"
-PID: 65531
-ReadGID: 80
-Sender: Software Update
-Time: 2012-11-30 17:38:20 -0700
-com.apple.message.domain: com.apple.SoftwareUpdate.install
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: 041-8758
-com.apple.message.signature2: Software Update
-com.apple.message.uuid: 581C5BD9-3FA5-41F5-87A6-8207CFB4323D
-
-Message: SWU: scan found 0 products:
-PID: 65531
-ReadGID: 80
-Sender: Software Update
-Time: 2012-11-30 17:38:32 -0700
-com.apple.message.domain: com.apple.SoftwareUpdate.time.scan
-com.apple.message.result: success
-com.apple.message.signature: SUCCESS: http://swscan.apple.com/
-com.apple.message.signature2: Software Update
-com.apple.message.signature3: SUScanResultCode, 2
-com.apple.message.uuid: 581C5BD9-3FA5-41F5-87A6-8207CFB4323D
-com.apple.message.value: 10.83942
-com.apple.message.value2: 96.683
-
-Message: displayonline
-PID: 91
-ReadGID: 80
-Sender: WindowServer
-Time: 2012-11-30 23:31:11 -0700
-com.apple.message.domain: com.apple.iokit.graphics.displaytype
-com.apple.message.result: noop
-com.apple.message.signature: 0x10ac,0xa057(2560x1440)
-com.apple.message.signature2: DELL U2711
-com.apple.message.signature3: MacBookPro8,2
-
-PID: 8954
-ReadGID: 80
-Sender: ReportCrash
-Time: 2012-11-30 23:47:11 -0700
-com.apple.message.domain: com.apple.crashreporter.writereport.crash
-com.apple.message.result: NO
-com.apple.message.signature: Finder
-com.apple.message.signature2: com.apple.finder ||| 10.7.5 (10.7.5)
-com.apple.message.signature3: A42666DF694F1E22ADE87C874340A49A
-com.apple.message.summarize: YES
-
-PID: 8955
-ReadGID: 80
-Sender: Finder
-Time: 2012-11-30 23:50:00 -0700
-com.apple.message.domain: com.apple.usage.airdrop.session
-com.apple.message.value: 125.301
-
-PID: 8955
-ReadGID: 80
-Sender: Finder
-Time: 2012-11-30 23:50:00 -0700
-com.apple.message.domain: com.apple.usage.airdrop.discovery
-com.apple.message.value: -1
-com.apple.message.value2: 0
-
-PID: 8955
-ReadGID: 80
-Sender: Finder
-Time: 2012-11-30 23:50:00 -0700
-com.apple.message.domain: com.apple.usage.airdrop.discovery
-com.apple.message.value: -1
-com.apple.message.value2: 0
-
-PID: 9363
-ReadGID: 80
-Sender: ReportCrash
-Time: 2012-11-30 23:52:12 -0700
-com.apple.message.domain: com.apple.crashreporter.writereport.crash
-com.apple.message.result: YES
-com.apple.message.signature: Microsoft Outlook
-com.apple.message.signature2: com.microsoft.Outlook ||| 14.2.4 (14.2.4)
-com.apple.message.signature3: 516E48E52B1E9A2F90912D7C6521274B
-com.apple.message.summarize: YES
-
-PID: 9404
-ReadGID: 80
-Sender: CoreServicesUIAgent
-Time: 2012-11-30 23:55:52 -0700
-com.apple.message.domain: com.apple.usage.gatekeeper.open-unsafe-executable-type
-com.apple.message.signature: com.apple.application-bundle
-
-Message: assessment denied for app but overridden
-PID: 499
-ReadGID: 80
-Sender: syspolicyd
-Time: 2012-11-30 23:55:52 -0700
-com.apple.message.domain: com.apple.security.assessment.outcome
-com.apple.message.signature: override:Developer ID
-com.apple.message.signature2: bundle:com.alfredapp.Alfred
-com.apple.message.signature3: app
-
-Message: Machine active for 13997 seconds since last reported.
-PID: 221
-ReadGID: 80
-Sender: UserEventAgent
-Time: 2012-11-30 23:58:04 -0700
-com.apple.message.domain: com.apple.usage.activetime
-com.apple.message.summarize: YES
-com.apple.message.value: 13997
-
-Message: assessment denied for pkg but overridden
-PID: 499
-ReadGID: 80
-Sender: syspolicyd
-Time: 2012-12-01 00:10:52 -0700
-com.apple.message.domain: com.apple.security.assessment.outcome
-com.apple.message.signature: override:Developer ID
-com.apple.message.signature2: bundle:UNBUNDLED
-com.apple.message.signature3: pkg
-
-Message: Machine active for 2217 seconds since last reported.
-PID: 221
-ReadGID: 80
-Sender: UserEventAgent
-Time: 2012-12-01 00:35:01 -0700
-com.apple.message.domain: com.apple.usage.activetime
-com.apple.message.summarize: YES
-com.apple.message.value: 2217
-
-Message: Machine active for 5 seconds since last reported.
-PID: 221
-ReadGID: 80
-Sender: UserEventAgent
-Time: 2012-12-01 00:35:06 -0700
-com.apple.message.domain: com.apple.usage.activetime
-com.apple.message.summarize: YES
-com.apple.message.value: 5
-
-Message: Machine active for 3 seconds since last reported.
-PID: 221
-ReadGID: 80
-Sender: UserEventAgent
-Time: 2012-12-01 00:35:09 -0700
-com.apple.message.domain: com.apple.usage.activetime
-com.apple.message.summarize: YES
-com.apple.message.value: 3
-
-Message: Machine active for 12954 seconds since last reported.
-PID: 207
-ReadGID: 80
-Sender: UserEventAgent
-Time: 2012-12-01 12:17:41 -0700
-com.apple.message.domain: com.apple.usage.activetime
-com.apple.message.summarize: YES
-com.apple.message.value: 12954
-
-Message: Machine active for 1043 seconds since last reported.
-PID: 207
-ReadGID: 80
-Sender: UserEventAgent
-Time: 2012-12-01 12:36:35 -0700
-com.apple.message.domain: com.apple.usage.activetime
-com.apple.message.summarize: YES
-com.apple.message.value: 1043
-
-Message: assessment denied for pkg but overridden
-PID: 42848
-ReadGID: 80
-Sender: syspolicyd
-Time: 2012-12-01 13:28:01 -0700
-com.apple.message.domain: com.apple.security.assessment.outcome
-com.apple.message.signature: override:no usable signature
-com.apple.message.signature2: bundle:SSHKeychain
-com.apple.message.signature3: pkg
-
-PID: 47228
-ReadGID: 80
-Sender: CoreServicesUIAgent
-Time: 2012-12-01 14:46:20 -0700
-com.apple.message.domain: com.apple.usage.gatekeeper.open-unsafe-executable-type
-com.apple.message.signature: com.apple.application-bundle
-
-Message: assessment denied for app but overridden
-PID: 42848
-ReadGID: 80
-Sender: syspolicyd
-Time: 2012-12-01 14:46:20 -0700
-com.apple.message.domain: com.apple.security.assessment.outcome
-com.apple.message.signature: override:no usable signature
-com.apple.message.signature2: bundle:net.sourceforge.seashore
-com.apple.message.signature3: app
-
-Message: Machine active for 10429 seconds since last reported.
-PID: 207
-ReadGID: 80
-Sender: UserEventAgent
-Time: 2012-12-01 15:48:33 -0700
-com.apple.message.domain: com.apple.usage.activetime
-com.apple.message.summarize: YES
-com.apple.message.value: 10429
-
-Message: Machine active for 3585 seconds since last reported.
-PID: 207
-ReadGID: 80
-Sender: UserEventAgent
-Time: 2012-12-01 20:22:36 -0700
-com.apple.message.domain: com.apple.usage.activetime
-com.apple.message.summarize: YES
-com.apple.message.value: 3585
-
-Message: Machine active for 10521 seconds since last reported.
-PID: 207
-ReadGID: 80
-Sender: UserEventAgent
-Time: 2012-12-01 23:44:40 -0700
-com.apple.message.domain: com.apple.usage.activetime
-com.apple.message.summarize: YES
-com.apple.message.value: 10521
-
-Message: Machine active for 2178 seconds since last reported.
-PID: 207
-ReadGID: 80
-Sender: UserEventAgent
-Time: 2012-12-02 00:20:59 -0700
-com.apple.message.domain: com.apple.usage.activetime
-com.apple.message.summarize: YES
-com.apple.message.value: 2178
-
-Message: Machine active for 2 seconds since last reported.
-PID: 207
-ReadGID: 80
-Sender: UserEventAgent
-Time: 2012-12-02 00:21:01 -0700
-com.apple.message.domain: com.apple.usage.activetime
-com.apple.message.summarize: YES
-com.apple.message.value: 2
-
-Message: Machine active for 2 seconds since last reported.
-PID: 207
-ReadGID: 80
-Sender: UserEventAgent
-Time: 2012-12-02 00:21:04 -0700
-com.apple.message.domain: com.apple.usage.activetime
-com.apple.message.summarize: YES
-com.apple.message.value: 2
-
-Message: Machine active for 14160 seconds since last reported.
-PID: 234
-ReadGID: 80
-Sender: UserEventAgent
-Time: 2012-12-02 14:43:11 -0700
-com.apple.message.domain: com.apple.usage.activetime
-com.apple.message.summarize: YES
-com.apple.message.value: 14160
-
-Message: Machine active for 14160 seconds since last reported.
-PID: 234
-ReadGID: 80
-Sender: UserEventAgent
-Time: 2012-12-02 18:39:11 -0700
-com.apple.message.domain: com.apple.usage.activetime
-com.apple.message.summarize: YES
-com.apple.message.value: 14160
-
-Message: Machine active for 12744 seconds since last reported.
-PID: 234
-ReadGID: 80
-Sender: UserEventAgent
-Time: 2012-12-02 22:11:35 -0700
-com.apple.message.domain: com.apple.usage.activetime
-com.apple.message.summarize: YES
-com.apple.message.value: 12744
-
-Message: Machine active for 607 seconds since last reported.
-PID: 234
-ReadGID: 80
-Sender: UserEventAgent
-Time: 2012-12-02 22:21:56 -0700
-com.apple.message.domain: com.apple.usage.activetime
-com.apple.message.summarize: YES
-com.apple.message.value: 607
-
-PID: 3381
-ReadGID: 80
-Sender: CoreServicesUIAgent
-Time: 2012-12-02 23:03:33 -0700
-com.apple.message.domain: com.apple.usage.gatekeeper.open-unsafe-executable-type
-com.apple.message.signature: com.apple.application-bundle
-
-Message: assessment denied for app but overridden
-PID: 3427
-ReadGID: 80
-Sender: syspolicyd
-Time: 2012-12-02 23:03:33 -0700
-com.apple.message.domain: com.apple.security.assessment.outcome
-com.apple.message.signature: override:no usable signature
-com.apple.message.signature2: bundle:org.vim.MacVim
-com.apple.message.signature3: app
-
-PID: 3425
-ReadGID: 80
-Sender: ReportCrash
-Time: 2012-12-02 23:03:34 -0700
-com.apple.message.domain: com.apple.crashreporter.writereport.crash
-com.apple.message.result: YES
-com.apple.message.signature: launchd
-com.apple.message.signature2: org.vim.MacVim ||| ??? (???)
-com.apple.message.signature3: E987985A91CC05D68DAF17963E8C7C4C
-com.apple.message.summarize: YES
-
-PID: 3425
-ReadGID: 80
-Sender: ReportCrash
-Time: 2012-12-02 23:03:37 -0700
-com.apple.message.domain: com.apple.crashreporter.writereport.crash
-com.apple.message.result: YES
-com.apple.message.signature: launchd
-com.apple.message.signature2: org.vim.MacVim ||| ??? (???)
-com.apple.message.signature3: E987985A91CC05D68DAF17963E8C7C4C
-com.apple.message.summarize: YES
-
-PID: 3381
-ReadGID: 80
-Sender: CoreServicesUIAgent
-Time: 2012-12-02 23:03:41 -0700
-com.apple.message.domain: com.apple.usage.gatekeeper.open-unsafe-executable-type
-com.apple.message.signature: com.apple.application-bundle
-
-Message: assessment denied for app but overridden
-PID: 3427
-ReadGID: 80
-Sender: syspolicyd
-Time: 2012-12-02 23:03:41 -0700
-com.apple.message.domain: com.apple.security.assessment.outcome
-com.apple.message.signature: override:no usable signature
-com.apple.message.signature2: bundle:org.vim.MacVim
-com.apple.message.signature3: app
-
-PID: 3446
-ReadGID: 80
-Sender: CoreServicesUIAgent
-Time: 2012-12-02 23:05:56 -0700
-com.apple.message.domain: com.apple.usage.gatekeeper.open-unsafe-executable-type
-com.apple.message.signature: com.apple.application-bundle
-
-Message: assessment denied for app but overridden
-PID: 3427
-ReadGID: 80
-Sender: syspolicyd
-Time: 2012-12-02 23:05:56 -0700
-com.apple.message.domain: com.apple.security.assessment.outcome
-com.apple.message.signature: override:no usable signature
-com.apple.message.signature2: bundle:org.vim.MacVim
-com.apple.message.signature3: app
-
-Message: Machine active for 4941 seconds since last reported.
-PID: 234
-ReadGID: 80
-Sender: UserEventAgent
-Time: 2012-12-02 23:50:24 -0700
-com.apple.message.domain: com.apple.usage.activetime
-com.apple.message.summarize: YES
-com.apple.message.value: 4941
-
-Message: Machine active for 8 seconds since last reported.
-PID: 234
-ReadGID: 80
-Sender: UserEventAgent
-Time: 2012-12-02 23:50:33 -0700
-com.apple.message.domain: com.apple.usage.activetime
-com.apple.message.summarize: YES
-com.apple.message.value: 8
-
-PID: 11338
-ReadGID: 80
-Sender: CoreServicesUIAgent
-Time: 2012-12-03 09:03:35 -0700
-com.apple.message.domain: com.apple.usage.gatekeeper.open-unsafe-executable-type
-com.apple.message.signature: com.apple.application-bundle
-
-Message: assessment denied for app but overridden
-PID: 11362
-ReadGID: 80
-Sender: syspolicyd
-Time: 2012-12-03 09:03:36 -0700
-com.apple.message.domain: com.apple.security.assessment.outcome
-com.apple.message.signature: override:Developer ID
-com.apple.message.signature2: bundle:com.adobe.flashplayer.installmanager
-com.apple.message.signature3: app
-
-Message: Machine active for 14160 seconds since last reported.
-PID: 230
-ReadGID: 80
-Sender: UserEventAgent
-Time: 2012-12-03 11:22:23 -0700
-com.apple.message.domain: com.apple.usage.activetime
-com.apple.message.summarize: YES
-com.apple.message.value: 14160
-
-Message: Machine active for 2340 seconds since last reported.
-PID: 230
-ReadGID: 80
-Sender: UserEventAgent
-Time: 2012-12-03 12:01:24 -0700
-com.apple.message.domain: com.apple.usage.activetime
-com.apple.message.summarize: YES
-com.apple.message.value: 2340
-
-Message: Machine active for 145 seconds since last reported.
-PID: 230
-ReadGID: 80
-Sender: UserEventAgent
-Time: 2012-12-03 12:03:49 -0700
-com.apple.message.domain: com.apple.usage.activetime
-com.apple.message.summarize: YES
-com.apple.message.value: 145
-
-Message: Machine active for 3600 seconds since last reported.
-PID: 230
-ReadGID: 80
-Sender: UserEventAgent
-Time: 2012-12-03 13:03:50 -0700
-com.apple.message.domain: com.apple.usage.activetime
-com.apple.message.summarize: YES
-com.apple.message.value: 3600
-
-Message: Machine active for 15 seconds since last reported.
-PID: 230
-ReadGID: 80
-Sender: UserEventAgent
-Time: 2012-12-03 13:04:06 -0700
-com.apple.message.domain: com.apple.usage.activetime
-com.apple.message.summarize: YES
-com.apple.message.value: 15
-
-PID: 27887
-ReadGID: 80
-Sender: CoreServicesUIAgent
-Time: 2012-12-03 14:42:47 -0700
-com.apple.message.domain: com.apple.usage.gatekeeper.open-unsafe-executable-type
-com.apple.message.signature: com.apple.application-bundle
-
-Message: assessment denied for app but overridden
-PID: 11362
-ReadGID: 80
-Sender: syspolicyd
-Time: 2012-12-03 14:42:50 -0700
-com.apple.message.domain: com.apple.security.assessment.outcome
-com.apple.message.signature: override:Developer ID
-com.apple.message.signature2: bundle:com.skype.skype
-com.apple.message.signature3: app
-
-Message: Machine active for 13592 seconds since last reported.
-PID: 230
-ReadGID: 80
-Sender: UserEventAgent
-Time: 2012-12-03 16:50:38 -0700
-com.apple.message.domain: com.apple.usage.activetime
-com.apple.message.summarize: YES
-com.apple.message.value: 13592
-
-PID: 42469
-ReadGID: 80
-Sender: CoreServicesUIAgent
-Time: 2012-12-03 17:56:34 -0700
-com.apple.message.domain: com.apple.usage.gatekeeper.open-unsafe-executable-type
-com.apple.message.signature: com.apple.application-bundle
-
-Message: assessment denied for app but overridden
-PID: 11362
-ReadGID: 80
-Sender: syspolicyd
-Time: 2012-12-03 17:56:35 -0700
-com.apple.message.domain: com.apple.security.assessment.outcome
-com.apple.message.signature: override:Developer ID
-com.apple.message.signature2: bundle:com.Logitech.Control Center.Update
-com.apple.message.signature3: app
-
-Message: assessment denied for mpkg but overridden
-PID: 11362
-ReadGID: 80
-Sender: syspolicyd
-Time: 2012-12-03 18:03:13 -0700
-com.apple.message.domain: com.apple.security.assessment.outcome
-com.apple.message.signature: override:no usable signature
-com.apple.message.signature2: bundle:UNBUNDLED
-com.apple.message.signature3: mpkg
-
-Message: Machine active for 4577 seconds since last reported.
-PID: 230
-ReadGID: 80
-Sender: UserEventAgent
-Time: 2012-12-03 18:06:56 -0700
-com.apple.message.domain: com.apple.usage.activetime
-com.apple.message.summarize: YES
-com.apple.message.value: 4577
-
-Message: Machine active for 4 seconds since last reported.
-PID: 230
-ReadGID: 80
-Sender: UserEventAgent
-Time: 2012-12-03 18:07:01 -0700
-com.apple.message.domain: com.apple.usage.activetime
-com.apple.message.summarize: YES
-com.apple.message.value: 4
-
-Message: Machine active for 63 seconds since last reported.
-PID: 219
-ReadGID: 80
-Sender: UserEventAgent
-Time: 2012-12-03 18:09:04 -0700
-com.apple.message.domain: com.apple.usage.activetime
-com.apple.message.summarize: YES
-com.apple.message.value: 63
-
-Message: Machine active for 4 seconds since last reported.
-PID: 219
-ReadGID: 80
-Sender: UserEventAgent
-Time: 2012-12-03 18:09:08 -0700
-com.apple.message.domain: com.apple.usage.activetime
-com.apple.message.summarize: YES
-com.apple.message.value: 4
-
-PID: 1099
-ReadGID: 80
-Sender: CoreServicesUIAgent
-Time: 2012-12-03 18:09:36 -0700
-com.apple.message.domain: com.apple.usage.gatekeeper.open-unsafe-executable-type
-com.apple.message.signature: com.apple.application-bundle
-
-Message: assessment denied for app but overridden
-PID: 1100
-ReadGID: 80
-Sender: syspolicyd
-Time: 2012-12-03 18:09:37 -0700
-com.apple.message.domain: com.apple.security.assessment.outcome
-com.apple.message.signature: override:Developer ID
-com.apple.message.signature2: bundle:org.videolan.vlc
-com.apple.message.signature3: app
-
-Message: Machine active for 11780 seconds since last reported.
-PID: 219
-ReadGID: 80
-Sender: UserEventAgent
-Time: 2012-12-03 21:25:28 -0700
-com.apple.message.domain: com.apple.usage.activetime
-com.apple.message.summarize: YES
-com.apple.message.value: 11780
-
-PID: 3313
-ReadGID: 80
-Sender: ReportCrash
-Time: 2012-12-03 21:26:47 -0700
-com.apple.message.domain: com.apple.crashreporter.writereport.crash
-com.apple.message.result: NO
-com.apple.message.signature: com.apple.qtkitserver
-com.apple.message.signature2: com.apple.qtkitserver ||| 1.0 (1)
-com.apple.message.signature3: 18B119183A155DBF640D8771BBE9A079
-com.apple.message.summarize: YES
-
-Message: Machine active for 5996 seconds since last reported.
-PID: 219
-ReadGID: 80
-Sender: UserEventAgent
-Time: 2012-12-03 23:06:12 -0700
-com.apple.message.domain: com.apple.usage.activetime
-com.apple.message.summarize: YES
-com.apple.message.value: 5996
-
-Message: Machine active for 3 seconds since last reported.
-PID: 219
-ReadGID: 80
-Sender: UserEventAgent
-Time: 2012-12-03 23:06:15 -0700
-com.apple.message.domain: com.apple.usage.activetime
-com.apple.message.summarize: YES
-com.apple.message.value: 3
-
-Message: Machine active for 6 seconds since last reported.
-PID: 219
-ReadGID: 80
-Sender: UserEventAgent
-Time: 2012-12-03 23:06:21 -0700
-com.apple.message.domain: com.apple.usage.activetime
-com.apple.message.summarize: YES
-com.apple.message.value: 6
-
-Message: Machine active for 14160 seconds since last reported.
-PID: 233
-ReadGID: 80
-Sender: UserEventAgent
-Time: 2012-12-04 12:05:14 -0700
-com.apple.message.domain: com.apple.usage.activetime
-com.apple.message.summarize: YES
-com.apple.message.value: 14160
-
-PID: 6810
-ReadGID: 80
-Sender: ReportCrash
-Time: 2012-12-04 12:57:36 -0700
-com.apple.message.domain: com.apple.crashreporter.writereport.crash
-com.apple.message.result: YES
-com.apple.message.signature: Google Chrome
-com.apple.message.signature2: com.google.Chrome ||| 23.0.1271.95 (1271.95)
-com.apple.message.signature3: A45DF60034F3D245DFD6B682857F267A
-com.apple.message.summarize: YES
-
-Message: Machine active for 8503 seconds since last reported.
-PID: 233
-ReadGID: 80
-Sender: UserEventAgent
-Time: 2012-12-04 14:26:58 -0700
-com.apple.message.domain: com.apple.usage.activetime
-com.apple.message.summarize: YES
-com.apple.message.value: 8503
-
-</string>
- <key>lastModified</key>
- <date>2012-12-04T21:26:58Z</date>
- <key>source</key>
- <string>/var/log/DiagnosticMessages</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>cups_access_log_description</string>
- <key>byteSize</key>
- <integer>0</integer>
- <key>contents</key>
- <string></string>
- <key>lastModified</key>
- <date>2012-02-28T00:52:15Z</date>
- <key>source</key>
- <string>/var/log/cups/access_log</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>cups_error_log_description</string>
- <key>byteSize</key>
- <integer>0</integer>
- <key>contents</key>
- <string></string>
- <key>lastModified</key>
- <date>2012-02-28T00:52:15Z</date>
- <key>source</key>
- <string>/var/log/cups/error_log</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>install_log_description</string>
- <key>byteSize</key>
- <integer>893211</integer>
- <key>contents</key>
- <string>...
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: Outlook Installer.pkg#Office2011_all_proofing_norwegian_14.2.0.pkg : proofing_norwegian : 14.2.0
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: Install: "Portuguese"
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: Outlook Installer.pkg#Office2011_all_proofing_portuguese_14.2.0.pkg : proofing_portuguese : 14.2.0
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: Install: "Portuguese (Brazil)"
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: Outlook Installer.pkg#Office2011_all_proofing_brazilian_14.2.0.pkg : proofing_brazilian : 14.2.0
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: Install: "Spanish"
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: Outlook Installer.pkg#Office2011_all_proofing_spanish_14.2.0.pkg : proofing_spanish : 14.2.0
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: Install: "Swedish"
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: Outlook Installer.pkg#Office2011_all_proofing_swedish_14.2.0.pkg : proofing_swedish : 14.2.0
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: Install: "Czech"
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: Outlook Installer.pkg#Office2011_all_proofing_czech_14.2.0.pkg : proofing_czech : 14.2.0
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: Install: "Polish"
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: Outlook Installer.pkg#Office2011_all_proofing_polish_14.2.0.pkg : proofing_polish : 14.2.0
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: Install: "Russian"
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: Outlook Installer.pkg#Office2011_all_proofing_russian_14.2.0.pkg : proofing_russian : 14.2.0
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: Install: "Turkish"
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: Outlook Installer.pkg#Office2011_all_proofing_turkish_14.2.0.pkg : proofing_turkish : 14.2.0
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: Outlook Installer.pkg#mau_all_autoupdate_2.3.3.pkg : autoupdate : 2.3.3
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: Outlook Installer.pkg#merp_all_errorreporting_2.2.8.pkg : errorreporting : 2.2.8
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: Install: "Office Fonts"
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: Outlook Installer.pkg#Office2011_all_fonts_14.2.0.pkg : fonts : 14.2.0
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: Outlook Installer.pkg#Office2011_en_fonts_fontcollection_14.2.0.pkg : fonts_fontcollection : 14.2.0
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: Install: "Automator Actions"
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: Outlook Installer.pkg#Office2011_all_automator_14.2.0.pkg : automator : 14.2.0
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: Outlook Installer.pkg#Office2011_en_automator_workflow_14.2.0.pkg : automator_workflow : 14.2.0
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: Install: "Dock Icons"
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: Outlook Installer.pkg#Office2011_all_dock_14.2.0.pkg : dock : 14.2.0
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: ================================================================================
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: It took 0.01 seconds to summarize the package selections.
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: -[IFDInstallController(Private) _buildInstallPlan]: location = file://localhost
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_quit_14.2.0.pkg
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_licensing_14.2.0.pkg
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_en_required_14.2.0.pkg
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_setupasst_14.2.0.pkg
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_en_setupasst_resources_14.2.0.pkg
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_required_outlook_14.2.0.pkg
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_slt_outlook_standalone_14.2.0.pkg
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_en_readme_14.2.0.pkg
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_core_14.2.0.pkg
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_en_core_resources_14.2.0.pkg
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_en_core_themes_14.2.0.pkg
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_ooxml_14.2.0.pkg
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_en_sounds_14.2.0.pkg
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_en_clipart_14.2.0.pkg
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_clipart_search9_14.2.0.pkg
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_en_silverlight_14.2.0.pkg
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_en_flip4mac_14.2.0.pkg
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_en_langregister_14.2.0.pkg
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_sharepointbrowserplugin_14.2.0.pkg
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_en_sharepointbrowserplugin_resources_14.2.0.pkg
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_launch_14.2.0.pkg
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_outlook_14.2.0.pkg
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_en_outlook_resources_14.2.0.pkg
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_en_outlook_scriptmenuitems_14.2.0.pkg
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Messenger8_all_messenger_8.0.1.pkg
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#RDC_all_rdc_2.1.1.pkg
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_proofing_catalan_14.2.0.pkg
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_proofing_danish_14.2.0.pkg
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_proofing_dutch_14.2.0.pkg
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_proofing_english_14.2.0.pkg
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_proofing_finnish_14.2.0.pkg
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_proofing_french_14.2.0.pkg
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_proofing_german_14.2.0.pkg
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_proofing_italian_14.2.0.pkg
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_proofing_japanese_14.2.0.pkg
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_proofing_norwegian_14.2.0.pkg
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_proofing_portuguese_14.2.0.pkg
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_proofing_brazilian_14.2.0.pkg
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_proofing_spanish_14.2.0.pkg
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_proofing_swedish_14.2.0.pkg
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_proofing_czech_14.2.0.pkg
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_proofing_polish_14.2.0.pkg
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_proofing_russian_14.2.0.pkg
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_proofing_turkish_14.2.0.pkg
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#mau_all_autoupdate_2.3.3.pkg
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#merp_all_errorreporting_2.2.8.pkg
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_fonts_14.2.0.pkg
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_en_fonts_fontcollection_14.2.0.pkg
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_automator_14.2.0.pkg
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_en_automator_workflow_14.2.0.pkg
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_dock_14.2.0.pkg
-Dec 3 16:11:37 Pauls-MacBook-Pro Installer[29002]: Set authorization level to root for session
-Dec 3 16:11:40 Pauls-MacBook-Pro Installer[29002]: Will use PK session
-Dec 3 16:11:40 Pauls-MacBook-Pro Installer[29002]: Starting installation:
-Dec 3 16:11:40 Pauls-MacBook-Pro Installer[29002]: Configuring volume "Macintosh HD"
-Dec 3 16:11:40 Pauls-MacBook-Pro Installer[29002]: Preparing disk for local booted install.
-Dec 3 16:11:40 Pauls-MacBook-Pro Installer[29002]: Free space on "Macintosh HD": 679.07 GB (679065042944 bytes).
-Dec 3 16:11:40 Pauls-MacBook-Pro Installer[29002]: Create temporary directory "/var/folders/dl/y_jpk59978s9jm3bpx9ccmsc0000gn/T//Install.29002Enbich"
-Dec 3 16:11:40 Pauls-MacBook-Pro Installer[29002]: IFPKInstallElement (51 packages)
-Dec 3 16:11:40 Pauls-MacBook-Pro Installer[29002]: Using authorization level of root for IFPKInstallElement
-Dec 3 16:11:42 Pauls-MacBook-Pro installd[29012]: PackageKit: ----- Begin install -----
-Dec 3 16:11:42 Pauls-MacBook-Pro installd[29012]: PackageKit: request=PKInstallRequest &lt;51 packages, destination=/&gt;
-Dec 3 16:11:43 Pauls-MacBook-Pro installd[29012]: PackageKit: packages=(
- "PKLeopardPackage &lt;file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_quit_14.2.0.pkg&gt;",
- "PKLeopardPackage &lt;file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_licensing_14.2.0.pkg&gt;",
- "PKLeopardPackage &lt;file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_en_required_14.2.0.pkg&gt;",
- "PKLeopardPackage &lt;file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_setupasst_14.2.0.pkg&gt;",
- "PKLeopardPackage &lt;file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_en_setupasst_resources_14.2.0.pkg&gt;",
- "PKLeopardPackage &lt;file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_required_outlook_14.2.0.pkg&gt;",
- "PKLeopardPackage &lt;file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_slt_outlook_standalone_14.2.0.pkg&gt;",
- "PKLeopardPackage &lt;file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_en_readme_14.2.0.pkg&gt;",
- "PKLeopardPackage &lt;file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_core_14.2.0.pkg&gt;",
- "PKLeopardPackage &lt;file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_en_core_resources_14.2.0.pkg&gt;",
- "PKLeopardPackage &lt;file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_en_core_themes_14.2.0.pkg&gt;",
- "PKLeopardPackage &lt;file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_ooxml_14.2.0.pkg&gt;",
- "PKLeopardPackage &lt;file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_en_sounds_14.2.0.pkg&gt;",
- "PKLeopardPackage &lt;file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_en_clipart_14.2.0.pkg&gt;",
- "PKLeopardPackage &lt;file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_clipart_search9_14.2.0.pkg&gt;",
- "PKLeopardPackage &lt;file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_en_silverlight_14.2.0.pkg&gt;",
- "PKLeopardPackage &lt;file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_en_flip4mac_14.2.0.pkg&gt;",
- "PKLeopardPackage &lt;file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_en_langregister_14.2.0.pkg&gt;",
- "PKLeopardPackage &lt;file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_sharepointbrowserplugin_14.2.0.pkg&gt;",
- "PKLeopardPackage &lt;file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_en_sharepointbrowserplugin_resources_14.2.0.pkg&gt;",
- "PKLeopardPackage &lt;file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_launch_14.2.0.pkg&gt;",
- "PKLeopardPackage &lt;file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_outlook_14.2.0.pkg&gt;",
- "PKLeopardPackage &lt;file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_en_outlook_resources_14.2.0.pkg&gt;",
- "PKLeopardPackage &lt;file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_en_outlook_scriptmenuitems_14.2.0.pkg&gt;",
- "PKLeopardPackage &lt;file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Messenger8_all_messenger_8.0.1.pkg&gt;",
- "PKLeopardPackage &lt;file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#RDC_all_rdc_2.1.1.pkg&gt;",
- "PKLeopardPackage &lt;file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_proofing_catalan_14.2.0.pkg&gt;",
- "PKLeopardPackage &lt;file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_proofing_danish_14.2.0.pkg&gt;",
- "PKLeopardPackage &lt;file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_proofing_dutch_14.2.0.pkg&gt;",
- "PKLeopardPackage &lt;file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_proofing_english_14.2.0.pkg&gt;",
- "PKLeopardPackage &lt;file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_proofing_finnish_14.2.0.pkg&gt;",
- "PKLeopardPackage &lt;file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_proofing_french_14.2.0.pkg&gt;",
- "PKLeopardPackage &lt;file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_proofing_german_14.2.0.pkg&gt;",
- "PKLeopardPackage &lt;file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_proofing_italian_14.2.0.pkg&gt;",
- "PKLeopardPackage &lt;file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_proofing_japanese_14.2.0.pkg&gt;",
- "PKLeopardPackage &lt;file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_proofing_norwegian_14.2.0.pkg&gt;",
- "PKLeopardPackage &lt;file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_proofing_portuguese_14.2.0.pkg&gt;",
- "PKLeopardPackage &lt;file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_proofing_brazilian_14.2.0.pkg&gt;",
- "PKLeopardPackage &lt;file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_proofing_spanish_14.2.0.pkg&gt;",
- "PKLeopardPackage &lt;file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_proofing_swedish_14.2.0.pkg&gt;",
- "PKLeopardPackage &lt;file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_proofing_czech_14.2.0.pkg&gt;",
- "PKLeopardPackage &lt;file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_proofing_polish_14.2.0.pkg&gt;",
- "PKLeopardPackage &lt;file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_proofing_russian_14.2.0.pkg&gt;",
- "PKLeopardPackage &lt;file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_proofing_turkish_14.2.0.pkg&gt;",
- "PKLeopardPackage &lt;file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#mau_all_autoupdate_2.3.3.pkg&gt;",
- "PKLeopardPackage &lt;file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#merp_all_errorreporting_2.2.8.pkg&gt;",
- "PKLeopardPackage &lt;file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_fonts_14.2.0.pkg&gt;",
- "PKLeopardPackage &lt;file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_en_fonts_fontcollection_14.2.0.pkg&gt;",
- "PKLeopardPackage &lt;file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_automator_14.2.0.pkg&gt;",
- "PKLeopardPackage &lt;file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_en_automator_workflow_14.2.0.pkg&gt;",
- "PKLeopardPackage &lt;file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_dock_14.2.0.pkg&gt;"
- )
-Dec 3 16:11:48 Pauls-MacBook-Pro installd[29012]: PackageKit: Extracting file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_quit_14.2.0.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/Cleanup At Startup/PKInstallSandbox-tmp/Root, uid=0)
-Dec 3 16:11:48 Pauls-MacBook-Pro installd[29012]: PackageKit: Extracting file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_licensing_14.2.0.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/Cleanup At Startup/PKInstallSandbox-tmp/Root, uid=0)
-Dec 3 16:11:48 Pauls-MacBook-Pro installd[29012]: PackageKit: Extracting file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_en_required_14.2.0.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/Cleanup At Startup/PKInstallSandbox-tmp/Root, uid=0)
-Dec 3 16:11:48 Pauls-MacBook-Pro installd[29012]: PackageKit: Extracting file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_setupasst_14.2.0.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/Cleanup At Startup/PKInstallSandbox-tmp/Root, uid=0)
-Dec 3 16:11:48 Pauls-MacBook-Pro installd[29012]: PackageKit: Extracting file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_en_setupasst_resources_14.2.0.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/Cleanup At Startup/PKInstallSandbox-tmp/Root, uid=0)
-Dec 3 16:11:48 Pauls-MacBook-Pro installd[29012]: PackageKit: Extracting file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_required_outlook_14.2.0.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/Cleanup At Startup/PKInstallSandbox-tmp/Root, uid=0)
-Dec 3 16:11:48 Pauls-MacBook-Pro installd[29012]: PackageKit: Extracting file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_slt_outlook_standalone_14.2.0.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/Cleanup At Startup/PKInstallSandbox-tmp/Root, uid=0)
-Dec 3 16:11:48 Pauls-MacBook-Pro installd[29012]: PackageKit: Extracting file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_en_readme_14.2.0.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/Cleanup At Startup/PKInstallSandbox-tmp/Root, uid=0)
-Dec 3 16:11:49 Pauls-MacBook-Pro installd[29012]: PackageKit: Extracting file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_core_14.2.0.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/Cleanup At Startup/PKInstallSandbox-tmp/Root, uid=0)
-Dec 3 16:12:00 Pauls-MacBook-Pro installd[29012]: PackageKit: Extracting file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_en_core_resources_14.2.0.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/Cleanup At Startup/PKInstallSandbox-tmp/Root, uid=0)
-Dec 3 16:12:02 Pauls-MacBook-Pro installd[29012]: PackageKit: Extracting file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_en_core_themes_14.2.0.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/Cleanup At Startup/PKInstallSandbox-tmp/Root, uid=0)
-Dec 3 16:12:03 Pauls-MacBook-Pro installd[29012]: PackageKit: Extracting file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_ooxml_14.2.0.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/Cleanup At Startup/PKInstallSandbox-tmp/Root, uid=0)
-Dec 3 16:12:04 Pauls-MacBook-Pro installd[29012]: PackageKit: Extracting file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_en_sounds_14.2.0.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/Cleanup At Startup/PKInstallSandbox-tmp/Root, uid=0)
-Dec 3 16:12:08 Pauls-MacBook-Pro installd[29012]: PackageKit: Extracting file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_en_clipart_14.2.0.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/Cleanup At Startup/PKInstallSandbox-tmp/Root, uid=0)
-Dec 3 16:12:15 Pauls-MacBook-Pro installd[29012]: PackageKit: Extracting file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_clipart_search9_14.2.0.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/Cleanup At Startup/PKInstallSandbox-tmp/Root, uid=0)
-Dec 3 16:12:15 Pauls-MacBook-Pro installd[29012]: PackageKit: Extracting file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_en_silverlight_14.2.0.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/Cleanup At Startup/PKInstallSandbox-tmp/Root, uid=0)
-Dec 3 16:12:15 Pauls-MacBook-Pro installd[29012]: PackageKit: Extracting file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_en_flip4mac_14.2.0.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/Cleanup At Startup/PKInstallSandbox-tmp/Root, uid=0)
-Dec 3 16:12:15 Pauls-MacBook-Pro installd[29012]: PackageKit: Extracting file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_en_langregister_14.2.0.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/Cleanup At Startup/PKInstallSandbox-tmp/Root, uid=0)
-Dec 3 16:12:15 Pauls-MacBook-Pro installd[29012]: PackageKit: Extracting file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_sharepointbrowserplugin_14.2.0.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/Cleanup At Startup/PKInstallSandbox-tmp/Root, uid=0)
-Dec 3 16:12:15 Pauls-MacBook-Pro installd[29012]: PackageKit: Extracting file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_en_sharepointbrowserplugin_resources_14.2.0.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/Cleanup At Startup/PKInstallSandbox-tmp/Root, uid=0)
-Dec 3 16:12:15 Pauls-MacBook-Pro installd[29012]: PackageKit: Extracting file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_launch_14.2.0.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/Cleanup At Startup/PKInstallSandbox-tmp/Root, uid=0)
-Dec 3 16:12:16 Pauls-MacBook-Pro installd[29012]: PackageKit: Extracting file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_outlook_14.2.0.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/Cleanup At Startup/PKInstallSandbox-tmp/Root, uid=0)
-Dec 3 16:12:18 Pauls-MacBook-Pro installd[29012]: PackageKit: Extracting file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_en_outlook_resources_14.2.0.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/Cleanup At Startup/PKInstallSandbox-tmp/Root, uid=0)
-Dec 3 16:12:19 Pauls-MacBook-Pro installd[29012]: PackageKit: Extracting file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_en_outlook_scriptmenuitems_14.2.0.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/Cleanup At Startup/PKInstallSandbox-tmp/Root, uid=0)
-Dec 3 16:12:19 Pauls-MacBook-Pro installd[29012]: PackageKit: Extracting file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Messenger8_all_messenger_8.0.1.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/Cleanup At Startup/PKInstallSandbox-tmp/Root, uid=0)
-Dec 3 16:12:26 Pauls-MacBook-Pro installd[29012]: PackageKit: Extracting file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#RDC_all_rdc_2.1.1.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/Cleanup At Startup/PKInstallSandbox-tmp/Root, uid=0)
-Dec 3 16:12:28 Pauls-MacBook-Pro installd[29012]: PackageKit: Extracting file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_proofing_catalan_14.2.0.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/Cleanup At Startup/PKInstallSandbox-tmp/Root, uid=0)
-Dec 3 16:12:29 Pauls-MacBook-Pro installd[29012]: PackageKit: Extracting file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_proofing_danish_14.2.0.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/Cleanup At Startup/PKInstallSandbox-tmp/Root, uid=0)
-Dec 3 16:12:29 Pauls-MacBook-Pro installd[29012]: PackageKit: Extracting file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_proofing_dutch_14.2.0.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/Cleanup At Startup/PKInstallSandbox-tmp/Root, uid=0)
-Dec 3 16:12:29 Pauls-MacBook-Pro installd[29012]: PackageKit: Extracting file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_proofing_english_14.2.0.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/Cleanup At Startup/PKInstallSandbox-tmp/Root, uid=0)
-Dec 3 16:12:30 Pauls-MacBook-Pro installd[29012]: PackageKit: Extracting file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_proofing_finnish_14.2.0.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/Cleanup At Startup/PKInstallSandbox-tmp/Root, uid=0)
-Dec 3 16:12:30 Pauls-MacBook-Pro installd[29012]: PackageKit: Extracting file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_proofing_french_14.2.0.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/Cleanup At Startup/PKInstallSandbox-tmp/Root, uid=0)
-Dec 3 16:12:30 Pauls-MacBook-Pro installd[29012]: PackageKit: Extracting file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_proofing_german_14.2.0.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/Cleanup At Startup/PKInstallSandbox-tmp/Root, uid=0)
-Dec 3 16:12:31 Pauls-MacBook-Pro installd[29012]: PackageKit: Extracting file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_proofing_italian_14.2.0.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/Cleanup At Startup/PKInstallSandbox-tmp/Root, uid=0)
-Dec 3 16:12:33 Pauls-MacBook-Pro installd[29012]: PackageKit: Extracting file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_proofing_japanese_14.2.0.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/Cleanup At Startup/PKInstallSandbox-tmp/Root, uid=0)
-Dec 3 16:12:33 Pauls-MacBook-Pro installd[29012]: PackageKit: Extracting file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_proofing_norwegian_14.2.0.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/Cleanup At Startup/PKInstallSandbox-tmp/Root, uid=0)
-Dec 3 16:12:33 Pauls-MacBook-Pro installd[29012]: PackageKit: Extracting file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_proofing_portuguese_14.2.0.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/Cleanup At Startup/PKInstallSandbox-tmp/Root, uid=0)
-Dec 3 16:12:34 Pauls-MacBook-Pro installd[29012]: PackageKit: Extracting file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_proofing_brazilian_14.2.0.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/Cleanup At Startup/PKInstallSandbox-tmp/Root, uid=0)
-Dec 3 16:12:34 Pauls-MacBook-Pro installd[29012]: PackageKit: Extracting file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_proofing_spanish_14.2.0.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/Cleanup At Startup/PKInstallSandbox-tmp/Root, uid=0)
-Dec 3 16:12:34 Pauls-MacBook-Pro installd[29012]: PackageKit: Extracting file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_proofing_swedish_14.2.0.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/Cleanup At Startup/PKInstallSandbox-tmp/Root, uid=0)
-Dec 3 16:12:35 Pauls-MacBook-Pro installd[29012]: PackageKit: Extracting file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_proofing_czech_14.2.0.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/Cleanup At Startup/PKInstallSandbox-tmp/Root, uid=0)
-Dec 3 16:12:35 Pauls-MacBook-Pro installd[29012]: PackageKit: Extracting file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_proofing_polish_14.2.0.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/Cleanup At Startup/PKInstallSandbox-tmp/Root, uid=0)
-Dec 3 16:12:35 Pauls-MacBook-Pro installd[29012]: PackageKit: Extracting file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_proofing_russian_14.2.0.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/Cleanup At Startup/PKInstallSandbox-tmp/Root, uid=0)
-Dec 3 16:12:36 Pauls-MacBook-Pro installd[29012]: PackageKit: Extracting file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_proofing_turkish_14.2.0.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/Cleanup At Startup/PKInstallSandbox-tmp/Root, uid=0)
-Dec 3 16:12:37 Pauls-MacBook-Pro installd[29012]: PackageKit: Extracting file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#mau_all_autoupdate_2.3.3.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/Cleanup At Startup/PKInstallSandbox-tmp/Root, uid=0)
-Dec 3 16:12:37 Pauls-MacBook-Pro installd[29012]: PackageKit: Extracting file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#merp_all_errorreporting_2.2.8.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/Cleanup At Startup/PKInstallSandbox-tmp/Root, uid=0)
-Dec 3 16:12:40 Pauls-MacBook-Pro installd[29012]: PackageKit: Extracting file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_fonts_14.2.0.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/Cleanup At Startup/PKInstallSandbox-tmp/Root, uid=0)
-Dec 3 16:12:47 Pauls-MacBook-Pro installd[29012]: PackageKit: Extracting file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_en_fonts_fontcollection_14.2.0.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/Cleanup At Startup/PKInstallSandbox-tmp/Root, uid=0)
-Dec 3 16:12:47 Pauls-MacBook-Pro installd[29012]: PackageKit: Extracting file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_automator_14.2.0.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/Cleanup At Startup/PKInstallSandbox-tmp/Root, uid=0)
-Dec 3 16:12:49 Pauls-MacBook-Pro installd[29012]: PackageKit: Extracting file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_en_automator_workflow_14.2.0.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/Cleanup At Startup/PKInstallSandbox-tmp/Root, uid=0)
-Dec 3 16:12:49 Pauls-MacBook-Pro installd[29012]: PackageKit: Extracting file://localhost/Volumes/Microsoft%20Outlook%202011/Outlook%20Installer.pkg#Office2011_all_dock_14.2.0.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/Cleanup At Startup/PKInstallSandbox-tmp/Root, uid=0)
-Dec 3 16:12:51 Pauls-MacBook-Pro installd[29012]: PackageKit: Executing script "./preinstall" in /private/tmp/PKInstallSandbox.uc24eP/Scripts/com.microsoft.office.all.quit.pkg.14.2.0.r1vrKU
-Dec 3 16:12:51 Pauls-MacBook-Pro installd[29012]: ./preinstall: Not running /tmp/PKInstallSandbox.uc24eP/Scripts/com.microsoft.office.all.quit.pkg.14.2.0.r1vrKU/QuitApps.app/Contents/MacOS/QuitApps for system version 10.7 GUI install.
-Dec 3 16:12:51 Pauls-MacBook-Pro installd[29012]: PackageKit: Executing script "./preinstall" in /private/tmp/PKInstallSandbox.uc24eP/Scripts/com.microsoft.office.all.licensing.pkg.14.2.0.pVotAd
-Dec 3 16:12:51 Pauls-MacBook-Pro installd[29012]: ./preinstall: launchctl: Couldn't stat("/Library/LaunchDaemons/com.microsoft.office.licensing.helper.plist"): No such file or directory
-Dec 3 16:12:51 Pauls-MacBook-Pro installd[29012]: ./preinstall: nothing found to unload
-Dec 3 16:12:51 Pauls-MacBook-Pro installd[29012]: PackageKit: Shoving /var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/Cleanup At Startup/PKInstallSandbox-tmp/Root (3 items) to /
-Dec 3 16:12:51 Pauls-MacBook-Pro installd[29012]: PackageKit: Executing script "./postinstall" in /private/tmp/PKInstallSandbox.uc24eP/Scripts/com.microsoft.office.all.licensing.pkg.14.2.0.pVotAd
-Dec 3 16:12:51 Pauls-MacBook-Pro installd[29012]: PackageKit: Executing script "./postinstall" in /private/tmp/PKInstallSandbox.uc24eP/Scripts/com.microsoft.office.en.required.pkg.14.2.0.23C5b6
-Dec 3 16:12:53 Pauls-MacBook-Pro installd[29012]: ./postinstall: Setting custom icon bit for '/Applications/Microsoft Office 2011'
-Dec 3 16:12:53 Pauls-MacBook-Pro installd[29012]: PackageKit: Executing script "./postinstall" in /private/tmp/PKInstallSandbox.uc24eP/Scripts/com.microsoft.office.all.launch.pkg.14.2.0.5pDZWw
-Dec 3 16:12:53 Pauls-MacBook-Pro installd[29012]: PackageKit: Executing script "./postinstall" in /private/tmp/PKInstallSandbox.uc24eP/Scripts/com.microsoft.mau.all.autoupdate.pkg.2.3.3.JIbrpd
-Dec 3 16:12:53 Pauls-MacBook-Pro installd[29012]: PackageKit: Executing script "./postinstall" in /private/tmp/PKInstallSandbox.uc24eP/Scripts/com.microsoft.merp.all.errorreporting.pkg.2.2.8.KPIXRg
-Dec 3 16:12:54 Pauls-MacBook-Pro installd[29012]: PackageKit: Executing script "./postinstall" in /private/tmp/PKInstallSandbox.uc24eP/Scripts/com.microsoft.office.all.fonts.pkg.14.2.0.MB3CJD
-Dec 3 16:12:54 Pauls-MacBook-Pro installd[29012]: ./postinstall: 2012-12-03 16:12:54.853 font_util[29092:707] Disabling duplicate font '/Library/Fonts/Arial Bold Italic.ttf'
-Dec 3 16:12:54 Pauls-MacBook-Pro installd[29012]: ./postinstall: 2012-12-03 16:12:54.854 font_util[29092:707] Disabling duplicate font '/Library/Fonts/Arial Bold.ttf'
-Dec 3 16:12:54 Pauls-MacBook-Pro installd[29012]: ./postinstall: 2012-12-03 16:12:54.855 font_util[29092:707] Disabling duplicate font '/Library/Fonts/Arial Italic.ttf'
-Dec 3 16:12:54 Pauls-MacBook-Pro installd[29012]: ./postinstall: 2012-12-03 16:12:54.855 font_util[29092:707] Disabling duplicate font '/Library/Fonts/Arial.ttf'
-Dec 3 16:12:54 Pauls-MacBook-Pro installd[29012]: ./postinstall: 2012-12-03 16:12:54.856 font_util[29092:707] Disabling duplicate font '/Library/Fonts/Brush Script.ttf'
-Dec 3 16:12:54 Pauls-MacBook-Pro installd[29012]: ./postinstall: 2012-12-03 16:12:54.857 font_util[29092:707] Disabling duplicate font '/Library/Fonts/Times New Roman Bold Italic.ttf'
-Dec 3 16:12:54 Pauls-MacBook-Pro installd[29012]: ./postinstall: 2012-12-03 16:12:54.858 font_util[29092:707] Disabling duplicate font '/Library/Fonts/Times New Roman Bold.ttf'
-Dec 3 16:12:54 Pauls-MacBook-Pro installd[29012]: ./postinstall: 2012-12-03 16:12:54.858 font_util[29092:707] Disabling duplicate font '/Library/Fonts/Times New Roman Italic.ttf'
-Dec 3 16:12:54 Pauls-MacBook-Pro installd[29012]: ./postinstall: 2012-12-03 16:12:54.859 font_util[29092:707] Disabling duplicate font '/Library/Fonts/Times New Roman.ttf'
-Dec 3 16:12:54 Pauls-MacBook-Pro installd[29012]: ./postinstall: 2012-12-03 16:12:54.859 font_util[29092:707] Disabling duplicate font '/Library/Fonts/Verdana Bold Italic.ttf'
-Dec 3 16:12:54 Pauls-MacBook-Pro installd[29012]: ./postinstall: 2012-12-03 16:12:54.860 font_util[29092:707] Disabling duplicate font '/Library/Fonts/Verdana Bold.ttf'
-Dec 3 16:12:54 Pauls-MacBook-Pro installd[29012]: ./postinstall: 2012-12-03 16:12:54.860 font_util[29092:707] Disabling duplicate font '/Library/Fonts/Verdana Italic.ttf'
-Dec 3 16:12:54 Pauls-MacBook-Pro installd[29012]: ./postinstall: 2012-12-03 16:12:54.861 font_util[29092:707] Disabling duplicate font '/Library/Fonts/Verdana.ttf'
-Dec 3 16:12:54 Pauls-MacBook-Pro installd[29012]: ./postinstall: 2012-12-03 16:12:54.861 font_util[29092:707] Disabling duplicate font '/Library/Fonts/Wingdings 2.ttf'
-Dec 3 16:12:54 Pauls-MacBook-Pro installd[29012]: ./postinstall: 2012-12-03 16:12:54.861 font_util[29092:707] Disabling duplicate font '/Library/Fonts/Wingdings 3.ttf'
-Dec 3 16:12:54 Pauls-MacBook-Pro installd[29012]: ./postinstall: 2012-12-03 16:12:54.862 font_util[29092:707] Disabling duplicate font '/Library/Fonts/Wingdings.ttf'
-Dec 3 16:12:55 Pauls-MacBook-Pro installd[29012]: ./postinstall: mv: rename /Library/Fonts/Microsoft/Arial to /Library/Fonts Disabled/Arial: No such file or directory
-Dec 3 16:12:55 Pauls-MacBook-Pro installd[29012]: ./postinstall: mv: rename /Library/Fonts/Microsoft/Times New Roman to /Library/Fonts Disabled/Times New Roman: No such file or directory
-Dec 3 16:12:55 Pauls-MacBook-Pro installd[29012]: ./postinstall: mv: rename /Library/Fonts/Microsoft/Verdana to /Library/Fonts Disabled/Verdana: No such file or directory
-Dec 3 16:12:55 Pauls-MacBook-Pro installd[29012]: ./postinstall: mv: rename /Library/Fonts/Microsoft/Wingdings to /Library/Fonts Disabled/Wingdings: No such file or directory
-Dec 3 16:12:55 Pauls-MacBook-Pro installd[29012]: ./postinstall: mv: rename /Library/Fonts/Microsoft/Wingdings 2 to /Library/Fonts Disabled/Wingdings 2: No such file or directory
-Dec 3 16:12:55 Pauls-MacBook-Pro installd[29012]: ./postinstall: mv: rename /Library/Fonts/Microsoft/Wingdings 3 to /Library/Fonts Disabled/Wingdings 3: No such file or directory
-Dec 3 16:12:55 Pauls-MacBook-Pro installd[29012]: ./postinstall: mv: rename /Users/paul/Library/Fonts/Microsoft/Arial to /Users/paul/Library/Fonts Disabled/Arial: No such file or directory
-Dec 3 16:12:55 Pauls-MacBook-Pro installd[29012]: ./postinstall: mv: rename /Users/paul/Library/Fonts/Microsoft/Times New Roman to /Users/paul/Library/Fonts Disabled/Times New Roman: No such file or directory
-Dec 3 16:12:55 Pauls-MacBook-Pro installd[29012]: ./postinstall: mv: rename /Users/paul/Library/Fonts/Microsoft/Verdana to /Users/paul/Library/Fonts Disabled/Verdana: No such file or directory
-Dec 3 16:12:55 Pauls-MacBook-Pro installd[29012]: ./postinstall: mv: rename /Users/paul/Library/Fonts/Microsoft/Wingdings to /Users/paul/Library/Fonts Disabled/Wingdings: No such file or directory
-Dec 3 16:12:55 Pauls-MacBook-Pro installd[29012]: ./postinstall: mv: rename /Users/paul/Library/Fonts/Microsoft/Wingdings 2 to /Users/paul/Library/Fonts Disabled/Wingdings 2: No such file or directory
-Dec 3 16:12:55 Pauls-MacBook-Pro installd[29012]: ./postinstall: mv: rename /Users/paul/Library/Fonts/Microsoft/Wingdings 3 to /Users/paul/Library/Fonts Disabled/Wingdings 3: No such file or directory
-Dec 3 16:12:55 Pauls-MacBook-Pro installd[29012]: ./postinstall: Why is SendScanFontDirectoriesMessage being called?
-Dec 3 16:12:55 Pauls-MacBook-Pro installd[29012]: PackageKit: Executing script "./postinstall" in /private/tmp/PKInstallSandbox.uc24eP/Scripts/com.microsoft.office.all.dock.pkg.14.2.0.wZFnqU
-Dec 3 16:12:57 Pauls-MacBook-Pro installd[29012]: ./postinstall: 2012-12-03 16:12:57.712 set_dock_tiles[29147:d07] Adding Dock item (/Applications/Microsoft Office 2011/Microsoft Outlook.app/)
-Dec 3 16:12:58 Pauls-MacBook-Pro installd[29012]: ./postinstall: 2012-12-03 16:12:58.223 set_dock_tiles[29151:d07] Adding Dock item (/Applications/Microsoft Messenger.app/)
-Dec 3 16:12:58 Pauls-MacBook-Pro installd[29012]: ./postinstall: 2012-12-03 16:12:58.404 set_dock_tiles[29153:d07] Adding Dock item (/Applications/Remote Desktop Connection.app/)
-Dec 3 16:13:00 Pauls-MacBook-Pro installd[29012]: PackageKit: Writing receipt for com.microsoft.office.all.quit.pkg.14.2.0 to /private/var/db/receipts
-Dec 3 16:13:00 Pauls-MacBook-Pro installd[29012]: PackageKit: Writing receipt for com.microsoft.office.all.licensing.pkg.14.2.0 to /private/var/db/receipts
-Dec 3 16:13:00 Pauls-MacBook-Pro installd[29012]: PackageKit: Writing receipt for com.microsoft.office.en.required.pkg.14.2.0 to /private/var/db/receipts
-Dec 3 16:13:00 Pauls-MacBook-Pro installd[29012]: PackageKit: Writing receipt for com.microsoft.office.all.setupasst.pkg.14.2.0 to /private/var/db/receipts
-Dec 3 16:13:00 Pauls-MacBook-Pro installd[29012]: PackageKit: Writing receipt for com.microsoft.office.en.setupasst_resources.pkg.14.2.0 to /private/var/db/receipts
-Dec 3 16:13:00 Pauls-MacBook-Pro installd[29012]: PackageKit: Writing receipt for com.microsoft.office.all.required_outlook.pkg.14.2.0 to /private/var/db/receipts
-Dec 3 16:13:00 Pauls-MacBook-Pro installd[29012]: PackageKit: Writing receipt for com.microsoft.office.all.slt_outlook_standalone.pkg.14.2.0 to /private/var/db/receipts
-Dec 3 16:13:00 Pauls-MacBook-Pro installd[29012]: PackageKit: Writing receipt for com.microsoft.office.en.readme.pkg.14.2.0 to /private/var/db/receipts
-Dec 3 16:13:01 Pauls-MacBook-Pro installd[29012]: PackageKit: Writing receipt for com.microsoft.office.all.core.pkg.14.2.0 to /private/var/db/receipts
-Dec 3 16:13:01 Pauls-MacBook-Pro installd[29012]: PackageKit: Writing receipt for com.microsoft.office.en.core_resources.pkg.14.2.0 to /private/var/db/receipts
-Dec 3 16:13:01 Pauls-MacBook-Pro installd[29012]: PackageKit: Writing receipt for com.microsoft.office.en.core_themes.pkg.14.2.0 to /private/var/db/receipts
-Dec 3 16:13:01 Pauls-MacBook-Pro installd[29012]: PackageKit: Writing receipt for com.microsoft.office.all.ooxml.pkg.14.2.0 to /private/var/db/receipts
-Dec 3 16:13:01 Pauls-MacBook-Pro installd[29012]: PackageKit: Writing receipt for com.microsoft.office.en.sounds.pkg.14.2.0 to /private/var/db/receipts
-Dec 3 16:13:02 Pauls-MacBook-Pro installd[29012]: PackageKit: Writing receipt for com.microsoft.office.en.clipart.pkg.14.2.0 to /private/var/db/receipts
-Dec 3 16:13:02 Pauls-MacBook-Pro installd[29012]: PackageKit: Writing receipt for com.microsoft.office.all.clipart_search9.pkg.14.2.0 to /private/var/db/receipts
-Dec 3 16:13:02 Pauls-MacBook-Pro installd[29012]: PackageKit: Writing receipt for com.microsoft.office.en.silverlight.pkg.14.2.0 to /private/var/db/receipts
-Dec 3 16:13:02 Pauls-MacBook-Pro installd[29012]: PackageKit: Writing receipt for com.microsoft.office.en.flip4mac.pkg.14.2.0 to /private/var/db/receipts
-Dec 3 16:13:02 Pauls-MacBook-Pro installd[29012]: PackageKit: Writing receipt for com.microsoft.office.en.langregister.pkg.14.2.0 to /private/var/db/receipts
-Dec 3 16:13:02 Pauls-MacBook-Pro installd[29012]: PackageKit: Writing receipt for com.microsoft.office.all.sharepointbrowserplugin.pkg.14.2.0 to /private/var/db/receipts
-Dec 3 16:13:02 Pauls-MacBook-Pro installd[29012]: PackageKit: Writing receipt for com.microsoft.office.en.sharepointbrowserplugin_resources.pkg.14.2.0 to /private/var/db/receipts
-Dec 3 16:13:02 Pauls-MacBook-Pro installd[29012]: PackageKit: Writing receipt for com.microsoft.office.all.launch.pkg.14.2.0 to /private/var/db/receipts
-Dec 3 16:13:03 Pauls-MacBook-Pro installd[29012]: PackageKit: Writing receipt for com.microsoft.office.all.outlook.pkg.14.2.0 to /private/var/db/receipts
-Dec 3 16:13:03 Pauls-MacBook-Pro installd[29012]: PackageKit: Writing receipt for com.microsoft.office.en.outlook_resources.pkg.14.2.0 to /private/var/db/receipts
-Dec 3 16:13:03 Pauls-MacBook-Pro installd[29012]: PackageKit: Writing receipt for com.microsoft.office.en.outlook_scriptmenuitems.pkg.14.2.0 to /private/var/db/receipts
-Dec 3 16:13:03 Pauls-MacBook-Pro installd[29012]: PackageKit: Writing receipt for com.microsoft.msgr.all.messenger.pkg.8.0.1 to /private/var/db/receipts
-Dec 3 16:13:03 Pauls-MacBook-Pro installd[29012]: PackageKit: Writing receipt for com.microsoft.rdc.all.rdc.pkg.2.1.1 to /private/var/db/receipts
-Dec 3 16:13:03 Pauls-MacBook-Pro installd[29012]: PackageKit: Writing receipt for com.microsoft.office.all.proofing_catalan.pkg.14.2.0 to /private/var/db/receipts
-Dec 3 16:13:03 Pauls-MacBook-Pro installd[29012]: PackageKit: Writing receipt for com.microsoft.office.all.proofing_danish.pkg.14.2.0 to /private/var/db/receipts
-Dec 3 16:13:03 Pauls-MacBook-Pro installd[29012]: PackageKit: Writing receipt for com.microsoft.office.all.proofing_dutch.pkg.14.2.0 to /private/var/db/receipts
-Dec 3 16:13:03 Pauls-MacBook-Pro installd[29012]: PackageKit: Writing receipt for com.microsoft.office.all.proofing_english.pkg.14.2.0 to /private/var/db/receipts
-Dec 3 16:13:03 Pauls-MacBook-Pro installd[29012]: PackageKit: Writing receipt for com.microsoft.office.all.proofing_finnish.pkg.14.2.0 to /private/var/db/receipts
-Dec 3 16:13:03 Pauls-MacBook-Pro installd[29012]: PackageKit: Writing receipt for com.microsoft.office.all.proofing_french.pkg.14.2.0 to /private/var/db/receipts
-Dec 3 16:13:03 Pauls-MacBook-Pro installd[29012]: PackageKit: Writing receipt for com.microsoft.office.all.proofing_german.pkg.14.2.0 to /private/var/db/receipts
-Dec 3 16:13:03 Pauls-MacBook-Pro installd[29012]: PackageKit: Writing receipt for com.microsoft.office.all.proofing_italian.pkg.14.2.0 to /private/var/db/receipts
-Dec 3 16:13:03 Pauls-MacBook-Pro installd[29012]: PackageKit: Writing receipt for com.microsoft.office.all.proofing_japanese.pkg.14.2.0 to /private/var/db/receipts
-Dec 3 16:13:03 Pauls-MacBook-Pro installd[29012]: PackageKit: Writing receipt for com.microsoft.office.all.proofing_norwegian.pkg.14.2.0 to /private/var/db/receipts
-Dec 3 16:13:03 Pauls-MacBook-Pro installd[29012]: PackageKit: Writing receipt for com.microsoft.office.all.proofing_portuguese.pkg.14.2.0 to /private/var/db/receipts
-Dec 3 16:13:03 Pauls-MacBook-Pro installd[29012]: PackageKit: Writing receipt for com.microsoft.office.all.proofing_brazilian.pkg.14.2.0 to /private/var/db/receipts
-Dec 3 16:13:03 Pauls-MacBook-Pro installd[29012]: PackageKit: Writing receipt for com.microsoft.office.all.proofing_spanish.pkg.14.2.0 to /private/var/db/receipts
-Dec 3 16:13:03 Pauls-MacBook-Pro installd[29012]: PackageKit: Writing receipt for com.microsoft.office.all.proofing_swedish.pkg.14.2.0 to /private/var/db/receipts
-Dec 3 16:13:03 Pauls-MacBook-Pro installd[29012]: PackageKit: Writing receipt for com.microsoft.office.all.proofing_czech.pkg.14.2.0 to /private/var/db/receipts
-Dec 3 16:13:04 Pauls-MacBook-Pro installd[29012]: PackageKit: Writing receipt for com.microsoft.office.all.proofing_polish.pkg.14.2.0 to /private/var/db/receipts
-Dec 3 16:13:04 Pauls-MacBook-Pro installd[29012]: PackageKit: Writing receipt for com.microsoft.office.all.proofing_russian.pkg.14.2.0 to /private/var/db/receipts
-Dec 3 16:13:04 Pauls-MacBook-Pro installd[29012]: PackageKit: Writing receipt for com.microsoft.office.all.proofing_turkish.pkg.14.2.0 to /private/var/db/receipts
-Dec 3 16:13:04 Pauls-MacBook-Pro installd[29012]: PackageKit: Writing receipt for com.microsoft.mau.all.autoupdate.pkg.2.3.3 to /private/var/db/receipts
-Dec 3 16:13:04 Pauls-MacBook-Pro installd[29012]: PackageKit: Writing receipt for com.microsoft.merp.all.errorreporting.pkg.2.2.8 to /private/var/db/receipts
-Dec 3 16:13:04 Pauls-MacBook-Pro installd[29012]: PackageKit: Writing receipt for com.microsoft.office.all.fonts.pkg.14.2.0 to /private/var/db/receipts
-Dec 3 16:13:04 Pauls-MacBook-Pro installd[29012]: PackageKit: Writing receipt for com.microsoft.office.en.fonts_fontcollection.pkg.14.2.0 to /private/var/db/receipts
-Dec 3 16:13:04 Pauls-MacBook-Pro installd[29012]: PackageKit: Writing receipt for com.microsoft.office.all.automator.pkg.14.2.0 to /private/var/db/receipts
-Dec 3 16:13:04 Pauls-MacBook-Pro installd[29012]: PackageKit: Writing receipt for com.microsoft.office.en.automator_workflow.pkg.14.2.0 to /private/var/db/receipts
-Dec 3 16:13:04 Pauls-MacBook-Pro installd[29012]: PackageKit: Writing receipt for com.microsoft.office.all.dock.pkg.14.2.0 to /private/var/db/receipts
-Dec 3 16:13:04 Pauls-MacBook-Pro installd[29012]: PackageKit: Registered bundle file://localhost/Applications/Microsoft%20Office%202011/Office/Microsoft%20Office%20Setup%20Assistant.app/
-Dec 3 16:13:04: --- last message repeated 2 times ---
-Dec 3 16:13:04 Pauls-MacBook-Pro installd[29012]: PackageKit: Registered bundle file://localhost/Applications/Microsoft%20Office%202011/Office/Microsoft%20Clip%20Gallery.app/
-Dec 3 16:13:04 Pauls-MacBook-Pro installd[29012]: PackageKit: Registered bundle file://localhost/Applications/Microsoft%20Office%202011/Office/Microsoft%20Database%20Utility.app/
-Dec 3 16:13:04 Pauls-MacBook-Pro installd[29012]: PackageKit: Registered bundle file://localhost/Applications/Microsoft%20Office%202011/Office/Microsoft%20Chart%20Converter.app/
-Dec 3 16:13:04 Pauls-MacBook-Pro installd[29012]: PackageKit: Registered bundle file://localhost/Applications/Microsoft%20Office%202011/Office/Microsoft%20Office%20Reminders.app/
-Dec 3 16:13:04 Pauls-MacBook-Pro installd[29012]: PackageKit: Registered bundle file://localhost/Applications/Microsoft%20Office%202011/Office/SyncServicesAgent.app/
-Dec 3 16:13:04 Pauls-MacBook-Pro installd[29012]: PackageKit: Registered bundle file://localhost/Applications/Microsoft%20Office%202011/Office/Microsoft%20Alerts%20Daemon.app/
-Dec 3 16:13:04 Pauls-MacBook-Pro installd[29012]: PackageKit: Registered bundle file://localhost/Applications/Microsoft%20Office%202011/Office/Microsoft%20Upload%20Center.app/
-Dec 3 16:13:05 Pauls-MacBook-Pro installd[29012]: PackageKit: Registered bundle file://localhost/Applications/Microsoft%20Office%202011/Office/Microsoft%20Database%20Daemon.app/
-Dec 3 16:13:05 Pauls-MacBook-Pro installd[29012]: PackageKit: Registered bundle file://localhost/Applications/Microsoft%20Office%202011/Office/Microsoft%20Clip%20Gallery.app/
-Dec 3 16:13:05 Pauls-MacBook-Pro installd[29012]: PackageKit: Registered bundle file://localhost/Applications/Microsoft%20Office%202011/Office/Microsoft%20Database%20Daemon.app/
-Dec 3 16:13:05 Pauls-MacBook-Pro installd[29012]: PackageKit: Registered bundle file://localhost/Applications/Microsoft%20Office%202011/Office/Microsoft%20Database%20Utility.app/
-Dec 3 16:13:05 Pauls-MacBook-Pro installd[29012]: PackageKit: Registered bundle file://localhost/Applications/Microsoft%20Office%202011/Office/Microsoft%20Office%20Reminders.app/
-Dec 3 16:13:05 Pauls-MacBook-Pro installd[29012]: PackageKit: Registered bundle file://localhost/Applications/Microsoft%20Office%202011/Office/Microsoft%20Upload%20Center.app/
-Dec 3 16:13:05 Pauls-MacBook-Pro installd[29012]: PackageKit: Registered bundle file://localhost/Applications/Microsoft%20Office%202011/Office/SyncServicesAgent.app/
-Dec 3 16:13:05 Pauls-MacBook-Pro installd[29012]: PackageKit: Registered bundle file://localhost/Applications/Microsoft%20Office%202011/Office/Open%20XML%20for%20Excel.app/
-Dec 3 16:13:05 Pauls-MacBook-Pro installd[29012]: PackageKit: Registered bundle file://localhost/Applications/Microsoft%20Office%202011/Additional%20Tools/Microsoft%20Language%20Register/Microsoft%20Language%20Register.app/
-Dec 3 16:13:05 Pauls-MacBook-Pro installd[29012]: PackageKit: Registered bundle file://localhost/Applications/Microsoft%20Office%202011/Office/My%20Day.app/
-Dec 3 16:13:05 Pauls-MacBook-Pro installd[29012]: PackageKit: Registered bundle file://localhost/Applications/Microsoft%20Office%202011/Microsoft%20Outlook.app/
-Dec 3 16:13:05: --- last message repeated 1 time ---
-Dec 3 16:13:05 Pauls-MacBook-Pro installd[29012]: PackageKit: Registered bundle file://localhost/Applications/Microsoft%20Office%202011/Office/My%20Day.app/
-Dec 3 16:13:05 Pauls-MacBook-Pro installd[29012]: PackageKit: Registered bundle file://localhost/Applications/Microsoft%20Messenger.app/
-Dec 3 16:13:05 Pauls-MacBook-Pro installd[29012]: PackageKit: Registered bundle file://localhost/Applications/Microsoft%20Messenger.app/Contents/SharedSupport/Microsoft%20Messenger%20Daemon.app/
-Dec 3 16:13:05 Pauls-MacBook-Pro installd[29012]: PackageKit: Registered bundle file://localhost/Applications/Microsoft%20Messenger.app/Contents/SharedSupport/Alerts%20Daemon.app/
-Dec 3 16:13:05 Pauls-MacBook-Pro installd[29012]: PackageKit: Registered bundle file://localhost/Applications/Remote%20Desktop%20Connection.app/
-Dec 3 16:13:05 Pauls-MacBook-Pro installd[29012]: PackageKit: Registered bundle file://localhost/Library/Application%20Support/Microsoft/MAU2.0/Microsoft%20AutoUpdate.app/Contents/MacOS/Microsoft%20AU%20Daemon.app/
-Dec 3 16:13:05 Pauls-MacBook-Pro installd[29012]: PackageKit: Registered bundle file://localhost/Library/Application%20Support/Microsoft/MAU2.0/Microsoft%20AutoUpdate.app/
-Dec 3 16:13:05 Pauls-MacBook-Pro installd[29012]: PackageKit: Registered bundle file://localhost/Library/Application%20Support/Microsoft/MERP2.0/Microsoft%20Ship%20Asserts.app/
-Dec 3 16:13:05 Pauls-MacBook-Pro installd[29012]: PackageKit: Registered bundle file://localhost/Library/Application%20Support/Microsoft/MERP2.0/Microsoft%20Error%20Reporting.app/
-Dec 3 16:13:05 Pauls-MacBook-Pro installd[29012]: Installed "Microsoft Outlook for Mac 2011" ()
-Dec 3 16:13:06 Pauls-MacBook-Pro installd[29012]: PackageKit: ----- End install -----
-Dec 3 16:13:06 Pauls-MacBook-Pro Installer[29002]: Running install actions
-Dec 3 16:13:06 Pauls-MacBook-Pro Installer[29002]: Removing temporary directory "/var/folders/dl/y_jpk59978s9jm3bpx9ccmsc0000gn/T//Install.29002Enbich"
-Dec 3 16:13:06 Pauls-MacBook-Pro Installer[29002]: Finalize disk "Macintosh HD"
-Dec 3 16:13:06 Pauls-MacBook-Pro Installer[29002]: Notifying system of updated components
-Dec 3 16:13:06 Pauls-MacBook-Pro Installer[29002]:
-Dec 3 16:13:06 Pauls-MacBook-Pro Installer[29002]: **** Summary Information ****
-Dec 3 16:13:06 Pauls-MacBook-Pro Installer[29002]: Operation Elapsed time
-Dec 3 16:13:06 Pauls-MacBook-Pro Installer[29002]: -----------------------------
-Dec 3 16:13:06 Pauls-MacBook-Pro Installer[29002]: disk 0.01 seconds
-Dec 3 16:13:06 Pauls-MacBook-Pro Installer[29002]: script 0.00 seconds
-Dec 3 16:13:06 Pauls-MacBook-Pro Installer[29002]: zero 0.01 seconds
-Dec 3 16:13:06 Pauls-MacBook-Pro Installer[29002]: install 86.05 seconds
-Dec 3 16:13:06 Pauls-MacBook-Pro Installer[29002]: -total- 86.08 seconds
-Dec 3 16:13:06 Pauls-MacBook-Pro Installer[29002]:
-Dec 3 16:13:06 Pauls-MacBook-Pro Installer[29002]: IFDInstallController 2B6D9B70 state = 5
-Dec 3 16:13:06 Pauls-MacBook-Pro Installer[29002]: Displaying 'Install Succeeded' UI.
-Dec 3 16:15:52 Pauls-MacBook-Pro Installer[29608]: @(#)PROGRAM:Install PROJECT:Install-690
-Dec 3 16:15:52 Pauls-MacBook-Pro Installer[29608]: @(#)PROGRAM:Installer PROJECT:Installer-537
-Dec 3 16:15:52 Pauls-MacBook-Pro Installer[29608]: Hardware: MacBookPro8,2 @ 2.20 GHz (x 8), 8192 MB RAM
-Dec 3 16:15:52 Pauls-MacBook-Pro Installer[29608]: Running OS Build: Mac OS X 10.7.5 (11G63)
-Dec 3 16:15:52 Pauls-MacBook-Pro Installer[29608]: Env: PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/libexec
-Dec 3 16:15:52 Pauls-MacBook-Pro Installer[29608]: Env: TMPDIR=/var/folders/dl/y_jpk59978s9jm3bpx9ccmsc0000gn/T/
-Dec 3 16:15:52 Pauls-MacBook-Pro Installer[29608]: Env: SHELL=/bin/sh
-Dec 3 16:15:52 Pauls-MacBook-Pro Installer[29608]: Env: HOME=/Users/paul
-Dec 3 16:15:52 Pauls-MacBook-Pro Installer[29608]: Env: USER=paul
-Dec 3 16:15:52 Pauls-MacBook-Pro Installer[29608]: Env: LOGNAME=paul
-Dec 3 16:15:52 Pauls-MacBook-Pro Installer[29608]: Env: DISPLAY=/tmp/launch-QUOmlo/org.x:0
-Dec 3 16:15:52 Pauls-MacBook-Pro Installer[29608]: Env: SSH_AUTH_SOCK=/tmp/launch-kzppz6/Listeners
-Dec 3 16:15:52 Pauls-MacBook-Pro Installer[29608]: Env: Apple_Ubiquity_Message=/tmp/launch-Zp3wOK/Apple_Ubiquity_Message
-Dec 3 16:15:52 Pauls-MacBook-Pro Installer[29608]: Env: Apple_PubSub_Socket_Render=/tmp/launch-ePr8jr/Render
-Dec 3 16:15:52 Pauls-MacBook-Pro Installer[29608]: Env: TERM=unknown
-Dec 3 16:15:52 Pauls-MacBook-Pro Installer[29608]: Env: SUDO_USER=root
-Dec 3 16:15:52 Pauls-MacBook-Pro Installer[29608]: Env: SUDO_UID=0
-Dec 3 16:15:52 Pauls-MacBook-Pro Installer[29608]: Env: USERNAME=paul
-Dec 3 16:15:52 Pauls-MacBook-Pro Installer[29608]: Env: MAIL=/var/mail/paul
-Dec 3 16:15:52 Pauls-MacBook-Pro Installer[29608]: Env: PWD=/private/tmp/PKInstallSandbox.uc24eP/Scripts/com.microsoft.office.all.launch.pkg.14.2.0.5pDZWw
-Dec 3 16:15:52 Pauls-MacBook-Pro Installer[29608]: Env: SHLVL=1
-Dec 3 16:15:52 Pauls-MacBook-Pro Installer[29608]: Env: SUDO_COMMAND=/tmp/PKInstallSandbox.uc24eP/Scripts/com.microsoft.office.all.launch.pkg.14.2.0.5pDZWw/chain_app -p 29002 -a /Applications/Microsoft Office 2011/Office/Microsoft Office Setup Assistant.app
-Dec 3 16:15:52 Pauls-MacBook-Pro Installer[29608]: Env: SUDO_GID=0
-Dec 3 16:15:52 Pauls-MacBook-Pro Installer[29608]: Env: _=/usr/bin/open
-Dec 3 16:15:52 Pauls-MacBook-Pro Installer[29608]: Env: __CF_USER_TEXT_ENCODING=0x1F5:0:0
-Dec 3 16:15:52 Pauls-MacBook-Pro Installer[29608]: Env: COMMAND_MODE=unix2003
-Dec 3 16:15:52 Pauls-MacBook-Pro Installer[29608]: Microsoft AutoUpdate for Mac Installation Log
-Dec 3 16:15:52 Pauls-MacBook-Pro Installer[29608]: Opened from: /Users/paul/Library/Caches/TemporaryItems/16807AutoUpdate Installer.mpkg
-Dec 3 16:15:58 Pauls-MacBook-Pro Installer[29608]: InstallerStatusNotifications plugin loaded
-Dec 3 16:16:12 Pauls-MacBook-Pro runner[29612]: Administrator authorization granted.
-Dec 3 16:16:12 Pauls-MacBook-Pro Installer[29608]: ================================================================================
-Dec 3 16:16:12 Pauls-MacBook-Pro Installer[29608]: User picked Standard Install
-Dec 3 16:16:12 Pauls-MacBook-Pro Installer[29608]: Choices selected for installation:
-Dec 3 16:16:12 Pauls-MacBook-Pro Installer[29608]: Install: "Microsoft AutoUpdate for Mac"
-Dec 3 16:16:12 Pauls-MacBook-Pro Installer[29608]: mau_all_autoupdate.pkg : autoupdate : 2.3.6
-Dec 3 16:16:12 Pauls-MacBook-Pro Installer[29608]: ================================================================================
-Dec 3 16:16:12 Pauls-MacBook-Pro Installer[29608]: It took 0.00 seconds to summarize the package selections.
-Dec 3 16:16:12 Pauls-MacBook-Pro Installer[29608]: -[IFDInstallController(Private) _buildInstallPlan]: location = file://localhost
-Dec 3 16:16:12 Pauls-MacBook-Pro Installer[29608]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Users/paul/Library/Caches/TemporaryItems/16807AutoUpdate%20Installer.mpkg/Contents/Packages/mau_all_autoupdate.pkg
-Dec 3 16:16:12 Pauls-MacBook-Pro Installer[29608]: Set authorization level to root for session
-Dec 3 16:16:12 Pauls-MacBook-Pro Installer[29608]: Will use PK session
-Dec 3 16:16:12 Pauls-MacBook-Pro Installer[29608]: Starting installation:
-Dec 3 16:16:12 Pauls-MacBook-Pro Installer[29608]: Configuring volume "Macintosh HD"
-Dec 3 16:16:12 Pauls-MacBook-Pro Installer[29608]: Preparing disk for local booted install.
-Dec 3 16:16:12 Pauls-MacBook-Pro Installer[29608]: Free space on "Macintosh HD": 677.71 GB (677710041088 bytes).
-Dec 3 16:16:12 Pauls-MacBook-Pro Installer[29608]: Create temporary directory "/var/folders/dl/y_jpk59978s9jm3bpx9ccmsc0000gn/T//Install.29608UNYcjV"
-Dec 3 16:16:12 Pauls-MacBook-Pro Installer[29608]: IFPKInstallElement (1 packages)
-Dec 3 16:16:12 Pauls-MacBook-Pro Installer[29608]: Using authorization level of root for IFPKInstallElement
-Dec 3 16:16:12 Pauls-MacBook-Pro installd[29617]: PackageKit: ----- Begin install -----
-Dec 3 16:16:12 Pauls-MacBook-Pro installd[29617]: PackageKit: request=PKInstallRequest &lt;1 packages, destination=/&gt;
-Dec 3 16:16:12 Pauls-MacBook-Pro installd[29617]: PackageKit: packages=(
- "PKJaguarPackage &lt;file://localhost/Users/paul/Library/Caches/TemporaryItems/16807AutoUpdate%20Installer.mpkg/Contents/Packages/mau_all_autoupdate.pkg&gt;"
- )
-Dec 3 16:16:12 Pauls-MacBook-Pro installd[29617]: PackageKit: Extracting file://localhost/Users/paul/Library/Caches/TemporaryItems/16807AutoUpdate%20Installer.mpkg/Contents/Packages/mau_all_autoupdate.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/Cleanup At Startup/PKInstallSandbox-tmp/Root, uid=0)
-Dec 3 16:16:12 Pauls-MacBook-Pro installd[29617]: PackageKit: Shoving /var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/Cleanup At Startup/PKInstallSandbox-tmp/Root (1 items) to /
-Dec 3 16:16:12 Pauls-MacBook-Pro installd[29617]: PackageKit: Executing script "./postflight" in /Users/paul/Library/Caches/TemporaryItems/16807AutoUpdate Installer.mpkg/Contents/Packages/mau_all_autoupdate.pkg/Contents/Resources
-Dec 3 16:16:13 Pauls-MacBook-Pro installd[29617]: PackageKit: Writing receipt for com.microsoft.mau.all.autoupdate.pkg.2.3.6 to /private/var/db/receipts
-Dec 3 16:16:13 Pauls-MacBook-Pro installd[29617]: PackageKit: Registered bundle file://localhost/Library/Application%20Support/Microsoft/MAU2.0/Microsoft%20AutoUpdate.app/Contents/MacOS/Microsoft%20AU%20Daemon.app/
-Dec 3 16:16:13 Pauls-MacBook-Pro installd[29617]: PackageKit: Registered bundle file://localhost/Library/Application%20Support/Microsoft/MAU2.0/Microsoft%20AutoUpdate.app/
-Dec 3 16:16:13 Pauls-MacBook-Pro installd[29617]: Installed "Microsoft AutoUpdate for Mac" ()
-Dec 3 16:16:13 Pauls-MacBook-Pro installd[29617]: PackageKit: ----- End install -----
-Dec 3 16:16:13 Pauls-MacBook-Pro Installer[29608]: Running install actions
-Dec 3 16:16:13 Pauls-MacBook-Pro Installer[29608]: Removing temporary directory "/var/folders/dl/y_jpk59978s9jm3bpx9ccmsc0000gn/T//Install.29608UNYcjV"
-Dec 3 16:16:13 Pauls-MacBook-Pro Installer[29608]: Finalize disk "Macintosh HD"
-Dec 3 16:16:13 Pauls-MacBook-Pro Installer[29608]: Notifying system of updated components
-Dec 3 16:16:13 Pauls-MacBook-Pro Installer[29608]:
-Dec 3 16:16:13 Pauls-MacBook-Pro Installer[29608]: **** Summary Information ****
-Dec 3 16:16:13 Pauls-MacBook-Pro Installer[29608]: Operation Elapsed time
-Dec 3 16:16:13 Pauls-MacBook-Pro Installer[29608]: -----------------------------
-Dec 3 16:16:13 Pauls-MacBook-Pro Installer[29608]: disk 0.00 seconds
-Dec 3 16:16:13 Pauls-MacBook-Pro Installer[29608]: script 0.00 seconds
-Dec 3 16:16:13 Pauls-MacBook-Pro Installer[29608]: zero 0.01 seconds
-Dec 3 16:16:13 Pauls-MacBook-Pro Installer[29608]: install 1.13 seconds
-Dec 3 16:16:13 Pauls-MacBook-Pro Installer[29608]: -total- 1.14 seconds
-Dec 3 16:16:13 Pauls-MacBook-Pro Installer[29608]:
-Dec 3 16:16:14 Pauls-MacBook-Pro Installer[29608]: IFDInstallController D32268C0 state = 5
-Dec 3 16:16:14 Pauls-MacBook-Pro Installer[29608]: Displaying 'Install Succeeded' UI.
-Dec 3 17:56:43 paul-mbp Installer[42472]: @(#)PROGRAM:Install PROJECT:Install-690
-Dec 3 17:56:43 paul-mbp Installer[42472]: @(#)PROGRAM:Installer PROJECT:Installer-537
-Dec 3 17:56:43 paul-mbp Installer[42472]: Hardware: MacBookPro8,2 @ 2.20 GHz (x 8), 8192 MB RAM
-Dec 3 17:56:43 paul-mbp Installer[42472]: Running OS Build: Mac OS X 10.7.5 (11G63)
-Dec 3 17:56:43 paul-mbp Installer[42472]: Env: PATH=/usr/bin:/bin:/usr/sbin:/sbin
-Dec 3 17:56:43 paul-mbp Installer[42472]: Env: TMPDIR=/var/folders/dl/y_jpk59978s9jm3bpx9ccmsc0000gn/T/
-Dec 3 17:56:43 paul-mbp Installer[42472]: Env: SHELL=/bin/bash
-Dec 3 17:56:43 paul-mbp Installer[42472]: Env: HOME=/Users/paul
-Dec 3 17:56:43 paul-mbp Installer[42472]: Env: USER=paul
-Dec 3 17:56:43 paul-mbp Installer[42472]: Env: LOGNAME=paul
-Dec 3 17:56:43 paul-mbp Installer[42472]: Env: DISPLAY=/tmp/launch-QUOmlo/org.x:0
-Dec 3 17:56:43 paul-mbp Installer[42472]: Env: SSH_AUTH_SOCK=/tmp/launch-kzppz6/Listeners
-Dec 3 17:56:43 paul-mbp Installer[42472]: Env: Apple_Ubiquity_Message=/tmp/launch-Zp3wOK/Apple_Ubiquity_Message
-Dec 3 17:56:43 paul-mbp Installer[42472]: Env: Apple_PubSub_Socket_Render=/tmp/launch-ePr8jr/Render
-Dec 3 17:56:43 paul-mbp Installer[42472]: Env: __CF_USER_TEXT_ENCODING=0x1F5:0:0
-Dec 3 17:56:43 paul-mbp Installer[42472]: Env: COMMAND_MODE=unix2003
-Dec 3 17:56:43 paul-mbp Installer[42472]: Logitech Control Center Installation Log
-Dec 3 17:56:43 paul-mbp Installer[42472]: Opened from: /Users/paul/Downloads/LCC Installer.app/Contents/Resources/Logitech Control Center.mpkg
-Dec 3 17:56:43 paul-mbp Installer[42472]: Product archive /Users/paul/Downloads/LCC Installer.app/Contents/Resources/Logitech Control Center.mpkg trustLevel=202
-Dec 3 17:56:54 paul-mbp Installer[42472]: InstallerStatusNotifications plugin loaded
-Dec 3 17:57:01 paul-mbp runner[42477]: Administrator authorization granted.
-Dec 3 17:57:03 paul-mbp Installer[42472]: ================================================================================
-Dec 3 17:57:03 paul-mbp Installer[42472]: User picked Standard Install
-Dec 3 17:57:03 paul-mbp Installer[42472]: Choices selected for installation:
-Dec 3 17:57:03 paul-mbp Installer[42472]: Install: "Logitech Control Center"
-Dec 3 17:57:03 paul-mbp Installer[42472]: Install: "Logitech Control Center" at path "//"
-Dec 3 17:57:03 paul-mbp Installer[42472]: Logitech Control Center.mpkg#logitechControlCenter.pkg : com.Logitech.Control Center.pkg : 3.0.0
-Dec 3 17:57:03 paul-mbp Installer[42472]: Install: "Logitech Unifying Software" at path "//"
-Dec 3 17:57:03 paul-mbp Installer[42472]: Logitech Control Center.mpkg#logitechUnifyingSoftware.pkg : com.Logitech.Unifying Software.pkg : 1.1.0
-Dec 3 17:57:03 paul-mbp Installer[42472]: Install: "Logitech Updater" at path "//"
-Dec 3 17:57:03 paul-mbp Installer[42472]: Logitech Control Center.mpkg#logitechUpdater.pkg : com.Logitech.Updater.pkg : 1.6.0
-Dec 3 17:57:03 paul-mbp Installer[42472]: ================================================================================
-Dec 3 17:57:03 paul-mbp Installer[42472]: It took 0.00 seconds to summarize the package selections.
-Dec 3 17:57:03 paul-mbp Installer[42472]: -[IFDInstallController(Private) _buildInstallPlan]: location = file://localhost
-Dec 3 17:57:03 paul-mbp Installer[42472]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Users/paul/Downloads/LCC%20Installer.app/Contents/Resources/Logitech%20Control%20Center.mpkg#logitechControlCenter.pkg
-Dec 3 17:57:03: --- last message repeated 1 time ---
-Dec 3 17:57:03 paul-mbp Installer[42472]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Users/paul/Downloads/LCC%20Installer.app/Contents/Resources/Logitech%20Control%20Center.mpkg#logitechUnifyingSoftware.pkg
-Dec 3 17:57:03: --- last message repeated 1 time ---
-Dec 3 17:57:03 paul-mbp Installer[42472]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Users/paul/Downloads/LCC%20Installer.app/Contents/Resources/Logitech%20Control%20Center.mpkg#logitechUpdater.pkg
-Dec 3 17:57:03: --- last message repeated 1 time ---
-Dec 3 17:57:03 paul-mbp Installer[42472]: Set authorization level to root for session
-Dec 3 17:57:03 paul-mbp Installer[42472]: Will use PK session
-Dec 3 17:57:03 paul-mbp Installer[42472]: Starting installation:
-Dec 3 17:57:03 paul-mbp Installer[42472]: Configuring volume "Macintosh HD"
-Dec 3 17:57:03 paul-mbp Installer[42472]: Preparing disk for local booted install.
-Dec 3 17:57:03 paul-mbp Installer[42472]: Free space on "Macintosh HD": 671.7 GB (671697563648 bytes).
-Dec 3 17:57:03 paul-mbp Installer[42472]: Create temporary directory "/var/folders/dl/y_jpk59978s9jm3bpx9ccmsc0000gn/T//Install.42472RPB34W"
-Dec 3 17:57:03 paul-mbp Installer[42472]: IFPKInstallElement (6 packages)
-Dec 3 17:57:03 paul-mbp Installer[42472]: Using authorization level of root for IFPKInstallElement
-Dec 3 17:57:03 paul-mbp installd[42480]: PackageKit: ----- Begin install -----
-Dec 3 17:57:03 paul-mbp installd[42480]: PackageKit: request=PKInstallRequest &lt;6 packages, destination=/&gt;
-Dec 3 17:57:03 paul-mbp installd[42480]: PackageKit: packages=(
- "PKLeopardPackage &lt;file://localhost/Users/paul/Downloads/LCC%20Installer.app/Contents/Resources/Logitech%20Control%20Center.mpkg#logitechControlCenter.pkg&gt;",
- "PKLeopardPackage &lt;file://localhost/Users/paul/Downloads/LCC%20Installer.app/Contents/Resources/Logitech%20Control%20Center.mpkg#logitechControlCenter.pkg&gt;",
- "PKLeopardPackage &lt;file://localhost/Users/paul/Downloads/LCC%20Installer.app/Contents/Resources/Logitech%20Control%20Center.mpkg#logitechUnifyingSoftware.pkg&gt;",
- "PKLeopardPackage &lt;file://localhost/Users/paul/Downloads/LCC%20Installer.app/Contents/Resources/Logitech%20Control%20Center.mpkg#logitechUnifyingSoftware.pkg&gt;",
- "PKLeopardPackage &lt;file://localhost/Users/paul/Downloads/LCC%20Installer.app/Contents/Resources/Logitech%20Control%20Center.mpkg#logitechUpdater.pkg&gt;",
- "PKLeopardPackage &lt;file://localhost/Users/paul/Downloads/LCC%20Installer.app/Contents/Resources/Logitech%20Control%20Center.mpkg#logitechUpdater.pkg&gt;"
- )
-Dec 3 17:57:05 paul-mbp installd[42480]: PackageKit: Extracting file://localhost/Users/paul/Downloads/LCC%20Installer.app/Contents/Resources/Logitech%20Control%20Center.mpkg#logitechControlCenter.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/Cleanup At Startup/PKInstallSandbox-tmp/Root, uid=0)
-Dec 3 17:57:38: --- last message repeated 1 time ---
-Dec 3 17:57:38 paul-mbp installd[42480]: PackageKit: Extracting file://localhost/Users/paul/Downloads/LCC%20Installer.app/Contents/Resources/Logitech%20Control%20Center.mpkg#logitechUnifyingSoftware.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/Cleanup At Startup/PKInstallSandbox-tmp/Root, uid=0)
-Dec 3 17:57:42: --- last message repeated 1 time ---
-Dec 3 17:57:42 paul-mbp installd[42480]: PackageKit: Extracting file://localhost/Users/paul/Downloads/LCC%20Installer.app/Contents/Resources/Logitech%20Control%20Center.mpkg#logitechUpdater.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/Cleanup At Startup/PKInstallSandbox-tmp/Root, uid=0)
-Dec 3 17:57:45: --- last message repeated 1 time ---
-Dec 3 17:57:45 paul-mbp installd[42480]: PackageKit: update_dyld_shared_cache -overlay /var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/Cleanup At Startup/PKInstallSandbox-tmp/Root
-Dec 3 17:58:08 paul-mbp installd[42480]: PackageKit: xpchelper --rebuild-cache --overlay /var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/Cleanup At Startup/PKInstallSandbox-tmp/Root
-Dec 3 17:58:08 paul-mbp installd[42480]: PackageKit: Executing script "./preflight" in /private/tmp/PKInstallSandbox.1wvkDT/Scripts/com.Logitech.Control Center.pkg.ptGdCN
-Dec 3 17:58:09 paul-mbp installd[42480]: ./preflight: . . . . . running the postflight script . . . . .
-Dec 3 17:58:09 paul-mbp installd[42480]: ./preflight: source path is: /Users/paul/Downloads/LCC Installer.app/Contents/Resources/Logitech Control Center.mpkg
-Dec 3 17:58:09 paul-mbp installd[42480]: ./preflight: target path is: /
-Dec 3 17:58:09 paul-mbp installd[42480]: ./preflight: target volume path is: /
-Dec 3 17:58:09 paul-mbp installd[42480]: ./preflight: path to tools is: /Users/paul/Downloads/LCC Installer.app/Contents/Resources
-Dec 3 17:58:09 paul-mbp installd[42480]: ./preflight: User has not chosen keyboard yet
-Dec 3 17:58:17 paul-mbp installd[42480]: ./preflight: 2012-12-03 17:58:17.620 LCC Uninstaller Tool[42495:707] Cleanup before installation
-Dec 3 17:58:17 paul-mbp installd[42480]: ./preflight: launchctl: Couldn't stat("/Library/LaunchAgents/com.Logitech.Control Center.Daemon.plist"): No such file or directory
-Dec 3 17:58:17 paul-mbp installd[42480]: ./preflight: nothing found to unload
-Dec 3 17:58:27 paul-mbp installd[42480]: ./preflight: try to run RMover from Scripts
-Dec 3 17:58:27 paul-mbp installd[42480]: ./preflight: 2012-12-03 17:58:27.651 RMover[42505:707] Logitech Control Center: Resources Mover started
-Dec 3 17:58:27 paul-mbp installd[42480]: ./preflight: 2012-12-03 17:58:27.654 RMover[42505:707] Logitech Control Center: Resources Mover - script value : 1
-Dec 3 17:58:27 paul-mbp installd[42480]: ./preflight: 2012-12-03 17:58:27.654 RMover[42505:707] Logitech Control Center: Resources Mover11: directory = /Users/paul/Downloads/LCC Installer.app/Contents/Resources
-Dec 3 17:58:27 paul-mbp installd[42480]: ./preflight: 2012-12-03 17:58:27.655 RMover[42505:707] Logitech Control Center: Resources Mover: preflight
-Dec 3 17:58:27 paul-mbp installd[42480]: ./preflight: 2012-12-03 17:58:27.783 RMover[42505:707] Logitech Control Center: Resources Mover - kernel extension installed
-Dec 3 17:58:28 paul-mbp installd[42480]: ./preflight: pausing for 3 seconds
-Dec 3 17:58:31 paul-mbp installd[42480]: ./preflight: Check2: found keyboard flag file
-Dec 3 17:58:31 paul-mbp installd[42480]: PackageKit: Executing script "./preflight" in /private/tmp/PKInstallSandbox.1wvkDT/Scripts/com.Logitech.Control Center.pkg.ptGdCN
-Dec 3 17:58:31 paul-mbp installd[42480]: ./preflight: . . . . . running the postflight script . . . . .
-Dec 3 17:58:31 paul-mbp installd[42480]: ./preflight: source path is: /Users/paul/Downloads/LCC Installer.app/Contents/Resources/Logitech Control Center.mpkg
-Dec 3 17:58:31 paul-mbp installd[42480]: ./preflight: target path is: /
-Dec 3 17:58:31 paul-mbp installd[42480]: ./preflight: target volume path is: /
-Dec 3 17:58:31 paul-mbp installd[42480]: ./preflight: path to tools is: /Users/paul/Downloads/LCC Installer.app/Contents/Resources
-Dec 3 17:58:31 paul-mbp installd[42480]: ./preflight: User has already chosen keyboard, exiting
-Dec 3 17:58:31 paul-mbp installd[42480]: PackageKit: Shoving /var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/Cleanup At Startup/PKInstallSandbox-tmp/Root (3 items) to /
-Dec 3 17:58:31 paul-mbp installd[42480]: PackageKit: kextcache -system-caches
-Dec 3 17:58:41 paul-mbp installd[42480]: PackageKit: kextcache -update-volume / -Installer
-Dec 3 17:58:42 paul-mbp installd[42480]: kextcache: / locked; waiting for lock.
-Dec 3 17:59:29 paul-mbp installd[42480]: kextcache: Lock acquired; proceeding.
-Dec 3 17:59:29 paul-mbp installd[42480]: PackageKit: Executing script "./postflight" in /private/tmp/PKInstallSandbox.1wvkDT/Scripts/com.Logitech.Control Center.pkg.ptGdCN
-Dec 3 17:59:30 paul-mbp installd[42480]: ./postflight: . . . . . running the postflight script . . . . .
-Dec 3 17:59:30 paul-mbp installd[42480]: ./postflight: source path is: /Users/paul/Downloads/LCC Installer.app/Contents/Resources/Logitech Control Center.mpkg
-Dec 3 17:59:30 paul-mbp installd[42480]: ./postflight: target path is: /
-Dec 3 17:59:30 paul-mbp installd[42480]: ./postflight: target volume path is: /
-Dec 3 17:59:30 paul-mbp installd[42480]: ./postflight: path to tools is: /Users/paul/Downloads/LCC Installer.app/Contents/Resources
-Dec 3 17:59:30 paul-mbp installd[42480]: ./postflight: chmod: /Library/PreferencePanes/Logitech Control Center.prefPane/Contents/Resources/*.lproj/html/: No such file or directory
-Dec 3 17:59:30 paul-mbp installd[42480]: ./postflight: chmod: /Library/PreferencePanes/Logitech Control Center.prefPane/Contents/Resources/*.lproj/html/warranty_keyboards.htm: No such file or directory
-Dec 3 17:59:30 paul-mbp installd[42480]: ./postflight: chmod: /Library/PreferencePanes/Logitech Control Center.prefPane/Contents/Resources/*.lproj/html/warranty_mice.htm: No such file or directory
-Dec 3 17:59:30 paul-mbp installd[42480]: ./postflight: 2012-12-03 17:59:30.389 LCC Uninstaller Tool[42553:707] Cleanup after installation
-Dec 3 17:59:30 paul-mbp installd[42480]: ./postflight: try to run RMover from Scripts
-Dec 3 17:59:30 paul-mbp installd[42480]: ./postflight: 2012-12-03 17:59:30.400 RMover[42554:707] Logitech Control Center: Resources Mover started
-Dec 3 17:59:30 paul-mbp installd[42480]: ./postflight: 2012-12-03 17:59:30.402 RMover[42554:707] Logitech Control Center: Resources Mover - script value : 1
-Dec 3 17:59:30 paul-mbp installd[42480]: ./postflight: 2012-12-03 17:59:30.403 RMover[42554:707] Logitech Control Center: Resources Mover11: directory = /Users/paul/Downloads/LCC Installer.app/Contents/Resources
-Dec 3 17:59:30 paul-mbp installd[42480]: ./postflight: 2012-12-03 17:59:30.403 RMover[42554:707] Logitech Control Center: Resources Mover: postflight
-Dec 3 17:59:30 paul-mbp installd[42480]: ./postflight: 2012-12-03 17:59:30.404 RMover[42554:707] Logitech Control Center: Resources Mover - selecting LCCDaemon executable
-Dec 3 17:59:30 paul-mbp installd[42480]: ./postflight: 2012-12-03 17:59:30.456 RMover[42554:707] Logitech Control Center: Resources Mover - LCCDaemon 64-bit executable enabled
-Dec 3 17:59:30 paul-mbp installd[42480]: ./postflight: 2012-12-03 17:59:30.457 RMover[42554:707] Logitech Control Center: Resources Mover - selecting Device Manager executable
-Dec 3 17:59:30 paul-mbp installd[42480]: ./postflight: 2012-12-03 17:59:30.485 RMover[42554:707] Logitech Control Center: Resources Mover - Device Manager 64-bit executable enabled
-Dec 3 17:59:31 paul-mbp installd[42480]: ./postflight: nothing found to load
-Dec 3 17:59:31 paul-mbp installd[42480]: ./postflight: login item UNKNOWN
-Dec 3 17:59:31 paul-mbp installd[42480]: PackageKit: Executing script "./postflight" in /private/tmp/PKInstallSandbox.1wvkDT/Scripts/com.Logitech.Control Center.pkg.ptGdCN
-Dec 3 17:59:31 paul-mbp installd[42480]: ./postflight: . . . . . running the postflight script . . . . .
-Dec 3 17:59:31 paul-mbp installd[42480]: ./postflight: source path is: /Users/paul/Downloads/LCC Installer.app/Contents/Resources/Logitech Control Center.mpkg
-Dec 3 17:59:31 paul-mbp installd[42480]: ./postflight: target path is: /
-Dec 3 17:59:31 paul-mbp installd[42480]: ./postflight: target volume path is: /
-Dec 3 17:59:31 paul-mbp installd[42480]: ./postflight: path to tools is: /Users/paul/Downloads/LCC Installer.app/Contents/Resources
-Dec 3 17:59:31 paul-mbp installd[42480]: ./postflight: chmod: /Library/PreferencePanes/Logitech Control Center.prefPane/Contents/Resources/*.lproj/html/: No such file or directory
-Dec 3 17:59:31 paul-mbp installd[42480]: ./postflight: chmod: /Library/PreferencePanes/Logitech Control Center.prefPane/Contents/Resources/*.lproj/html/warranty_keyboards.htm: No such file or directory
-Dec 3 17:59:31 paul-mbp installd[42480]: ./postflight: chmod: /Library/PreferencePanes/Logitech Control Center.prefPane/Contents/Resources/*.lproj/html/warranty_mice.htm: No such file or directory
-Dec 3 17:59:31 paul-mbp installd[42480]: ./postflight: 2012-12-03 17:59:31.866 LCC Uninstaller Tool[42594:707] Cleanup after installation
-Dec 3 17:59:31 paul-mbp installd[42480]: ./postflight: try to run RMover from Scripts
-Dec 3 17:59:31 paul-mbp installd[42480]: ./postflight: 2012-12-03 17:59:31.877 RMover[42595:707] Logitech Control Center: Resources Mover started
-Dec 3 17:59:31 paul-mbp installd[42480]: ./postflight: 2012-12-03 17:59:31.879 RMover[42595:707] Logitech Control Center: Resources Mover - script value : 1
-Dec 3 17:59:31 paul-mbp installd[42480]: ./postflight: 2012-12-03 17:59:31.879 RMover[42595:707] Logitech Control Center: Resources Mover11: directory = /Users/paul/Downloads/LCC Installer.app/Contents/Resources
-Dec 3 17:59:31 paul-mbp installd[42480]: ./postflight: 2012-12-03 17:59:31.880 RMover[42595:707] Logitech Control Center: Resources Mover: postflight
-Dec 3 17:59:31 paul-mbp installd[42480]: ./postflight: 2012-12-03 17:59:31.880 RMover[42595:707] Logitech Control Center: Resources Mover - selecting LCCDaemon executable
-Dec 3 17:59:31 paul-mbp installd[42480]: ./postflight: 2012-12-03 17:59:31.881 RMover[42595:707] Logitech Control Center: Resources Mover - selecting Device Manager executable
-Dec 3 17:59:33 paul-mbp installd[42480]: ./postflight: nothing found to load
-Dec 3 17:59:33 paul-mbp installd[42480]: ./postflight: login item UNKNOWN
-Dec 3 17:59:33 paul-mbp installd[42480]: PackageKit: Writing receipt for com.Logitech.Control Center.pkg to /private/var/db/receipts
-Dec 3 17:59:34: --- last message repeated 1 time ---
-Dec 3 17:59:34 paul-mbp installd[42480]: PackageKit: Writing receipt for com.Logitech.Unifying Software.pkg to /private/var/db/receipts
-Dec 3 17:59:34: --- last message repeated 1 time ---
-Dec 3 17:59:34 paul-mbp installd[42480]: PackageKit: Writing receipt for com.Logitech.Updater.pkg to /private/var/db/receipts
-Dec 3 17:59:34: --- last message repeated 1 time ---
-Dec 3 17:59:34 paul-mbp installd[42480]: PackageKit: Registered bundle file://localhost/Library/Application%20Support/Logitech.localized/Logitech%20Control%20Center.localized/LCC%20Pilot.app/
-Dec 3 17:59:34 paul-mbp installd[42480]: PackageKit: Registered bundle file://localhost/Library/Application%20Support/Logitech.localized/Logitech%20Control%20Center.localized/LCCDaemon.app/
-Dec 3 17:59:34 paul-mbp installd[42480]: PackageKit: Registered bundle file://localhost/Library/Application%20Support/Logitech.localized/Logitech%20Control%20Center.localized/Device%20Manager.app/
-Dec 3 17:59:34 paul-mbp installd[42480]: PackageKit: Registered bundle file://localhost/Applications/Utilities/LCC%20Uninstaller.app/
-Dec 3 17:59:34 paul-mbp installd[42480]: PackageKit: Registered bundle file://localhost/Applications/Utilities/LCC%20Connection%20Utility.app/
-Dec 3 17:59:34 paul-mbp installd[42480]: PackageKit: Registered bundle file://localhost/Library/Application%20Support/Logitech.localized/Logitech%20Control%20Center.localized/Logitech%20Registration.app/
-Dec 3 17:59:34 paul-mbp installd[42480]: PackageKit: Registered bundle file://localhost/Library/Application%20Support/Logitech.localized/Logitech%20Control%20Center.localized/Logitech%20Registration.app/Contents/Resources/LogitechRegReminder.app/
-Dec 3 17:59:34 paul-mbp installd[42480]: PackageKit: Registered bundle file://localhost/Library/Application%20Support/Logitech.localized/Logitech%20Control%20Center.localized/LCC%20Pilot.app/
-Dec 3 17:59:34 paul-mbp installd[42480]: PackageKit: Registered bundle file://localhost/Library/Application%20Support/Logitech.localized/Logitech%20Control%20Center.localized/LCCDaemon.app/
-Dec 3 17:59:34 paul-mbp installd[42480]: PackageKit: Registered bundle file://localhost/Library/Application%20Support/Logitech.localized/Logitech%20Control%20Center.localized/Device%20Manager.app/
-Dec 3 17:59:34 paul-mbp installd[42480]: PackageKit: Registered bundle file://localhost/Applications/Utilities/LCC%20Uninstaller.app/
-Dec 3 17:59:34 paul-mbp installd[42480]: PackageKit: Registered bundle file://localhost/Applications/Utilities/LCC%20Connection%20Utility.app/
-Dec 3 17:59:34 paul-mbp installd[42480]: PackageKit: Registered bundle file://localhost/Library/Application%20Support/Logitech.localized/Logitech%20Control%20Center.localized/Logitech%20Registration.app/
-Dec 3 17:59:34 paul-mbp installd[42480]: PackageKit: Registered bundle file://localhost/Library/Application%20Support/Logitech.localized/Logitech%20Control%20Center.localized/Logitech%20Registration.app/Contents/Resources/LogitechRegReminder.app/
-Dec 3 17:59:34 paul-mbp installd[42480]: PackageKit: Registered bundle file://localhost/Applications/Utilities/Logitech%20Unifying%20Software.app/
-Dec 3 17:59:34: --- last message repeated 1 time ---
-Dec 3 17:59:34 paul-mbp installd[42480]: PackageKit: Registered bundle file://localhost/Library/Application%20Support/Logitech.localized/Logitech%20Updater.localized/Logitech%20Updater.app/
-Dec 3 17:59:34: --- last message repeated 1 time ---
-Dec 3 17:59:34 paul-mbp installd[42480]: Installed "Logitech Control Center" ()
-Dec 3 17:59:35 paul-mbp installd[42480]: PackageKit: ----- End install -----
-Dec 3 17:59:35 paul-mbp Installer[42472]: Running install actions
-Dec 3 17:59:35 paul-mbp Installer[42472]: Removing temporary directory "/var/folders/dl/y_jpk59978s9jm3bpx9ccmsc0000gn/T//Install.42472RPB34W"
-Dec 3 17:59:35 paul-mbp Installer[42472]: Finalize disk "Macintosh HD"
-Dec 3 17:59:35 paul-mbp Installer[42472]: Notifying system of updated components
-Dec 3 17:59:35 paul-mbp Installer[42472]:
-Dec 3 17:59:35 paul-mbp Installer[42472]: **** Summary Information ****
-Dec 3 17:59:35 paul-mbp Installer[42472]: Operation Elapsed time
-Dec 3 17:59:35 paul-mbp Installer[42472]: -----------------------------
-Dec 3 17:59:35 paul-mbp Installer[42472]: disk 0.01 seconds
-Dec 3 17:59:35 paul-mbp Installer[42472]: script 0.00 seconds
-Dec 3 17:59:35 paul-mbp Installer[42472]: zero 0.02 seconds
-Dec 3 17:59:35 paul-mbp Installer[42472]: install 152.52 seconds
-Dec 3 17:59:35 paul-mbp Installer[42472]: -total- 152.56 seconds
-Dec 3 17:59:35 paul-mbp Installer[42472]:
-Dec 3 17:59:36 paul-mbp Installer[42472]: IFDInstallController D3C64E90 state = 5
-Dec 3 17:59:36 paul-mbp Installer[42472]: Displaying 'Install Succeeded' UI.
-Dec 3 18:03:14 paul-mbp Installer[42472]: Logitech Webcam Software Installation Log
-Dec 3 18:03:14 paul-mbp Installer[42472]: Opened from: /Volumes/Logitech Webcam Software v2.2.13/Logitech Webcam Software.mpkg
-Dec 3 18:03:18 paul-mbp Installer[42472]: InstallerStatusNotifications plugin loaded
-Dec 3 18:03:20 paul-mbp Installer[42472]: ================================================================================
-Dec 3 18:03:20 paul-mbp Installer[42472]: User picked Standard Install
-Dec 3 18:03:20 paul-mbp Installer[42472]: Choices selected for installation:
-Dec 3 18:03:20 paul-mbp Installer[42472]: Install: "Logitech Webcam Software"
-Dec 3 18:03:20 paul-mbp Installer[42472]: Install: "Requisite"
-Dec 3 18:03:20 paul-mbp Installer[42472]: requisite.pkg : com.LogitechUpdater.logitechWebcamSoftware.Requisite.pkg : 14
-Dec 3 18:03:20 paul-mbp Installer[42472]: Install: "Logitech Updater"
-Dec 3 18:03:20 paul-mbp Installer[42472]: logitechUpdater.pkg : com.LogitechUpdater.logitechWebcamSoftware.LogitechUpdater.pkg : 1.0
-Dec 3 18:03:20 paul-mbp Installer[42472]: Install: "LU"
-Dec 3 18:03:20 paul-mbp Installer[42472]: lu.pkg : com.LogitechUpdater.logitechWebcamSoftware.LU.pkg : 1.0
-Dec 3 18:03:20 paul-mbp Installer[42472]: Install: "LWS"
-Dec 3 18:03:20 paul-mbp Installer[42472]: lws.pkg : com.LogitechUpdater.logitechWebcamSoftware.LWS.pkg : 1.0
-Dec 3 18:03:20 paul-mbp Installer[42472]: ================================================================================
-Dec 3 18:03:20 paul-mbp Installer[42472]: It took 0.00 seconds to summarize the package selections.
-Dec 3 18:03:20 paul-mbp Installer[42472]: -[IFDInstallController(Private) _buildInstallPlan]: location = file://localhost
-Dec 3 18:03:20 paul-mbp Installer[42472]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/Logitech%20Webcam%20Software%20v2.2.13/Logitech%20Webcam%20Software.mpkg/Contents/Packages/requisite.pkg
-Dec 3 18:03:20 paul-mbp Installer[42472]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/Logitech%20Webcam%20Software%20v2.2.13/Logitech%20Webcam%20Software.mpkg/Contents/Packages/logitechUpdater.pkg
-Dec 3 18:03:20 paul-mbp Installer[42472]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/Logitech%20Webcam%20Software%20v2.2.13/Logitech%20Webcam%20Software.mpkg/Contents/Packages/lu.pkg
-Dec 3 18:03:20 paul-mbp Installer[42472]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/Logitech%20Webcam%20Software%20v2.2.13/Logitech%20Webcam%20Software.mpkg/Contents/Packages/lws.pkg
-Dec 3 18:03:20 paul-mbp Installer[42472]: Set authorization level to root for session
-Dec 3 18:03:20 paul-mbp Installer[42472]: Will use PK session
-Dec 3 18:03:20 paul-mbp Installer[42472]: Starting installation:
-Dec 3 18:03:20 paul-mbp Installer[42472]: Configuring volume "Macintosh HD"
-Dec 3 18:03:20 paul-mbp Installer[42472]: Preparing disk for local booted install.
-Dec 3 18:03:20 paul-mbp Installer[42472]: Free space on "Macintosh HD": 671.55 GB (671553286144 bytes).
-Dec 3 18:03:20 paul-mbp Installer[42472]: Create temporary directory "/var/folders/dl/y_jpk59978s9jm3bpx9ccmsc0000gn/T//Install.42472abPoGY"
-Dec 3 18:03:20 paul-mbp Installer[42472]: IFPKInstallElement (4 packages)
-Dec 3 18:03:20 paul-mbp Installer[42472]: Using authorization level of root for IFPKInstallElement
-Dec 3 18:03:20 paul-mbp installd[42480]: PackageKit: ----- Begin install -----
-Dec 3 18:03:20 paul-mbp installd[42480]: PackageKit: request=PKInstallRequest &lt;4 packages, destination=/&gt;
-Dec 3 18:03:20 paul-mbp installd[42480]: PackageKit: packages=(
- "PKJaguarPackage &lt;file://localhost/Volumes/Logitech%20Webcam%20Software%20v2.2.13/Logitech%20Webcam%20Software.mpkg/Contents/Packages/requisite.pkg&gt;",
- "PKJaguarPackage &lt;file://localhost/Volumes/Logitech%20Webcam%20Software%20v2.2.13/Logitech%20Webcam%20Software.mpkg/Contents/Packages/logitechUpdater.pkg&gt;",
- "PKJaguarPackage &lt;file://localhost/Volumes/Logitech%20Webcam%20Software%20v2.2.13/Logitech%20Webcam%20Software.mpkg/Contents/Packages/lu.pkg&gt;",
- "PKJaguarPackage &lt;file://localhost/Volumes/Logitech%20Webcam%20Software%20v2.2.13/Logitech%20Webcam%20Software.mpkg/Contents/Packages/lws.pkg&gt;"
- )
-Dec 3 18:03:20 paul-mbp installd[42480]: PackageKit: Extracting file://localhost/Volumes/Logitech%20Webcam%20Software%20v2.2.13/Logitech%20Webcam%20Software.mpkg/Contents/Packages/requisite.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/Cleanup At Startup/PKInstallSandbox-tmp/Root, uid=0)
-Dec 3 18:04:01 paul-mbp installd[42480]: PackageKit: Extracting file://localhost/Volumes/Logitech%20Webcam%20Software%20v2.2.13/Logitech%20Webcam%20Software.mpkg/Contents/Packages/logitechUpdater.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/Cleanup At Startup/PKInstallSandbox-tmp/Root/Library/Application Support/Logitech.localized/Logitech Updater.localized, uid=0)
-Dec 3 18:04:01 paul-mbp installd[42480]: PackageKit: Extracting file://localhost/Volumes/Logitech%20Webcam%20Software%20v2.2.13/Logitech%20Webcam%20Software.mpkg/Contents/Packages/lu.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/Cleanup At Startup/PKInstallSandbox-tmp/Root/Applications/Logitech/LWS/LU, uid=0)
-Dec 3 18:04:02 paul-mbp installd[42480]: PackageKit: Extracting file://localhost/Volumes/Logitech%20Webcam%20Software%20v2.2.13/Logitech%20Webcam%20Software.mpkg/Contents/Packages/lws.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/Cleanup At Startup/PKInstallSandbox-tmp/Root/Library/Application Support/Logitech.localized/Logitech Updater.localized, uid=0)
-Dec 3 18:04:02 paul-mbp installd[42480]: PackageKit: Executing script "./preflight" in /Volumes/Logitech Webcam Software v2.2.13/Logitech Webcam Software.mpkg/Contents/Packages/requisite.pkg/Contents/Resources
-Dec 3 18:04:04 paul-mbp installd[42480]: ./preflight: Quit
-Dec 3 18:04:04 paul-mbp installd[42480]: ./preflight: Removed
-Dec 3 18:04:04 paul-mbp installd[42480]: PackageKit: Shoving /var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/Cleanup At Startup/PKInstallSandbox-tmp/Root (2 items) to /
-Dec 3 18:04:04 paul-mbp installd[42480]: PackageKit: Executing script "./postflight" in /Volumes/Logitech Webcam Software v2.2.13/Logitech Webcam Software.mpkg/Contents/Packages/requisite.pkg/Contents/Resources
-Dec 3 18:04:16 paul-mbp installd[42480]: ./postflight: login item UNKNOWN
-Dec 3 18:04:16 paul-mbp installd[42480]: ./postflight: sudo: /Library/Application: command not found
-Dec 3 18:04:16 paul-mbp installd[42480]: ./postflight: login item UNKNOWN
-Dec 3 18:04:17 paul-mbp installd[42480]: ./postflight: installer: Error trying to locate volume at /Applications
-Dec 3 18:04:17 paul-mbp installd[42480]: ./postflight: Vid Installed
-Dec 3 18:04:17 paul-mbp installd[42480]: ./postflight: LWS Removed
-Dec 3 18:04:18 paul-mbp installd[42480]: ./postflight: Checking '/Users/paul/Library/Preferences/com.apple.dock.plist' for 'Logitech Webcam Software'...
-Dec 3 18:04:19 paul-mbp installd[42480]: ./postflight: Icon Added
-Dec 3 18:04:19 paul-mbp installd[42480]: PackageKit: Writing receipt for com.LogitechUpdater.logitechWebcamSoftware.Requisite.pkg to /private/var/db/receipts
-Dec 3 18:04:19 paul-mbp installd[42480]: PackageKit: Writing receipt for com.LogitechUpdater.logitechWebcamSoftware.LogitechUpdater.pkg to /private/var/db/receipts
-Dec 3 18:04:19 paul-mbp installd[42480]: PackageKit: Writing receipt for com.LogitechUpdater.logitechWebcamSoftware.LU.pkg to /private/var/db/receipts
-Dec 3 18:04:19 paul-mbp installd[42480]: PackageKit: Writing receipt for com.LogitechUpdater.logitechWebcamSoftware.LWS.pkg to /private/var/db/receipts
-Dec 3 18:04:19 paul-mbp installd[42480]: PackageKit: Registered bundle file://localhost/Applications/Logitech/LWS/Logitech%20Webcam%20Software.app/
-Dec 3 18:04:19 paul-mbp installd[42480]: PackageKit: Registered bundle file://localhost/Applications/Logitech/LWS/Logitech%20Webcam%20Software.app/Contents/MacOS/LWS.app/
-Dec 3 18:04:20 paul-mbp installd[42480]: PackageKit: Registered bundle file://localhost/Applications/Logitech/LWS/Logitech%20Webcam%20Software.app/Contents/MacOS/MacLWSLauncher.app/
-Dec 3 18:04:20 paul-mbp installd[42480]: PackageKit: Registered bundle file://localhost/Applications/Logitech/LWS/Logitech%20Webcam%20Software.app/Contents/Resources/AppToDock.app/
-Dec 3 18:04:20 paul-mbp installd[42480]: PackageKit: Registered bundle file://localhost/Applications/Logitech/LWS/Logitech%20Webcam%20Software.app/Contents/Resources/Print.app/
-Dec 3 18:04:20 paul-mbp installd[42480]: Error -43 getting LS info for file://localhost/Applications/Logitech/LWS/Logitech.app
-Dec 3 18:04:20 paul-mbp installd[42480]: Error -43 getting LS info for file://localhost/Applications/Logitech/LWS/Logitech.app/Contents/Resources/LogitechRegReminder.app
-Dec 3 18:04:20 paul-mbp installd[42480]: PackageKit: Registered bundle file://localhost/Applications/Logitech/LWS/Uninstaller/Uninstaller.app/
-Dec 3 18:04:20 paul-mbp installd[42480]: PackageKit: Registered bundle file://localhost/Applications/Logitech/LWS/LU/Logitech%20Updater.app/
-Dec 3 18:04:20 paul-mbp installd[42480]: Installed "Logitech Webcam Software" ()
-Dec 3 18:04:21 paul-mbp installd[42480]: PackageKit: ----- End install -----
-Dec 3 18:04:21 paul-mbp Installer[42472]: Running install actions
-Dec 3 18:04:21 paul-mbp Installer[42472]: Removing temporary directory "/var/folders/dl/y_jpk59978s9jm3bpx9ccmsc0000gn/T//Install.42472abPoGY"
-Dec 3 18:04:21 paul-mbp Installer[42472]: Finalize disk "Macintosh HD"
-Dec 3 18:04:21 paul-mbp Installer[42472]: Notifying system of updated components
-Dec 3 18:04:21 paul-mbp Installer[42472]:
-Dec 3 18:04:21 paul-mbp Installer[42472]: **** Summary Information ****
-Dec 3 18:04:21 paul-mbp Installer[42472]: Operation Elapsed time
-Dec 3 18:04:21 paul-mbp Installer[42472]: -----------------------------
-Dec 3 18:04:21 paul-mbp Installer[42472]: disk 0.00 seconds
-Dec 3 18:04:21 paul-mbp Installer[42472]: script 0.00 seconds
-Dec 3 18:04:21 paul-mbp Installer[42472]: zero 0.04 seconds
-Dec 3 18:04:21 paul-mbp Installer[42472]: install 61.04 seconds
-Dec 3 18:04:21 paul-mbp Installer[42472]: -total- 61.09 seconds
-Dec 3 18:04:21 paul-mbp Installer[42472]:
-Dec 3 18:04:21 paul-mbp Installer[42472]: IFDInstallController D54A27A0 state = 5
-Dec 3 18:04:21 paul-mbp Installer[42472]: Displaying 'Install Succeeded' UI.
-Dec 3 18:06:56 paul-mbp Installer[42472]: No unstarted install windows: will not relaunch
-</string>
- <key>lastModified</key>
- <date>2012-12-04T01:06:56Z</date>
- <key>source</key>
- <string>/var/log/install.log</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>fsck_hfs_log_description</string>
- <key>byteSize</key>
- <integer>19760</integer>
- <key>contents</key>
- <string>
-/dev/rdisk0s2: fsck_hfs run at Mon Feb 27 16:51:25 2012
-** /dev/rdisk0s2 (NO WRITE)
-** Root file system
- Executing fsck_hfs (version diskdev_cmds-540.1~25).
-
-/dev/rdisk0s2: fsck_hfs run at Mon Feb 27 16:51:58 2012
-/dev/rdisk0s2: ** /dev/rdisk0s2 (NO WRITE)
-/dev/rdisk0s2: ** Root file system
-/dev/rdisk0s2: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-
-/dev/rdisk0s3: fsck_hfs run at Mon Feb 27 16:51:59 2012
-/dev/rdisk0s3: ** /dev/rdisk0s3 (NO WRITE)
-/dev/rdisk0s3: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-QUICKCHECK ONLY; FILESYSTEM CLEAN
-
-/dev/rdisk0s2: fsck_hfs run at Tue Feb 28 06:04:26 2012
-** /dev/rdisk0s2 (NO WRITE)
-** Root file system
- Executing fsck_hfs (version diskdev_cmds-540.1~25).
-
-/dev/rdisk0s2: fsck_hfs run at Tue Feb 28 06:04:48 2012
-/dev/rdisk0s2: ** /dev/rdisk0s2 (NO WRITE)
-/dev/rdisk0s2: ** Root file system
-/dev/rdisk0s2: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-
-/dev/rdisk0s3: fsck_hfs run at Tue Feb 28 06:04:49 2012
-/dev/rdisk0s3: ** /dev/rdisk0s3 (NO WRITE)
-/dev/rdisk0s3: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-QUICKCHECK ONLY; FILESYSTEM CLEAN
-
-/dev/rdisk0s2: fsck_hfs run at Tue Feb 28 06:08:17 2012
-** /dev/rdisk0s2 (NO WRITE)
-** Root file system
- Executing fsck_hfs (version diskdev_cmds-540.1~25).
-
-/dev/rdisk0s2: fsck_hfs run at Wed Nov 28 21:39:02 2012
-** /dev/rdisk0s2 (NO WRITE)
-** Root file system
- Executing fsck_hfs (version diskdev_cmds-540.1~25).
-
-/dev/rdisk0s2: fsck_hfs run at Wed Nov 28 21:39:22 2012
-/dev/rdisk0s2: ** /dev/rdisk0s2 (NO WRITE)
-/dev/rdisk0s2: ** Root file system
-/dev/rdisk0s2: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-
-/dev/rdisk0s3: fsck_hfs run at Wed Nov 28 21:39:22 2012
-/dev/rdisk0s3: ** /dev/rdisk0s3 (NO WRITE)
-/dev/rdisk0s3: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-QUICKCHECK ONLY; FILESYSTEM CLEAN
-
-/dev/rdisk0s2: fsck_hfs run at Fri Nov 30 09:22:06 2012
-** /dev/rdisk0s2 (NO WRITE)
-** Root file system
- Executing fsck_hfs (version diskdev_cmds-540.1~25).
-
-/dev/rdisk0s2: fsck_hfs run at Fri Nov 30 09:22:17 2012
-/dev/rdisk0s2: ** /dev/rdisk0s2 (NO WRITE)
-/dev/rdisk0s2: ** Root file system
-/dev/rdisk0s2: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-
-/dev/rdisk0s3: fsck_hfs run at Fri Nov 30 09:22:18 2012
-/dev/rdisk0s3: ** /dev/rdisk0s3 (NO WRITE)
-/dev/rdisk0s3: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-QUICKCHECK ONLY; FILESYSTEM CLEAN
-
-/dev/rdisk0s3: fsck_hfs run at Fri Nov 30 10:42:08 2012
-/dev/rdisk0s3: ** /dev/rdisk0s3 (NO WRITE)
-/dev/rdisk0s3: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-QUICKCHECK ONLY; FILESYSTEM CLEAN
-
-/dev/rdisk1s2: fsck_hfs run at Fri Nov 30 10:47:43 2012
-/dev/rdisk1s2: ** /dev/rdisk1s2 (NO WRITE)
-/dev/rdisk1s2: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-QUICKCHECK ONLY; FILESYSTEM CLEAN
-
-/dev/rdisk1s2: fsck_hfs run at Fri Nov 30 10:47:44 2012
-/dev/rdisk1s2: ** /dev/rdisk1s2 (NO WRITE)
-/dev/rdisk1s2: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-QUICKCHECK ONLY; FILESYSTEM CLEAN
-
-/dev/rdisk2s2: fsck_hfs run at Fri Nov 30 10:53:15 2012
-/dev/rdisk2s2: ** /dev/rdisk2s2 (NO WRITE)
-/dev/rdisk2s2: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-QUICKCHECK ONLY; FILESYSTEM CLEAN
-
-/dev/rdisk2s2: fsck_hfs run at Fri Nov 30 10:53:16 2012
-/dev/rdisk2s2: ** /dev/rdisk2s2 (NO WRITE)
-/dev/rdisk2s2: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-QUICKCHECK ONLY; FILESYSTEM CLEAN
-
-/dev/rdisk3s2: fsck_hfs run at Fri Nov 30 11:03:35 2012
-/dev/rdisk3s2: ** /dev/rdisk3s2 (NO WRITE)
-/dev/rdisk3s2: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-QUICKCHECK ONLY; FILESYSTEM CLEAN
-
-/dev/rdisk3s2: fsck_hfs run at Fri Nov 30 11:03:36 2012
-/dev/rdisk3s2: ** /dev/rdisk3s2 (NO WRITE)
-/dev/rdisk3s2: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-QUICKCHECK ONLY; FILESYSTEM CLEAN
-
-/dev/rdisk0s3: fsck_hfs run at Fri Nov 30 11:14:49 2012
-/dev/rdisk0s3: ** /dev/rdisk0s3 (NO WRITE)
-/dev/rdisk0s3: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-QUICKCHECK ONLY; FILESYSTEM CLEAN
-
-/dev/rdisk4s2: fsck_hfs run at Fri Nov 30 11:20:45 2012
-/dev/rdisk4s2: ** /dev/rdisk4s2 (NO WRITE)
-/dev/rdisk4s2: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-QUICKCHECK ONLY; FILESYSTEM CLEAN
-
-/dev/rdisk1s2: fsck_hfs run at Fri Nov 30 11:34:38 2012
-/dev/rdisk1s2: ** /dev/rdisk1s2 (NO WRITE)
-/dev/rdisk1s2: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-QUICKCHECK ONLY; FILESYSTEM CLEAN
-
-/dev/rdisk1s2: fsck_hfs run at Fri Nov 30 11:34:39 2012
-/dev/rdisk1s2: ** /dev/rdisk1s2 (NO WRITE)
-/dev/rdisk1s2: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-QUICKCHECK ONLY; FILESYSTEM CLEAN
-
-/dev/rdisk4s2: fsck_hfs run at Fri Nov 30 11:38:12 2012
-/dev/rdisk4s2: ** /dev/rdisk4s2 (NO WRITE)
-/dev/rdisk4s2: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-QUICKCHECK ONLY; FILESYSTEM CLEAN
-
-/dev/rdisk0s2: fsck_hfs run at Fri Nov 30 11:51:41 2012
-** /dev/rdisk0s2 (NO WRITE)
-** Root file system
- Executing fsck_hfs (version diskdev_cmds-540.1~25).
-
-/dev/rdisk0s2: fsck_hfs run at Fri Nov 30 11:52:20 2012
-/dev/rdisk0s2: ** /dev/rdisk0s2 (NO WRITE)
-/dev/rdisk0s2: ** Root file system
-/dev/rdisk0s2: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-
-/dev/rdisk0s3: fsck_hfs run at Fri Nov 30 11:52:21 2012
-/dev/rdisk0s3: ** /dev/rdisk0s3 (NO WRITE)
-/dev/rdisk0s3: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-QUICKCHECK ONLY; FILESYSTEM CLEAN
-
-/dev/rdisk1s2: fsck_hfs run at Fri Nov 30 11:57:05 2012
-/dev/rdisk1s2: ** /dev/rdisk1s2 (NO WRITE)
-/dev/rdisk1s2: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-QUICKCHECK ONLY; FILESYSTEM CLEAN
-
-/dev/rdisk1s2: fsck_hfs run at Fri Nov 30 11:57:07 2012
-/dev/rdisk1s2: ** /dev/rdisk1s2 (NO WRITE)
-/dev/rdisk1s2: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-QUICKCHECK ONLY; FILESYSTEM CLEAN
-
-/dev/rdisk2s2: fsck_hfs run at Fri Nov 30 12:00:21 2012
-/dev/rdisk2s2: ** /dev/rdisk2s2 (NO WRITE)
-/dev/rdisk2s2: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-QUICKCHECK ONLY; FILESYSTEM CLEAN
-
-/dev/rdisk2s2: fsck_hfs run at Fri Nov 30 12:00:22 2012
-/dev/rdisk2s2: ** /dev/rdisk2s2 (NO WRITE)
-/dev/rdisk2s2: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-QUICKCHECK ONLY; FILESYSTEM CLEAN
-
-/dev/rdisk3s2: fsck_hfs run at Fri Nov 30 12:00:56 2012
-/dev/rdisk3s2: ** /dev/rdisk3s2 (NO WRITE)
-/dev/rdisk3s2: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-QUICKCHECK ONLY; FILESYSTEM CLEAN
-
-/dev/rdisk3s2: fsck_hfs run at Fri Nov 30 12:00:56 2012
-/dev/rdisk3s2: ** /dev/rdisk3s2 (NO WRITE)
-/dev/rdisk3s2: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-QUICKCHECK ONLY; FILESYSTEM CLEAN
-
-/dev/rdisk1s2: fsck_hfs run at Fri Nov 30 12:18:08 2012
-/dev/rdisk1s2: ** /dev/rdisk1s2 (NO WRITE)
-/dev/rdisk1s2: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-QUICKCHECK ONLY; FILESYSTEM CLEAN
-
-/dev/rdisk1s2: fsck_hfs run at Fri Nov 30 12:18:09 2012
-/dev/rdisk1s2: ** /dev/rdisk1s2 (NO WRITE)
-/dev/rdisk1s2: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-QUICKCHECK ONLY; FILESYSTEM CLEAN
-
-/dev/rdisk2s2: fsck_hfs run at Fri Nov 30 12:23:23 2012
-/dev/rdisk2s2: ** /dev/rdisk2s2 (NO WRITE)
-/dev/rdisk2s2: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-QUICKCHECK ONLY; FILESYSTEM CLEAN
-
-/dev/rdisk2s2: fsck_hfs run at Fri Nov 30 12:23:24 2012
-/dev/rdisk2s2: ** /dev/rdisk2s2 (NO WRITE)
-/dev/rdisk2s2: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-QUICKCHECK ONLY; FILESYSTEM CLEAN
-
-/dev/rdisk3s2: fsck_hfs run at Fri Nov 30 12:28:56 2012
-/dev/rdisk3s2: ** /dev/rdisk3s2 (NO WRITE)
-/dev/rdisk3s2: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-QUICKCHECK ONLY; FILESYSTEM CLEAN
-
-/dev/rdisk3s2: fsck_hfs run at Fri Nov 30 12:28:56 2012
-/dev/rdisk3s2: ** /dev/rdisk3s2 (NO WRITE)
-/dev/rdisk3s2: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-QUICKCHECK ONLY; FILESYSTEM CLEAN
-
-/dev/rdisk4s2: fsck_hfs run at Fri Nov 30 12:47:01 2012
-/dev/rdisk4s2: ** /dev/rdisk4s2 (NO WRITE)
-/dev/rdisk4s2: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-QUICKCHECK ONLY; FILESYSTEM CLEAN
-
-/dev/rdisk0s2: fsck_hfs run at Fri Nov 30 13:52:11 2012
-** /dev/rdisk0s2 (NO WRITE)
-** Root file system
- Executing fsck_hfs (version diskdev_cmds-540.1~25).
-
-/dev/rdisk0s2: fsck_hfs run at Fri Nov 30 13:52:40 2012
-/dev/rdisk0s2: ** /dev/rdisk0s2 (NO WRITE)
-/dev/rdisk0s2: ** Root file system
-/dev/rdisk0s2: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-
-/dev/rdisk0s3: fsck_hfs run at Fri Nov 30 13:52:40 2012
-/dev/rdisk0s3: ** /dev/rdisk0s3 (NO WRITE)
-/dev/rdisk0s3: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-QUICKCHECK ONLY; FILESYSTEM CLEAN
-
-/dev/rdisk1s2: fsck_hfs run at Fri Nov 30 13:59:37 2012
-/dev/rdisk1s2: ** /dev/rdisk1s2 (NO WRITE)
-/dev/rdisk1s2: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-QUICKCHECK ONLY; FILESYSTEM CLEAN
-
-/dev/rdisk1s2: fsck_hfs run at Fri Nov 30 13:59:38 2012
-/dev/rdisk1s2: ** /dev/rdisk1s2 (NO WRITE)
-/dev/rdisk1s2: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-QUICKCHECK ONLY; FILESYSTEM CLEAN
-
-/dev/rdisk1s2: fsck_hfs run at Fri Nov 30 14:02:25 2012
-/dev/rdisk1s2: ** /dev/rdisk1s2 (NO WRITE)
-/dev/rdisk1s2: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-QUICKCHECK ONLY; FILESYSTEM CLEAN
-
-/dev/rdisk1s2: fsck_hfs run at Fri Nov 30 14:02:26 2012
-/dev/rdisk1s2: ** /dev/rdisk1s2 (NO WRITE)
-/dev/rdisk1s2: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-QUICKCHECK ONLY; FILESYSTEM CLEAN
-
-/dev/rdisk1s1: fsck_hfs run at Fri Nov 30 14:39:40 2012
-/dev/rdisk1s1: ** /dev/rdisk1s1 (NO WRITE)
-/dev/rdisk1s1: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-QUICKCHECK ONLY; FILESYSTEM CLEAN
-
-/dev/rdisk1s1: fsck_hfs run at Fri Nov 30 14:39:41 2012
-/dev/rdisk1s1: ** /dev/rdisk1s1 (NO WRITE)
-/dev/rdisk1s1: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-QUICKCHECK ONLY; FILESYSTEM CLEAN
-
-/dev/rdisk2: fsck_hfs run at Fri Nov 30 14:40:45 2012
-/dev/rdisk2: ** /dev/rdisk2 (NO WRITE)
-/dev/rdisk2: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-QUICKCHECK ONLY; FILESYSTEM CLEAN
-
-/dev/rdisk2: fsck_hfs run at Fri Nov 30 14:40:46 2012
-/dev/rdisk2: ** /dev/rdisk2 (NO WRITE)
-/dev/rdisk2: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-QUICKCHECK ONLY; FILESYSTEM CLEAN
-
-/dev/rdisk1s2: fsck_hfs run at Fri Nov 30 14:43:53 2012
-/dev/rdisk1s2: ** /dev/rdisk1s2 (NO WRITE)
-/dev/rdisk1s2: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-QUICKCHECK ONLY; FILESYSTEM CLEAN
-
-/dev/rdisk1s2: fsck_hfs run at Fri Nov 30 14:43:54 2012
-/dev/rdisk1s2: ** /dev/rdisk1s2 (NO WRITE)
-/dev/rdisk1s2: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-QUICKCHECK ONLY; FILESYSTEM CLEAN
-
-/dev/rdisk0s3: fsck_hfs run at Fri Nov 30 14:46:22 2012
-/dev/rdisk0s3: ** /dev/rdisk0s3 (NO WRITE)
-/dev/rdisk0s3: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-QUICKCHECK ONLY; FILESYSTEM CLEAN
-
-/dev/rdisk2: fsck_hfs run at Fri Nov 30 14:55:46 2012
-/dev/rdisk2: ** /dev/rdisk2 (NO WRITE)
-/dev/rdisk2: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-QUICKCHECK ONLY; FILESYSTEM CLEAN
-
-/dev/rdisk2: fsck_hfs run at Fri Nov 30 14:55:48 2012
-/dev/rdisk2: ** /dev/rdisk2 (NO WRITE)
-/dev/rdisk2: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-QUICKCHECK ONLY; FILESYSTEM CLEAN
-
-/dev/rdisk0s2: fsck_hfs run at Fri Nov 30 16:07:46 2012
-** /dev/rdisk0s2 (NO WRITE)
-** Root file system
- Executing fsck_hfs (version diskdev_cmds-540.1~25).
-
-/dev/rdisk0s2: fsck_hfs run at Fri Nov 30 16:08:00 2012
-/dev/rdisk0s2: ** /dev/rdisk0s2 (NO WRITE)
-/dev/rdisk0s2: ** Root file system
-/dev/rdisk0s2: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-
-/dev/rdisk0s3: fsck_hfs run at Fri Nov 30 16:08:04 2012
-/dev/rdisk0s3: ** /dev/rdisk0s3 (NO WRITE)
-/dev/rdisk0s3: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-QUICKCHECK ONLY; FILESYSTEM CLEAN
-
-/dev/rdisk1s2: fsck_hfs run at Fri Nov 30 16:15:17 2012
-/dev/rdisk1s2: ** /dev/rdisk1s2 (NO WRITE)
-/dev/rdisk1s2: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-QUICKCHECK ONLY; FILESYSTEM CLEAN
-
-/dev/rdisk1s2: fsck_hfs run at Fri Nov 30 16:15:18 2012
-/dev/rdisk1s2: ** /dev/rdisk1s2 (NO WRITE)
-/dev/rdisk1s2: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-QUICKCHECK ONLY; FILESYSTEM CLEAN
-
-/dev/rdisk0s3: fsck_hfs run at Fri Nov 30 16:36:35 2012
-/dev/rdisk0s3: ** /dev/rdisk0s3 (NO WRITE)
-/dev/rdisk0s3: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-QUICKCHECK ONLY; FILESYSTEM CLEAN
-
-/dev/rdisk0s3: fsck_hfs run at Fri Nov 30 17:11:30 2012
-/dev/rdisk0s3: ** /dev/rdisk0s3 (NO WRITE)
-/dev/rdisk0s3: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-QUICKCHECK ONLY; FILESYSTEM CLEAN
-
-/dev/rdisk1: fsck_hfs run at Fri Nov 30 17:31:31 2012
-/dev/rdisk1: ** /dev/rdisk1 (NO WRITE)
-/dev/rdisk1: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-QUICKCHECK ONLY; FILESYSTEM CLEAN
-
-/dev/rdisk1: fsck_hfs run at Fri Nov 30 17:31:32 2012
-/dev/rdisk1: ** /dev/rdisk1 (NO WRITE)
-/dev/rdisk1: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-QUICKCHECK ONLY; FILESYSTEM CLEAN
-
-/dev/rdisk0s3: fsck_hfs run at Fri Nov 30 17:36:47 2012
-/dev/rdisk0s3: ** /dev/rdisk0s3 (NO WRITE)
-/dev/rdisk0s3: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-QUICKCHECK ONLY; FILESYSTEM CLEAN
-
-/dev/rdisk0s3: fsck_hfs run at Fri Nov 30 17:38:22 2012
-/dev/rdisk0s3: ** /dev/rdisk0s3 (NO WRITE)
-/dev/rdisk0s3: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-QUICKCHECK ONLY; FILESYSTEM CLEAN
-
-/dev/rdisk2s2: fsck_hfs run at Fri Nov 30 23:33:27 2012
-/dev/rdisk2s2: ** /dev/rdisk2s2 (NO WRITE)
-/dev/rdisk2s2: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-QUICKCHECK ONLY; FILESYSTEM CLEAN
-
-/dev/rdisk1: fsck_hfs run at Fri Nov 30 23:55:25 2012
-/dev/rdisk1: ** /dev/rdisk1 (NO WRITE)
-/dev/rdisk1: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-QUICKCHECK ONLY; FILESYSTEM CLEAN
-
-/dev/rdisk1: fsck_hfs run at Fri Nov 30 23:55:26 2012
-/dev/rdisk1: ** /dev/rdisk1 (NO WRITE)
-/dev/rdisk1: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-QUICKCHECK ONLY; FILESYSTEM CLEAN
-
-/dev/rdisk1s1: fsck_hfs run at Sat Dec 1 00:10:46 2012
-/dev/rdisk1s1: ** /dev/rdisk1s1 (NO WRITE)
-/dev/rdisk1s1: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-QUICKCHECK ONLY; FILESYSTEM CLEAN
-
-/dev/rdisk1s1: fsck_hfs run at Sat Dec 1 00:10:47 2012
-/dev/rdisk1s1: ** /dev/rdisk1s1 (NO WRITE)
-/dev/rdisk1s1: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-QUICKCHECK ONLY; FILESYSTEM CLEAN
-
-/dev/rdisk0s2: fsck_hfs run at Sat Dec 1 08:41:12 2012
-** /dev/rdisk0s2 (NO WRITE)
-** Root file system
- Executing fsck_hfs (version diskdev_cmds-540.1~25).
-
-/dev/rdisk0s2: fsck_hfs run at Sat Dec 1 08:41:29 2012
-/dev/rdisk0s2: ** /dev/rdisk0s2 (NO WRITE)
-/dev/rdisk0s2: ** Root file system
-/dev/rdisk0s2: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-
-/dev/rdisk0s3: fsck_hfs run at Sat Dec 1 08:41:31 2012
-/dev/rdisk0s3: ** /dev/rdisk0s3 (NO WRITE)
-/dev/rdisk0s3: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-QUICKCHECK ONLY; FILESYSTEM CLEAN
-
-/dev/rdisk1s2: fsck_hfs run at Sat Dec 1 13:27:37 2012
-/dev/rdisk1s2: ** /dev/rdisk1s2 (NO WRITE)
-/dev/rdisk1s2: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-QUICKCHECK ONLY; FILESYSTEM CLEAN
-
-/dev/rdisk1s2: fsck_hfs run at Sat Dec 1 13:27:38 2012
-/dev/rdisk1s2: ** /dev/rdisk1s2 (NO WRITE)
-/dev/rdisk1s2: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-QUICKCHECK ONLY; FILESYSTEM CLEAN
-
-/dev/rdisk0s2: fsck_hfs run at Sun Dec 2 10:46:05 2012
-** /dev/rdisk0s2 (NO WRITE)
-** Root file system
- Executing fsck_hfs (version diskdev_cmds-540.1~25).
-
-/dev/rdisk0s2: fsck_hfs run at Sun Dec 2 10:46:13 2012
-/dev/rdisk0s2: ** /dev/rdisk0s2 (NO WRITE)
-/dev/rdisk0s2: ** Root file system
-/dev/rdisk0s2: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-
-/dev/rdisk0s3: fsck_hfs run at Sun Dec 2 10:46:15 2012
-/dev/rdisk0s3: ** /dev/rdisk0s3 (NO WRITE)
-/dev/rdisk0s3: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-QUICKCHECK ONLY; FILESYSTEM CLEAN
-
-/dev/rdisk0s2: fsck_hfs run at Mon Dec 3 07:24:09 2012
-** /dev/rdisk0s2 (NO WRITE)
-** Root file system
- Executing fsck_hfs (version diskdev_cmds-540.1~25).
-
-/dev/rdisk0s2: fsck_hfs run at Mon Dec 3 07:24:19 2012
-/dev/rdisk0s2: ** /dev/rdisk0s2 (NO WRITE)
-/dev/rdisk0s2: ** Root file system
-/dev/rdisk0s2: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-
-/dev/rdisk0s3: fsck_hfs run at Mon Dec 3 07:24:21 2012
-/dev/rdisk0s3: ** /dev/rdisk0s3 (NO WRITE)
-/dev/rdisk0s3: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-QUICKCHECK ONLY; FILESYSTEM CLEAN
-
-/dev/rdisk1s2: fsck_hfs run at Mon Dec 3 09:03:32 2012
-/dev/rdisk1s2: ** /dev/rdisk1s2 (NO WRITE)
-/dev/rdisk1s2: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-QUICKCHECK ONLY; FILESYSTEM CLEAN
-
-/dev/rdisk1s2: fsck_hfs run at Mon Dec 3 09:03:33 2012
-/dev/rdisk1s2: ** /dev/rdisk1s2 (NO WRITE)
-/dev/rdisk1s2: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-QUICKCHECK ONLY; FILESYSTEM CLEAN
-
-/dev/rdisk1s2: fsck_hfs run at Mon Dec 3 12:37:24 2012
-/dev/rdisk1s2: ** /dev/rdisk1s2 (NO WRITE)
-/dev/rdisk1s2: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-QUICKCHECK ONLY; FILESYSTEM CLEAN
-
-/dev/rdisk1s2: fsck_hfs run at Mon Dec 3 12:37:25 2012
-/dev/rdisk1s2: ** /dev/rdisk1s2 (NO WRITE)
-/dev/rdisk1s2: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-QUICKCHECK ONLY; FILESYSTEM CLEAN
-
-/dev/rdisk1s2: fsck_hfs run at Mon Dec 3 16:11:10 2012
-/dev/rdisk1s2: ** /dev/rdisk1s2 (NO WRITE)
-/dev/rdisk1s2: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-QUICKCHECK ONLY; FILESYSTEM CLEAN
-
-/dev/rdisk1s2: fsck_hfs run at Mon Dec 3 16:11:10 2012
-/dev/rdisk1s2: ** /dev/rdisk1s2 (NO WRITE)
-/dev/rdisk1s2: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-QUICKCHECK ONLY; FILESYSTEM CLEAN
-
-/dev/rdisk2s2: fsck_hfs run at Mon Dec 3 16:15:51 2012
-/dev/rdisk2s2: ** /dev/rdisk2s2 (NO WRITE)
-/dev/rdisk2s2: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-QUICKCHECK ONLY; FILESYSTEM CLEAN
-
-/dev/rdisk2s2: fsck_hfs run at Mon Dec 3 16:15:51 2012
-/dev/rdisk2s2: ** /dev/rdisk2s2 (NO WRITE)
-/dev/rdisk2s2: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-QUICKCHECK ONLY; FILESYSTEM CLEAN
-
-/dev/rdisk1: fsck_hfs run at Mon Dec 3 18:02:24 2012
-/dev/rdisk1: ** /dev/rdisk1 (NO WRITE)
-/dev/rdisk1: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-QUICKCHECK ONLY; FILESYSTEM CLEAN
-
-/dev/rdisk1: fsck_hfs run at Mon Dec 3 18:02:25 2012
-/dev/rdisk1: ** /dev/rdisk1 (NO WRITE)
-/dev/rdisk1: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-QUICKCHECK ONLY; FILESYSTEM CLEAN
-
-/dev/rdisk0s2: fsck_hfs run at Mon Dec 3 18:07:24 2012
-** /dev/rdisk0s2 (NO WRITE)
-** Root file system
- Executing fsck_hfs (version diskdev_cmds-540.1~25).
-
-/dev/rdisk0s2: fsck_hfs run at Mon Dec 3 18:07:34 2012
-/dev/rdisk0s2: ** /dev/rdisk0s2 (NO WRITE)
-/dev/rdisk0s2: ** Root file system
-/dev/rdisk0s2: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-
-/dev/rdisk0s3: fsck_hfs run at Mon Dec 3 18:07:36 2012
-/dev/rdisk0s3: ** /dev/rdisk0s3 (NO WRITE)
-/dev/rdisk0s3: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-QUICKCHECK ONLY; FILESYSTEM CLEAN
-
-/dev/rdisk0s2: fsck_hfs run at Tue Dec 4 08:07:16 2012
-** /dev/rdisk0s2 (NO WRITE)
-** Root file system
- Executing fsck_hfs (version diskdev_cmds-540.1~25).
-
-/dev/rdisk0s2: fsck_hfs run at Tue Dec 4 08:07:24 2012
-/dev/rdisk0s2: ** /dev/rdisk0s2 (NO WRITE)
-/dev/rdisk0s2: ** Root file system
-/dev/rdisk0s2: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-
-/dev/rdisk0s3: fsck_hfs run at Tue Dec 4 08:07:26 2012
-/dev/rdisk0s3: ** /dev/rdisk0s3 (NO WRITE)
-/dev/rdisk0s3: Executing fsck_hfs (version diskdev_cmds-540.1~25).
-QUICKCHECK ONLY; FILESYSTEM CLEAN
-</string>
- <key>lastModified</key>
- <date>2012-12-04T15:07:26Z</date>
- <key>source</key>
- <string>/var/log/fsck_hfs.log</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>per_user_fsck_hfs_log_description</string>
- <key>byteSize</key>
- <integer>10398</integer>
- <key>contents</key>
- <string>
-/dev/rdisk1s2: fsck_hfs run at Fri Nov 30 10:47:43 2012
-** /dev/rdisk1s2 (NO WRITE)
- Executing fsck_hfs (version diskdev_cmds-540.1~25).
-** Checking non-journaled HFS Plus Volume.
- The volume name is Google Chrome
-** Checking extents overflow file.
-** Checking catalog file.
-** Checking multi-linked files.
-** Checking catalog hierarchy.
-** Checking volume bitmap.
-** Checking volume information.
-** The volume Google Chrome appears to be OK.
-
-/dev/rdisk2s2: fsck_hfs run at Fri Nov 30 10:53:15 2012
-** /dev/rdisk2s2 (NO WRITE)
- Executing fsck_hfs (version diskdev_cmds-540.1~25).
-** Checking non-journaled HFS Plus Volume.
- The volume name is Adobe AIR
-** Checking extents overflow file.
-** Checking catalog file.
-** Checking multi-linked files.
-** Checking catalog hierarchy.
-** Checking volume bitmap.
-** Checking volume information.
-** The volume Adobe AIR appears to be OK.
-
-/dev/rdisk3s2: fsck_hfs run at Fri Nov 30 11:03:35 2012
-** /dev/rdisk3s2 (NO WRITE)
- Executing fsck_hfs (version diskdev_cmds-540.1~25).
-** Checking Journaled HFS Plus volume.
- The volume name is 7zX
-** Checking extents overflow file.
-** Checking catalog file.
-** Checking multi-linked files.
-** Checking catalog hierarchy.
-** Checking extended attributes file.
-** Checking volume bitmap.
-** Checking volume information.
-** The volume 7zX appears to be OK.
-
-/dev/rdisk1s2: fsck_hfs run at Fri Nov 30 11:34:38 2012
-** /dev/rdisk1s2 (NO WRITE)
- Executing fsck_hfs (version diskdev_cmds-540.1~25).
-** Checking Journaled HFS Plus volume.
- The volume name is Sublime Text 2
-** Checking extents overflow file.
-** Checking catalog file.
-** Checking multi-linked files.
-** Checking catalog hierarchy.
-** Checking extended attributes file.
-** Checking volume bitmap.
-** Checking volume information.
-** The volume Sublime Text 2 appears to be OK.
-
-/dev/rdisk1s2: fsck_hfs run at Fri Nov 30 11:57:05 2012
-** /dev/rdisk1s2 (NO WRITE)
- Executing fsck_hfs (version diskdev_cmds-540.1~25).
-** Checking non-journaled HFS Plus Volume.
- The volume name is GoogleVoiceAndVideoAccelSetup_3.9.1.9832
-** Checking extents overflow file.
-** Checking catalog file.
-** Checking multi-linked files.
-** Checking catalog hierarchy.
-** Checking volume bitmap.
-** Checking volume information.
-** The volume GoogleVoiceAndVideoAccelSetup_3.9.1.9832 appears to be OK.
-
-/dev/rdisk2s2: fsck_hfs run at Fri Nov 30 12:00:21 2012
-** /dev/rdisk2s2 (NO WRITE)
- Executing fsck_hfs (version diskdev_cmds-540.1~25).
-** Checking non-journaled HFS Plus Volume.
- The volume name is GoogleVoiceAndVideoAccelSetup_3.9.1.9832
-** Checking extents overflow file.
-** Checking catalog file.
-** Checking multi-linked files.
-** Checking catalog hierarchy.
-** Checking volume bitmap.
-** Checking volume information.
-** The volume GoogleVoiceAndVideoAccelSetup_3.9.1.9832 appears to be OK.
-
-/dev/rdisk1s2: fsck_hfs run at Fri Nov 30 12:18:08 2012
-** /dev/rdisk1s2 (NO WRITE)
- Executing fsck_hfs (version diskdev_cmds-540.1~25).
-** Checking Journaled HFS Plus volume.
- The volume name is VirtualBox
-** Checking extents overflow file.
-** Checking catalog file.
-** Checking multi-linked files.
-** Checking catalog hierarchy.
-** Checking extended attributes file.
-** Checking volume bitmap.
-** Checking volume information.
-** The volume VirtualBox appears to be OK.
-
-/dev/rdisk2s2: fsck_hfs run at Fri Nov 30 12:23:23 2012
-** /dev/rdisk2s2 (NO WRITE)
- Executing fsck_hfs (version diskdev_cmds-540.1~25).
-** Checking non-journaled HFS Plus Volume.
- The volume name is VMware Fusion
-** Checking extents overflow file.
-** Checking catalog file.
-** Checking multi-linked files.
-** Checking catalog hierarchy.
-** Checking volume bitmap.
-** Checking volume information.
-** The volume VMware Fusion appears to be OK.
-
-/dev/rdisk1s2: fsck_hfs run at Fri Nov 30 13:59:37 2012
-** /dev/rdisk1s2 (NO WRITE)
- Executing fsck_hfs (version diskdev_cmds-540.1~25).
-** Checking non-journaled HFS Plus Volume.
- The volume name is Adium 1.5.4
-** Checking extents overflow file.
-** Checking catalog file.
-** Checking multi-linked files.
-** Checking catalog hierarchy.
-** Checking extended attributes file.
-** Checking volume bitmap.
-** Checking volume information.
-** The volume Adium 1.5.4 appears to be OK.
-
-/dev/rdisk1s2: fsck_hfs run at Fri Nov 30 14:02:25 2012
-** /dev/rdisk1s2 (NO WRITE)
- Executing fsck_hfs (version diskdev_cmds-540.1~25).
-** Checking Journaled HFS Plus volume.
- The volume name is vlc-2.0.4
-** Checking extents overflow file.
-** Checking catalog file.
-** Checking multi-linked files.
-** Checking catalog hierarchy.
-** Checking extended attributes file.
-** Checking volume bitmap.
-** Checking volume information.
-** The volume vlc-2.0.4 appears to be OK.
-
-/dev/rdisk1s1: fsck_hfs run at Fri Nov 30 14:39:40 2012
-** /dev/rdisk1s1 (NO WRITE)
- Executing fsck_hfs (version diskdev_cmds-540.1~25).
-** Checking non-journaled HFS Plus Volume.
- The volume name is Java 7 Update 09
-** Checking extents overflow file.
-** Checking catalog file.
-** Checking multi-linked files.
-** Checking catalog hierarchy.
-** Checking extended attributes file.
-** Checking volume bitmap.
-** Checking volume information.
-** The volume Java 7 Update 09 appears to be OK.
-
-/dev/rdisk2: fsck_hfs run at Fri Nov 30 14:40:45 2012
-** /dev/rdisk2 (NO WRITE)
- Executing fsck_hfs (version diskdev_cmds-540.1~25).
-** Checking non-journaled HFS Plus Volume.
- The volume name is vpn-2.5.2001
-** Checking extents overflow file.
-** Checking catalog file.
-** Checking multi-linked files.
-** Checking catalog hierarchy.
-** Checking extended attributes file.
-** Checking volume bitmap.
-** Checking volume information.
-** The volume vpn-2.5.2001 appears to be OK.
-
-/dev/rdisk1s2: fsck_hfs run at Fri Nov 30 14:43:53 2012
-** /dev/rdisk1s2 (NO WRITE)
- Executing fsck_hfs (version diskdev_cmds-540.1~25).
-** Checking non-journaled HFS Plus Volume.
- The volume name is Firefox
-** Checking extents overflow file.
-** Checking catalog file.
-** Checking multi-linked files.
-** Checking catalog hierarchy.
-** Checking volume bitmap.
-** Checking volume information.
-** The volume Firefox appears to be OK.
-
-/dev/rdisk2: fsck_hfs run at Fri Nov 30 14:55:46 2012
-** /dev/rdisk2 (NO WRITE)
- Executing fsck_hfs (version diskdev_cmds-540.1~25).
-** Checking non-journaled HFS Plus Volume.
- The volume name is vpn-2.5.2001
-** Checking extents overflow file.
-** Checking catalog file.
-** Checking multi-linked files.
-** Checking catalog hierarchy.
-** Checking extended attributes file.
-** Checking volume bitmap.
-** Checking volume information.
-** The volume vpn-2.5.2001 appears to be OK.
-
-/dev/rdisk1s2: fsck_hfs run at Fri Nov 30 16:15:17 2012
-** /dev/rdisk1s2 (NO WRITE)
- Executing fsck_hfs (version diskdev_cmds-540.1~25).
-** Checking Journaled HFS Plus volume.
- The volume name is Rdio
-** Checking extents overflow file.
-** Checking catalog file.
-** Checking multi-linked files.
-** Checking catalog hierarchy.
-** Checking extended attributes file.
-** Checking volume bitmap.
-** Checking volume information.
-** The volume Rdio appears to be OK.
-
-/dev/rdisk1: fsck_hfs run at Fri Nov 30 17:31:31 2012
-** /dev/rdisk1 (NO WRITE)
- Executing fsck_hfs (version diskdev_cmds-540.1~25).
-** Checking non-journaled HFS Plus Volume.
- The volume name is RCDefaultApp-2.1.X
-** Checking extents overflow file.
-** Checking catalog file.
-** Checking multi-linked files.
-** Checking catalog hierarchy.
-** Checking extended attributes file.
-** Checking volume bitmap.
-** Checking volume information.
-** The volume RCDefaultApp-2.1.X appears to be OK.
-
-/dev/rdisk1: fsck_hfs run at Fri Nov 30 23:55:25 2012
-** /dev/rdisk1 (NO WRITE)
- Executing fsck_hfs (version diskdev_cmds-540.1~25).
-** Checking Journaled HFS Plus volume.
- The volume name is Alfred.app
-** Checking extents overflow file.
-** Checking catalog file.
-** Checking multi-linked files.
-** Checking catalog hierarchy.
-** Checking extended attributes file.
-** Checking volume bitmap.
-** Checking volume information.
-** The volume Alfred.app appears to be OK.
-
-/dev/rdisk1s1: fsck_hfs run at Sat Dec 1 00:10:46 2012
-** /dev/rdisk1s1 (NO WRITE)
- Executing fsck_hfs (version diskdev_cmds-540.1~25).
-** Checking non-journaled HFS Plus Volume.
- The volume name is AdbeRdr11000_en_US
-** Checking extents overflow file.
-** Checking catalog file.
-** Checking multi-linked files.
-** Checking catalog hierarchy.
-** Checking extended attributes file.
-** Checking volume bitmap.
-** Checking volume information.
-** The volume AdbeRdr11000_en_US appears to be OK.
-
-/dev/rdisk1s2: fsck_hfs run at Sat Dec 1 13:27:37 2012
-** /dev/rdisk1s2 (NO WRITE)
- Executing fsck_hfs (version diskdev_cmds-540.1~25).
-** Checking Journaled HFS Plus volume.
- The volume name is SSHKeychain
-** Checking extents overflow file.
-** Checking catalog file.
-** Checking multi-linked files.
-** Checking catalog hierarchy.
-** Checking volume bitmap.
-** Checking volume information.
-** The volume SSHKeychain appears to be OK.
-
-/dev/rdisk1s2: fsck_hfs run at Mon Dec 3 09:03:32 2012
-** /dev/rdisk1s2 (NO WRITE)
- Executing fsck_hfs (version diskdev_cmds-540.1~25).
-** Checking non-journaled HFS Plus Volume.
- The volume name is Flash Player
-** Checking extents overflow file.
-** Checking catalog file.
-** Checking multi-linked files.
-** Checking catalog hierarchy.
-** Checking volume bitmap.
-** Checking volume information.
-** The volume Flash Player appears to be OK.
-
-/dev/rdisk1s2: fsck_hfs run at Mon Dec 3 12:37:24 2012
-** /dev/rdisk1s2 (NO WRITE)
- Executing fsck_hfs (version diskdev_cmds-540.1~25).
-** Checking Journaled HFS Plus volume.
- The volume name is Skype
-** Checking extents overflow file.
-** Checking catalog file.
-** Checking multi-linked files.
-** Checking catalog hierarchy.
-** Checking extended attributes file.
-** Checking volume bitmap.
-** Checking volume information.
-** The volume Skype appears to be OK.
-
-/dev/rdisk1: fsck_hfs run at Mon Dec 3 18:02:24 2012
-** /dev/rdisk1 (NO WRITE)
- Executing fsck_hfs (version diskdev_cmds-540.1~25).
-** Checking Journaled HFS Plus volume.
- The volume name is Logitech Webcam Software v2.2.13
-** Checking extents overflow file.
-** Checking catalog file.
-** Checking multi-linked files.
-** Checking catalog hierarchy.
-** Checking extended attributes file.
-** Checking volume bitmap.
-** Checking volume information.
-** The volume Logitech Webcam Software v2.2.13 appears to be OK.
-</string>
- <key>lastModified</key>
- <date>2012-12-04T01:02:24Z</date>
- <key>source</key>
- <string>/Users/paul/Library/logs/fsck_hfs.log</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>window_server_log_description</string>
- <key>byteSize</key>
- <integer>91344</integer>
- <key>contents</key>
- <string>...
-Dec 04 09:52:21 [180] **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
-Dec 04 09:52:21 [180] Display 0x04280140: MappedDisplay Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 3)
-Dec 04 09:52:21 [180] Display 0x04280140: MappedDisplay Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 3)
-Dec 04 09:52:22 [180] reconfigureDisplays: Configure
-Dec 04 09:52:22 [180] Mon 0x04280140: Bounds (0, 0) [1680 x 1050]; Extent (0, 0) [1680 x 1050]; Limits (0, 0) [1680 x 1050]; Mirroring 0x00000000 Mode 1 Rotation 0 Resolution 1
-Dec 04 09:52:22 [180] Display 0x04280140: MappedDisplay Unit 0: Startup Mode 1680 x 1050, CGSThirtytwoBitColor, Resolution 1, IOMode 0x43e, IODepth 0x1, IOReturn 0x0
-Dec 04 09:52:23 [180] **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
-Dec 04 09:52:23 [180] Display 0x04280140: MappedDisplay Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 3)
-Dec 04 09:52:23 [180] Display 0x04280140: MappedDisplay Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 3)
-Dec 04 09:52:24 [180] **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
-Dec 04 09:52:24 [180] Display 0x04280140: MappedDisplay Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 3)
-Dec 04 09:52:24 [180] Display 0x04280140: MappedDisplay Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 3)
-Dec 04 09:52:26 [180] No display devices are on-line. Switching to virtual display mode
-Dec 04 09:52:26 [180] New display device coming on-line. Switching from virtual display mode
-Dec 04 09:52:26 [180] reconfigureDisplays: Configure
-Dec 04 09:52:26 [180] Mon 0x2b285d8d: Bounds (0, 0) [2560 x 1440]; Extent (0, 0) [2560 x 1440]; Limits (0, 0) [2560 x 1440]; Mirroring 0x00000000 Mode 31 Rotation 0 Resolution 1
-Dec 04 09:52:26 [180] Display 0x2b285d8d: MappedDisplay Unit 1: Startup Mode 2560 x 1440, CGSThirtytwoBitColor, Resolution 1, IOMode 0x43e, IODepth 0x1, IOReturn 0x0
-Dec 04 09:52:28 [180] **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
-Dec 04 09:52:28 [180] Display 0x2b285d8d: MappedDisplay Unit 1; ColorProfile { 3, "DELL U2711"}; TransferFormula (1.000000, 1.000000, 1.000000)
-Dec 04 09:52:28 [180] Display 0x2b285d8d: MappedDisplay Unit 1; ColorProfile { 3, "DELL U2711"}; TransferFormula (1.000000, 1.000000, 1.000000)
-Dec 04 09:52:28 [180] **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
-Dec 04 09:52:28 [180] Display 0x2b285d8d: MappedDisplay Unit 1; ColorProfile { 3, "DELL U2711"}; TransferFormula (1.000000, 1.000000, 1.000000)
-Dec 04 09:52:28 [180] Display 0x2b285d8d: MappedDisplay Unit 1; ColorProfile { 3, "DELL U2711"}; TransferFormula (1.000000, 1.000000, 1.000000)
-Dec 04 09:52:32 [180] No display devices are on-line. Switching to virtual display mode
-Dec 04 09:52:32 [180] CGSessionLookupAgent: Failed to look up agent com.apple.projector_config, error 1102
-Dec 04 09:52:32 [180] New display device coming on-line. Switching from virtual display mode
-Dec 04 09:52:33 [180] reconfigureDisplays: Configure
-Dec 04 09:52:33 [180] Mon 0x04280140: Bounds (0, 0) [1680 x 1050]; Extent (0, 0) [1680 x 1050]; Limits (0, 0) [1680 x 1050]; Mirroring 0x00000000 Mode 1 Rotation 0 Resolution 1
-Dec 04 09:52:33 [180] Display 0x04280140: MappedDisplay Unit 0: Startup Mode 1680 x 1050, CGSThirtytwoBitColor, Resolution 1, IOMode 0x43e, IODepth 0x1, IOReturn 0x0
-Dec 04 09:52:34 [180] **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
-Dec 04 09:52:34 [180] Display 0x04280140: MappedDisplay Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 3)
-Dec 04 09:52:34 [180] Display 0x04280140: MappedDisplay Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 3)
-Dec 04 09:52:35 [180] **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
-Dec 04 09:52:35 [180] Display 0x04280140: MappedDisplay Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 3)
-Dec 04 09:52:35 [180] Display 0x04280140: MappedDisplay Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 3)
-Dec 04 09:52:37 [180] No display devices are on-line. Switching to virtual display mode
-Dec 04 09:52:37 [180] New display device coming on-line. Switching from virtual display mode
-Dec 04 09:52:38 [180] reconfigureDisplays: Configure
-Dec 04 09:52:38 [180] Mon 0x2b285d8d: Bounds (0, 0) [2560 x 1440]; Extent (0, 0) [2560 x 1440]; Limits (0, 0) [2560 x 1440]; Mirroring 0x00000000 Mode 31 Rotation 0 Resolution 1
-Dec 04 09:52:38 [180] Display 0x2b285d8d: MappedDisplay Unit 1: Startup Mode 2560 x 1440, CGSThirtytwoBitColor, Resolution 1, IOMode 0x43e, IODepth 0x1, IOReturn 0x0
-Dec 04 09:52:39 [180] No display devices are on-line. Switching to virtual display mode
-Dec 04 09:52:39 [180] CGSessionLookupAgent: Failed to look up agent com.apple.projector_config, error 1102
-Dec 04 09:52:39 [180] New display device coming on-line. Switching from virtual display mode
-Dec 04 09:52:39 [180] **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
-Dec 04 09:52:39 [180] Display 0x04280140: MappedDisplay Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 3)
-Dec 04 09:52:39 [180] Display 0x04280140: MappedDisplay Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 3)
-Dec 04 09:52:40 [180] **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
-Dec 04 09:52:40 [180] reconfigureDisplays: Configure
-Dec 04 09:52:40 [180] Mon 0x04280140: Bounds (0, 0) [1680 x 1050]; Extent (0, 0) [1680 x 1050]; Limits (0, 0) [1680 x 1050]; Mirroring 0x00000000 Mode 1 Rotation 0 Resolution 1
-Dec 04 09:52:40 [180] Display 0x04280140: MappedDisplay Unit 0: Startup Mode 1680 x 1050, CGSThirtytwoBitColor, Resolution 1, IOMode 0x43e, IODepth 0x1, IOReturn 0x0
-Dec 04 09:52:40 [180] Display 0x04280140: MappedDisplay Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 3)
-Dec 04 09:52:40 [180] Display 0x04280140: MappedDisplay Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 3)
-Dec 04 09:52:41 [180] **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
-Dec 04 09:52:41 [180] Display 0x04280140: MappedDisplay Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 3)
-Dec 04 09:52:41 [180] Display 0x04280140: MappedDisplay Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 3)
-Dec 04 09:52:42 [180] **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
-Dec 04 09:52:42 [180] Display 0x04280140: MappedDisplay Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 3)
-Dec 04 09:52:42 [180] Display 0x04280140: MappedDisplay Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 3)
-Dec 04 09:52:44 [180] No display devices are on-line. Switching to virtual display mode
-Dec 04 09:52:44 [180] New display device coming on-line. Switching from virtual display mode
-Dec 04 09:52:44 [180] reconfigureDisplays: Configure
-Dec 04 09:52:44 [180] Mon 0x2b285d8d: Bounds (0, 0) [2560 x 1440]; Extent (0, 0) [2560 x 1440]; Limits (0, 0) [2560 x 1440]; Mirroring 0x00000000 Mode 31 Rotation 0 Resolution 1
-Dec 04 09:52:44 [180] Display 0x2b285d8d: MappedDisplay Unit 1: Startup Mode 2560 x 1440, CGSThirtytwoBitColor, Resolution 1, IOMode 0x43e, IODepth 0x1, IOReturn 0x0
-Dec 04 09:52:46 [180] **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
-Dec 04 09:52:46 [180] Display 0x2b285d8d: MappedDisplay Unit 1; ColorProfile { 3, "DELL U2711"}; TransferFormula (1.000000, 1.000000, 1.000000)
-Dec 04 09:52:46 [180] Display 0x2b285d8d: MappedDisplay Unit 1; ColorProfile { 3, "DELL U2711"}; TransferFormula (1.000000, 1.000000, 1.000000)
-Dec 04 09:52:46 [180] **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
-Dec 04 09:52:46 [180] Display 0x2b285d8d: MappedDisplay Unit 1; ColorProfile { 3, "DELL U2711"}; TransferFormula (1.000000, 1.000000, 1.000000)
-Dec 04 09:52:46 [180] Display 0x2b285d8d: MappedDisplay Unit 1; ColorProfile { 3, "DELL U2711"}; TransferFormula (1.000000, 1.000000, 1.000000)
-Dec 04 14:27:02 [180] kCGErrorFailure: CGXDisableUpdate: UI updates were forcibly disabled by application "iTerm" for over 1.00 seconds. Server has re-enabled them.
-Dec 04 14:27:12 [180] No display devices are on-line. Switching to virtual display mode
-Dec 04 14:27:12 [180] CGSessionLookupAgent: Failed to look up agent com.apple.projector_config, error 1102
-Dec 04 14:27:12 [180] New display device coming on-line. Switching from virtual display mode
-Dec 04 14:27:12 [180] reenable_update_for_connection: UI updates were finally reenabled by application "iTerm" after 8.52 seconds (server forcibly re-enabled them after 1.00 seconds)
-Dec 04 14:27:14 [180] **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
-Dec 04 14:27:14 [180] **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
-Dec 04 14:27:14 [180] Display 0x04280140: MappedDisplay Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 3)
-Dec 04 14:27:14 [180] Display 0x04280140: MappedDisplay Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 3)
-Dec 04 14:27:14 [180] Display 0x04280140: MappedDisplay Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 3)
-Dec 04 14:27:14 [180] Display 0x04280140: MappedDisplay Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 3)
-Dec 04 14:27:17 [180] kCGErrorCannotComplete: CGXPostNotificationInternal : Time out waiting for reply from "Microsoft Outlook" for notification type 100 (CID 0x1560b, PID 701)
-Dec 04 14:27:18 [180] reconfigureDisplays: Configure
-Dec 04 14:27:18 [180] Mon 0x04280140: Bounds (0, 0) [1680 x 1050]; Extent (0, 0) [1680 x 1050]; Limits (0, 0) [1680 x 1050]; Mirroring 0x00000000 Mode 1 Rotation 0 Resolution 1
-Dec 04 14:27:18 [180] Display 0x04280140: MappedDisplay Unit 0: Startup Mode 1680 x 1050, CGSThirtytwoBitColor, Resolution 1, IOMode 0x43e, IODepth 0x1, IOReturn 0x0
-Dec 04 14:27:20 [180] **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
-Dec 04 14:27:20 [180] Display 0x04280140: MappedDisplay Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 3)
-Dec 04 14:27:20 [180] Display 0x04280140: MappedDisplay Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 3)
-</string>
- <key>lastModified</key>
- <date>2012-12-04T21:27:41Z</date>
- <key>source</key>
- <string>/var/log/windowserver.log</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>kernel_log_description</string>
- <key>byteSize</key>
- <integer>276065</integer>
- <key>contents</key>
- <string>...
-Dec 3 21:25:43 paul-mbp kernel[0]: all time: 7869 ms, comp bytes: 1764290560 time: 1434 ms 1172 Mb/s, crypt bytes: 533612944 time: 979 ms 519 Mb/s,
-Dec 3 21:25:43 paul-mbp kernel[0]: image 633463296, uncompressed 1764290560 (430735), compressed 626984720 (35%), sum1 c415729c, sum2 ef2259c9
-Dec 3 21:25:43 paul-mbp kernel[0]: wired_pages_encrypted 129630, wired_pages_clear 69846, dirty_pages_encrypted 231259
-Dec 3 21:25:43 paul-mbp kernel[0]: hibernate_write_image done(0)
-Dec 3 21:25:43 paul-mbp kernel[0]: sleep
-Dec 3 21:26:32 paul-mbp kernel[0]: Wake reason: EC.LidOpen (User)
-Dec 3 21:26:32 paul-mbp kernel[0]: Previous Sleep Cause: 5
-Dec 3 21:26:33 paul-mbp kernel[0]: TBT W (1): 0 [x]
-Dec 3 21:26:35 paul-mbp kernel[0]: AppleLMUController found an AG vendor product (0xa005), notifying SMC.
-Dec 3 21:26:37 Pauls-MacBook-Pro kernel[0]: MacAuthEvent en1 Auth result for: 00:22:15:6c:d5:52 MAC AUTH succeeded
-Dec 3 21:26:37 Pauls-MacBook-Pro kernel[0]: wlEvent: en1 en1 Link UP virtIf = 0
-Dec 3 21:26:37 Pauls-MacBook-Pro kernel[0]: AirPort: Link Up on en1
-Dec 3 21:26:37 Pauls-MacBook-Pro kernel[0]: en1: BSSID changed to 00:22:15:6c:d5:52
-Dec 3 21:26:37 Pauls-MacBook-Pro kernel[0]: AirPort: RSN handshake complete on en1
-Dec 3 21:27:39 paul-mbp kernel[0]: en1: 802.11d country code set to 'US'.
-Dec 3 21:27:39 paul-mbp kernel[0]: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 149 153 157 161 165
-Dec 3 22:03:40 paul-mbp kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=3368[GoogleSoftwareUp] clearing CS_VALID
-Dec 3 23:02:23 paul-mbp kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=3392[GoogleSoftwareUp] clearing CS_VALID
-Dec 4 08:07:23 localhost kernel[0]: PMAP: PCID enabled
-Dec 4 08:07:23 localhost kernel[0]: Darwin Kernel Version 11.4.2: Thu Aug 23 16:25:48 PDT 2012; root:xnu-1699.32.7~1/RELEASE_X86_64
-Dec 4 08:07:23 localhost kernel[0]: vm_page_bootstrap: 2008316 free pages and 72452 wired pages
-Dec 4 08:07:23 localhost kernel[0]: kext submap [0xffffff7f80736000 - 0xffffff8000000000], kernel text [0xffffff8000200000 - 0xffffff8000736000]
-Dec 4 08:07:23 localhost kernel[0]: zone leak detection enabled
-Dec 4 08:07:23 localhost kernel[0]: standard timeslicing quantum is 10000 us
-Dec 4 08:07:23 localhost kernel[0]: mig_table_max_displ = 73
-Dec 4 08:07:23 localhost kernel[0]: TSC Deadline Timer supported and enabled
-Dec 4 08:07:23 localhost kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=0 Enabled
-Dec 4 08:07:23 localhost kernel[0]: AppleACPICPU: ProcessorId=2 LocalApicId=2 Enabled
-Dec 4 08:07:23 localhost kernel[0]: AppleACPICPU: ProcessorId=3 LocalApicId=4 Enabled
-Dec 4 08:07:23 localhost kernel[0]: AppleACPICPU: ProcessorId=4 LocalApicId=6 Enabled
-Dec 4 08:07:23 localhost kernel[0]: AppleACPICPU: ProcessorId=5 LocalApicId=1 Enabled
-Dec 4 08:07:23 localhost kernel[0]: AppleACPICPU: ProcessorId=6 LocalApicId=3 Enabled
-Dec 4 08:07:23 localhost kernel[0]: AppleACPICPU: ProcessorId=7 LocalApicId=5 Enabled
-Dec 4 08:07:23 localhost kernel[0]: AppleACPICPU: ProcessorId=8 LocalApicId=7 Enabled
-Dec 4 08:07:23 localhost kernel[0]: calling mpo_policy_init for TMSafetyNet
-Dec 4 08:07:23 localhost kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
-Dec 4 08:07:23 localhost kernel[0]: calling mpo_policy_init for Sandbox
-Dec 4 08:07:23 localhost kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
-Dec 4 08:07:23 localhost kernel[0]: calling mpo_policy_init for Quarantine
-Dec 4 08:07:23 localhost kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
-Dec 4 08:07:23 localhost kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
-Dec 4 08:07:23 localhost kernel[0]: The Regents of the University of California. All rights reserved.
-Dec 4 08:07:23 localhost kernel[0]: MAC Framework successfully initialized
-Dec 4 08:07:23 localhost kernel[0]: using 16384 buffer headers and 10240 cluster IO buffer headers
-Dec 4 08:07:23 localhost kernel[0]: IOAPIC: Version 0x20 Vectors 64:87
-Dec 4 08:07:23 localhost kernel[0]: ACPI: System State [S0 S3 S4 S5]
-Dec 4 08:07:23 localhost kernel[0]: PFM64 (36 cpu) 0xf10000000, 0xf0000000
-Dec 4 08:07:23 localhost kernel[0]: [ PCI configuration begin ]
-Dec 4 08:07:23 localhost kernel[0]: AppleIntelCPUPowerManagement: Turbo Ratios 6689
-Dec 4 08:07:23 localhost kernel[0]: AppleIntelCPUPowerManagement: (built 16:32:09 Aug 23 2012) initialization complete
-Dec 4 08:07:23 localhost kernel[0]: console relocated to 0xf60010000
-Dec 4 08:07:23 localhost kernel[0]: PCI configuration changed (bridge=16 device=5 cardbus=0)
-Dec 4 08:07:23 localhost kernel[0]: [ PCI configuration end, bridges 12 devices 18 ]
-Dec 4 08:07:23 localhost kernel[0]: mbinit: done [96 MB total pool size, (64/32) split]
-Dec 4 08:07:23 localhost kernel[0]: Pthread support ABORTS when sync kernel primitives misused
-Dec 4 08:07:23 localhost kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
-Dec 4 08:07:23 localhost kernel[0]: com.apple.AppleFSCompressionTypeDataless kmod start
-Dec 4 08:07:23 localhost kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
-Dec 4 08:07:23 localhost kernel[0]: com.apple.AppleFSCompressionTypeDataless load succeeded
-Dec 4 08:07:23 localhost kernel[0]: AppleIntelCPUPowerManagementClient: ready
-Dec 4 08:07:23 localhost kernel[0]: BTCOEXIST off
-Dec 4 08:07:23 localhost kernel[0]: wl0: Broadcom BCM4331 802.11 Wireless Controller
-Dec 4 08:07:23 localhost kernel[0]: 5.106.198.19
-Dec 4 08:07:23 localhost kernel[0]: FireWire (OHCI) Lucent ID 5901 built-in now active, GUID 3c0754fffeb1434c; max speed s800.
-Dec 4 08:07:23 localhost kernel[0]: rooting via boot-uuid from /chosen: 6F494C01-FE38-3F2F-92CD-CDEE95DFB9DA
-Dec 4 08:07:23 localhost kernel[0]: Waiting on &lt;dict ID="0"&gt;&lt;key&gt;IOProviderClass&lt;/key&gt;&lt;string ID="1"&gt;IOResources&lt;/string&gt;&lt;key&gt;IOResourceMatch&lt;/key&gt;&lt;string ID="2"&gt;boot-uuid-media&lt;/string&gt;&lt;/dict&gt;
-Dec 4 08:07:23 localhost kernel[0]: AppleUSBMultitouchDriver::checkStatus - received Status Packet, Payload 2: device was reinitialized
-Dec 4 08:07:23 localhost kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@1F,2/AppleIntelPchSeriesAHCI/PRT0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOBlockStorageDriver/TOSHIBA MK7559GSXF Media/IOGUIDPartitionScheme/Macintosh HD@2
-Dec 4 08:07:23 localhost kernel[0]: BSD root: disk0s2, major 14, minor 2
-Dec 4 08:07:23 localhost kernel[0]: Kernel is LP64
-Dec 4 08:07:23 localhost kernel[0]: [IOBluetoothHCIController::setConfigState] calling registerService
-Dec 4 08:07:23 localhost kernel[0]: USBMSC Identifier (non-unique): 000000264001 0x424 0x4063 0x191
-Dec 4 08:07:24 localhost kernel[0]: BCM5701Enet: Ethernet address 3c:07:54:74:1e:2b
-Dec 4 08:07:24 localhost kernel[0]: AirPort_Brcm4331: Ethernet address 68:a8:6d:50:89:64
-Dec 4 08:07:24 localhost kernel[0]: IO80211Controller::dataLinkLayerAttachComplete(): adding AppleEFINVRAM notification
-Dec 4 08:07:24 localhost kernel[0]: IO80211Interface::efiNVRAMPublished():
-Dec 4 08:07:25 localhost kernel[0]: AGC: 3.1.33, HW version=1.9.23, flags:0, features:20600
-Dec 4 08:07:25 localhost kernel[0]: Previous Shutdown Cause: 5
-Dec 4 08:07:25 localhost kernel[0]: SMC::smcInitHelper ERROR: MMIO regMap == NULL - fall back to old SMC mode
-Dec 4 08:07:25 localhost kernel[0]: in func createVirtualInterface ifRole = 1
-Dec 4 08:07:25 localhost kernel[0]: Created virtif 0xffffff8013215000 p2p0
-Dec 4 08:07:25 localhost kernel[0]: [AGPM Controller] build GPUDict by Vendor1002Device6741
-Dec 4 08:07:26 localhost kernel[0]: ** Device in slot: SLOT--1 **
-Dec 4 08:07:26 localhost kernel[0]: DSMOS has arrived
-Dec 4 08:07:27 Pauls-MacBook-Pro kernel[0]: AirPort: Link Down on en1. Reason 1 (Unspecified).
-Dec 4 08:07:30 Pauls-MacBook-Pro kernel[0]: ast_pending=0xffffff80002af8b0
-Dec 4 08:07:30 Pauls-MacBook-Pro kernel[0]: cpu_interrupt=0xffffff80002cb890
-Dec 4 08:07:30 Pauls-MacBook-Pro kernel[0]: vboxdrv: fAsync=0 offMin=0x2c8a offMax=0x4e34
-Dec 4 08:07:30 Pauls-MacBook-Pro kernel[0]: VBoxDrv: version 4.2.4 r81684; IOCtl version 0x1a0004; IDC version 0x10000; dev major=34
-Dec 4 08:07:31 Pauls-MacBook-Pro kernel[0]: VBoxFltDrv: version 4.2.4 r81684
-Dec 4 08:07:31 Pauls-MacBook-Pro kernel[0]: VBoxAdpDrv: version 4.2.4 r81684
-Dec 4 08:07:33 Pauls-MacBook-Pro kernel[0]: macx_swapon SUCCESS
-Dec 4 08:07:38 Pauls-MacBook-Pro kernel[0]: MacAuthEvent en1 Auth result for: 00:22:15:6c:d5:52 MAC AUTH succeeded
-Dec 4 08:07:38 Pauls-MacBook-Pro kernel[0]: wlEvent: en1 en1 Link UP virtIf = 0
-Dec 4 08:07:38 Pauls-MacBook-Pro kernel[0]: AirPort: Link Up on en1
-Dec 4 08:07:38 Pauls-MacBook-Pro kernel[0]: en1: BSSID changed to 00:22:15:6c:d5:52
-Dec 4 08:07:39 Pauls-MacBook-Pro kernel[0]: AirPort: RSN handshake complete on en1
-Dec 4 08:07:44 Pauls-MacBook-Pro kernel[0]: AppleLMUController found an AG vendor product (0xa005), notifying SMC.
-Dec 4 08:08:01 paul-mbp kernel[0]: utun_ctl_connect: creating interface utun0
-Dec 4 08:08:01 paul-mbp kernel[0]: SIOCPROTODETACH_IN6: utun0 error=6
-Dec 4 08:09:17 paul-mbp kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=266[GoogleSoftwareUp] clearing CS_VALID
-Dec 4 08:09:40 paul-mbp kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=308[ksadmin] clearing CS_VALID
-Dec 4 08:09:41 paul-mbp kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=312[ksadmin] clearing CS_VALID
-Dec 4 08:55:58 paul-mbp kernel[0]: utun_ctl_connect: creating interface utun0
-Dec 4 09:07:58 Pauls-MacBook-Pro kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=1329[GoogleSoftwareUp] clearing CS_VALID
-Dec 4 09:52:15 Pauls-MacBook-Pro kernel[0]: USBMSC Identifier (non-unique): 000000264001 0x424 0x4063 0x191
-Dec 4 09:52:45: --- last message repeated 3 times ---
-Dec 4 10:06:41 Pauls-MacBook-Pro kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=1418[GoogleSoftwareUp] clearing CS_VALID
-Dec 4 11:05:24 Pauls-MacBook-Pro kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=2604[GoogleSoftwareUp] clearing CS_VALID
-Dec 4 11:50:38 Pauls-MacBook-Pro kernel[0]: firefox (map: 0xffffff8012c271d0) triggered DYLD shared region unnest for map: 0xffffff8012c271d0, region 0x7fff95200000-&gt;0x7fff95400000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
-Dec 4 12:04:07 Pauls-MacBook-Pro kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=2668[GoogleSoftwareUp] clearing CS_VALID
-Dec 4 12:39:14 paul-mbp kernel[0]: SIOCPROTODETACH_IN6: utun0 error=6
-Dec 4 12:39:19 paul-mbp kernel[0]: utun_ctl_connect: creating interface utun0
-Dec 4 12:39:19 paul-mbp kernel[0]: SIOCPROTODETACH_IN6: utun0 error=6
-Dec 4 12:44:05 paul-mbp kernel[0]: utun_ctl_connect: creating interface utun0
-Dec 4 12:57:40 Pauls-MacBook-Pro kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=6821[ksadmin] clearing CS_VALID
-Dec 4 12:57:41 Pauls-MacBook-Pro kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=6824[ksadmin] clearing CS_VALID
-Dec 4 13:02:50 Pauls-MacBook-Pro kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=6839[GoogleSoftwareUp] clearing CS_VALID
-Dec 4 13:05:16 Pauls-MacBook-Pro kernel[0]: vmci: Loaded @ 0xffffff7f807f8cf6: Info 0xffffff7f80804a80 Name com.vmware.kext.vmci Version 90.4.18 build-900491 at Nov 6 2012 14:55:10
-Dec 4 13:05:16 Pauls-MacBook-Pro kernel[0]: vmci: Initializing module.
-Dec 4 13:05:16 Pauls-MacBook-Pro kernel[0]: vmci: VMCI: shared components initialized.
-Dec 4 13:05:16 Pauls-MacBook-Pro kernel[0]: vmci: VMCI: host components initialized.
-Dec 4 13:05:16 Pauls-MacBook-Pro kernel[0]: vmci: Module initialized.
-Dec 4 13:05:16 Pauls-MacBook-Pro kernel[0]: vmci: Begin helper queue thread.
-Dec 4 13:05:16 Pauls-MacBook-Pro kernel[0]: vsock: Loaded @ 0xffffff7f80809be6: Info 0xffffff7f80815040 Name com.vmware.kext.vsockets Version 90.4.22 build-900491 at Nov 6 2012 14:55:17
-Dec 4 13:05:16 Pauls-MacBook-Pro kernel[0]: vsock: Initializing module...
-Dec 4 13:05:16 Pauls-MacBook-Pro kernel[0]: vsock: Begin workloop.
-Dec 4 13:05:16 Pauls-MacBook-Pro kernel[0]: vsock: Module initialized.
-Dec 4 13:05:16 Pauls-MacBook-Pro kernel[0]: vmnet: Loaded @ 0xffffff7f80819ce0: Info 0xffffff7f80822060 Name com.vmware.kext.vmnet Version 0090.04.91 build-900491 at Nov 6 2012 14:55:24
-Dec 4 13:05:16 Pauls-MacBook-Pro kernel[0]: vmnet: Initializing module.
-Dec 4 13:05:16 Pauls-MacBook-Pro kernel[0]: vmnet: VMNet_Start allocated gOSMallocTag.
-Dec 4 13:05:16 Pauls-MacBook-Pro kernel[0]: vmnet: VMNet_Start allocated vnetBigLock.
-Dec 4 13:05:16 Pauls-MacBook-Pro kernel[0]: vmnet: Module initialized.
-Dec 4 13:05:16 Pauls-MacBook-Pro kernel[0]: vmmon: Loaded @ 0xffffff7f80823c2d: Info 0xffffff7f8082e060 Name com.vmware.kext.vmx86 Version 0090.04.91 build-900491 at Nov 6 2012 14:55:01
-Dec 4 13:05:16 Pauls-MacBook-Pro kernel[0]: vmmon: Instrumenting bug 151304...
-Dec 4 13:05:16 Pauls-MacBook-Pro kernel[0]: vmmon: Cycles 54
-Dec 4 13:05:16 Pauls-MacBook-Pro kernel[0]: vmmon: vTimemmonr t: hread Mstartedodule initialized.
-Dec 4 13:05:16 Pauls-MacBook-Pro kernel[0]: .
-Dec 4 13:05:17 Pauls-MacBook-Pro kernel[0]: vmnet: VNetUserIf_Create: created userIf at 0xffffff8014b81800.
-Dec 4 13:05:17 Pauls-MacBook-Pro kernel[0]: vmnet: VMNetConnect: returning port 0xffffff8014b81800
-Dec 4 13:05:17 Pauls-MacBook-Pro kernel[0]: vmnet: Hub 2 does not exist, allocating memory.
-Dec 4 13:05:17 Pauls-MacBook-Pro kernel[0]: vmnet: Allocated hub 0xffffff80141bd000 for hubNum 2.
-Dec 4 13:05:17 Pauls-MacBook-Pro kernel[0]: vmnet: VMNET_SO_BINDTOHUB: port: paddr 00:50:56:fa:ef:6d
-Dec 4 13:05:17 Pauls-MacBook-Pro kernel[0]: vmnet: Hub 2
-Dec 4 13:05:17 Pauls-MacBook-Pro kernel[0]: vmnet: Port 0
-Dec 4 13:05:17 Pauls-MacBook-Pro kernel[0]: vmnet: bridge-en1: media 80 dev 0xffffff80123200f8 family 2
-Dec 4 13:05:17 Pauls-MacBook-Pro kernel[0]: vmnet: bridge-en1: wireless interface detected.
-Dec 4 13:05:17 Pauls-MacBook-Pro kernel[0]: vmnet: bridge-en1: up
-Dec 4 13:05:17 Pauls-MacBook-Pro kernel[0]: vmnet: bridge-en1: attached
-Dec 4 13:05:17 Pauls-MacBook-Pro kernel[0]: vmnet: VNetUserIfFree: freeing userIf at 0xffffff8014b81800.
-Dec 4 13:05:17 Pauls-MacBook-Pro kernel[0]: vmnet: VNetUserIf_Create: created userIf at 0xffffff8014b81800.
-Dec 4 13:05:17 Pauls-MacBook-Pro kernel[0]: vmnet: VMNetConnect: returning port 0xffffff8014b81800
-Dec 4 13:05:17 Pauls-MacBook-Pro kernel[0]: vmnet: Hub 0 does not exist, allocating memory.
-Dec 4 13:05:17 Pauls-MacBook-Pro kernel[0]: vmnet: Allocated hub 0xffffff80141c2000 for hubNum 0.
-Dec 4 13:05:17 Pauls-MacBook-Pro kernel[0]: vmnet: VMNET_SO_BINDTOHUB: port: paddr 00:50:56:e1:31:56
-Dec 4 13:05:17 Pauls-MacBook-Pro kernel[0]: vmnet: Hub 0
-Dec 4 13:05:17 Pauls-MacBook-Pro kernel[0]: vmnet: Port 0
-Dec 4 13:05:17 Pauls-MacBook-Pro kernel[0]: vmnet: bridge-en1: media 80 dev 0xffffff80123200f8 family 2
-Dec 4 13:05:17 Pauls-MacBook-Pro kernel[0]: vmnet: bridge-en1: wireless interface detected.
-Dec 4 13:05:17 Pauls-MacBook-Pro kernel[0]: vmnet: bridge-en1: up
-Dec 4 13:05:17 Pauls-MacBook-Pro kernel[0]: vmnet: bridge-en1: attached
-Dec 4 13:05:17 Pauls-MacBook-Pro kernel[0]: vmnet: VNetUserIfFree: freeing userIf at 0xffffff8014b81800.
-Dec 4 13:05:17 Pauls-MacBook-Pro kernel[0]: vmnet: VNetUserIf_Create: created userIf at 0xffffff8014bede00.
-Dec 4 13:05:17 Pauls-MacBook-Pro kernel[0]: vmnet: VMNetConnect: returning port 0xffffff8014bede00
-Dec 4 13:05:17 Pauls-MacBook-Pro kernel[0]: vmnet: Hub 1 does not exist, allocating memory.
-Dec 4 13:05:17 Pauls-MacBook-Pro kernel[0]: vmnet: Allocated hub 0xffffff80141cc000 for hubNum 1.
-Dec 4 13:05:17 Pauls-MacBook-Pro kernel[0]: vmnet: VMNET_SO_BINDTOHUB: port: paddr 00:50:56:ea:5f:b2
-Dec 4 13:05:17 Pauls-MacBook-Pro kernel[0]: vmnet: Hub 1
-Dec 4 13:05:17 Pauls-MacBook-Pro kernel[0]: vmnet: Port 0
-Dec 4 13:05:17 Pauls-MacBook-Pro kernel[0]: vmnet: VNetUserIfFree: freeing userIf at 0xffffff8014bede00.
-Dec 4 13:05:17 Pauls-MacBook-Pro kernel[0]: vmnet: netif-vmnet1: Adding protocol 2.
-Dec 4 13:05:17 Pauls-MacBook-Pro kernel[0]: vmnet: netif-vmnet1: SIOCSIFFLAGS: 0x8863
-Dec 4 13:05:17: --- last message repeated 1 time ---
-Dec 4 13:05:17 Pauls-MacBook-Pro kernel[0]: vmnet: VNetUserIf_Create: created userIf at 0xffffff801290e200.
-Dec 4 13:05:17 Pauls-MacBook-Pro kernel[0]: vmnet: VMNetConnect: returning port 0xffffff801290e200
-Dec 4 13:05:17 Pauls-MacBook-Pro kernel[0]: vmnet: VMNET_SO_BINDTOHUB: port: paddr 00:50:56:fe:7e:d0
-Dec 4 13:05:17 Pauls-MacBook-Pro kernel[0]: vmnet: Hub 1
-Dec 4 13:05:17 Pauls-MacBook-Pro kernel[0]: vmnet: Port 0
-Dec 4 13:05:17 Pauls-MacBook-Pro kernel[0]: vmnet: Port 1
-Dec 4 13:05:17 Pauls-MacBook-Pro kernel[0]: vmnet: VNetUserIf_Create: created userIf at 0xffffff801277bc00.
-Dec 4 13:05:17 Pauls-MacBook-Pro kernel[0]: vmnet: VMNetConnect: returning port 0xffffff801277bc00
-Dec 4 13:05:17 Pauls-MacBook-Pro kernel[0]: vmnet: Hub 8 does not exist, allocating memory.
-Dec 4 13:05:17 Pauls-MacBook-Pro kernel[0]: vmnet: Allocated hub 0xffffff80141d1000 for hubNum 8.
-Dec 4 13:05:17 Pauls-MacBook-Pro kernel[0]: vmnet: VMNET_SO_BINDTOHUB: port: paddr 00:50:56:f1:58:76
-Dec 4 13:05:17 Pauls-MacBook-Pro kernel[0]: vmnet: Hub 8
-Dec 4 13:05:17 Pauls-MacBook-Pro kernel[0]: vmnet: Port 0
-Dec 4 13:05:17 Pauls-MacBook-Pro kernel[0]: vmnet: VMNetSetopt: Set link state UP
-Dec 4 13:05:17 Pauls-MacBook-Pro kernel[0]: vmnet: VNetUserIf_Create: created userIf at 0xffffff80133ea200.
-Dec 4 13:05:17 Pauls-MacBook-Pro kernel[0]: vmnet: VMNetConnect: returning port 0xffffff80133ea200
-Dec 4 13:05:17 Pauls-MacBook-Pro kernel[0]: vmnet: VMNET_SO_BINDTOHUB: port: paddr 00:50:56:f0:29:c4
-Dec 4 13:05:17 Pauls-MacBook-Pro kernel[0]: vmnet: Hub 8
-Dec 4 13:05:17 Pauls-MacBook-Pro kernel[0]: vmnet: Port 0
-Dec 4 13:05:17 Pauls-MacBook-Pro kernel[0]: vmnet: Port 1
-Dec 4 13:05:17 Pauls-MacBook-Pro kernel[0]: vmnet: VNetUserIfFree: freeing userIf at 0xffffff80133ea200.
-Dec 4 13:05:17 Pauls-MacBook-Pro kernel[0]: vmnet: netif-vmnet8: Adding protocol 2.
-Dec 4 13:05:17 Pauls-MacBook-Pro kernel[0]: vmnet: netif-vmnet8: SIOCSIFFLAGS: 0x8863
-Dec 4 13:05:18: --- last message repeated 1 time ---
-Dec 4 13:05:18 Pauls-MacBook-Pro kernel[0]: vmnet: VNetUserIf_Create: created userIf at 0xffffff8014bcaa00.
-Dec 4 13:05:18 Pauls-MacBook-Pro kernel[0]: vmnet: VMNetConnect: returning port 0xffffff8014bcaa00
-Dec 4 13:05:18 Pauls-MacBook-Pro kernel[0]: vmnet: VMNET_SO_BINDTOHUB: port: paddr 00:50:56:fd:fb:84
-Dec 4 13:05:18 Pauls-MacBook-Pro kernel[0]: vmnet: Hub 8
-Dec 4 13:05:18 Pauls-MacBook-Pro kernel[0]: vmnet: Port 0
-Dec 4 13:05:18 Pauls-MacBook-Pro kernel[0]: vmnet: Port 1
-Dec 4 13:05:18 Pauls-MacBook-Pro kernel[0]: vmnet: Port 2
-Dec 4 13:05:18 Pauls-MacBook-Pro kernel[0]: vmioplug: Loaded @ 0xffffff7f807cad82: Info 0xffffff7f807cd0c0 Name com.vmware.kext.vmioplug.10.1.24 Version 10.1.24 build-900491 at Nov 6 2012 14:55:27
-Dec 4 13:05:25 Pauls-MacBook-Pro kernel[0]: vmmon: offset 0: 72
-Dec 4 13:05:25 Pauls-MacBook-Pro kernel[0]: vmmon: offset 1: 16
-Dec 4 13:05:25 Pauls-MacBook-Pro kernel[0]: vmmon: offset 2: 56
-Dec 4 13:05:25 Pauls-MacBook-Pro kernel[0]: vmmon: offset 3: 64
-Dec 4 13:05:25 Pauls-MacBook-Pro kernel[0]: vmmon: offset 4: 76
-Dec 4 13:05:25 Pauls-MacBook-Pro kernel[0]: vmmon: PTSC: initialized at 2194362000 Hz using reference clock, TSCs are synchronized.
-Dec 4 13:05:25 Pauls-MacBook-Pro kernel[0]: vmmon: Cycles 59
-Dec 4 13:05:52 Pauls-MacBook-Pro kernel[0]: vmnet: VNetUserIf_Create: created userIf at 0xffffff80133daa00.
-Dec 4 13:05:52 Pauls-MacBook-Pro kernel[0]: vmnet: VMNetConnect: returning port 0xffffff80133daa00
-Dec 4 13:05:52 Pauls-MacBook-Pro kernel[0]: vmnet: VMNET_SO_BINDTOHUB: port: paddr 00:50:56:e6:75:7e
-Dec 4 13:05:52 Pauls-MacBook-Pro kernel[0]: vmnet: Hub 2
-Dec 4 13:05:52 Pauls-MacBook-Pro kernel[0]: vmnet: Port 0
-Dec 4 13:05:52 Pauls-MacBook-Pro kernel[0]: vmnet: Port 1
-Dec 4 13:05:52 Pauls-MacBook-Pro kernel[0]: vmnet: VNetUserIf_Create: created userIf at 0xffffff80133cf200.
-Dec 4 13:05:52 Pauls-MacBook-Pro kernel[0]: vmnet: VMNetConnect: returning port 0xffffff80133cf200
-Dec 4 13:05:52 Pauls-MacBook-Pro kernel[0]: vmnet: VMNET_SO_BINDTOHUB: port: paddr 00:50:56:e7:70:66
-Dec 4 13:05:52 Pauls-MacBook-Pro kernel[0]: vmnet: Hub 2
-Dec 4 13:05:52 Pauls-MacBook-Pro kernel[0]: vmnet: Port 0
-Dec 4 13:05:52 Pauls-MacBook-Pro kernel[0]: vmnet: Port 1
-Dec 4 13:05:52 Pauls-MacBook-Pro kernel[0]: vmnet: Port 2
-Dec 4 13:05:52 Pauls-MacBook-Pro kernel[0]: vmnet: VNetUserIfFree: freeing userIf at 0xffffff80133cf200.
-Dec 4 13:08:48 Pauls-MacBook-Pro kernel[0]: wlEvent: en1 en1 Link DOWN virtIf = 0
-Dec 4 13:08:48 Pauls-MacBook-Pro kernel[0]: AirPort: Link Down on en1. Reason 7 (Frame received from nonassociated STA).
-Dec 4 13:08:48 Pauls-MacBook-Pro kernel[0]: vmnet: bridge-en1: interface en is going DOWN
-Dec 4 13:08:48: --- last message repeated 1 time ---
-Dec 4 13:08:48 Pauls-MacBook-Pro kernel[0]: en1: BSSID changed to 00:00:00:00:00:00
-Dec 4 13:08:48 Pauls-MacBook-Pro kernel[0]: vmnet: VMNetDisconnect called for port 0xffffff8014bbba00
-Dec 4 13:08:48 Pauls-MacBook-Pro kernel[0]: vmnet: bridge-en1: filter detached
-Dec 4 13:08:48 Pauls-MacBook-Pro kernel[0]: vmnet: bridge-en1: down
-Dec 4 13:08:48 Pauls-MacBook-Pro kernel[0]: vmnet: bridge-en1: detached
-Dec 4 13:08:49 Pauls-MacBook-Pro kernel[0]: vmnet: VMNetDisconnect called for port 0xffffff8019970600
-Dec 4 13:08:49 Pauls-MacBook-Pro kernel[0]: vmnet: bridge-en1: filter detached
-Dec 4 13:08:49 Pauls-MacBook-Pro kernel[0]: vmnet: bridge-en1: down
-Dec 4 13:08:49 Pauls-MacBook-Pro kernel[0]: vmnet: bridge-en1: detached
-Dec 4 13:08:49 Pauls-MacBook-Pro kernel[0]: vmnet: Freeing hub at 0xffffff80141c2000.
-Dec 4 13:08:50 Pauls-MacBook-Pro kernel[0]: vmnet: VMNetSetopt: Set link state DOWN
-Dec 4 13:08:50 Pauls-MacBook-Pro kernel[0]: vmnet: VMNetSetopt: Set link state UP
-Dec 4 13:08:54 Pauls-MacBook-Pro kernel[0]: MacAuthEvent en1 Auth result for: 00:22:15:6c:d5:52 MAC AUTH succeeded
-Dec 4 13:08:54 Pauls-MacBook-Pro kernel[0]: wlEvent: en1 en1 Link UP virtIf = 0
-Dec 4 13:08:54 Pauls-MacBook-Pro kernel[0]: AirPort: Link Up on en1
-Dec 4 13:08:54 Pauls-MacBook-Pro kernel[0]: en1: BSSID changed to 00:22:15:6c:d5:52
-Dec 4 13:08:54 Pauls-MacBook-Pro kernel[0]: vmnet: VNetUserIf_Create: created userIf at 0xffffff8012a2d000.
-Dec 4 13:08:54 Pauls-MacBook-Pro kernel[0]: vmnet: VMNetConnect: returning port 0xffffff8012a2d000
-Dec 4 13:08:54 Pauls-MacBook-Pro kernel[0]: vmnet: VMNET_SO_BINDTOHUB: port: paddr 00:50:56:ed:b4:ee
-Dec 4 13:08:54 Pauls-MacBook-Pro kernel[0]: vmnet: Hub 2
-Dec 4 13:08:54 Pauls-MacBook-Pro kernel[0]: vmnet: Port 0
-Dec 4 13:08:54 Pauls-MacBook-Pro kernel[0]: vmnet: Port 1
-Dec 4 13:08:54 Pauls-MacBook-Pro kernel[0]: vmnet: Port 2
-Dec 4 13:08:54 Pauls-MacBook-Pro kernel[0]: vmnet: bridge-en1: media 80 dev 0xffffff80123200f8 family 2
-Dec 4 13:08:54 Pauls-MacBook-Pro kernel[0]: vmnet: bridge-en1: wireless interface detected.
-Dec 4 13:08:54 Pauls-MacBook-Pro kernel[0]: vmnet: bridge-en1: up
-Dec 4 13:08:54 Pauls-MacBook-Pro kernel[0]: vmnet: bridge-en1: attached
-Dec 4 13:08:54 Pauls-MacBook-Pro kernel[0]: vmnet: VNetUserIfFree: freeing userIf at 0xffffff8012a2d000.
-Dec 4 13:08:54 Pauls-MacBook-Pro kernel[0]: AirPort: RSN handshake complete on en1
-Dec 4 13:08:54 Pauls-MacBook-Pro kernel[0]: wl0: Roamed or switched channel, reason #4, bssid 00:22:15:6c:d5:52
-Dec 4 13:08:54 Pauls-MacBook-Pro kernel[0]: en1: BSSID changed to 00:22:15:6c:d5:52
-Dec 4 13:08:54 Pauls-MacBook-Pro kernel[0]: vmnet: VNetUserIf_Create: created userIf at 0xffffff8019968600.
-Dec 4 13:08:54 Pauls-MacBook-Pro kernel[0]: vmnet: VMNetConnect: returning port 0xffffff8019968600
-Dec 4 13:08:54 Pauls-MacBook-Pro kernel[0]: vmnet: Hub 0 does not exist, allocating memory.
-Dec 4 13:08:54 Pauls-MacBook-Pro kernel[0]: vmnet: Allocated hub 0xffffff801c33b000 for hubNum 0.
-Dec 4 13:08:54 Pauls-MacBook-Pro kernel[0]: vmnet: VMNET_SO_BINDTOHUB: port: paddr 00:50:56:e6:37:82
-Dec 4 13:08:54 Pauls-MacBook-Pro kernel[0]: vmnet: Hub 0
-Dec 4 13:08:54 Pauls-MacBook-Pro kernel[0]: vmnet: Port 0
-Dec 4 13:08:54 Pauls-MacBook-Pro kernel[0]: vmnet: bridge-en1: media 80 dev 0xffffff80123200f8 family 2
-Dec 4 13:08:54 Pauls-MacBook-Pro kernel[0]: vmnet: bridge-en1: wireless interface detected.
-Dec 4 13:08:54 Pauls-MacBook-Pro kernel[0]: vmnet: bridge-en1: up
-Dec 4 13:08:54 Pauls-MacBook-Pro kernel[0]: vmnet: bridge-en1: attached
-Dec 4 13:08:54 Pauls-MacBook-Pro kernel[0]: vmnet: VNetUserIfFree: freeing userIf at 0xffffff8019968600.
-Dec 4 13:08:55 Pauls-MacBook-Pro kernel[0]: vmnet: VMNetSetopt: Set link state DOWN
-Dec 4 13:08:55 Pauls-MacBook-Pro kernel[0]: vmnet: VMNetSetopt: Set link state UP
-Dec 4 13:13:25 Pauls-MacBook-Pro kernel[0]: vmnet: Failed to deep copy mbuf: 12.
-Dec 4 13:13:25 Pauls-MacBook-Pro kernel[0]: vmnet: bridge-en1: SendToVNet copy failed: 12.
-Dec 4 13:53:52 Pauls-MacBook-Pro kernel[0]: (default pager): [KERNEL]: ps_allocate_cluster - send HI_WAT_ALERT
-Dec 4 13:53:53 Pauls-MacBook-Pro kernel[0]: macx_swapon SUCCESS
-Dec 4 13:57:28 Pauls-MacBook-Pro kernel[0]: (default pager): [KERNEL]: ps_select_segment - send HI_WAT_ALERT
-Dec 4 13:57:28 Pauls-MacBook-Pro kernel[0]: macx_swapon SUCCESS
-Dec 4 14:01:32 Pauls-MacBook-Pro kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=15199[GoogleSoftwareUp] clearing CS_VALID
-Dec 4 14:26:59 Pauls-MacBook-Pro kernel[0]: hibernate image path: /var/vm/sleepimage
-Dec 4 14:26:59 Pauls-MacBook-Pro kernel[0]: sizeof(IOHibernateImageHeader) == 512
-Dec 4 14:26:59 Pauls-MacBook-Pro kernel[0]: Opened file /var/vm/sleepimage, size 8589934592, partition base 0x0, maxio 400000 ssd 0
-Dec 4 14:26:59 Pauls-MacBook-Pro kernel[0]: hibernate image major 14, minor 0, blocksize 512, pollers 5
-Dec 4 14:26:59 Pauls-MacBook-Pro kernel[0]: hibernate_alloc_pages flags 00000000, gobbling 0 pages
-Dec 4 14:26:59 Pauls-MacBook-Pro kernel[0]: hibernate_setup(0) took 0 ms
-Dec 4 14:27:03 Pauls-MacBook-Pro kernel[0]: en1: BSSID changed to 00:22:15:6c:d5:52
-Dec 4 14:27:03 Pauls-MacBook-Pro kernel[0]: wlEvent: en1 en1 Link DOWN virtIf = 0
-Dec 4 14:27:03 Pauls-MacBook-Pro kernel[0]: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
-Dec 4 14:27:03 Pauls-MacBook-Pro kernel[0]: vmnet: bridge-en1: interface en is going DOWN
-Dec 4 14:27:03: --- last message repeated 1 time ---
-Dec 4 14:27:03 Pauls-MacBook-Pro kernel[0]:
-Dec 4 14:27:04 Pauls-MacBook-Pro kernel[0]: hibernate_page_list_setall start 0xffffff80d2542000, 0xffffff80d2582000
-Dec 4 14:27:04 Pauls-MacBook-Pro kernel[0]: hibernate_page_list_setall time: 450 ms
-Dec 4 14:27:04 Pauls-MacBook-Pro kernel[0]: pages 2053476, wire 661926, act 366668, inact 20434, spec 52, zf 6664, throt 0, could discard act 167246 inact 244721 purgeable 16134 spec 569631
-Dec 4 14:27:04 Pauls-MacBook-Pro kernel[0]: hibernate_page_list_setall found pageCount 1055744
-Dec 4 14:27:04 Pauls-MacBook-Pro kernel[0]: IOHibernatePollerOpen, ml_get_interrupts_enabled 0
-Dec 4 14:27:04 Pauls-MacBook-Pro kernel[0]: IOHibernatePollerOpen(0)
-Dec 4 14:27:04 Pauls-MacBook-Pro kernel[0]: writing 1055460 pages
-Dec 4 14:27:04 Pauls-MacBook-Pro kernel[0]: encryptStart 4f820
-Dec 4 14:27:04 Pauls-MacBook-Pro kernel[0]: IOPolledInterface::checkForWork[5] 0xe00002eb
-Dec 4 14:27:04 Pauls-MacBook-Pro kernel[0]: PMStats: Hibernate write took 49 ms
-Dec 4 14:27:04 Pauls-MacBook-Pro kernel[0]: all time: 49 ms, comp bytes: 2924544 time: 2 ms 1030 Mb/s, crypt bytes: 2296288 time: 4 ms 519 Mb/s,
-Dec 4 14:27:04 Pauls-MacBook-Pro kernel[0]: image 0, uncompressed 2920448 (713), compressed 2292096 (78%), sum1 edb18bb4, sum2 0
-Dec 4 14:27:04 Pauls-MacBook-Pro kernel[0]: wired_pages_encrypted 2162, wired_pages_clear 0, dirty_pages_encrypted 0
-Dec 4 14:27:04 Pauls-MacBook-Pro kernel[0]: hibernate_write_image done(e00002eb)
-Dec 4 14:27:04 Pauls-MacBook-Pro kernel[0]: sleep
-Dec 4 14:27:04 Pauls-MacBook-Pro kernel[0]: SMC::smcHandleInterruptEvent WARNING status=0x0 (0x40 not set) notif=0x0
-Dec 4 14:27:09 Pauls-MacBook-Pro kernel[0]: Wake reason: EC.LidOpen (User)
-Dec 4 14:27:09 Pauls-MacBook-Pro kernel[0]: SMC::smcHandleInterruptEvent WARNING status=0x4 (0x40 not set) notif=0x0
-Dec 4 14:27:09 Pauls-MacBook-Pro kernel[0]: Previous Sleep Cause: 5
-Dec 4 14:27:10 Pauls-MacBook-Pro kernel[0]: TBT W (1): 0 [x]
-Dec 4 14:27:11 Pauls-MacBook-Pro kernel[0]: vmnet: VMNetDisconnect called for port 0xffffff8014bcc800
-Dec 4 14:27:11 Pauls-MacBook-Pro kernel[0]: vmnet: bridge-en1: filter detached
-Dec 4 14:27:11 Pauls-MacBook-Pro kernel[0]: vmnet: bridge-en1: down
-Dec 4 14:27:11 Pauls-MacBook-Pro kernel[0]: vmnet: bridge-en1: detached
-Dec 4 14:27:12 Pauls-MacBook-Pro kernel[0]: vmnet: VMNetSetopt: Set link state DOWN
-Dec 4 14:27:12 Pauls-MacBook-Pro kernel[0]: vmnet: VMNetSetopt: Set link state UP
-Dec 4 14:27:13 Pauls-MacBook-Pro kernel[0]: vmnet: VMNetDisconnect called for port 0xffffff8012a2d000
-Dec 4 14:27:13 Pauls-MacBook-Pro kernel[0]: vmnet: bridge-en1: filter detached
-Dec 4 14:27:13 Pauls-MacBook-Pro kernel[0]: vmnet: bridge-en1: down
-Dec 4 14:27:13 Pauls-MacBook-Pro kernel[0]: vmnet: bridge-en1: detached
-Dec 4 14:27:13 Pauls-MacBook-Pro kernel[0]: vmnet: Freeing hub at 0xffffff801c33b000.
-Dec 4 14:27:13 Pauls-MacBook-Pro kernel[0]: vmnet: VMNetSetopt: Set link state DOWN
-Dec 4 14:27:13 Pauls-MacBook-Pro kernel[0]: vmnet: VMNetSetopt: Set link state UP
-Dec 4 14:27:13 Pauls-MacBook-Pro kernel[0]: MacAuthEvent en1 Auth result for: 00:22:15:6c:d5:52 MAC AUTH succeeded
-Dec 4 14:27:13 Pauls-MacBook-Pro kernel[0]: wlEvent: en1 en1 Link UP virtIf = 0
-Dec 4 14:27:13 Pauls-MacBook-Pro kernel[0]: AirPort: Link Up on en1
-Dec 4 14:27:13 Pauls-MacBook-Pro kernel[0]: en1: BSSID changed to 00:22:15:6c:d5:52
-Dec 4 14:27:13 Pauls-MacBook-Pro kernel[0]: vmnet: VNetUserIf_Create: created userIf at 0xffffff80133da400.
-Dec 4 14:27:13 Pauls-MacBook-Pro kernel[0]: vmnet: VMNetConnect: returning port 0xffffff80133da400
-Dec 4 14:27:13 Pauls-MacBook-Pro kernel[0]: vmnet: VMNET_SO_BINDTOHUB: port: paddr 00:50:56:e8:81:fe
-Dec 4 14:27:13 Pauls-MacBook-Pro kernel[0]: vmnet: Hub 2
-Dec 4 14:27:13 Pauls-MacBook-Pro kernel[0]: vmnet: Port 0
-Dec 4 14:27:13 Pauls-MacBook-Pro kernel[0]: vmnet: Port 1
-Dec 4 14:27:13 Pauls-MacBook-Pro kernel[0]: vmnet: Port 2
-Dec 4 14:27:13 Pauls-MacBook-Pro kernel[0]: vmnet: bridge-en1: media 80 dev 0xffffff80123200f8 family 2
-Dec 4 14:27:13 Pauls-MacBook-Pro kernel[0]: vmnet: bridge-en1: wireless interface detected.
-Dec 4 14:27:13 Pauls-MacBook-Pro kernel[0]: vmnet: bridge-en1: up
-Dec 4 14:27:13 Pauls-MacBook-Pro kernel[0]: vmnet: bridge-en1: attached
-Dec 4 14:27:13 Pauls-MacBook-Pro kernel[0]: vmnet: VNetUserIfFree: freeing userIf at 0xffffff80133da400.
-Dec 4 14:27:13 Pauls-MacBook-Pro kernel[0]: AirPort: RSN handshake complete on en1
-Dec 4 14:27:13 Pauls-MacBook-Pro kernel[0]: vmnet: VNetUserIf_Create: created userIf at 0xffffff80133dae00.
-Dec 4 14:27:13 Pauls-MacBook-Pro kernel[0]: vmnet: VMNetConnect: returning port 0xffffff80133dae00
-Dec 4 14:27:13 Pauls-MacBook-Pro kernel[0]: vmnet: Hub 0 does not exist, allocating memory.
-Dec 4 14:27:13 Pauls-MacBook-Pro kernel[0]: vmnet: Allocated hub 0xffffff801c3e1000 for hubNum 0.
-Dec 4 14:27:13 Pauls-MacBook-Pro kernel[0]: vmnet: VMNET_SO_BINDTOHUB: port: paddr 00:50:56:e2:f2:9b
-Dec 4 14:27:13 Pauls-MacBook-Pro kernel[0]: vmnet: Hub 0
-Dec 4 14:27:13 Pauls-MacBook-Pro kernel[0]: vmnet: Port 0
-Dec 4 14:27:13 Pauls-MacBook-Pro kernel[0]: vmnet: bridge-en1: media 80 dev 0xffffff80123200f8 family 2
-Dec 4 14:27:13 Pauls-MacBook-Pro kernel[0]: vmnet: bridge-en1: wireless interface detected.
-Dec 4 14:27:13 Pauls-MacBook-Pro kernel[0]: vmnet: bridge-en1: up
-Dec 4 14:27:13 Pauls-MacBook-Pro kernel[0]: vmnet: bridge-en1: attached
-Dec 4 14:27:13 Pauls-MacBook-Pro kernel[0]: vmnet: VNetUserIfFree: freeing userIf at 0xffffff80133dae00.
-Dec 4 14:27:14 paul-mbp kernel[0]: SIOCPROTODETACH_IN6: utun0 error=6
-Dec 4 14:27:14 paul-mbp kernel[0]: vmnet: VMNetSetopt: Set link state DOWN
-Dec 4 14:27:14 paul-mbp kernel[0]: vmnet: VMNetSetopt: Set link state UP
-Dec 4 14:27:20 paul-mbp kernel[0]: utun_ctl_connect: creating interface utun0
-Dec 4 14:27:20 paul-mbp kernel[0]: SIOCPROTODETACH_IN6: utun0 error=6
-Dec 4 14:28:14 paul-mbp kernel[0]: en1: 802.11d country code set to 'US'.
-Dec 4 14:28:14 paul-mbp kernel[0]: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 149 153 157 161 165
-</string>
- <key>lastModified</key>
- <date>2012-12-04T21:28:25Z</date>
- <key>source</key>
- <string>/var/log/kernel.log</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>nvram_output_description</string>
- <key>byteSize</key>
- <integer>2821</integer>
- <key>contents</key>
- <string>&lt;?xml version="1.0" encoding="UTF-8"?&gt;
-&lt;!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"&gt;
-&lt;plist version="1.0"&gt;
-&lt;dict&gt;
- &lt;key&gt;EFICapsule_Result&lt;/key&gt;
- &lt;data&gt;
- U1RBUg==
- &lt;/data&gt;
- &lt;key&gt;RemoteDisabled&lt;/key&gt;
- &lt;data&gt;
- AQ==
- &lt;/data&gt;
- &lt;key&gt;SystemAudioVolume&lt;/key&gt;
- &lt;data&gt;
- NQ==
- &lt;/data&gt;
- &lt;key&gt;backlight-level&lt;/key&gt;
- &lt;data&gt;
- 2QI=
- &lt;/data&gt;
- &lt;key&gt;bluetoothActiveControllerInfo&lt;/key&gt;
- &lt;data&gt;
- GoKsBWiobVCJZQ==
- &lt;/data&gt;
- &lt;key&gt;boot-gamma&lt;/key&gt;
- &lt;data&gt;
- EAYAAAWgAAAAAAAAbgAAAAAAAAAHAAQE2wULC7IOHh6VJDY2bT5XV09gd3cJgKGhh6gH
- AAQE2wULC7IOHh6VJDY2bT5XV09gd3cJgKGhh6gHAAQE2wULC7IOHh6VJDY2bT5XV09g
- d3cJgKGhh6g=
- &lt;/data&gt;
- &lt;key&gt;boot-image&lt;/key&gt;
- &lt;data&gt;
- AgEMANBBAwoAAAAAAQEGAAIfAxIKAAAAAAAAAAQEGAAyADYANgA2ADIAZQAwADAAMAAA
- AH//BAA=
- &lt;/data&gt;
- &lt;key&gt;efi-apple-recovery&lt;/key&gt;
- &lt;data&gt;
- PGFycmF5PjxkaWN0PjxrZXk+SU9NYXRjaDwva2V5PjxkaWN0PjxrZXk+SU9Qcm92aWRl
- ckNsYXNzPC9rZXk+PHN0cmluZz5JT01lZGlhPC9zdHJpbmc+PGtleT5JT1Byb3BlcnR5
- TWF0Y2g8L2tleT48ZGljdD48a2V5PlVVSUQ8L2tleT48c3RyaW5nPjAwMDAzMkVFLTdB
- QzUtMDAwMC01QjdGLTAwMDAzQTVBMDAwMDwvc3RyaW5nPjwvZGljdD48L2RpY3Q+PGtl
- eT5CTExhc3RCU0ROYW1lPC9rZXk+PHN0cmluZz5kaXNrMHMxPC9zdHJpbmc+PC9kaWN0
- PjxkaWN0PjxrZXk+SU9FRklEZXZpY2VQYXRoVHlwZTwva2V5PjxzdHJpbmc+TWVkaWFG
- aWxlUGF0aDwvc3RyaW5nPjxrZXk+UGF0aDwva2V5PjxzdHJpbmc+XEVGSVxBUFBMRVxG
- SVJNV0FSRVxNQlA4MV8wMDQ3XzI3Ql9MT0NLRUQuc2NhcDwvc3RyaW5nPjwvZGljdD48
- L2FycmF5PgA=
- &lt;/data&gt;
- &lt;key&gt;efi-boot-device&lt;/key&gt;
- &lt;data&gt;
- PGFycmF5PjxkaWN0PjxrZXk+SU9NYXRjaDwva2V5PjxkaWN0PjxrZXk+SU9Qcm92aWRl
- ckNsYXNzPC9rZXk+PHN0cmluZz5JT01lZGlhPC9zdHJpbmc+PGtleT5JT1Byb3BlcnR5
- TWF0Y2g8L2tleT48ZGljdD48a2V5PlVVSUQ8L2tleT48c3RyaW5nPjVCNUVFNTQzLTI5
- MUYtNEUxQy04RUExLTIzODI5QzQxMzJCNDwvc3RyaW5nPjwvZGljdD48L2RpY3Q+PGtl
- eT5CTExhc3RCU0ROYW1lPC9rZXk+PHN0cmluZz5kaXNrMHMyPC9zdHJpbmc+PC9kaWN0
- PjwvYXJyYXk+AA==
- &lt;/data&gt;
- &lt;key&gt;efi-boot-device-data&lt;/key&gt;
- &lt;data&gt;
- AgEMANBBAwoAAAAAAQEGAAIfAxIKAAAAAAAAAAQBKgACAAAAKEAGAAAAAACgJkpXAAAA
- AEPlXlsfKRxOjqEjgpxBMrQCAn//BAA=
- &lt;/data&gt;
- &lt;key&gt;fmm-computer-name&lt;/key&gt;
- &lt;data&gt;
- UGF1bOKAmXMgTWFjQm9vayBQcm8=
- &lt;/data&gt;
- &lt;key&gt;fmm-mobileme-token-FMM&lt;/key&gt;
- &lt;data&gt;
- YnBsaXN0MDDXAQIDBAUGBwgJChUWFxhWdXNlcmlkWWF1dGhUb2tlbl8QE2RhdGFjbGFz
- c1Byb3BlcnRpZXNYcGVyc29uSURYdXNlcm5hbWVfEBJlbmFibGVkRGF0YWNsYXNzZXNY
- dXNlckluZm8RAfVfEChBUUFBQUFCUFM3NDFraHVfck9oaGNpTG51aFlmQ3BVMy1hRWl1
- THN+0QsMXxAhY29tLmFwcGxlLkRhdGFjbGFzcy5EZXZpY2VMb2NhdG9y1A0ODxAREhMU
- VmFwc0Vudlhob3N0bmFtZV1hdXRoTWVjaGFuaXNtVnNjaGVtZVpQcm9kdWN0aW9uXxAT
- cDA4LWZtaXAuaWNsb3VkLmNvbVV0b2tlblVodHRwc1k2MzEwMTg3NjlfEBNEclBwcHIy
- NDJAZ21haWwuY29toQvRGRpfEBVJblVzZU93bmVyRGlzcGxheU5hbWVcUGF1bCBNb29y
- aW5nAAgAFwAeACgAPgBHAFAAZQBuAHEAnACfAMMAzADTANwA6gDxAPwBEgEYAR4BKAE+
- AUABQwFbAAAAAAAAAgEAAAAAAAAAGwAAAAAAAAAAAAAAAAAAAWg=
- &lt;/data&gt;
- &lt;key&gt;gpu-policy&lt;/key&gt;
- &lt;data&gt;
- AQ==
- &lt;/data&gt;
- &lt;key&gt;prev-lang:kbd&lt;/key&gt;
- &lt;data&gt;
- ZW46MA==
- &lt;/data&gt;
-&lt;/dict&gt;
-&lt;/plist&gt;
-</string>
- <key>lastModified</key>
- <date>2012-12-04T21:30:17Z</date>
- <key>source</key>
- <string>/usr/sbin/nvram -xp</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>ioreg_output_description</string>
- <key>byteSize</key>
- <integer>478631</integer>
- <key>contents</key>
- <string>+-o Root &lt;class IORegistryEntry, id 0x100000100, retain 10&gt;
- | {
- | "IOKitBuildVersion" = "Darwin Kernel Version 11.4.2: Thu Aug 23 16:25:48 PDT 2012; root:xnu-1699.32.7~1/RELEASE_X86_64"
- | "IOMaximumMappedIOByteCount" = 0x20000000
- | "OS Build Version" = "11G63"
- | "OSKernelCPUSubtype" = 0x3
- | "OSKernelCPUType" = 0x1000007
- | "OSPrelinkKextCount" = 0xe3
- | "IOConsoleLocked" = No
- | "IORegistryPlanes" = {"IOACPIPlane"="IOACPIPlane","IOPower"="IOPower","IODeviceTree"="IODeviceTree","IOService"="IOService","IOUSB"="IOUSB","IOFireWire"="IOFireWire"}
- | "IOConsoleUsers" = ({"kCGSSessionOnConsoleKey"=Yes,"kCGSSessionLoginwindowSafeLogin"=No,"kSCSecuritySessionID"=0x186a4,"kCGSessionLongUserNameKey"="Paul Mooring","kCGSSessionUserIDKey"=0x1f5,"kCGSSessionUserNameKey"="paul","kCGSSessionSystemSafeBoot"=No,"kCGSessionLoginDoneKey"=Yes,"kCGSSessionAuditIDKey"=0x186a4,"kCGSSessionIDKey"=0x100,"kCGSSessionGroupIDKey"=0x14})
- | "IOKitDiagnostics" = {"Container allocation"=0x1f9fb5,"Instance allocation"=0x546120,"Pageable allocation"=0x12f14000,"Classes"={"com_belkin_f2cd0007_adapter"=0x0,"IONDRVFramebuffer"=0x0,"AppleSNBFBUserClient"=0x0,"AppleEHCIQueueHead"=0xa8,"IONaturalMemoryCursor"=0x1,"AppleFWOHCI_PM_PPC"=0x0,"IOAudioClientBufferSet"=0x0,"ATIRadeonX3000AMDR6xxPM4Channel"=0x1,"IOFireWireDevice"=0x0,"IOGen575Shared"=0x1,"ATIRadeonX3000AMDRV6xxHardware"=0x1,"AppleAHCIWorkLoop"=0x2,"IOHDACodecDevice"=0x2,"IORegistryEntry"=0x25,"AppleAHCIPort"=0x1,"AppleHDAWor$
- | }
- |
- +-o MacBookPro8,2 &lt;class IOPlatformExpertDevice, id 0x100000110, registered, matched, active, busy 0 (20916 ms), retain 40&gt;
- | {
- | "IOPlatformSystemSleepPolicy" = &lt;534c5054010006002000000020000000010000000505000008000000080000000100000000010000d4070000100000000100000005050000c5070000010000000100000005050000c407000000000000020000000d1900000000000000000000000000000d110000&gt;
- | "compatible" = &lt;4d6163426f6f6b50726f382c3200&gt;
- | "version" = &lt;312e3000&gt;
- | "board-id" = &lt;4d61632d3934323435413339343043393143383000&gt;
- | "IOInterruptSpecifiers" = (&lt;0900000005000000&gt;)
- | "IOPolledInterface" = "SMCPolledInterface is not serializable"
- | "serial-number" = &lt;4456374e00000000000000000043303248343043454456374e000000000000000000000000000000000000&gt;
- | "IOInterruptControllers" = ("io-apic-0")
- | "IOPlatformUUID" = "DAB7AD41-9312-5322-89DE-1FA4A8F1CB91"
- | "IOPlatformArgs" = &lt;0000540280ffffff00b0530280ffffff184e580280ffffff0000000000000000&gt;
- | "clock-frequency" = &lt;00e1f505&gt;
- | "manufacturer" = &lt;4170706c6520496e632e00&gt;
- | "IOConsoleSecurityInterest" = "IOCommand is not serializable"
- | "IOPlatformSerialNumber" = "C02H40CEDV7N"
- | "system-type" = &lt;02&gt;
- | "product-name" = &lt;4d6163426f6f6b50726f382c3200&gt;
- | "model" = &lt;4d6163426f6f6b50726f382c3200&gt;
- | "name" = &lt;2f00&gt;
- | "IOBusyInterest" = "IOCommand is not serializable"
- | }
- |
- +-o AppleACPIPlatformExpert &lt;class AppleACPIPlatformExpert, id 0x100000111, registered, matched, active, busy 0 (9691 ms), retain 44&gt;
- | | {
- | | "IOClass" = "AppleACPIPlatformExpert"
- | | "CFBundleIdentifier" = "com.apple.driver.AppleACPIPlatform"
- | | "IOProviderClass" = "IOPlatformExpertDevice"
- | | "IOProbeScore" = 0x2710
- | | "IONameMatch" = "ACPI"
- | | "acpi-mmcfg-seg0" = 0xe0000000
- | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | "IOPolledInterface" = "AppleACPIEventPoller is not serializable"
- | | "ACPI CA" = 0x20100528
- | | "Wake Reason" = &lt;000000000000000008000000&gt;
- | | "intel-pic" = {"IOName"="8259-pic","InterruptControllerName"="8259-pic"}
- | | "IONameMatched" = "ACPI"
- | | "Platform Memory Ranges" = (0x0,0xffffffff)
- | | "ACPI Tables" = {"MCFG"=&lt;4d4346473c00000001584150504c45204170706c65303000010000004c6f6b695f0000000000000000000000000000e0000000000000009b00000000&gt;,"RSDT"=&lt;585344549c000000012c4150504c45204170706c6530300047000000202020201300000100c0d88a0000000000b0d88a0000000000a0d88a000000000080d88a000000000070d88a0000000000c0d78a0000000000b0d78a000000000090d78a000000000050d78a000000000040d78a000000000030d78a000000000020d78a000000000010d78a000000000000d78a000000000090d88a00000000&gt;,"SSDT-8"=&lt;535344547a03000001ba506d52656600417054737400000000300000494e$
- | | "ACPI Statistics" = {"GpeLastDispatched"=0x17,"MethodCount"=0x27d3,"SciCount"=0x141c9,"GpeCount"=0x141c9,"FixedEventCount"=0x0}
- | | }
- | |
- | +-o IOPMrootDomain &lt;class IOPMrootDomain, id 0x100000114, registered, matched, active, busy 0 (6 ms), retain 67&gt;
- | | | {
- | | | "AppStatistics" = ()
- | | | "SleepStatistics" = &lt;adf76ef9b91400007c7761fcb914000000000000000000000000000000000000&gt;
- | | | "AutoPowerOff Enabled" = No
- | | | "Wake Type" = "User"
- | | | "Supported Features" = {"ConsoleShutdown"=0x20d0007,"Wake On Clamshell Open"=0x1ff0007,"Stepper CPU"=0x2030007,"WakeOnACchange"=0x1fc0007,"RestartAfterKernelPanic"=0x2020007,"MaintenanceWakeCalendarDate"=0x1fa0007,"PowerByCalendarDate"=0x1f70007,"MobileMotionModule"=0x2070007,"GPUSwitch"=0x20a0007,"WakeOnMagicPacket"=(0x2000005,0x2010005),"WakeOnLid"=0x1fe0007,"Hibernation"=0x1f50007,"AdaptiveDimming"=0x2050007,"SleepServiceWakeCalendarKey"=0x1fb0007,"Graphics_Power_Limits"=0x20b0007,"DisplayDims"=0x2080007,"Graphics_Power_Performa$
- | | | "AutoPowerOff Delay" = 0x0
- | | | "PCITopLevel" = ("MCHC","P0P2","PEG1","IGPU","UHC5","EHC2","HDEF","RP01","RP02","RP03","UHC1","EHC1","LPCB","SATA","SBUS")
- | | | "IOHibernateState" = &lt;00000000&gt;
- | | | "IOPowerManagement" = {"ChildrenPowerState"=0x3,"DevicePowerState"=0x3,"CurrentPowerState"=0x3,"MaxPowerState"=0x3}
- | | | "Standby Delay" = 0x1068
- | | | "Standby Enabled" = No
- | | | "DriverPMAssertionsDetailed" = ({"Assertions"=0x4,"ModifiedTime"=0x0,"ServicePtr"=0xffffff8012190000,"Owner"="EHC2","CreatedTime"=0x35888,"Level"=0x0,"ID"=0x1f4},{"Assertions"=0x4,"ModifiedTime"=0x50be6aa3000eb656,"ServicePtr"=0xffffff80121a4000,"Owner"="EHC1","CreatedTime"=0x3656f,"Level"=0x0,"ID"=0x1f5},{"Assertions"=0x20,"ModifiedTime"=0x50be6aae000326e2,"ServicePtr"=0xffffff8012227800,"Owner"="NHI0","CreatedTime"=0x3c702,"Level"=0x0,"ID"=0x1f6})
- | | | "PMStatusCode" = 0x0
- | | | "IOAppPowerStateInterest" = "IOCommand is not serializable"
- | | | "System Capabilities" = 0xf
- | | | "IOUserClientClass" = "RootDomainUserClient"
- | | | "Hibernate File" = "/var/vm/sleepimage"
- | | | "Hibernate Mode" = 0x3
- | | | "Last Sleep Reason" = "Clamshell Sleep"
- | | | "AppleClamshellCausesSleep" = Yes
- | | | "AppleClamshellState" = No
- | | | "IOPMSystemSleepType" = 0x3
- | | | "Power Status" = {"CPU_Power_Limits"={"CPU_Scheduler_Limit"=0x64,"CPU_Available_CPUs"=0x8,"CPU_Speed_Limit"=0x64}}
- | | | "SystemPowerProfileOverrideDict" = {"Standby Delay"=0x1068,"Standby Enabled"=0x0,"Hibernate Mode"=0x3}
- | | | "DriverPMAssertions" = 0x0
- | | | "IOPriorityPowerStateInterest" = "IOCommand is not serializable"
- | | | "IOGeneralInterest" = "IOCommand is not serializable"
- | | | "Wake Reason" = "EC.LidOpen"
- | | | "IOSleepSupported" = Yes
- | | | }
- | | |
- | | +-o IORootParent &lt;class IORootParent, id 0x100000115, !registered, !matched, active, busy 0, retain 7&gt;
- | | | {
- | | | "IOPowerManagement" = {"WQ-ScanEntries"=0xaa3,"WQ-CheckForWork"=0x2fe3,"MaxPowerState"=0x1,"WQ-QueueEmpty"=0x3c,"DevicePowerState"=0x1,"WQ-NoWorkDone"=0xa8,"ChildrenPowerState"=0x0,"CurrentPowerState"=0x1}
- | | | }
- | | |
- | | +-o RootDomainUserClient &lt;class RootDomainUserClient, id 0x100000354, !registered, !matched, active, busy 0, retain 5&gt;
- | | | {
- | | | "IOUserClientCreator" = "pid 17, opendirectoryd"
- | | | }
- | | |
- | | +-o RootDomainUserClient &lt;class RootDomainUserClient, id 0x100000356, !registered, !matched, active, busy 0, retain 5&gt;
- | | | {
- | | | "IOUserClientCreator" = "pid 18, powerd"
- | | | }
- | | |
- | | +-o RootDomainUserClient &lt;class RootDomainUserClient, id 0x100000357, !registered, !matched, active, busy 0, retain 5&gt;
- | | | {
- | | | "IOUserClientCreator" = "pid 18, powerd"
- | | | }
- | | |
- | | +-o RootDomainUserClient &lt;class RootDomainUserClient, id 0x100000358, !registered, !matched, active, busy 0, retain 5&gt;
- | | | {
- | | | "IOUserClientCreator" = "pid 18, powerd"
- | | | }
- | | |
- | | +-o RootDomainUserClient &lt;class RootDomainUserClient, id 0x100000359, !registered, !matched, active, busy 0, retain 5&gt;
- | | | {
- | | | "IOUserClientCreator" = "pid 24, securityd"
- | | | }
- | | |
- | | +-o RootDomainUserClient &lt;class RootDomainUserClient, id 0x10000035c, !registered, !matched, active, busy 0, retain 5&gt;
- | | | {
- | | | "IOUserClientCreator" = "pid 18, powerd"
- | | | }
- | | |
- | | +-o RootDomainUserClient &lt;class RootDomainUserClient, id 0x1000003a5, !registered, !matched, active, busy 0, retain 5&gt;
- | | | {
- | | | "IOUserClientCreator" = "pid 14, configd"
- | | | }
- | | |
- | | +-o RootDomainUserClient &lt;class RootDomainUserClient, id 0x1000003fa, !registered, !matched, active, busy 0, retain 5&gt;
- | | | {
- | | | "IOUserClientCreator" = "pid 21, blued"
- | | | }
- | | |
- | | +-o RootDomainUserClient &lt;class RootDomainUserClient, id 0x100000420, !registered, !matched, active, busy 0, retain 5&gt;
- | | | {
- | | | "IOUserClientCreator" = "pid 50, hidd"
- | | | }
- | | |
- | | +-o RootDomainUserClient &lt;class RootDomainUserClient, id 0x100000430, !registered, !matched, active, busy 0, retain 5&gt;
- | | | {
- | | | "IOUserClientCreator" = "pid 65, netbiosd"
- | | | }
- | | |
- | | +-o RootDomainUserClient &lt;class RootDomainUserClient, id 0x10000045f, !registered, !matched, active, busy 0, retain 5&gt;
- | | | {
- | | | "IOUserClientCreator" = "pid 180, WindowServer"
- | | | }
- | | |
- | | +-o RootDomainUserClient &lt;class RootDomainUserClient, id 0x100000469, !registered, !matched, active, busy 0, retain 5&gt;
- | | | {
- | | | "IOUserClientCreator" = "pid 46, loginwindow"
- | | | }
- | | |
- | | +-o RootDomainUserClient &lt;class RootDomainUserClient, id 0x10000047e, !registered, !matched, active, busy 0, retain 5&gt;
- | | | {
- | | | "IOUserClientCreator" = "pid 212, coreaudiod"
- | | | }
- | | |
- | | +-o RootDomainUserClient &lt;class RootDomainUserClient, id 0x1000004b6, !registered, !matched, active, busy 0, retain 5&gt;
- | | | {
- | | | "IOUserClientCreator" = "pid 59, vpnagentd"
- | | | }
- | | |
- | | +-o RootDomainUserClient &lt;class RootDomainUserClient, id 0x1000004da, !registered, !matched, active, busy 0, retain 5&gt;
- | | | {
- | | | "IOUserClientCreator" = "pid 46, loginwindow"
- | | | }
- | | |
- | | +-o RootDomainUserClient &lt;class RootDomainUserClient, id 0x1000004db, !registered, !matched, active, busy 0, retain 5&gt;
- | | | {
- | | | "IOUserClientCreator" = "pid 233, UserEventAgent"
- | | | }
- | | |
- | | +-o RootDomainUserClient &lt;class RootDomainUserClient, id 0x1000004dc, !registered, !matched, active, busy 0, retain 5&gt;
- | | | {
- | | | "IOUserClientCreator" = "pid 46, loginwindow"
- | | | }
- | | |
- | | +-o RootDomainUserClient &lt;class RootDomainUserClient, id 0x1000004e4, !registered, !matched, active, busy 0, retain 5&gt;
- | | | {
- | | | "IOUserClientCreator" = "pid 239, SystemUIServer"
- | | | }
- | | |
- | | +-o RootDomainUserClient &lt;class RootDomainUserClient, id 0x1000004e5, !registered, !matched, active, busy 0, retain 5&gt;
- | | | {
- | | | "IOUserClientCreator" = "pid 240, Finder"
- | | | }
- | | |
- | | +-o RootDomainUserClient &lt;class RootDomainUserClient, id 0x1000004e6, !registered, !matched, active, busy 0, retain 5&gt;
- | | | {
- | | | "IOUserClientCreator" = "pid 240, Finder"
- | | | }
- | | |
- | | +-o RootDomainUserClient &lt;class RootDomainUserClient, id 0x1000004f0, !registered, !matched, active, busy 0, retain 5&gt;
- | | | {
- | | | "IOUserClientCreator" = "pid 245, fontd"
- | | | }
- | | |
- | | +-o RootDomainUserClient &lt;class RootDomainUserClient, id 0x1000004f2, !registered, !matched, active, busy 0, retain 5&gt;
- | | | {
- | | | "IOUserClientCreator" = "pid 240, Finder"
- | | | }
- | | |
- | | +-o RootDomainUserClient &lt;class RootDomainUserClient, id 0x1000004f3, !registered, !matched, active, busy 0, retain 5&gt;
- | | | {
- | | | "IOUserClientCreator" = "pid 239, SystemUIServer"
- | | | }
- | | |
- | | +-o RootDomainUserClient &lt;class RootDomainUserClient, id 0x1000004fc, !registered, !matched, active, busy 0, retain 5&gt;
- | | | {
- | | | "IOUserClientCreator" = "pid 249, com.apple.dock.e"
- | | | }
- | | |
- | | +-o RootDomainUserClient &lt;class RootDomainUserClient, id 0x100000510, !registered, !matched, active, busy 0, retain 5&gt;
- | | | {
- | | | "IOUserClientCreator" = "pid 259, imagent"
- | | | }
- | | |
- | | +-o RootDomainUserClient &lt;class RootDomainUserClient, id 0x100000518, !registered, !matched, active, busy 0, retain 5&gt;
- | | | {
- | | | "IOUserClientCreator" = "pid 233, UserEventAgent"
- | | | }
- | | |
- | | +-o RootDomainUserClient &lt;class RootDomainUserClient, id 0x100000522, !registered, !matched, active, busy 0, retain 5&gt;
- | | | {
- | | | "IOUserClientCreator" = "pid 265, LCCDaemon"
- | | | }
- | | |
- | | +-o RootDomainUserClient &lt;class RootDomainUserClient, id 0x10000052e, !registered, !matched, active, busy 0, retain 5&gt;
- | | | {
- | | | "IOUserClientCreator" = "pid 302, Adium"
- | | | }
- | | |
- | | +-o RootDomainUserClient &lt;class RootDomainUserClient, id 0x100000597, !registered, !matched, active, busy 0, retain 5&gt;
- | | | {
- | | | "IOUserClientCreator" = "pid 692, Rdio"
- | | | }
- | | |
- | | +-o RootDomainUserClient &lt;class RootDomainUserClient, id 0x100000599, !registered, !matched, active, busy 0, retain 5&gt;
- | | | {
- | | | "IOUserClientCreator" = "pid 692, Rdio"
- | | | }
- | | |
- | | +-o RootDomainUserClient &lt;class RootDomainUserClient, id 0x1000005c7, !registered, !matched, active, busy 0, retain 5&gt;
- | | | {
- | | | "IOUserClientCreator" = "pid 701, Microsoft Outloo"
- | | | }
- | | |
- | | +-o RootDomainUserClient &lt;class RootDomainUserClient, id 0x1000005c8, !registered, !matched, active, busy 0, retain 5&gt;
- | | | {
- | | | "IOUserClientCreator" = "pid 701, Microsoft Outloo"
- | | | }
- | | |
- | | +-o RootDomainUserClient &lt;class RootDomainUserClient, id 0x10000063a, !registered, !matched, active, busy 0, retain 5&gt;
- | | | {
- | | | "IOUserClientCreator" = "pid 29, ntpd"
- | | | }
- | | |
- | | +-o RootDomainUserClient &lt;class RootDomainUserClient, id 0x100000694, !registered, !matched, active, busy 0, retain 5&gt;
- | | | {
- | | | "IOUserClientCreator" = "pid 302, Adium"
- | | | }
- | | |
- | | +-o RootDomainUserClient &lt;class RootDomainUserClient, id 0x100000c49, !registered, !matched, active, busy 0, retain 5&gt;
- | | | {
- | | | "IOUserClientCreator" = "pid 2659, Twitter"
- | | | }
- | | |
- | | +-o RootDomainUserClient &lt;class RootDomainUserClient, id 0x100000dbb, !registered, !matched, active, busy 0, retain 5&gt;
- | | | {
- | | | "IOUserClientCreator" = "pid 6819, Google Chrome"
- | | | }
- | | |
- | | +-o RootDomainUserClient &lt;class RootDomainUserClient, id 0x100000dc7, !registered, !matched, active, busy 0, retain 5&gt;
- | | | {
- | | | "IOUserClientCreator" = "pid 6826, Google Chrome He"
- | | | }
- | | |
- | | +-o RootDomainUserClient &lt;class RootDomainUserClient, id 0x100000dc8, !registered, !matched, active, busy 0, retain 5&gt;
- | | | {
- | | | "IOUserClientCreator" = "pid 6825, Google Chrome He"
- | | | }
- | | |
- | | +-o RootDomainUserClient &lt;class RootDomainUserClient, id 0x100000dc9, !registered, !matched, active, busy 0, retain 5&gt;
- | | | {
- | | | "IOUserClientCreator" = "pid 6827, Google Chrome He"
- | | | }
- | | |
- | | +-o RootDomainUserClient &lt;class RootDomainUserClient, id 0x100000dca, !registered, !matched, active, busy 0, retain 5&gt;
- | | | {
- | | | "IOUserClientCreator" = "pid 6828, Google Chrome He"
- | | | }
- | | |
- | | +-o RootDomainUserClient &lt;class RootDomainUserClient, id 0x100000dcb, !registered, !matched, active, busy 0, retain 5&gt;
- | | | {
- | | | "IOUserClientCreator" = "pid 6829, Google Chrome He"
- | | | }
- | | |
- | | +-o RootDomainUserClient &lt;class RootDomainUserClient, id 0x100000dda, !registered, !matched, active, busy 0, retain 5&gt;
- | | | {
- | | | "IOUserClientCreator" = "pid 6836, Google Chrome He"
- | | | }
- | | |
- | | +-o RootDomainUserClient &lt;class RootDomainUserClient, id 0x100000e10, !registered, !matched, active, busy 0, retain 5&gt;
- | | | {
- | | | "IOUserClientCreator" = "pid 6878, VMware Fusion"
- | | | }
- | | |
- | | +-o RootDomainUserClient &lt;class RootDomainUserClient, id 0x100000e26, !registered, !matched, active, busy 0, retain 5&gt;
- | | | {
- | | | "IOUserClientCreator" = "pid 6878, VMware Fusion"
- | | | }
- | | |
- | | +-o RootDomainUserClient &lt;class RootDomainUserClient, id 0x100000e2f, !registered, !matched, active, busy 0, retain 5&gt;
- | | | {
- | | | "IOUserClientCreator" = "pid 7033, cupsd"
- | | | }
- | | |
- | | +-o RootDomainUserClient &lt;class RootDomainUserClient, id 0x100000e3b, !registered, !matched, active, busy 0, retain 5&gt;
- | | | {
- | | | "IOUserClientCreator" = "pid 6819, Google Chrome"
- | | | }
- | | |
- | | +-o RootDomainUserClient &lt;class RootDomainUserClient, id 0x100000e52, !registered, !matched, active, busy 0, retain 5&gt;
- | | | {
- | | | "IOUserClientCreator" = "pid 7691, VDCAssistant"
- | | | }
- | | |
- | | +-o RootDomainUserClient &lt;class RootDomainUserClient, id 0x100000eff, !registered, !matched, active, busy 0, retain 5&gt;
- | | | {
- | | | "IOUserClientCreator" = "pid 9286, Google Chrome He"
- | | | }
- | | |
- | | +-o RootDomainUserClient &lt;class RootDomainUserClient, id 0x100000fd4, !registered, !matched, active, busy 0, retain 5&gt;
- | | {
- | | "IOUserClientCreator" = "pid 21079, system_profiler"
- | | }
- | |
- | +-o cpus &lt;class IOPlatformDevice, id 0x10000011b, registered, matched, active, busy 0 (0 ms), retain 13&gt;
- | | {
- | | "name" = &lt;6370757300&gt;
- | | }
- | |
- | +-o CPU0@0 &lt;class IOACPIPlatformDevice, id 0x10000011c, registered, matched, active, busy 0 (227 ms), retain 7&gt;
- | | | {
- | | | "processor-lapic" = 0x0
- | | | "clock-frequency" = &lt;00562183&gt;
- | | | "processor-number" = 0x0
- | | | "timebase-frequency" = &lt;00ca9a3b&gt;
- | | | "processor-id" = 0x1
- | | | "bus-frequency" = &lt;00e1f505&gt;
- | | | "cpu-type" = &lt;0307&gt;
- | | | "device_type" = &lt;70726f636573736f7200&gt;
- | | | "processor-index" = 0x0
- | | | "name" = &lt;4350553000&gt;
- | | | }
- | | |
- | | +-o AppleACPICPU &lt;class AppleACPICPU, id 0x100000125, registered, matched, active, busy 0 (220 ms), retain 7&gt;
- | | | {
- | | | "IOClass" = "AppleACPICPU"
- | | | "CFBundleIdentifier" = "com.apple.driver.AppleACPIPlatform"
- | | | "IOProviderClass" = "IOACPIPlatformDevice"
- | | | "IOProbeScore" = 0x3e8
- | | | "IONameMatch" = "processor"
- | | | "IOInterruptSpecifiers" = (&lt;00000000&gt;,&lt;01000000&gt;)
- | | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | | "IOCPUID" = 0xffffff8011f4c800
- | | | "IOInterruptControllers" = ("IOPlatformInterruptController","IOPlatformInterruptController")
- | | | "IONameMatched" = "processor"
- | | | "IOCPUState" = "Running"
- | | | "IOCPUNumber" = 0x0
- | | | }
- | | |
- | | +-o AppleACPICPUInterruptController &lt;class AppleACPICPUInterruptController, id 0x10000012d, registered, matched, active, busy 0 (0 ms), retain 5&gt;
- | | | {
- | | | }
- | | |
- | | +-o ACPI_SMC_PlatformPlugin &lt;class ACPI_SMC_PlatformPlugin, id 0x100000363, registered, matched, active, busy 0 (170 ms), retain 12&gt;
- | | | {
- | | | "IOClass" = "ACPI_SMC_PlatformPlugin"
- | | | "IOHWCtrlLoops" = ({"IOClass"="ACPI_SMC_CtrlLoop","ctrlloop-id"=0x0,"MetaStateArray"=({"Description"="Normal"},{"Description"="Reduced Power"},{"Description"="User Low Power"},{"Description"="User High Power"}),"Description"="SMC_CPU_Control_Loop","current-meta-state"=0x0},{"IOClass"="ACPI_SMC_GPU_CtrlLoop","ctrlloop-id"=0x3,"MetaStateArray"=({"Description"="Normal"},{"Description"="Reduced Power"},{"Description"="User Low Power"},{"Description"="User High Power"}),"Description"="SMC_GPU_Range_Control_Loop","current-meta-state"$
- | | | "PerformanceStateArray" = (&lt;1c0c0000c8af00000a0000000a000000001f0000001f0000&gt;,&lt;b80b0000c8af00000a0000000a000000001e0000001e0000&gt;,&lt;540b0000c8af00000a0000000a000000001d0000001d0000&gt;,&lt;f00a0000c8af00000a0000000a000000001c0000001c0000&gt;,&lt;8c0a0000c8af00000a0000000a000000001b0000001b0000&gt;,&lt;280a0000c8af00000a0000000a000000001a0000001a0000&gt;,&lt;c4090000c8af00000a0000000a0000000019000000190000&gt;,&lt;60090000c8af00000a0000000a0000000018000000180000&gt;,&lt;fc080000c8af00000a0000000a0000000017000000170000&gt;,&lt;98080000c8af00000a0000000a00000000160000001600$
- | | | "IOHWControls" = ({"location"="idle limit","target-value"=0x0,"IOClass"="AppleSMCControl","max-value"=0xe,"control-flags"=0x2,"registered"=No,"current-value"=0x0,"min-value"=0x0,"type"="smc","Desc-Key"="IDLE_PLIMIT","control-id"=0xf},{"location"="cpu plimit","target-value"=0x0,"IOClass"="AppleSMCControl","max-value"=0x17,"control-flags"=0x2,"registered"=No,"current-value"=0x0,"min-value"=0x0,"type"="smc","Desc-Key"="CPU_PLIMIT","control-id"=0xa},{"location"="cpu state","target-value"=0x3,"IOClass"="AppleSMCControl","max-value"=$
- | | | "IGPUPLimit" = 0x0
- | | | "IOResourceMatch" = "ACPI"
- | | | "GPUPLimit" = 0x0
- | | | "IOPowerManagement" = {"MaxPowerState"=0x1,"CurrentPowerState"=0x1}
- | | | "IOProviderClass" = "AppleACPICPU"
- | | | "IOProbeScore" = 0x3e8
- | | | "IdlePLimitRegistered" = Yes
- | | | "supportDownstreamASPM" = Yes
- | | | "IOPlatformThermalProfile" = {}
- | | | "EGPUPLimit" = 0x0
- | | | "IOPropertyMatch" = {"IOCPUNumber"=0x0}
- | | | "CPUPLimit" = 0x0
- | | | "ForcedIdlePLimit" = 0x0
- | | | "AICPMVers" = 0x1240105
- | | | "IOEnvironment" = {"ctrlloop-output-at-max"=(),"internal-overtemp"=(),"external-overtemp"=(),"chassis-switch"=No,"dynamic-power-step"=0x0,"platform-flags"=&lt;00000000&gt;,"control-failed"=()}
- | | | "PrimaryGPUID" = 0x11
- | | | "DownstreamASPMRegistered" = Yes
- | | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | | "CFBundleIdentifier" = "com.apple.driver.ACPI_SMC_PlatformPlugin"
- | | | "IGPUPLimitRegistered" = Yes
- | | | "IOHWSensors" = ()
- | | | "CPUPLimitRegistered" = Yes
- | | | "supportUpstreamASPM" = Yes
- | | | "ResourceName" = "MacBookPro8_2.plist"
- | | | "SecondaryGPUID" = 0x10
- | | | "EGPUPLimitRegistered" = Yes
- | | | "UpstreamASPMRegistered" = Yes
- | | | }
- | | |
- | | +-o AGPMEnabler &lt;class IOPlatformPluginDevice, id 0x100000381, registered, matched, active, busy 0 (170 ms), retain 6&gt;
- | | | {
- | | | "name" = &lt;4147504d456e61626c657200&gt;
- | | | }
- | | |
- | | +-o AGPMController &lt;class AGPMController, id 0x1000003b9, !registered, !matched, active, busy 0, retain 4&gt;
- | | {
- | | "IOProbeScore" = 0x0
- | | "CFBundleIdentifier" = "com.apple.driver.AGPM"
- | | "IOProviderClass" = "IOPlatformPluginDevice"
- | | "IOClass" = "AGPMController"
- | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | "Machine" = {"MacBookPro8,2"={"IGPU"={"max-power-state"=0xf,"min-power-state"=0x0,"control-id"=0x10,"Heuristic"={"EvaluateUpInterval"=0x101d0,"BusyDownThresholdPercent"=0x46,"BusyUpThresholdPercent"=0x5a,"DiagnosticModeDefault"=0x0,"SensorOption"=0x1,"EvaluateDownInterval"=0x55730,"ID"=0x2}},"Vendor1002Device6741"={"QSC"={"qscOnTime"=(0x0,0x5a0,0x0,0x960,0xfa0,0x1680,0x1e00,0x2620,0x0),"Mode"=0x1,"Enabled"=0x1,"hwPState"=(0x0,0x0,0x1,0x1,0x1,0x1,0x1,0x1,0x2)},"control-id"=0x11,"max-power-state"=0x8},"Vendor1002Device6760"={$
- | | "IONameMatch" = "AGPMEnabler"
- | | "IONameMatched" = "AGPMEnabler"
- | | }
- | |
- | +-o CPU1@2 &lt;class IOACPIPlatformDevice, id 0x10000011d, registered, matched, active, busy 0 (14 ms), retain 7&gt;
- | | | {
- | | | "processor-lapic" = 0x2
- | | | "clock-frequency" = &lt;00562183&gt;
- | | | "processor-number" = 0x2
- | | | "timebase-frequency" = &lt;00ca9a3b&gt;
- | | | "processor-id" = 0x2
- | | | "bus-frequency" = &lt;00e1f505&gt;
- | | | "cpu-type" = &lt;0307&gt;
- | | | "device_type" = &lt;70726f636573736f7200&gt;
- | | | "processor-index" = 0x1
- | | | "name" = &lt;4350553100&gt;
- | | | }
- | | |
- | | +-o AppleACPICPU &lt;class AppleACPICPU, id 0x100000126, registered, matched, active, busy 0 (4 ms), retain 5&gt;
- | | {
- | | "IOClass" = "AppleACPICPU"
- | | "CFBundleIdentifier" = "com.apple.driver.AppleACPIPlatform"
- | | "IOProviderClass" = "IOACPIPlatformDevice"
- | | "IOProbeScore" = 0x3e8
- | | "IONameMatch" = "processor"
- | | "IOInterruptSpecifiers" = (&lt;00020000&gt;,&lt;01020000&gt;)
- | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | "IOCPUID" = 0xffffff8011f47200
- | | "IOInterruptControllers" = ("IOPlatformInterruptController","IOPlatformInterruptController")
- | | "IONameMatched" = "processor"
- | | "IOCPUState" = "Running"
- | | "IOCPUNumber" = 0x1
- | | }
- | |
- | +-o CPU2@4 &lt;class IOACPIPlatformDevice, id 0x10000011e, registered, matched, active, busy 0 (15 ms), retain 7&gt;
- | | | {
- | | | "processor-lapic" = 0x4
- | | | "clock-frequency" = &lt;00562183&gt;
- | | | "processor-number" = 0x4
- | | | "timebase-frequency" = &lt;00ca9a3b&gt;
- | | | "processor-id" = 0x3
- | | | "bus-frequency" = &lt;00e1f505&gt;
- | | | "cpu-type" = &lt;0307&gt;
- | | | "device_type" = &lt;70726f636573736f7200&gt;
- | | | "processor-index" = 0x2
- | | | "name" = &lt;4350553200&gt;
- | | | }
- | | |
- | | +-o AppleACPICPU &lt;class AppleACPICPU, id 0x100000127, registered, matched, active, busy 0 (5 ms), retain 5&gt;
- | | {
- | | "IOClass" = "AppleACPICPU"
- | | "CFBundleIdentifier" = "com.apple.driver.AppleACPIPlatform"
- | | "IOProviderClass" = "IOACPIPlatformDevice"
- | | "IOProbeScore" = 0x3e8
- | | "IONameMatch" = "processor"
- | | "IOInterruptSpecifiers" = (&lt;00040000&gt;,&lt;01040000&gt;)
- | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | "IOCPUID" = 0xffffff8011f47300
- | | "IOInterruptControllers" = ("IOPlatformInterruptController","IOPlatformInterruptController")
- | | "IONameMatched" = "processor"
- | | "IOCPUState" = "Running"
- | | "IOCPUNumber" = 0x2
- | | }
- | |
- | +-o CPU3@6 &lt;class IOACPIPlatformDevice, id 0x10000011f, registered, matched, active, busy 0 (15 ms), retain 7&gt;
- | | | {
- | | | "processor-lapic" = 0x6
- | | | "clock-frequency" = &lt;00562183&gt;
- | | | "processor-number" = 0x6
- | | | "timebase-frequency" = &lt;00ca9a3b&gt;
- | | | "processor-id" = 0x4
- | | | "bus-frequency" = &lt;00e1f505&gt;
- | | | "cpu-type" = &lt;0307&gt;
- | | | "device_type" = &lt;70726f636573736f7200&gt;
- | | | "processor-index" = 0x3
- | | | "name" = &lt;4350553300&gt;
- | | | }
- | | |
- | | +-o AppleACPICPU &lt;class AppleACPICPU, id 0x100000128, registered, matched, active, busy 0 (4 ms), retain 5&gt;
- | | {
- | | "IOClass" = "AppleACPICPU"
- | | "CFBundleIdentifier" = "com.apple.driver.AppleACPIPlatform"
- | | "IOProviderClass" = "IOACPIPlatformDevice"
- | | "IOProbeScore" = 0x3e8
- | | "IONameMatch" = "processor"
- | | "IOInterruptSpecifiers" = (&lt;00060000&gt;,&lt;01060000&gt;)
- | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | "IOCPUID" = 0xffffff8011f47400
- | | "IOInterruptControllers" = ("IOPlatformInterruptController","IOPlatformInterruptController")
- | | "IONameMatched" = "processor"
- | | "IOCPUState" = "Running"
- | | "IOCPUNumber" = 0x3
- | | }
- | |
- | +-o CPU4@1 &lt;class IOACPIPlatformDevice, id 0x100000120, registered, matched, active, busy 0 (16 ms), retain 7&gt;
- | | | {
- | | | "processor-lapic" = 0x1
- | | | "clock-frequency" = &lt;00562183&gt;
- | | | "processor-number" = 0x1
- | | | "timebase-frequency" = &lt;00ca9a3b&gt;
- | | | "processor-id" = 0x5
- | | | "bus-frequency" = &lt;00e1f505&gt;
- | | | "cpu-type" = &lt;0307&gt;
- | | | "device_type" = &lt;70726f636573736f7200&gt;
- | | | "processor-index" = 0x4
- | | | "name" = &lt;4350553400&gt;
- | | | }
- | | |
- | | +-o AppleACPICPU &lt;class AppleACPICPU, id 0x100000129, registered, matched, active, busy 0 (3 ms), retain 5&gt;
- | | {
- | | "IOClass" = "AppleACPICPU"
- | | "CFBundleIdentifier" = "com.apple.driver.AppleACPIPlatform"
- | | "IOProviderClass" = "IOACPIPlatformDevice"
- | | "IOProbeScore" = 0x3e8
- | | "IONameMatch" = "processor"
- | | "IOInterruptSpecifiers" = (&lt;00010000&gt;,&lt;01010000&gt;)
- | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | "IOCPUID" = 0xffffff8011f47500
- | | "IOInterruptControllers" = ("IOPlatformInterruptController","IOPlatformInterruptController")
- | | "IONameMatched" = "processor"
- | | "IOCPUState" = "Running"
- | | "IOCPUNumber" = 0x4
- | | }
- | |
- | +-o CPU5@3 &lt;class IOACPIPlatformDevice, id 0x100000121, registered, matched, active, busy 0 (16 ms), retain 7&gt;
- | | | {
- | | | "processor-lapic" = 0x3
- | | | "clock-frequency" = &lt;00562183&gt;
- | | | "processor-number" = 0x3
- | | | "timebase-frequency" = &lt;00ca9a3b&gt;
- | | | "processor-id" = 0x6
- | | | "bus-frequency" = &lt;00e1f505&gt;
- | | | "cpu-type" = &lt;0307&gt;
- | | | "device_type" = &lt;70726f636573736f7200&gt;
- | | | "processor-index" = 0x5
- | | | "name" = &lt;4350553500&gt;
- | | | }
- | | |
- | | +-o AppleACPICPU &lt;class AppleACPICPU, id 0x10000012a, registered, matched, active, busy 0 (3 ms), retain 5&gt;
- | | {
- | | "IOClass" = "AppleACPICPU"
- | | "CFBundleIdentifier" = "com.apple.driver.AppleACPIPlatform"
- | | "IOProviderClass" = "IOACPIPlatformDevice"
- | | "IOProbeScore" = 0x3e8
- | | "IONameMatch" = "processor"
- | | "IOInterruptSpecifiers" = (&lt;00030000&gt;,&lt;01030000&gt;)
- | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | "IOCPUID" = 0xffffff8011f47600
- | | "IOInterruptControllers" = ("IOPlatformInterruptController","IOPlatformInterruptController")
- | | "IONameMatched" = "processor"
- | | "IOCPUState" = "Running"
- | | "IOCPUNumber" = 0x5
- | | }
- | |
- | +-o CPU6@5 &lt;class IOACPIPlatformDevice, id 0x100000122, registered, matched, active, busy 0 (16 ms), retain 7&gt;
- | | | {
- | | | "processor-lapic" = 0x5
- | | | "clock-frequency" = &lt;00562183&gt;
- | | | "processor-number" = 0x5
- | | | "timebase-frequency" = &lt;00ca9a3b&gt;
- | | | "processor-id" = 0x7
- | | | "bus-frequency" = &lt;00e1f505&gt;
- | | | "cpu-type" = &lt;0307&gt;
- | | | "device_type" = &lt;70726f636573736f7200&gt;
- | | | "processor-index" = 0x6
- | | | "name" = &lt;4350553600&gt;
- | | | }
- | | |
- | | +-o AppleACPICPU &lt;class AppleACPICPU, id 0x10000012b, registered, matched, active, busy 0 (2 ms), retain 5&gt;
- | | {
- | | "IOClass" = "AppleACPICPU"
- | | "CFBundleIdentifier" = "com.apple.driver.AppleACPIPlatform"
- | | "IOProviderClass" = "IOACPIPlatformDevice"
- | | "IOProbeScore" = 0x3e8
- | | "IONameMatch" = "processor"
- | | "IOInterruptSpecifiers" = (&lt;00050000&gt;,&lt;01050000&gt;)
- | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | "IOCPUID" = 0xffffff8011f47700
- | | "IOInterruptControllers" = ("IOPlatformInterruptController","IOPlatformInterruptController")
- | | "IONameMatched" = "processor"
- | | "IOCPUState" = "Running"
- | | "IOCPUNumber" = 0x6
- | | }
- | |
- | +-o CPU7@7 &lt;class IOACPIPlatformDevice, id 0x100000123, registered, matched, active, busy 0 (16 ms), retain 7&gt;
- | | | {
- | | | "processor-lapic" = 0x7
- | | | "clock-frequency" = &lt;00562183&gt;
- | | | "processor-number" = 0x7
- | | | "timebase-frequency" = &lt;00ca9a3b&gt;
- | | | "processor-id" = 0x8
- | | | "bus-frequency" = &lt;00e1f505&gt;
- | | | "cpu-type" = &lt;0307&gt;
- | | | "device_type" = &lt;70726f636573736f7200&gt;
- | | | "processor-index" = 0x7
- | | | "name" = &lt;4350553700&gt;
- | | | }
- | | |
- | | +-o AppleACPICPU &lt;class AppleACPICPU, id 0x10000012c, registered, matched, active, busy 0 (1 ms), retain 5&gt;
- | | {
- | | "IOClass" = "AppleACPICPU"
- | | "CFBundleIdentifier" = "com.apple.driver.AppleACPIPlatform"
- | | "IOProviderClass" = "IOACPIPlatformDevice"
- | | "IOProbeScore" = 0x3e8
- | | "IONameMatch" = "processor"
- | | "IOInterruptSpecifiers" = (&lt;00070000&gt;,&lt;01070000&gt;)
- | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | "IOCPUID" = 0xffffff8011f47800
- | | "IOInterruptControllers" = ("IOPlatformInterruptController","IOPlatformInterruptController")
- | | "IONameMatched" = "processor"
- | | "IOCPUState" = "Running"
- | | "IOCPUNumber" = 0x7
- | | }
- | |
- | +-o io-apic@fec00000 &lt;class IOACPIPlatformDevice, id 0x100000124, registered, matched, active, busy 0 (2 ms), retain 6&gt;
- | | | {
- | | | "Physical Address" = 0xfffffffffec00000
- | | | "InterruptControllerName" = "io-apic-0"
- | | | "Destination APIC ID" = 0x0
- | | | "IOInterruptControllers" = ("IOPlatformInterruptController")
- | | | "Base Vector Number" = 0x40
- | | | "IOInterruptSpecifiers" = (&lt;00000000&gt;)
- | | | "APIC ID" = 0x2
- | | | }
- | | |
- | | +-o AppleAPICInterruptController &lt;class AppleAPICInterruptController, id 0x10000012f, registered, matched, active, busy 0 (0 ms), retain 12&gt;
- | | {
- | | "IOProbeScore" = 0x0
- | | "CFBundleIdentifier" = "com.apple.driver.AppleAPIC"
- | | "IOProviderClass" = "IOPlatformDevice"
- | | "IOClass" = "AppleAPICInterruptController"
- | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | "Vector Count" = 0x18
- | | "IONameMatch" = "io-apic"
- | | "IONameMatched" = "io-apic"
- | | "Base Vector Number" = 0x40
- | | }
- | |
- | +-o AppleACPIEventController &lt;class AppleACPIEventController, id 0x100000130, !registered, !matched, active, busy 0, retain 6&gt;
- | | {
- | | "InterruptControllerName" = "ACPIEventController"
- | | }
- | |
- | +-o boot-ec &lt;class IOACPIPlatformDevice, id 0x100000131, registered, matched, active, busy 0 (28 ms), retain 6&gt;
- | | | {
- | | | "IOInterruptSpecifiers" = (&lt;1c00000000000000&gt;)
- | | | "IOInterruptControllers" = ("ACPIEventController")
- | | | }
- | | |
- | | +-o AppleACPIEC &lt;class AppleACPIEC, id 0x100000132, !registered, !matched, active, busy 0, retain 5&gt;
- | | {
- | | "IOProbeScore" = 0x0
- | | "CFBundleIdentifier" = "com.apple.driver.AppleACPIEC"
- | | "IOProviderClass" = "IOACPIPlatformDevice"
- | | "IOClass" = "AppleACPIEC"
- | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | "Statistics" = {"SpuriousQuery"=0x0,"MissedSCI"=0x0,"IBF0Timeout"=0x0,"CommandCount"=0x83a3,"PollTimeout"=0x0,"SpuriousSCI"=0x1,"MaxLatency"=0x23837cb,"SCIActive"=Yes,"OBF1Timeout"=0x0}
- | | "IONameMatch" = ("PNP0C09","boot-ec")
- | | "IONameMatched" = "boot-ec"
- | | }
- | |
- | +-o bios &lt;class IOPlatformDevice, id 0x100000133, registered, matched, active, busy 0 (1 ms), retain 5&gt;
- | | | {
- | | | "IOName" = "bios"
- | | | }
- | | |
- | | +-o AppleSMBIOS &lt;class AppleSMBIOS, id 0x100000134, registered, matched, active, busy 0 (0 ms), retain 4&gt;
- | | {
- | | "IOProbeScore" = 0x0
- | | "CFBundleIdentifier" = "com.apple.driver.AppleSMBIOS"
- | | "IOMatchCategory" = "AppleSMBIOS"
- | | "IOClass" = "AppleSMBIOS"
- | | "IOProviderClass" = "IOPlatformDevice"
- | | "SMBIOS" = &lt;0423000003030102a7060200fffbebbf018000009808b0084104020003000400000400496e74656c28522920436f726528544d292069372d32363735514d20435055204020322e323047487a00496e74656c28522920436f72706f726174696f6e005532453100496e74656c28522920436f726528544d292069372d32363735514d20435055204020322e323047487a000007130100018001200020004000400000050108556e6b6e6f776e000007130200018001200020004000400000050208556e6b6e6f776e000007130300018101000100014000400000050308556e6b6e6f776e00000713040001820106000600400040000005030c556e6b6e6f776e00000423050$
- | | "IONameMatch" = "bios"
- | | "IONameMatched" = "bios"
- | | "SMBIOS-EPS" = &lt;5f534d5fc11f0204bc000000000000005f444d495fbe880f0040d38a520024&gt;
- | | }
- | |
- | +-o PCI0@0 &lt;class IOACPIPlatformDevice, id 0x100000138, registered, matched, active, busy 0 (9630 ms), retain 55&gt;
- | | | {
- | | | "compatible" = &lt;504e503041303300&gt;
- | | | "IODTPersist" = &lt;f6be88807ffffffff4db88807fffffff&gt;
- | | | "_STA" = 0xffffffffffffffff
- | | | "IOPCIConfigured" = Yes
- | | | "acpi-address-spaces" = &lt;0200000000000000000000000000000000000000000000000000000000000000ff00000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000f70c0000000000000000000000000000f80c000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000d000000000000ffff000000000000000000000000000000f300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000$
- | | | "IODeviceMemory" = (({"address"=0xcf8,"length"=0x8}))
- | | | "#size-cells" = &lt;02000000&gt;
- | | | "_UID" = "0"
- | | | "acpi-pci-routing-table" = &lt;1800000000000000ffff1f000000000015000000000000001800000001000000ffff1f000000000013000000000000001800000002000000ffff1f000000000012000000000000001800000003000000ffff1f000000000010000000000000001800000000000000ffff1d000000000016000000000000001800000001000000ffff1d000000000013000000000000001800000002000000ffff1d000000000010000000000000001800000003000000ffff1d000000000012000000000000001800000000000000ffff1a000000000017000000000000001800000001000000ffff1a000000000015000000000000001800000002000000ffff1a0000000$
- | | | "_ADR" = 0x0
- | | | "device-properties" = {"acpi-device"="IOACPIPlatformDevice is not serializable","acpi-path"="IOACPIPlane:/_SB/PCI0@0"}
- | | | "#address-cells" = &lt;03000000&gt;
- | | | "acpi-path" = "IOACPIPlane:/_SB/PCI0@0"
- | | | "name" = &lt;504e503041303800&gt;
- | | | "acpi-device" = "IOACPIPlatformDevice is not serializable"
- | | | }
- | | |
- | | +-o AppleACPIPCI &lt;class AppleACPIPCI, id 0x1000001d9, registered, matched, active, busy 0 (9624 ms), retain 38&gt;
- | | | {
- | | | "IOProbeScore" = 0x1388
- | | | "CFBundleIdentifier" = "com.apple.driver.AppleACPIPlatform"
- | | | "IOProviderClass" = "IOACPIPlatformDevice"
- | | | "IOClass" = "AppleACPIPCI"
- | | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | | "IONameMatch" = "PNP0A03"
- | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"CurrentPowerState"=0x2,"ChildProxyPowerState"=0x2,"MaxPowerState"=0x2}
- | | | "IONameMatched" = "PNP0A03"
- | | | }
- | | |
- | | +-o MCHC@0 &lt;class IOPCIDevice, id 0x100000198, registered, matched, active, busy 0 (361 ms), retain 10&gt;
- | | | | {
- | | | | "name" = "pci8086,104"
- | | | | "compatible" = &lt;706369313036622c646300706369383038362c31303400706369636c6173732c30363030303000&gt;
- | | | | "subsystem-vendor-id" = &lt;6b100000&gt;
- | | | | "IOName" = "pci8086,104"
- | | | | "reg" = &lt;0000000000000000000000000000000000000000&gt;
- | | | | "device-id" = &lt;04010000&gt;
- | | | | "IOPowerManagement" = {"MaxPowerState"=0x2,"CurrentPowerState"=0x2}
- | | | | "built-in" = &lt;00&gt;
- | | | | "IOPCIResourced" = Yes
- | | | | "revision-id" = &lt;09000000&gt;
- | | | | "vendor-id" = &lt;86800000&gt;
- | | | | "pcidebug" = "0:0:0"
- | | | | "class-code" = &lt;00000600&gt;
- | | | | "acpi-path" = "IOACPIPlane:/_SB/PCI0@0/MCHC@0"
- | | | | "subsystem-id" = &lt;dc000000&gt;
- | | | | "acpi-device" = "IOACPIPlatformDevice is not serializable"
- | | | | }
- | | | |
- | | | +-o AppleSMCPDRC &lt;class AppleSMCPDRC, id 0x10000038c, registered, matched, active, busy 0 (165 ms), retain 4&gt;
- | | | {
- | | | "IOProbeScore" = 0x0
- | | | "CFBundleIdentifier" = "com.apple.driver.AppleSMCPDRC"
- | | | "IOProviderClass" = "IOPCIDevice"
- | | | "IOClass" = "AppleSMCPDRC"
- | | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | | "IONameMatch" = ("pci8086,27a0","pci8086,2a00","pci8086,44","pci8086,100","pci8086,104","pci8086,154")
- | | | "IONameMatched" = "pci8086,104"
- | | | }
- | | |
- | | +-o P0P2@1 &lt;class IOPCIDevice, id 0x100000199, registered, matched, active, busy 0 (579 ms), retain 13&gt;
- | | | | {
- | | | | "IOInterruptSpecifiers" = (&lt;1000000007000000&gt;)
- | | | | "#address-cells" = &lt;03000000&gt;
- | | | | "class-code" = &lt;00040600&gt;
- | | | | "IOPowerManagement" = {"MaxPowerState"=0x2,"ChildrenPowerState"=0x2,"CurrentPowerState"=0x2}
- | | | | "subsystem-vendor-id" = &lt;0f000000&gt;
- | | | | "built-in" = &lt;00&gt;
- | | | | "acpi-device" = "IOACPIPlatformDevice is not serializable"
- | | | | "IOInterruptControllers" = ("io-apic-0")
- | | | | "name" = "pci-bridge"
- | | | | "vendor-id" = &lt;86800000&gt;
- | | | | "device-id" = &lt;01010000&gt;
- | | | | "acpi-pmcap-offset" = 0x80
- | | | | "IOPCIExpressASPMDefault" = 0x3
- | | | | "IOPCIResourced" = Yes
- | | | | "compatible" = &lt;706369662c3000706369383038362c31303100706369636c6173732c30363034303000&gt;
- | | | | "ranges" = &lt;0000008200000000000080b00000008200000000000080b00000000000001000000000c20f00000000000060000000c20f0000000000006000000000000000100000008100000000002000000000008100000000002000000000000000100000&gt;
- | | | | "IOPCIExpressLinkCapabilities" = 0x2212c82
- | | | | "IODTPersist" = &lt;f6be88807ffffffff4db88807fffffff&gt;
- | | | | "IOPCIConfigured" = Yes
- | | | | "acpi-path" = "IOACPIPlane:/_SB/PCI0@0/P0P2@10000"
- | | | | "subsystem-id" = &lt;00000000&gt;
- | | | | "revision-id" = &lt;09000000&gt;
- | | | | "IOPCIExpressLinkStatus" = 0x5082
- | | | | "pcidebug" = "0:1:0(1:1)"
- | | | | "IOName" = "pci-bridge"
- | | | | "#size-cells" = &lt;02000000&gt;
- | | | | "reg" = &lt;0008000000000000000000000000000000000000&gt;
- | | | | }
- | | | |
- | | | +-o IOPCI2PCIBridge &lt;class IOPCI2PCIBridge, id 0x1000001f7, registered, matched, active, busy 0 (572 ms), retain 9&gt;
- | | | | {
- | | | | "IOProbeScore" = 0xffffffffffffff9c
- | | | | "CFBundleIdentifier" = "com.apple.iokit.IOPCIFamily"
- | | | | "IOProviderClass" = "IOPCIDevice"
- | | | | "IOClass" = "IOPCI2PCIBridge"
- | | | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | | | "IOPCIClassMatch" = "0x06040000&amp;0xffff0000"
- | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"CurrentPowerState"=0x2,"ChildProxyPowerState"=0x2,"MaxPowerState"=0x2}
- | | | | }
- | | | |
- | | | +-o GFX0@0 &lt;class IOPCIDevice, id 0x10000019a, registered, matched, active, busy 0 (532 ms), retain 25&gt;
- | | | | | {
- | | | | | "AAPL,backlight-control" = &lt;01000000&gt;
- | | | | | "IOHibernateState" = &lt;00000000&gt;
- | | | | | "AAPL00,LinkFormat" = &lt;00000000&gt;
- | | | | | "ATY,bin_image" = &lt;55aa7fe93d02000000000000000000000000000000000000f0010000000049424dbd0000000000000000000000000004203736313239353532300000000000003502000000000000cc0100000000000030392f32392f31312c31373a31333a3536000000e9d00300e9df03000000a8000000000082ce00800002000000000000042000000000000000000000000000000000000000000000000000004167000000000000000000003131332d4330313732452d3030330057484953544c4552005043495f45585052455353004744445235000d0a4170706c65204b3931412057686973746c65722050726f204744445235204175746f20313030652f313530$
- | | | | | "ATY,TileInfo" = &lt;010000000000000000000000000000000500000000000000&gt;
- | | | | | "hda-gfx" = &lt;6f6e626f6172642d3200&gt;
- | | | | | "IOInterruptSpecifiers" = (&lt;1000000007000000&gt;,&lt;0400000000000100&gt;)
- | | | | | "ATY,DeviceID" = &lt;4167&gt;
- | | | | | "AAPL00,LinkType" = &lt;00000000&gt;
- | | | | | "AAPL00,Dither" = &lt;00000000&gt;
- | | | | | "ATY,EFIDriverType" = &lt;02&gt;
- | | | | | "PP_R600RaisingLowPercentage" = 0xa
- | | | | | "CFG_USE_FBC" = No
- | | | | | "compatible" = &lt;706369313036622c653200706369313030322c3637343100706369636c6173732c30333030303000&gt;
- | | | | | "ATY,VendorID" = &lt;0210&gt;
- | | | | | "IOPCIExpressLinkStatus" = 0x1082
- | | | | | "AAPL00,Inverter" = &lt;00000000&gt;
- | | | | | "IOPMIsPowerManaged" = Yes
- | | | | | "DALReadDelayStutterOff" = 0x4
- | | | | | "AAPL00,blackscreen-preferences" = &lt;00000008&gt;
- | | | | | "PP_UserMaxClockForMultiDisplays" = 0x1
- | | | | | "AAPL00,PixelFormat" = &lt;00000000&gt;
- | | | | | "@3,device_type" = &lt;646973706c6179&gt;
- | | | | | "PP_ActivitySamplingInterval" = 0x3e8
- | | | | | "IOPCIResourced" = Yes
- | | | | | "ATY,PlatformInfo" = &lt;0100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000&gt;
- | | | | | "built-in" = &lt;00&gt;
- | | | | | "ATY,CAIL_IRI" = &lt;0800010080ffffff28000000010000000060641380ffffff551784817fffffff7d1784817fffffff60bbf2ef80ffffff&gt;
- | | | | | "ATY,MemRevisionID" = &lt;0100&gt;
- | | | | | "CFG_GRPH_CONTROL_DIS" = 0xa004
- | | | | | "AAPL,aux-power-connected" = &lt;01000000&gt;
- | | | | | "ATIFEDSInfo2" = &lt;0600000080ffffff002d391380ffffff&gt;
- | | | | | "ATY,Copyright" = &lt;436f7079726967687420414d4420496e632e20416c6c205269676874732052657365727665642e20323030352d32303131&gt;
- | | | | | "ATY,RevID" = 0x67411
- | | | | | "pcidebug" = "1:0:0"
- | | | | | "AAPL00,DualLink" = &lt;01000000&gt;
- | | | | | "subsystem-id" = &lt;e2000000&gt;
- | | | | | "CFG_CAIL_CAPS" = 0x0
- | | | | | "IOName" = "display"
- | | | | | "saved-config" = &lt;3e0402ffff90005e3e0402ffff9004717c2e90063007300020001a043804030006001a0490064000565e000aa00a30002000a005c90503000500a005000a50010000000001000000c80000002c01000001000000000000009001000008520000ff40060601000010000000000000000000000000000000001c2c0000142c0000182c0000242c0000202c0000046800001068000018680000482f0000d40b00000000000001000000c80000002c01000001000000000000009001000008520000ff080a0a10000010f45e680400000000a1050000010a000200180000001800004f850000d380650308011a0006a0400000001800a0060000020001120200011$
- | | | | | "revision-id" = &lt;00000000&gt;
- | | | | | "ATY,SCLK" = 0x270f
- | | | | | "ATY,MCLK" = 0x3a98
- | | | | | "attached-gpu-control-path" = "IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/P0P2@1/IOPCI2PCIBridge/GFX0@0/ATY,Cattail@0/ATIFramebufferNI/AGPM"
- | | | | | "AAPL01,blackscreen-preferences" = &lt;00000008&gt;
- | | | | | "ATY,SurfInfo" = &lt;205ecbd180ffffff&gt;
- | | | | | "ATY,EFIVersion" = &lt;30312e30302e35373300&gt;
- | | | | | "IOPCIMSIMode" = Yes
- | | | | | "IOPCIExpressASPMDefault" = 0x3
- | | | | | "graphic-options" = &lt;04000000&gt;
- | | | | | "PP_R600LoweringHighPercentage" = 0x19
- | | | | | "pci-bus-number" = 0x1
- | | | | | "IOOCDBundleName" = "ATIRadeonX3000GLDriver"
- | | | | | "CFG_USE_STUTTER" = No
- | | | | | "VRAM,totalsize" = 0x20000000
- | | | | | "PP_HighSamplingInterval" = 0x30d40
- | | | | | "ATY,MemVendorID" = &lt;0600&gt;
- | | | | | "@3,name" = &lt;4154592c4361747461696c&gt;
- | | | | | "pci-device-number" = 0x0
- | | | | | "PP_R600LoweringMediumPercentage" = 0xa
- | | | | | "ATY,drvincom" = &lt;e8aab0817fffffff0060451380ffffff&gt;
- | | | | | "model" = &lt;414d4420526164656f6e20484420363735304d&gt;
- | | | | | "ATY,EFIVersionE" = &lt;3131332d43303137304c2d353733&gt;
- | | | | | "HDCPLIB_VERSION" = &lt;312e33313000&gt;
- | | | | | "acpi-device" = "IOACPIPlatformDevice is not serializable"
- | | | | | "assigned-addresses" = &lt;100001c20f0000000000006000000000000000101800018200000000000080b0000000000000020020000181000000000020000000000000000100003000018200000000000082b00000000000000200&gt;
- | | | | | "ATY,memsize" = 0x20000000
- | | | | | "DALUseUrgencyWaterMarkOffset" = 0x0
- | | | | | "ATY,EFICompileDate" = &lt;4175672031332032303131&gt;
- | | | | | "ATY,vram_base" = &lt;00000000&gt;
- | | | | | "CFG_FB_LIMIT" = 0x0
- | | | | | "AAPL00,T1" = &lt;00000000&gt;
- | | | | | "acpi-path" = "IOACPIPlane:/_SB/PCI0@0/P0P2@10000/GFX0@0"
- | | | | | "name" = &lt;4154592c4361747461696c506172656e74&gt;
- | | | | | "device_type" = &lt;4154592c4361747461696c506172656e74&gt;
- | | | | | "PP_R600ActivityHysteresis" = 0x5
- | | | | | "PP_R600RaisingMediumPercentage" = 0x19
- | | | | | "AAPL00,T2" = &lt;01000000&gt;
- | | | | | "IOChildIndex" = 0x1
- | | | | | "ATY,RefCLK" = &lt;8c0a0000&gt;
- | | | | | "AAPL00,T3" = &lt;c8000000&gt;
- | | | | | "AAPL01,Coherency" = &lt;02000000&gt;
- | | | | | "ATY,EFIDispConfig" = &lt;1f00000000000000&gt;
- | | | | | "@3,AAPL,vram-memory" = &lt;0000009000000010&gt;
- | | | | | "@3,display-type" = &lt;4e4f4e45&gt;
- | | | | | "ATY,EFIOrientation" = &lt;1000&gt;
- | | | | | "AAPL00,T4" = &lt;2c010000&gt;
- | | | | | "CFG_SURFACE_INFO_DIS" = 0x1a0000
- | | | | | "vendor-id" = &lt;02100000&gt;
- | | | | | "CFG_INT_SSPC" = 0x19
- | | | | | "IOInterruptControllers" = ("io-apic-0","IOPCIMessagedInterruptController")
- | | | | | "CFG_GEN_FLAGS" = 0x0
- | | | | | "reg" = &lt;00000100000000000000000000000000000000001000014200000000000000000000000000000010180001020000000000000000000000000000020020000101000000000000000000000000000100003000010200000000000000000000000000000200&gt;
- | | | | | "ATY,Card#" = &lt;3130392d43303137304b2d3030&gt;
- | | | | | "ATY,EFIHWInitStatus" = &lt;0000000000000000&gt;
- | | | | | "@3,connector-type" = &lt;00040000&gt;
- | | | | | "AAPL00,T5" = &lt;01000000&gt;
- | | | | | "ATY,Rom#" = &lt;3131332d43303137304c2d353733&gt;
- | | | | | "ATY,remap-size" = 0xffffffff80000000
- | | | | | "AAPL,gart-width" = 0x40
- | | | | | "AAPL00,DataJustify" = &lt;01000000&gt;
- | | | | | "CFG_USE_SM" = No
- | | | | | "AAPL00,T6" = &lt;00000000&gt;
- | | | | | "ATY,EFIVersionB" = &lt;3131332d4330313732452d303033&gt;
- | | | | | "AsicOnLowPower" = &lt;00000000&gt;
- | | | | | "IODeviceMemory" = (({"address"=0xf60000000,"length"=0x10000000}),({"address"=0xb0800000,"length"=0x20000}),"IOSubMemoryDescriptor is not serializable",({"address"=0xb0820000,"length"=0x20000}))
- | | | | | "ATY,EFIEnabledMode" = &lt;02&gt;
- | | | | | "CFG_NO_HDCP" = No
- | | | | | "device-id" = &lt;41670000&gt;
- | | | | | "AAPL00,T7" = &lt;90010000&gt;
- | | | | | "@3,VRAM,memsize" = &lt;0000000000000020&gt;
- | | | | | "subsystem-vendor-id" = &lt;6b100000&gt;
- | | | | | "AAPL00,InverterFrequency" = &lt;08520000&gt;
- | | | | | "CFG_CAA" = 0x0
- | | | | | "IOPowerManagement" = {"MaxPowerState"=0x2,"ChildrenPowerState"=0x2,"CurrentPowerState"=0x2}
- | | | | | "PP_DisablePowerContainment" = 0x0
- | | | | | "class-code" = &lt;00000300&gt;
- | | | | | "PP_R600VotingRightsClients" = 0xc00233
- | | | | | "@3,compatible" = &lt;4154592c4361747461696c&gt;
- | | | | | "MVAD" = &lt;3e0402ffff90005e3e0402ffff9004717c2e90063007300020001a043804030006001a0490064000565e000aa00a30002000a005c90503000500a005000a5001&gt;
- | | | | | "IOPCIExpressLinkCapabilities" = 0xd02
- | | | | | "CFG_NO_PP" = No
- | | | | | "pci-function-number" = 0x0
- | | | | | "PP_PowerPlayEnabled" = &lt;01000000&gt;
- | | | | | }
- | | | | |
- | | | | +-o ATI6000Controller &lt;class ATI6000Controller, id 0x100000368, registered, matched, active, busy 0 (301 ms), retain 4&gt;
- | | | | | {
- | | | | | "IOClass" = "ATI6000Controller"
- | | | | | "CFBundleIdentifier" = "com.apple.kext.ATI6000Controller"
- | | | | | "IOProviderClass" = "IOPCIDevice"
- | | | | | "aty_properties" = {"PP_R600RaisingMediumPercentage"=0x19,"PP_R600VotingRightsClients"=0xc00233,"PP_UserMaxClockForMultiDisplays"=0x1,"PP_MCLKStutterModeThreshold"=0x7530,"PP_R600ActivityHysteresis"=0x5,"PP_R600RaisingLowPercentage"=0xa,"PP_HighSamplingInterval"=0x30d40,"PP_R600LoweringHighPercentage"=0x19,"PP_ActivitySamplingInterval"=0x3e8,"PP_DisablePowerContainment"=0x0,"PP_R600LoweringMediumPercentage"=0xa}
- | | | | | "PPLIB_VERSION" = "2.221"
- | | | | | "IOName" = "ATI6000Controller"
- | | | | | "ATY,Gibba" = {"aty_config"={"CFG_NO_HDCP"=Yes,"CFG_NO_PP"=No}}
- | | | | | "IOProbeScore" = 0xfde8
- | | | | | "IOPCIMatch" = "0x67681002 0x67701002 0x67791002 0x67601002 0x67611002 0x67501002 0x67581002 0x67591002 0x67401002 0x67411002 0x67451002 0x67381002 0x67391002 0x67201002 0x67221002 0x67181002 0x67191002 0x68401002 0x68411002 0x67041002"
- | | | | | "ATY,Muskgrass" = {"aty_config"={"CFG_USE_STUTTER"=Yes,"CFG_GEN_FLAGS"=0x1}}
- | | | | | "IOMatchCategory" = "IOFramebuffer"
- | | | | | "iofb_version" = "1.1.36"
- | | | | | "aty_config" = {"CFG_NO_HDCP"=No,"CFG_USE_SM"=No,"CFG_CAIL_CAPS"=0x0,"CFG_NO_PP"=No,"CFG_CAA"=0x0,"CFG_INT_SSPC"=0x19,"DALUseUrgencyWaterMarkOffset"=0x0,"CFG_USE_STUTTER"=No,"CFG_GEN_FLAGS"=0x0,"CFG_GRPH_CONTROL_DIS"=0xa004,"CFG_SURFACE_INFO_DIS"=0x1a0000,"CFG_USE_FBC"=No,"CFG_FB_LIMIT"=0x0,"DALReadDelayStutterOff"=0x4}
- | | | | | "ATY,Lotus" = {"aty_config"={"CFG_USE_STUTTER"=Yes,"CFG_GEN_FLAGS"=0x1}}
- | | | | | }
- | | | | |
- | | | | +-o ATY,Cattail@0 &lt;class AtiFbStub, id 0x10000036c, registered, matched, active, busy 0 (365 ms), retain 7&gt;
- | | | | | | {
- | | | | | | "ATY,EFIDisplay" = &lt;4c564453&gt;
- | | | | | | "ATY,ActiveFlags" = 0x40
- | | | | | | "AAPL,vram-memory" = &lt;0000009000000010&gt;
- | | | | | | "AAPL,gray-page" = &lt;01000000&gt;
- | | | | | | "connector-type" = 0x2
- | | | | | | "IOFBDependentID" = 0xffffff801217b700
- | | | | | | "name" = "ATY,Cattail"
- | | | | | | "ATY,ControlFlags" = 0x40
- | | | | | | "display-connect-flags" = &lt;04000000&gt;
- | | | | | | "display-pixel-component-bits" = &lt;06000000&gt;
- | | | | | | "compatible" = &lt;4154592c4361747461696c&gt;
- | | | | | | "display-dual-link" = &lt;02000000&gt;
- | | | | | | "AAPL,iokit-ndrv" = &lt;a0d7dd807fffffff&gt;
- | | | | | | "VRAM,memsize" = &lt;0000002000000020&gt;
- | | | | | | "display-link-type" = &lt;00000000&gt;
- | | | | | | "av-signal-type" = 0x0
- | | | | | | "IOFBDependentIndex" = 0x0
- | | | | | | "display-data-justification" = &lt;00000000&gt;
- | | | | | | "AAPL,gray-value" = &lt;c38c6400&gt;
- | | | | | | "display-type" = "LCD"
- | | | | | | "port-number" = 0x0
- | | | | | | "display-inverter-default-cycle" = &lt;ff&gt;
- | | | | | | "device_type" = "display"
- | | | | | | "AAPL,boot-display" = &lt;01000000&gt;
- | | | | | | "display-link-component-bits" = &lt;06000000&gt;
- | | | | | | }
- | | | | | |
- | | | | | +-o ATIFramebufferNI &lt;class ATIFramebuffer, id 0x1000003b0, registered, matched, active, busy 0 (63 ms), retain 17&gt;
- | | | | | | {
- | | | | | | "IOFBScalerInfo" = &lt;000000000000000000000000000000002e00000000100000001000000000000000000000000000000000000000000000&gt;
- | | | | | | "IOPMStrictTreeOrder" = Yes
- | | | | | | "av-signal-type" = 0x0
- | | | | | | "IOFBMemorySize" = 0x10000000
- | | | | | | "IOFBDependentIndex" = 0x0
- | | | | | | "AAPL,primary-display" = &lt;00000000&gt;
- | | | | | | "IOFBUIScale" = &lt;01000000&gt;
- | | | | | | "IOFBGammaHeaderSize" = 0x0
- | | | | | | "IOFBGammaCount" = 0x100
- | | | | | | "IOFBCurrentPixelCount" = 0x1e5280
- | | | | | | "IOFBCLUTDefer" = Yes
- | | | | | | "IOFramebufferOpenGLIndex" = 0x0
- | | | | | | "IONameMatched" = "display"
- | | | | | | "IOFBI2CInterfaceInfo" = ({"IOI2CBusType"=0x1,"IOI2CSupportedCommFlags"=0x2,"IOI2CTransactionTypes"=0x1f,"IOI2CInterfaceID"=0x0})
- | | | | | | "IODisplayParameters" = "IOFramebufferParameterHandler is not serializable"
- | | | | | | "startup-timing" = &lt;00000000000000c03e0400000000000000003c0000000000000000000000000000000000000000000100000000000000c0cb170700000000c0cb170700000000c0cb17070000000090060000a000000030000000200000001a0400001e000000030000000600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000&gt;
- | | | | | | "AAPL,display-alias" = &lt;00000000&gt;
- | | | | | | "IOAccelTypes" = "IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/P0P2@1/IOPCI2PCIBridge/GFX0@0/ATIRadeonX3000"
- | | | | | | "built-in" = &lt;&gt;
- | | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"MaxPowerState"=0x2,"CurrentPowerState"=0x2,"ChildProxyPowerState"=0x2,"DriverPowerState"=0x1}
- | | | | | | "IOFBCurrentPixelClock" = 0x717cbc0
- | | | | | | "IOFBGammaWidth" = 0xc
- | | | | | | "IOFBDependentID" = 0xffffff801217b700
- | | | | | | "IOAccelIndex" = 0x0
- | | | | | | "graphic-options" = 0x4
- | | | | | | "AAPL,alias-policy" = &lt;00000000&gt;
- | | | | | | "IOFBWaitCursorFrames" = 0x17
- | | | | | | "IOFBConfig" = {"IOFBModes"=({"ID"=0x43e,"DM"=&lt;900600001a0400001ce23b0004000000070000004b01cf00000000000000000000000000&gt;,"TM"=&lt;3e0400000000000000003c0000000000000000000000000000000000000000000100000000000000c0cb170700000000c0cb170700000000c0cb17070000000090060000a000000030000000200000001a0400001e000000030000000600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000&gt;},{"ID"=0xffffffff80000000,"DM"=&lt;a0050000540300001ce23b0004000000030200004b01$
- | | | | | | "IOFBWaitCursorPeriod" = 0x1fca055
- | | | | | | "IOFBProbeOptions" = 0x401
- | | | | | | "IOFBNeedsRefresh" = Yes
- | | | | | | "IOFBTransform" = 0x0
- | | | | | | "IOAccelRevision" = 0x2
- | | | | | | "CFBundleIdentifier" = "com.apple.kext.ATIFramebuffer"
- | | | | | | "IOCFPlugInTypes" = {"ACCF0000-0000-0000-0000-000a2789904e"="ATIRadeonX3000GA.plugin"}
- | | | | | | "IOProviderClass" = "AtiFbStub"
- | | | | | | "IOFBI2CInterfaceIDs" = (0x1345600000000000)
- | | | | | | "IOFBCursorInfo" = (&lt;0100000040000000400000002000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000&gt;,&lt;010000004000000040000000020000000000000002000000d0a6b4817fffffff000000000500000002000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000&gt;)
- | | | | | | "IONameMatch" = "display"
- | | | | | | "AAPL,mux-switch-state" = &lt;00000000&gt;
- | | | | | | "IOClass" = "ATIFramebuffer"
- | | | | | | "IOFBTimingRange" = &lt;000000000000000000000000000000000000000000000000000000000000000080054800000000008066ab1300000000000000000000000000000000040000000a000000f40100001027000020a1070000200000002000000000000000000000020101010201010101010101010100000200000000100000010000000020000001000000ff1f00000100000000100000020000000010000001000000002000000100000000200000010000000010000000000000000000000000000000000000000000000000000000000000000000000200000070120000888402007012000088840200000000000000000000000000&gt;
- | | | | | | "IOFBDetailedTimings" = (&lt;000000800000000000003c00000000000000000000000000a0050000540300000100000000000000c0cb170700000000c0cb170700000000c0cb17070000000090060000a000000030000000200000001a0400001e000000030000000600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000&gt;,&lt;010000800000000000003c00000000000000000001000000a0050000540300000100000000000000c0cb170700000000c0cb170700000000c0cb17070000000090060000a000000030000000200000001a0400001e000000$
- | | | | | | "IOGeneralInterest" = "IOCommand is not serializable"
- | | | | | | "IOMatchCategory" = "IOFramebuffer"
- | | | | | | "IOProbeScore" = 0xfde8
- | | | | | | "iofb_version" = "1.1.36"
- | | | | | | }
- | | | | | |
- | | | | | +-o AGPM &lt;class AGPM, id 0x1000003bf, registered, matched, active, busy 0 (13 ms), retain 8&gt;
- | | | | | | | {
- | | | | | | | "max-value" = 0x8
- | | | | | | | "min-value" = 0x0
- | | | | | | | "IOPowerManagement" = {"CurrentPowerState"=0x0}
- | | | | | | | "qscOn" = 0x0
- | | | | | | | "qscOff" = 0x0
- | | | | | | | "Heuristic-ID" = &lt;ffffffff&gt;
- | | | | | | | }
- | | | | | | |
- | | | | | | +-o gpu-control &lt;class IOService, id 0x1000003c0, registered, matched, active, busy 0 (2 ms), retain 6&gt;
- | | | | | | | {
- | | | | | | | "zone" = 0x0
- | | | | | | | "compatible" = "gpu-control"
- | | | | | | | "version" = 0x2
- | | | | | | | "dpm" = 0x1
- | | | | | | | "reg" = 0x11
- | | | | | | | "max-value" = 0x8
- | | | | | | | "type" = "gpu-control"
- | | | | | | | "device_type" = "gpu-control"
- | | | | | | | "location" = "primary-gpu-control"
- | | | | | | | "control-id" = 0x11
- | | | | | | | "name" = &lt;6770752d636f6e74726f6c00&gt;
- | | | | | | | "min-value" = 0x0
- | | | | | | | }
- | | | | | | |
- | | | | | | +-o IOHWControl &lt;class IOHWControl, id 0x10000044b, registered, matched, active, busy 0 (0 ms), retain 7&gt;
- | | | | | | {
- | | | | | | "IOClass" = "IOHWControl"
- | | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleHWSensor"
- | | | | | | "IOProviderClass" = "IOService"
- | | | | | | "IOPropertyMatch" = {"device_type"="gpu-control"}
- | | | | | | "zone" = 0x0
- | | | | | | "version" = 0x2
- | | | | | | "IOPowerManagement" = {"MaxPowerState"=0x1,"CurrentPowerState"=0x0}
- | | | | | | "IOProbeScore" = 0x0
- | | | | | | "max-value" = 0x8
- | | | | | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | | | | | "type" = "gpu-control"
- | | | | | | "current-value" = 0x2
- | | | | | | "location" = "primary-gpu-control"
- | | | | | | "target-value" = 0x8
- | | | | | | "control-id" = 0x11
- | | | | | | "min-value" = 0x0
- | | | | | | }
- | | | | | |
- | | | | | +-o AppleMCCSControlModule &lt;class AppleMCCSControlModule, id 0x1000003ca, registered, matched, active, busy 0 (11 ms), retain 5&gt;
- | | | | | | | {
- | | | | | | | "IOProbeScore" = 0x0
- | | | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleMCCSControl"
- | | | | | | | "IOMatchCategory" = "AppleMCCSControlFamily"
- | | | | | | | "IOClass" = "AppleMCCSControlModule"
- | | | | | | | "IOProviderClass" = "IOFramebuffer"
- | | | | | | | "IOKitDebug" = 0x0
- | | | | | | | "IOUserClientClass" = "AppleMCCSUserClient"
- | | | | | | | "IOResourceMatch" = "IOKit"
- | | | | | | | }
- | | | | | | |
- | | | | | | +-o AppleMCCSParameterHandler &lt;class AppleMCCSParameterHandler, id 0x1000003d2, registered, matched, active, busy 0 (3 ms), retain 4&gt;
- | | | | | | {
- | | | | | | "IOProbeScore" = 0x0
- | | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleMCCSControl"
- | | | | | | "IOProviderClass" = "AppleMCCSControlFamily"
- | | | | | | "IOClass" = "AppleMCCSParameterHandler"
- | | | | | | "IOMatchCategory" = "IODisplayParameters"
- | | | | | | "IOKitDebug" = 0x0
- | | | | | | "IOResourceMatch" = "IOKit"
- | | | | | | }
- | | | | | |
- | | | | | +-o AppleUpstreamUserClientDriver &lt;class AppleUpstreamUserClientDriver, id 0x1000003cb, registered, matched, active, busy 0 (4 ms), retain 4&gt;
- | | | | | | {
- | | | | | | "IOProbeScore" = 0x0
- | | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleUpstreamUserClient"
- | | | | | | "IOProviderClass" = "IOFramebuffer"
- | | | | | | "IOClass" = "AppleUpstreamUserClientDriver"
- | | | | | | "IOMatchCategory" = "AppleUpstreamUserClientDriver"
- | | | | | | "IOUserClientClass" = "AppleUpstreamUserClient"
- | | | | | | "IOResourceMatch" = "IOKit"
- | | | | | | }
- | | | | | |
- | | | | | +-o AppleGraphicsControlBacklightNub &lt;class AppleGraphicsControlBacklightNub, id 0x100000435, !registered, !matched, active, busy 0, retain 7&gt;
- | | | | | | {
- | | | | | | "IOMatchCategory" = "IODisplayParameters"
- | | | | | | "IONameMatched" = "backlight"
- | | | | | | "IONameMatch" = "backlight"
- | | | | | | "IOProviderClass" = "IOACPIPlatformDevice"
- | | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleMuxControl"
- | | | | | | "IODisplayParameters" = {"brightness"={"max"=0xff,"min"=0x28},"commit"={"reg"=0x0}}
- | | | | | | }
- | | | | | |
- | | | | | +-o AMDNDRVService &lt;class AtiAppServices, id 0x10000043e, registered, matched, active, busy 0 (0 ms), retain 5&gt;
- | | | | | | {
- | | | | | | }
- | | | | | |
- | | | | | +-o IOFramebufferI2CInterface &lt;class IOFramebufferI2CInterface, id 0x10000043f, registered, matched, active, busy 0 (0 ms), retain 5&gt;
- | | | | | | {
- | | | | | | "IOI2CBusType" = 0x1
- | | | | | | "IOI2CSupportedCommFlags" = 0x2
- | | | | | | "IOI2CTransactionTypes" = 0x1f
- | | | | | | "IOI2CInterfaceID" = 0x1345600000000000
- | | | | | | }
- | | | | | |
- | | | | | +-o IOFramebufferUserClient &lt;class IOFramebufferUserClient, id 0x100000453, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | | | {
- | | | | | | "IOUserClientCreator" = "pid 180, WindowServer"
- | | | | | | }
- | | | | | |
- | | | | | +-o IOFramebufferSharedUserClient &lt;class IOFramebufferSharedUserClient, id 0x100000470, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | | | {
- | | | | | | "IOUserClientSharedInstance" = Yes
- | | | | | | "IOUserClientCreator" = "pid 201, SecurityAgent"
- | | | | | | }
- | | | | | |
- | | | | | +-o display0 &lt;class IODisplayConnect, id 0x100000f85, registered, matched, active, busy 0 (3 ms), retain 5&gt;
- | | | | | | {
- | | | | | | }
- | | | | | |
- | | | | | +-o AppleBacklightDisplay &lt;class AppleBacklightDisplay, id 0x100000f86, registered, matched, active, busy 0 (0 ms), retain 8&gt;
- | | | | | {
- | | | | | "IOClass" = "AppleBacklightDisplay"
- | | | | | "CFBundleIdentifier" = "com.apple.iokit.IOGraphicsFamily"
- | | | | | "IOProviderClass" = "IODisplayConnect"
- | | | | | "DisplayProductID" = 0xa005
- | | | | | "IODisplayEDID" = &lt;00ffffffffffff00061005a00000000031140103802115780a50c59858528e27255054000000010101010101010101010101010101017c2e90a0601a1e40302036004bcf10000018000000010006103000000000000000000a20000000fe004c503135345745332d544c4232000000fc00436f6c6f72204c43440a202020005e&gt;
- | | | | | "IODisplayPrefsKey" = "Alias:0/AppleBacklightDisplay-610-a005"
- | | | | | "IODisplayParameters" = {"commit"={"reg"=0x0},"ggsc"={"min"=0x0,"max"=0x10000,"value"=0x10000},"thrm"={"min"=0x0,"max"=0x78,"value"=0x0},"dsyp"={"min"=0x0,"max"=0x2,"value"=0x2},"dith"={"min"=0x0,"max"=0x1,"value"=0x1},"rgsc"={"min"=0x0,"max"=0x10000,"value"=0x10000},"pscn"={"min"=0x13fe,"max"=0x2710,"value"=0x2710},"bgsc"={"min"=0x0,"max"=0x10000,"value"=0x10000},"cyuv"={"min"=0x0,"max"=0x10000000,"value"=0x10000000},"cmod"={"min"=0x0,"max"=0x1000,"value"=0x1},"bklt"={"min"=0x0,"max"=0xff,"value"=0xff},"linear-brig$
- | | | | | "IOProbeScore" = 0xbb8
- | | | | | "IODisplayGUID" = 0x610000000000000
- | | | | | "IOPowerManagement" = {"MaxPowerState"=0x3,"CurrentPowerState"=0x3}
- | | | | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | | | | "AppleDisplayType" = 0x2
- | | | | | "IODisplayAttributes" = &lt;676174760000000073676c6604000000726c6f630100000063706220010000006364670080808000676c666400000000&gt;
- | | | | | "AppleSense" = 0x90ff
- | | | | | "IODisplayConnectFlags" = &lt;c4490000&gt;
- | | | | | "DisplayVendorID" = 0x610
- | | | | | "DisplayParameterHandlerUsesCharPtr" = Yes
- | | | | | "DisplaySerialNumber" = 0x0
- | | | | | }
- | | | | |
- | | | | +-o ATY,Cattail@1 &lt;class AtiFbStub, id 0x10000036d, registered, matched, active, busy 0 (32 ms), retain 7&gt;
- | | | | | | {
- | | | | | | "display-type" = "NONE"
- | | | | | | "compatible" = &lt;4154592c4361747461696c&gt;
- | | | | | | "connector-type" = 0x400
- | | | | | | "ATY,ActiveFlags" = 0x1
- | | | | | | "IOFBDependentIndex" = 0x1
- | | | | | | "audio-codec-info" = 0x30100
- | | | | | | "IOFBDependentID" = 0xffffff801217b700
- | | | | | | "device_type" = "display"
- | | | | | | "VRAM,memsize" = &lt;0000000000000020&gt;
- | | | | | | "AAPL,gray-page" = &lt;01000000&gt;
- | | | | | | "ATY,ControlFlags" = 0x304
- | | | | | | "av-signal-type" = 0x0
- | | | | | | "AAPL,iokit-ndrv" = &lt;a0d7dd807fffffff&gt;
- | | | | | | "AAPL,vram-memory" = &lt;0000009000000010&gt;
- | | | | | | "AAPL,gray-value" = &lt;c38c6400&gt;
- | | | | | | "display-connect-flags" = &lt;00000000&gt;
- | | | | | | "name" = "ATY,Cattail"
- | | | | | | "port-number" = 0x1
- | | | | | | }
- | | | | | |
- | | | | | +-o ATIFramebufferNI &lt;class ATIFramebuffer, id 0x1000003d7, registered, matched, active, busy 0 (30 ms), retain 13&gt;
- | | | | | | {
- | | | | | | "IOFBScalerInfo" = &lt;000000000000000000000000000000002e00000000100000001000000000000000000000000000000000000000000000&gt;
- | | | | | | "IOPMStrictTreeOrder" = Yes
- | | | | | | "av-signal-type" = 0x0
- | | | | | | "IOFBMemorySize" = 0x10000000
- | | | | | | "IOFBDependentIndex" = 0x1
- | | | | | | "IOFBUIScale" = &lt;01000000&gt;
- | | | | | | "IOFBGammaHeaderSize" = 0x0
- | | | | | | "IOFBGammaCount" = 0x100
- | | | | | | "IOFBCurrentPixelCount" = 0x3d77a0
- | | | | | | "IOFBCLUTDefer" = Yes
- | | | | | | "IOFramebufferOpenGLIndex" = 0x1
- | | | | | | "IONameMatched" = "display"
- | | | | | | "IOFBI2CInterfaceInfo" = ({"IOI2CBusType"=0x1,"IOI2CSupportedCommFlags"=0x2,"IOI2CTransactionTypes"=0x1f,"IOI2CInterfaceID"=0x0})
- | | | | | | "IODisplayParameters" = "IOFramebufferParameterHandler is not serializable"
- | | | | | | "startup-timing" = &lt;00000000000000c03e0400000000000000003c000000000000000000000000000000000000000000010000000000000060ff640e0000000094165e0e0000000094165e0e00000000000a0000a00000003000000020000000a005000029000000030000000500000000000000000000000000000000000000010000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000&gt;
- | | | | | | "IOAccelTypes" = "IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/P0P2@1/IOPCI2PCIBridge/GFX0@0/ATIRadeonX3000"
- | | | | | | "IOPowerManagement" = {"MaxPowerState"=0x2,"CurrentPowerState"=0x2,"ChildProxyPowerState"=0x2,"DriverPowerState"=0x1}
- | | | | | | "IOFBCurrentPixelClock" = 0xe5e1694
- | | | | | | "IOFBGammaWidth" = 0xc
- | | | | | | "IOFBDependentID" = 0xffffff801217b700
- | | | | | | "IOAccelIndex" = 0x1
- | | | | | | "audio-selector" = &lt;64704243&gt;
- | | | | | | "graphic-options" = 0x4
- | | | | | | "IOFBWaitCursorFrames" = 0x17
- | | | | | | "IOFBConfig" = {"IOFB0Hz"=Yes,"IOFBModes"=({"ID"=0xffffffffffffff00,"DM"=&lt;010000000100000000000000000000000700000000000000000000000000000000000000&gt;,"AID"=0x226})}
- | | | | | | "IOFBWaitCursorPeriod" = 0x1fca055
- | | | | | | "IOFBProbeOptions" = 0x401
- | | | | | | "IOFBNeedsRefresh" = Yes
- | | | | | | "IOFBTransform" = 0x0
- | | | | | | "IOAccelRevision" = 0x2
- | | | | | | "IOFBI2CInterfaceIDs" = (0x1363c80000000000)
- | | | | | | "IOCFPlugInTypes" = {"ACCF0000-0000-0000-0000-000a2789904e"="ATIRadeonX3000GA.plugin"}
- | | | | | | "IOProviderClass" = "AtiFbStub"
- | | | | | | "CFBundleIdentifier" = "com.apple.kext.ATIFramebuffer"
- | | | | | | "IOFBCursorInfo" = (&lt;0100000040000000400000002000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000&gt;,&lt;010000004000000040000000020000000000000002000000d0a6b4817fffffff000000000500000002000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000&gt;)
- | | | | | | "IONameMatch" = "display"
- | | | | | | "AAPL,mux-switch-state" = &lt;00000000&gt;
- | | | | | | "IOClass" = "ATIFramebuffer"
- | | | | | | "IOFBTimingRange" = &lt;0000000000000000000000000000000000000000000000000000000000000000800548000000000000bf2f2000000000000000000000000000000000040000000a000000f40100001027000020a1070000200000002000000000000000000000020101010201010101010101010100000200000000100000010000000020000001000000ff1f00000100000000100000020000000010000001000000002000000100000000200000010000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000&gt;
- | | | | | | "IOGeneralInterest" = "IOCommand is not serializable"
- | | | | | | "IOMatchCategory" = "IOFramebuffer"
- | | | | | | "IOProbeScore" = 0xfde8
- | | | | | | "iofb_version" = "1.1.36"
- | | | | | | }
- | | | | | |
- | | | | | +-o AppleMCCSControlModule &lt;class AppleMCCSControlModule, id 0x1000003da, registered, matched, active, busy 0 (3 ms), retain 5&gt;
- | | | | | | | {
- | | | | | | | "IOProbeScore" = 0x0
- | | | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleMCCSControl"
- | | | | | | | "IOMatchCategory" = "AppleMCCSControlFamily"
- | | | | | | | "IOClass" = "AppleMCCSControlModule"
- | | | | | | | "IOProviderClass" = "IOFramebuffer"
- | | | | | | | "IOKitDebug" = 0x0
- | | | | | | | "IOUserClientClass" = "AppleMCCSUserClient"
- | | | | | | | "IOResourceMatch" = "IOKit"
- | | | | | | | }
- | | | | | | |
- | | | | | | +-o AppleMCCSParameterHandler &lt;class AppleMCCSParameterHandler, id 0x1000003dd, registered, matched, active, busy 0 (2 ms), retain 4&gt;
- | | | | | | {
- | | | | | | "IOProbeScore" = 0x0
- | | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleMCCSControl"
- | | | | | | "IOProviderClass" = "AppleMCCSControlFamily"
- | | | | | | "IOClass" = "AppleMCCSParameterHandler"
- | | | | | | "IOMatchCategory" = "IODisplayParameters"
- | | | | | | "IOKitDebug" = 0x0
- | | | | | | "IOResourceMatch" = "IOKit"
- | | | | | | }
- | | | | | |
- | | | | | +-o AppleUpstreamUserClientDriver &lt;class AppleUpstreamUserClientDriver, id 0x1000003db, registered, matched, active, busy 0 (0 ms), retain 4&gt;
- | | | | | | {
- | | | | | | "IOProbeScore" = 0x0
- | | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleUpstreamUserClient"
- | | | | | | "IOProviderClass" = "IOFramebuffer"
- | | | | | | "IOClass" = "AppleUpstreamUserClientDriver"
- | | | | | | "IOMatchCategory" = "AppleUpstreamUserClientDriver"
- | | | | | | "IOUserClientClass" = "AppleUpstreamUserClient"
- | | | | | | "IOResourceMatch" = "IOKit"
- | | | | | | }
- | | | | | |
- | | | | | +-o AMDNDRVService &lt;class AtiAppServices, id 0x100000444, registered, matched, active, busy 0 (0 ms), retain 5&gt;
- | | | | | | {
- | | | | | | }
- | | | | | |
- | | | | | +-o IOFramebufferI2CInterface &lt;class IOFramebufferI2CInterface, id 0x100000445, registered, matched, active, busy 0 (1 ms), retain 5&gt;
- | | | | | | {
- | | | | | | "IOI2CBusType" = 0x2
- | | | | | | "IOI2CSupportedCommFlags" = 0x2
- | | | | | | "IOI2CTransactionTypes" = 0x1f
- | | | | | | "IOI2CInterfaceID" = 0x1363c80000000000
- | | | | | | }
- | | | | | |
- | | | | | +-o IOFramebufferUserClient &lt;class IOFramebufferUserClient, id 0x100000454, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | | | {
- | | | | | | "IOUserClientCreator" = "pid 180, WindowServer"
- | | | | | | }
- | | | | | |
- | | | | | +-o IOFramebufferSharedUserClient &lt;class IOFramebufferSharedUserClient, id 0x1000004d0, !registered, !matched, active, busy 0, retain 6&gt;
- | | | | | {
- | | | | | "IOUserClientSharedInstance" = Yes
- | | | | | "IOUserClientCreator" = "pid 46, loginwindow"
- | | | | | }
- | | | | |
- | | | | +-o ATY,Cattail@2 &lt;class AtiFbStub, id 0x10000036e, registered, matched, active, busy 0 (8 ms), retain 7&gt;
- | | | | | | {
- | | | | | | "display-type" = "NONE"
- | | | | | | "compatible" = &lt;4154592c4361747461696c&gt;
- | | | | | | "connector-type" = 0x400
- | | | | | | "ATY,ActiveFlags" = 0x1
- | | | | | | "IOFBDependentIndex" = 0x2
- | | | | | | "IOFBDependentID" = 0xffffff801217b700
- | | | | | | "device_type" = "display"
- | | | | | | "VRAM,memsize" = &lt;0000000000000020&gt;
- | | | | | | "AAPL,gray-page" = &lt;01000000&gt;
- | | | | | | "ATY,ControlFlags" = 0x100
- | | | | | | "av-signal-type" = 0x0
- | | | | | | "AAPL,iokit-ndrv" = &lt;a0d7dd807fffffff&gt;
- | | | | | | "AAPL,vram-memory" = &lt;0000009000000010&gt;
- | | | | | | "AAPL,gray-value" = &lt;c38c6400&gt;
- | | | | | | "display-connect-flags" = &lt;00000000&gt;
- | | | | | | "name" = "ATY,Cattail"
- | | | | | | "port-number" = 0x2
- | | | | | | }
- | | | | | |
- | | | | | +-o ATIFramebufferNI &lt;class ATIFramebuffer, id 0x1000003de, registered, matched, active, busy 0 (7 ms), retain 12&gt;
- | | | | | | {
- | | | | | | "IOFBScalerInfo" = &lt;000000000000000000000000000000000e00000000100000001000000000000000000000000000000000000000000000&gt;
- | | | | | | "IOPMStrictTreeOrder" = Yes
- | | | | | | "av-signal-type" = 0x0
- | | | | | | "IOFBDependentIndex" = 0x2
- | | | | | | "IOFBUIScale" = &lt;00000000&gt;
- | | | | | | "IOFBGammaHeaderSize" = 0x0
- | | | | | | "IOFBGammaCount" = 0x100
- | | | | | | "IOFBCLUTDefer" = Yes
- | | | | | | "IOFramebufferOpenGLIndex" = 0x2
- | | | | | | "IONameMatched" = "display"
- | | | | | | "IOFBI2CInterfaceInfo" = ({"IOI2CBusType"=0x1,"IOI2CSupportedCommFlags"=0x2,"IOI2CTransactionTypes"=0x1f,"IOI2CInterfaceID"=0x0})
- | | | | | | "IODisplayParameters" = "IOFramebufferParameterHandler is not serializable"
- | | | | | | "IOAccelTypes" = "IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/P0P2@1/IOPCI2PCIBridge/GFX0@0/ATIRadeonX3000"
- | | | | | | "IOPowerManagement" = {"MaxPowerState"=0x2,"CurrentPowerState"=0x2,"ChildProxyPowerState"=0x2,"DriverPowerState"=0x1}
- | | | | | | "IOFBGammaWidth" = 0xc
- | | | | | | "IOFBDependentID" = 0xffffff801217b700
- | | | | | | "IOAccelIndex" = 0x2
- | | | | | | "IOFBWaitCursorFrames" = 0x17
- | | | | | | "IOFBConfig" = {"IOFB0Hz"=Yes,"IOFBModes"=({"ID"=0xffffffffffffff00,"DM"=&lt;010000000100000000000000000000000700000000000000000000000000000000000000&gt;,"AID"=0x226})}
- | | | | | | "IOFBWaitCursorPeriod" = 0x1fca055
- | | | | | | "IOFBProbeOptions" = 0x1
- | | | | | | "IOFBNeedsRefresh" = Yes
- | | | | | | "IOFBTransform" = 0x0
- | | | | | | "IOFBCursorInfo" = ()
- | | | | | | "IOFBI2CInterfaceIDs" = (0x1364300000000000)
- | | | | | | "IOAccelRevision" = 0x2
- | | | | | | "IOProviderClass" = "AtiFbStub"
- | | | | | | "IOCFPlugInTypes" = {"ACCF0000-0000-0000-0000-000a2789904e"="ATIRadeonX3000GA.plugin"}
- | | | | | | "CFBundleIdentifier" = "com.apple.kext.ATIFramebuffer"
- | | | | | | "IONameMatch" = "display"
- | | | | | | "AAPL,mux-switch-state" = &lt;00000000&gt;
- | | | | | | "IOClass" = "ATIFramebuffer"
- | | | | | | "IOFBTimingRange" = &lt;0000000000000000000000000000000000000000000000000000000000000000800548000000000000bf2f2000000000000000000000000000000000040000000a000000f40100001027000020a1070000200000002000000000000000000000020101010201010101010101010100000200000000100000010000000020000001000000ff1f00000100000000100000020000000010000001000000002000000100000000200000010000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000&gt;
- | | | | | | "IOGeneralInterest" = "IOCommand is not serializable"
- | | | | | | "IOMatchCategory" = "IOFramebuffer"
- | | | | | | "IOProbeScore" = 0xfde8
- | | | | | | "iofb_version" = "1.1.36"
- | | | | | | }
- | | | | | |
- | | | | | +-o AppleMCCSControlModule &lt;class AppleMCCSControlModule, id 0x1000003e1, registered, matched, active, busy 0 (2 ms), retain 5&gt;
- | | | | | | | {
- | | | | | | | "IOProbeScore" = 0x0
- | | | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleMCCSControl"
- | | | | | | | "IOMatchCategory" = "AppleMCCSControlFamily"
- | | | | | | | "IOClass" = "AppleMCCSControlModule"
- | | | | | | | "IOProviderClass" = "IOFramebuffer"
- | | | | | | | "IOKitDebug" = 0x0
- | | | | | | | "IOUserClientClass" = "AppleMCCSUserClient"
- | | | | | | | "IOResourceMatch" = "IOKit"
- | | | | | | | }
- | | | | | | |
- | | | | | | +-o AppleMCCSParameterHandler &lt;class AppleMCCSParameterHandler, id 0x1000003e3, registered, matched, active, busy 0 (0 ms), retain 4&gt;
- | | | | | | {
- | | | | | | "IOProbeScore" = 0x0
- | | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleMCCSControl"
- | | | | | | "IOProviderClass" = "AppleMCCSControlFamily"
- | | | | | | "IOClass" = "AppleMCCSParameterHandler"
- | | | | | | "IOMatchCategory" = "IODisplayParameters"
- | | | | | | "IOKitDebug" = 0x0
- | | | | | | "IOResourceMatch" = "IOKit"
- | | | | | | }
- | | | | | |
- | | | | | +-o AppleUpstreamUserClientDriver &lt;class AppleUpstreamUserClientDriver, id 0x1000003e2, registered, matched, active, busy 0 (1 ms), retain 4&gt;
- | | | | | | {
- | | | | | | "IOProbeScore" = 0x0
- | | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleUpstreamUserClient"
- | | | | | | "IOProviderClass" = "IOFramebuffer"
- | | | | | | "IOClass" = "AppleUpstreamUserClientDriver"
- | | | | | | "IOMatchCategory" = "AppleUpstreamUserClientDriver"
- | | | | | | "IOUserClientClass" = "AppleUpstreamUserClient"
- | | | | | | "IOResourceMatch" = "IOKit"
- | | | | | | }
- | | | | | |
- | | | | | +-o AMDNDRVService &lt;class AtiAppServices, id 0x100000451, registered, matched, active, busy 0 (1 ms), retain 5&gt;
- | | | | | | {
- | | | | | | }
- | | | | | |
- | | | | | +-o IOFramebufferI2CInterface &lt;class IOFramebufferI2CInterface, id 0x100000452, registered, matched, active, busy 0 (1 ms), retain 5&gt;
- | | | | | | {
- | | | | | | "IOI2CBusType" = 0x1
- | | | | | | "IOI2CSupportedCommFlags" = 0x2
- | | | | | | "IOI2CTransactionTypes" = 0x1f
- | | | | | | "IOI2CInterfaceID" = 0x1364300000000000
- | | | | | | }
- | | | | | |
- | | | | | +-o IOFramebufferUserClient &lt;class IOFramebufferUserClient, id 0x100000455, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 180, WindowServer"
- | | | | | }
- | | | | |
- | | | | +-o ATISupport &lt;class ATISupport, id 0x100000369, registered, matched, active, busy 0 (1 ms), retain 4&gt;
- | | | | | {
- | | | | | "IOProbeScore" = 0xea60
- | | | | | "CFBundleIdentifier" = "com.apple.kext.ATISupport"
- | | | | | "IOMatchCategory" = "ATISupport"
- | | | | | "IOClass" = "ATISupport"
- | | | | | "IOPCIClassMatch" = "0x03000000&amp;0xFF000000"
- | | | | | "IOPCIMatch" = "0x00001002&amp;0x0000FFFF"
- | | | | | "IOProviderClass" = "IOPCIDevice"
- | | | | | "iofb_version" = "1.1.36"
- | | | | | }
- | | | | |
- | | | | +-o ATIRadeonX3000 &lt;class ATIRadeonX3000, id 0x10000036a, registered, matched, active, busy 0 (0 ms), retain 38&gt;
- | | | | | {
- | | | | | "IOClass" = "ATIRadeonX3000"
- | | | | | "IOKitDebug" = 0x0
- | | | | | "IOVARendererID" = 0x1020002
- | | | | | "AccelCaps" = 0xb
- | | | | | "AccelNativeDMARowByteAlignment" = 0x100
- | | | | | "IODVDBundleName" = "ATIRadeonX3000VADriver"
- | | | | | "dpm" = 0x1
- | | | | | "IOGLBundleName" = "ATIRadeonX3000GLDriver"
- | | | | | "IOProviderClass" = "IOPCIDevice"
- | | | | | "ATIEnableWideBlitSupport" = Yes
- | | | | | "IOProbeScore" = 0x0
- | | | | | "SurfaceList" = ({"surfaceType"="2d","width"=0x1,"height"=0x1,"pid"=0xb4},{"surfaceType"="gl","width"=0x17c,"height"=0x24b,"pid"=0xa63},{"surfaceType"="gl","width"=0x400,"height"=0x300,"pid"=0x1b6b},{"surfaceType"="gl","width"=0x690,"height"=0x41a,"pid"=0x2e},{"surfaceType"="gl","width"=0x400,"height"=0x300,"pid"=0x1ade},{"surfaceType"="gl","width"=0x1,"height"=0x1,"pid"=0xb4})
- | | | | | "IOSourceVersion" = "7.32.12"
- | | | | | "IOAccelRevision" = 0x2
- | | | | | "ATY,cbits" = 0x2010040
- | | | | | "IOCFPlugInTypes" = {"ACCF0000-0000-0000-0000-000a2789904e"="ATIRadeonX3000GA.plugin"}
- | | | | | "ATY,intrev" = 0x28
- | | | | | "IOMatchCategory" = "IOAccelerator"
- | | | | | "CFBundleIdentifier" = "com.apple.ATIRadeonX3000"
- | | | | | "ATIUseTearingWideBlit" = No
- | | | | | "PerformanceStatistics" = {"removeFromGARTWaitTime"=0x0,"idctDataBufferCount"=0x0,"command2DBytesPerSample"=0x0,"dvdTextureCount"=0x0,"commandBytesPerSample"=0x0,"surfacePageOutBytesPerSample"=0x0,"dataBufferCount"=0x0,"freeContextBufferCLWaitTime"=0x0,"textureCount"=0x25c,"surfaceReadLockIdleWaitTime"=0x0,"freeDataBufferWaitTime"=0x0,"freeCommandBuffer2DWaitTime"=0x0,"contextDVDSwitchCount"=0x0,"finishAll2DWaitTime"=0x0,"textureWaitTime"=0x0,"IOSurfacePageOutBytesPerSample"=0x0,"gartMapInBytesPerSample"=0x0,"dataBytesPer$
- | | | | | "sensor-properties" = ({"zone"=&lt;00000002&gt;,"location"="GPU","name"="gpu-sensor","polling-period"=&lt;0000000100000000&gt;,"version"=&lt;00000002&gt;,"sample-period"=&lt;0000000000989800&gt;,"sensor-id"=&lt;00000006&gt;,"device_type"=&lt;6770752d73656e736f72&gt;,"reg"=&lt;00000002&gt;})
- | | | | | "GpuDebugPolicy" = 0x0
- | | | | | "IOPCIMatch" = "0x68881002 0x68891002 0x68981002 0x68991002 0x689C1002 0x689D1002 0x68801002 0x68901002 0x68A81002 0x68A91002 0x68B81002 0x68B91002 0x68BE1002 0x68A01002 0x68A11002 0x68B01002 0x68B11002 0x68C81002 0x68C91002 0x68D81002 0x68D91002 0x68DE1002 0x68C01002 0x68C11002 0x68D01002 0x68D11002 0x68E81002 0x68E91002 0x68F81002 0x68F91002 0x68FE1002 0x68E01002 0x68E11002 0x68F01002 0x68F11002 0x67001002 0x67011002 0x67021002 0x67031002 0x67041002 0x67051002 0x67061002 0x67071002 0x67081002 0x67091002 0x67181002 0x6$
- | | | | | }
- | | | | |
- | | | | +-o ATIR8002DContext &lt;class ATIR8002DContext, id 0x10000045a, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 180, WindowServer"
- | | | | | }
- | | | | |
- | | | | +-o ATIR8002DContext &lt;class ATIR8002DContext, id 0x10000045b, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 180, WindowServer"
- | | | | | }
- | | | | |
- | | | | +-o ATIR8002DContext &lt;class ATIR8002DContext, id 0x10000045c, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 180, WindowServer"
- | | | | | }
- | | | | |
- | | | | +-o ATIR800Device &lt;class ATIR800Device, id 0x100000464, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 180, WindowServer"
- | | | | | }
- | | | | |
- | | | | +-o ATIR800GLContext &lt;class ATIR800GLContext, id 0x100000466, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 180, WindowServer"
- | | | | | }
- | | | | |
- | | | | +-o ATIR800Surface &lt;class ATIR800Surface, id 0x100000506, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | | {
- | | | | | "IOUserClientCrossEndianCompatible" = Yes
- | | | | | "IOUserClientCreator" = "pid 180, WindowServer"
- | | | | | }
- | | | | |
- | | | | +-o ATIR800Device &lt;class ATIR800Device, id 0x1000005a4, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 692, Rdio"
- | | | | | }
- | | | | |
- | | | | +-o ATIR800GLContext &lt;class ATIR800GLContext, id 0x1000005a5, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 692, Rdio"
- | | | | | }
- | | | | |
- | | | | +-o ATIR800Device &lt;class ATIR800Device, id 0x1000005aa, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 692, Rdio"
- | | | | | }
- | | | | |
- | | | | +-o ATIR800GLContext &lt;class ATIR800GLContext, id 0x1000005ab, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 692, Rdio"
- | | | | | }
- | | | | |
- | | | | +-o ATIR800Device &lt;class ATIR800Device, id 0x100000697, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 302, Adium"
- | | | | | }
- | | | | |
- | | | | +-o ATIR800GLContext &lt;class ATIR800GLContext, id 0x100000699, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 302, Adium"
- | | | | | }
- | | | | |
- | | | | +-o ATIR800GLContext &lt;class ATIR800GLContext, id 0x10000069f, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 302, Adium"
- | | | | | }
- | | | | |
- | | | | +-o ATIR800Device &lt;class ATIR800Device, id 0x100000728, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 326, iTerm"
- | | | | | }
- | | | | |
- | | | | +-o ATIR800GLContext &lt;class ATIR800GLContext, id 0x10000072a, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 326, iTerm"
- | | | | | }
- | | | | |
- | | | | +-o ATIR800GLContext &lt;class ATIR800GLContext, id 0x100000730, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 326, iTerm"
- | | | | | }
- | | | | |
- | | | | +-o ATIR800GLContext &lt;class ATIR800GLContext, id 0x100000c05, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 180, WindowServer"
- | | | | | }
- | | | | |
- | | | | +-o ATIR800GLContext &lt;class ATIR800GLContext, id 0x100000c0b, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 180, WindowServer"
- | | | | | }
- | | | | |
- | | | | +-o ATIR800GLContext &lt;class ATIR800GLContext, id 0x100000c0d, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 180, WindowServer"
- | | | | | }
- | | | | |
- | | | | +-o ATIR800Device &lt;class ATIR800Device, id 0x100000e27, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 6878, VMware Fusion"
- | | | | | }
- | | | | |
- | | | | +-o ATIR800GLContext &lt;class ATIR800GLContext, id 0x100000e28, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 6878, VMware Fusion"
- | | | | | }
- | | | | |
- | | | | +-o ATIR800Device &lt;class ATIR800Device, id 0x100000f4d, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 46, loginwindow"
- | | | | | }
- | | | | |
- | | | | +-o ATIR800GLContext &lt;class ATIR800GLContext, id 0x100000f4f, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 46, loginwindow"
- | | | | | }
- | | | | |
- | | | | +-o ATIR800Device &lt;class ATIR800Device, id 0x100000f90, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 7019, vmware-vmx"
- | | | | | }
- | | | | |
- | | | | +-o ATIR800GLContext &lt;class ATIR800GLContext, id 0x100000f91, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 7019, vmware-vmx"
- | | | | | }
- | | | | |
- | | | | +-o ATIR800Surface &lt;class ATIR800Surface, id 0x100000f92, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | | {
- | | | | | "IOUserClientCrossEndianCompatible" = Yes
- | | | | | "IOUserClientCreator" = "pid 180, WindowServer"
- | | | | | }
- | | | | |
- | | | | +-o ATIR800GLContext &lt;class ATIR800GLContext, id 0x100000f93, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 7019, vmware-vmx"
- | | | | | }
- | | | | |
- | | | | +-o ATIR800Surface &lt;class ATIR800Surface, id 0x100000f94, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | | {
- | | | | | "IOUserClientCrossEndianCompatible" = Yes
- | | | | | "IOUserClientCreator" = "pid 180, WindowServer"
- | | | | | }
- | | | | |
- | | | | +-o ATIR800Surface &lt;class ATIR800Surface, id 0x100000f95, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | | {
- | | | | | "IOUserClientCrossEndianCompatible" = Yes
- | | | | | "IOUserClientCreator" = "pid 180, WindowServer"
- | | | | | }
- | | | | |
- | | | | +-o ATIR800Surface &lt;class ATIR800Surface, id 0x100000f98, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | | {
- | | | | | "IOUserClientCrossEndianCompatible" = Yes
- | | | | | "IOUserClientCreator" = "pid 180, WindowServer"
- | | | | | }
- | | | | |
- | | | | +-o ATIR800Surface &lt;class ATIR800Surface, id 0x100000f9a, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | | {
- | | | | | "IOUserClientCrossEndianCompatible" = Yes
- | | | | | "IOUserClientCreator" = "pid 180, WindowServer"
- | | | | | }
- | | | | |
- | | | | +-o ATIR800Device &lt;class ATIR800Device, id 0x100000fae, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 2659, Twitter"
- | | | | | }
- | | | | |
- | | | | +-o ATIR800GLContext &lt;class ATIR800GLContext, id 0x100000faf, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | {
- | | | | "IOUserClientCreator" = "pid 2659, Twitter"
- | | | | }
- | | | |
- | | | +-o HDAU@0,1 &lt;class IOPCIDevice, id 0x10000019d, registered, matched, active, busy 0 (448 ms), retain 12&gt;
- | | | | {
- | | | | "assigned-addresses" = &lt;1001018200000000000084b00000000000400000&gt;
- | | | | "IOInterruptSpecifiers" = (&lt;1100000007000000&gt;,&lt;0500000000000100&gt;)
- | | | | "class-code" = &lt;00030400&gt;
- | | | | "IODeviceMemory" = (({"address"=0xb0840000,"length"=0x4000}))
- | | | | "IOPowerManagement" = {"MaxPowerState"=0x2,"ChildrenPowerState"=0x2,"CurrentPowerState"=0x2}
- | | | | "subsystem-vendor-id" = &lt;00000000&gt;
- | | | | "built-in" = &lt;00&gt;
- | | | | "acpi-device" = "IOACPIPlatformDevice is not serializable"
- | | | | "PinConfigurations" = &lt;e0005628&gt;
- | | | | "hda-gfx" = &lt;6f6e626f6172642d3200&gt;
- | | | | "IOInterruptControllers" = ("io-apic-0","IOPCIMessagedInterruptController")
- | | | | "IOPCIMSIMode" = Yes
- | | | | "name" = "pci1002,aa90"
- | | | | "IOChildIndex" = 0x2
- | | | | "device-id" = &lt;90aa0000&gt;
- | | | | "vendor-id" = &lt;02100000&gt;
- | | | | "IOPCIExpressASPMDefault" = 0x3
- | | | | "IOPCIResourced" = Yes
- | | | | "compatible" = &lt;706369302c6161393000706369313030322c6161393000706369636c6173732c30343033303000&gt;
- | | | | "layout-id" = &lt;1d000000&gt;
- | | | | "IOPCIExpressLinkCapabilities" = 0xd02
- | | | | "acpi-path" = "IOACPIPlane:/_SB/PCI0@0/P0P2@10000/HDAU@1"
- | | | | "DigitalAudioCapabilities" = {"DisplayPort"=0x1,"HDMI"=0x1}
- | | | | "subsystem-id" = &lt;90aa0000&gt;
- | | | | "revision-id" = &lt;00000000&gt;
- | | | | "IOPCIExpressLinkStatus" = 0x1082
- | | | | "pcidebug" = "1:0:1"
- | | | | "IOName" = "pci1002,aa90"
- | | | | "reg" = &lt;00010100000000000000000000000000000000001001010200000000000000000000000000400000&gt;
- | | | | }
- | | | |
- | | | +-o AppleHDAController@0,1 &lt;class AppleHDAController, id 0x100000370, registered, matched, active, busy 0 (282 ms), retain 7&gt;
- | | | | {
- | | | | "IOClass" = "AppleHDAController"
- | | | | "CFBundleIdentifier" = "com.apple.driver.AppleHDAController"
- | | | | "IOProviderClass" = "IOPCIDevice"
- | | | | "DPAudioDeviceExclusion" = ({"ManufacturerID"=0x610,"ProductID"=0x2792})
- | | | | "IOPCIClassMatch" = "0x04020000&amp;0xFFFE0000"
- | | | | "DPAlwaysDisplayRouting" = (0x3,0x21,0x23)
- | | | | "IOPMUnattendedWakePowerState" = 0x0
- | | | | "IOProbeScore" = 0x1
- | | | | "CodecAddressFilterArray" = ({"CodecAddressMask"=&lt;01000000&gt;,"PCIVendorDeviceID"=0x10de0ac0,"LayoutID"=0x4008},{"CodecAddressMask"=&lt;01000000&gt;,"PCIVendorDeviceID"=0x10de0ac0,"LayoutID"=0x0},{"CodecAddressMask"=&lt;09000000&gt;,"PCIVendorDeviceID"=0x10de0ac0,"LayoutID"=0x41},{"CodecAddressMask"=&lt;01000000&gt;,"PCIVendorDeviceID"=0x10de0ac0,"LayoutID"=0x49})
- | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"DevicePowerState"=0x2,"CurrentPowerState"=0x2,"MaxPowerState"=0x2}
- | | | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | | | "DigitalAudioCapabilities" = {"DisplayPort"=0x1,"HDMI"=0x1}
- | | | | "AppleHDA_AGC_lastPowerStateRequest" = 0x0
- | | | | "RequireMaxBusStall" = ({"Layouts"=(),"MaxBusStall"=0x3a98})
- | | | | "HDAControllerIndex" = 0x1
- | | | | "CodecList" = ({"RevisionID"=0x100200,"VendorProductID"=0x1002aa01})
- | | | | "HwFactoryPrefixTranslation" = ({"LayoutID"=0x4e,"StandInDID"=0xaa30,"SourceDID"=0xaa40,"VID"=0x1002},{"LayoutID"=0x4e,"StandInDID"=0xaa30,"SourceDID"=0xaa38,"VID"=0x1002},{"LayoutID"=0x4f,"StandInDID"=0xaa30,"SourceDID"=0xaa40,"VID"=0x1002},{"LayoutID"=0x4f,"StandInDID"=0xaa30,"SourceDID"=0xaa38,"VID"=0x1002})
- | | | | }
- | | | |
- | | | +-o IOHDACodecDevice@0,1,0 &lt;class IOHDACodecDevice, id 0x10000037f, registered, matched, active, busy 0 (282 ms), retain 6&gt;
- | | | | {
- | | | | "IOHDACodecAddress" = 0x0
- | | | | "IOHDACodecVendorID" = 0x1002aa01
- | | | | "DigitalAudioCapabilities" = {"DisplayPort"=0x1,"HDMI"=0x1}
- | | | | "IOHDACodecRevisionID" = 0x100200
- | | | | }
- | | | |
- | | | +-o IOHDACodecDriver &lt;class IOHDACodecDriver, id 0x1000003b6, !registered, !matched, active, busy 0 (85 ms), retain 5&gt;
- | | | | {
- | | | | "IOClass" = "IOHDACodecDriver"
- | | | | "IOProviderClass" = "IOHDACodecDevice"
- | | | | "IOProbeScore" = 0x0
- | | | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | | | "CFBundleIdentifier" = "com.apple.iokit.IOHDAFamily"
- | | | | "DigitalAudioCapabilities" = {"DisplayPort"=0x1,"HDMI"=0x1}
- | | | | }
- | | | |
- | | | +-o IOHDACodecFunction@0,1,0,1 &lt;class IOHDACodecFunction, id 0x1000003b7, registered, matched, active, busy 0 (85 ms), retain 6&gt;
- | | | | {
- | | | | "IOHDACodecFunctionGroupType" = 0x1
- | | | | "IOHDACodecFunctionSubsystemID" = 0xaa0100
- | | | | }
- | | | |
- | | | +-o AppleHDACodecGeneric &lt;class AppleHDACodecGeneric, id 0x1000003c7, registered, matched, active, busy 0 (67 ms), retain 5&gt;
- | | | | {
- | | | | "IOClass" = "AppleHDACodecGeneric"
- | | | | "IOProviderClass" = "IOHDACodecFunction"
- | | | | "IOProbeScore" = 0x1
- | | | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | | | "IOHDACodecFunctionGroupType" = 0x1
- | | | | "CFBundleIdentifier" = "com.apple.driver.AppleHDA"
- | | | | }
- | | | |
- | | | +-o AppleHDADriver &lt;class AppleHDADriver, id 0x1000003d6, registered, matched, active, busy 0 (48 ms), retain 5&gt;
- | | | {
- | | | "IOClass" = "AppleHDADriver"
- | | | "IOPMUnattendedWakePowerState" = 0x0
- | | | "IOAudioDeviceShortName" = "DeviceShortName"
- | | | "IOAudioDeviceModelID" = "AppleHDA:29"
- | | | "IOAudioDeviceManufacturerName" = "ManufacturerName"
- | | | "OutputSampleLatency" = 0x0
- | | | "IOPowerManagement" = {"DriverPowerState"=0x1,"MaxPowerState"=0x1,"CurrentPowerState"=0x1}
- | | | "IOProviderClass" = "AppleHDACodec"
- | | | "InputSampleLatency" = 0x0
- | | | "IOAudioDeviceTransportType" = 0x64707274
- | | | "IOProbeScore" = 0x0
- | | | "SystemSpecificSampleOffsetPad" = ({"SampleOffsetPad"=0x104,"LayoutID"=0x8})
- | | | "IOAudioPowerState" = 0x2
- | | | "IOAudioDeviceLocalizedBundle" = "AppleHDA.kext"
- | | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | | "CFBundleIdentifier" = "com.apple.driver.AppleHDA"
- | | | "MultiDisplayPorts" = (0x20,0x23,0x42)
- | | | "PeriodicTasks" = No
- | | | "PowerProfile" = {"PowerIdentity"="Built-in Audio","MaximumPowerLimit"=0x0,"IdlePowerLevel"=0x0,"CurrentPowerLevel"=0x0}
- | | | "IOAudioDeviceCanBeDefaults" = 0x7
- | | | "SampleOffsetPad" = 0x0
- | | | "IOAudioDeviceName" = "DeviceName"
- | | | }
- | | |
- | | +-o PEG1@1,1 &lt;class IOPCIDevice, id 0x10000019e, registered, matched, active, busy 0 (1172 ms), retain 12&gt;
- | | | | {
- | | | | "IOInterruptSpecifiers" = (&lt;1000000007000000&gt;)
- | | | | "#address-cells" = &lt;03000000&gt;
- | | | | "class-code" = &lt;00040600&gt;
- | | | | "IOPowerManagement" = {"MaxPowerState"=0x2,"ChildrenPowerState"=0x0,"CurrentPowerState"=0x0}
- | | | | "subsystem-vendor-id" = &lt;0f000000&gt;
- | | | | "built-in" = &lt;00&gt;
- | | | | "acpi-device" = "IOACPIPlatformDevice is not serializable"
- | | | | "IOInterruptControllers" = ("io-apic-0")
- | | | | "name" = "pci-bridge"
- | | | | "vendor-id" = &lt;86800000&gt;
- | | | | "device-id" = &lt;05010000&gt;
- | | | | "acpi-pmcap-offset" = 0x80
- | | | | "IOPCIExpressASPMDefault" = 0x0
- | | | | "IOPCIResourced" = Yes
- | | | | "compatible" = &lt;706369662c3000706369383038362c31303500706369636c6173732c30363034303000&gt;
- | | | | "ranges" = &lt;00000082000000000000a0b000000082000000000000a0b0000000000000602f000000c20f00000000000020000000c20f0000000000002000000000000000400000008100000000004000000000008100000000004000000000000000800000&gt;
- | | | | "IOPCIExpressLinkCapabilities" = 0x3212c82
- | | | | "IODTPersist" = &lt;f6be88807ffffffff4db88807fffffff&gt;
- | | | | "IOPCIConfigured" = Yes
- | | | | "acpi-path" = "IOACPIPlane:/_SB/PCI0@0/PEG1@10001"
- | | | | "subsystem-id" = &lt;00000000&gt;
- | | | | "revision-id" = &lt;09000000&gt;
- | | | | "IOPCIExpressLinkStatus" = 0x5042
- | | | | "pcidebug" = "0:1:1(5:196)"
- | | | | "IOName" = "pci-bridge"
- | | | | "#size-cells" = &lt;02000000&gt;
- | | | | "reg" = &lt;0009000000000000000000000000000000000000&gt;
- | | | | }
- | | | |
- | | | +-o IOPCI2PCIBridge &lt;class IOPCI2PCIBridge, id 0x1000001fc, registered, matched, active, busy 0 (1165 ms), retain 7&gt;
- | | | | {
- | | | | "IOProbeScore" = 0xffffffffffffff9c
- | | | | "CFBundleIdentifier" = "com.apple.iokit.IOPCIFamily"
- | | | | "IOProviderClass" = "IOPCIDevice"
- | | | | "IOClass" = "IOPCI2PCIBridge"
- | | | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | | | "IOPCIClassMatch" = "0x06040000&amp;0xffff0000"
- | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"DevicePowerState"=0x0,"CurrentPowerState"=0x0,"PowerOverrideOn"=Yes,"ChildProxyPowerState"=0x2,"MaxPowerState"=0x2}
- | | | | }
- | | | |
- | | | +-o UPSB@0 &lt;class IOPCIDevice, id 0x10000019f, registered, matched, active, busy 0 (1165 ms), retain 16&gt;
- | | | | {
- | | | | "IOInterruptSpecifiers" = (&lt;1100000007000000&gt;)
- | | | | "PCI-Thunderbolt" = 0x1
- | | | | "#address-cells" = &lt;03000000&gt;
- | | | | "class-code" = &lt;00040600&gt;
- | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"CurrentPowerState"=0x0,"MaxPowerState"=0x2,"DesiredPowerState"=0x2}
- | | | | "subsystem-vendor-id" = &lt;0f000000&gt;
- | | | | "built-in" = &lt;00&gt;
- | | | | "acpi-device" = "IOACPIPlatformDevice is not serializable"
- | | | | "IOInterruptControllers" = ("io-apic-0")
- | | | | "name" = "pci-bridge"
- | | | | "vendor-id" = &lt;86800000&gt;
- | | | | "device-id" = &lt;13150000&gt;
- | | | | "IOChildIndex" = 0x1
- | | | | "IOPCIExpressASPMDefault" = 0x0
- | | | | "acpi-pmcap-offset" = 0x80
- | | | | "compatible" = &lt;706369662c3000706369383038362c3135313300706369636c6173732c30363034303000&gt;
- | | | | "ranges" = &lt;00000082000000000000a0b000000082000000000000a0b0000000000000602f000000c20f00000000000020000000c20f0000000000002000000000000000400000008100000000004000000000008100000000004000000000000000800000&gt;
- | | | | "IOPCIExpressLinkCapabilities" = 0x7fc42
- | | | | "IOPCIResourced" = Yes
- | | | | "IODTPersist" = &lt;f6be88807ffffffff4db88807fffffff&gt;
- | | | | "IOPCIConfigured" = Yes
- | | | | "acpi-path" = "IOACPIPlane:/_SB/PCI0@0/PEG1@10001/UPSB@0"
- | | | | "subsystem-id" = &lt;00000000&gt;
- | | | | "revision-id" = &lt;00000000&gt;
- | | | | "IOPCIExpressLinkStatus" = 0x1042
- | | | | "pcidebug" = "5:0:0(6:196)"
- | | | | "IOName" = "pci-bridge"
- | | | | "#size-cells" = &lt;02000000&gt;
- | | | | "reg" = &lt;0000050000000000000000000000000000000000&gt;
- | | | | }
- | | | |
- | | | +-o IOPCI2PCIBridge &lt;class IOPCI2PCIBridge, id 0x10000021d, registered, matched, active, busy 0 (1152 ms), retain 15&gt;
- | | | | {
- | | | | "IOProbeScore" = 0xffffffffffffff9c
- | | | | "CFBundleIdentifier" = "com.apple.iokit.IOPCIFamily"
- | | | | "IOProviderClass" = "IOPCIDevice"
- | | | | "IOClass" = "IOPCI2PCIBridge"
- | | | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | | | "IOPCIClassMatch" = "0x06040000&amp;0xffff0000"
- | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"DesiredPowerState"=0x2,"CurrentPowerState"=0x0,"ChildProxyPowerState"=0x2,"MaxPowerState"=0x2}
- | | | | }
- | | | |
- | | | +-o DSB0@0 &lt;class IOPCIDevice, id 0x1000001a0, registered, matched, active, busy 0 (1150 ms), retain 12&gt;
- | | | | | {
- | | | | | "IOInterruptSpecifiers" = (&lt;1100000007000000&gt;)
- | | | | | "#address-cells" = &lt;03000000&gt;
- | | | | | "class-code" = &lt;00040600&gt;
- | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"CurrentPowerState"=0x0,"MaxPowerState"=0x2,"DesiredPowerState"=0x2}
- | | | | | "built-in" = &lt;00&gt;
- | | | | | "acpi-device" = "IOACPIPlatformDevice is not serializable"
- | | | | | "IOInterruptControllers" = ("io-apic-0")
- | | | | | "vendor-id" = &lt;86800000&gt;
- | | | | | "IOChildIndex" = 0x1
- | | | | | "device-id" = &lt;13150000&gt;
- | | | | | "name" = "pci-bridge"
- | | | | | "IOPCIExpressASPMDefault" = 0x0
- | | | | | "acpi-pmcap-offset" = 0x80
- | | | | | "compatible" = &lt;706369383038362c3135313300706369636c6173732c30363034303000&gt;
- | | | | | "ranges" = &lt;00000082000000000000a0b000000082000000000000a0b00000000000001000000000c20000000000000000000000c2000000000000000000000000000000000000008100000000000000000000008100000000000000000000000000000000&gt;
- | | | | | "IOPCIExpressLinkCapabilities" = 0x23fc41
- | | | | | "IOPCIResourced" = Yes
- | | | | | "IODTPersist" = &lt;f6be88807ffffffff4db88807fffffff&gt;
- | | | | | "IOPCIConfigured" = Yes
- | | | | | "acpi-path" = "IOACPIPlane:/_SB/PCI0@0/PEG1@10001/UPSB@0/DSB0@0"
- | | | | | "revision-id" = &lt;00000000&gt;
- | | | | | "IOPCIExpressLinkStatus" = 0x1041
- | | | | | "pcidebug" = "6:0:0(7:7)"
- | | | | | "IOName" = "pci-bridge"
- | | | | | "#size-cells" = &lt;02000000&gt;
- | | | | | "reg" = &lt;0000060000000000000000000000000000000000&gt;
- | | | | | }
- | | | | |
- | | | | +-o IOPCI2PCIBridge &lt;class IOPCI2PCIBridge, id 0x100000234, registered, matched, active, busy 0 (1135 ms), retain 7&gt;
- | | | | | {
- | | | | | "IOProbeScore" = 0xffffffffffffff9c
- | | | | | "CFBundleIdentifier" = "com.apple.iokit.IOPCIFamily"
- | | | | | "IOProviderClass" = "IOPCIDevice"
- | | | | | "IOClass" = "IOPCI2PCIBridge"
- | | | | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | | | | "IOPCIClassMatch" = "0x06040000&amp;0xffff0000"
- | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"DesiredPowerState"=0x2,"CurrentPowerState"=0x0,"ChildProxyPowerState"=0x2,"MaxPowerState"=0x2}
- | | | | | }
- | | | | |
- | | | | +-o NHI0@0 &lt;class IOPCIDevice, id 0x1000001a1, registered, matched, active, busy 0 (1135 ms), retain 11&gt;
- | | | | | {
- | | | | | "assigned-addresses" = &lt;10000782000000000000a0b0000000000000040014000782000000000000a4b00000000000100000&gt;
- | | | | | "IOInterruptSpecifiers" = (&lt;1100000007000000&gt;,&lt;0a00000000000100&gt;)
- | | | | | "class-code" = &lt;00800800&gt;
- | | | | | "IODeviceMemory" = (({"address"=0xb0a00000,"length"=0x40000}),({"address"=0xb0a40000,"length"=0x1000}))
- | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"CurrentPowerState"=0x0,"MaxPowerState"=0x2,"DesiredPowerState"=0x2}
- | | | | | "subsystem-vendor-id" = &lt;22220000&gt;
- | | | | | "built-in" = &lt;00&gt;
- | | | | | "acpi-device" = "IOACPIPlatformDevice is not serializable"
- | | | | | "power-save" = 0x1
- | | | | | "ThunderboltDROM" = &lt;81c034141b0a0001009afe50ef01590001000a0001010881800240260000088290014026000002c302c402c508860000000000000387800388a00389c0038a6002cb048c5000048d00000e014170706c652c20496e632e000e024d6163426f6f6b2050726f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000$
- | | | | | "ThunderboltUUID" = &lt;4d2a94e4b834de54bfae4fa8f7d1f823&gt;
- | | | | | "IOInterruptControllers" = ("io-apic-0","IOPCIMessagedInterruptController")
- | | | | | "name" = "pci8086,1513"
- | | | | | "vendor-id" = &lt;86800000&gt;
- | | | | | "device-id" = &lt;13150000&gt;
- | | | | | "IOChildIndex" = 0x1
- | | | | | "IOPCIExpressASPMDefault" = 0x0
- | | | | | "acpi-pmcap-offset" = 0x80
- | | | | | "compatible" = &lt;706369323232322c3131313100706369383038362c3135313300706369636c6173732c30383830303000&gt;
- | | | | | "IOPCIResourced" = Yes
- | | | | | "IOPCIExpressLinkCapabilities" = 0x7fc41
- | | | | | "IOPCIMSIMode" = Yes
- | | | | | "acpi-path" = "IOACPIPlane:/_SB/PCI0@0/PEG1@10001/UPSB@0/DSB0@0/NHI0@0"
- | | | | | "TBTDPLowToHigh" = &lt;01000000&gt;
- | | | | | "subsystem-id" = &lt;11110000&gt;
- | | | | | "revision-id" = &lt;00000000&gt;
- | | | | | "IOPCIExpressLinkStatus" = 0x1041
- | | | | | "pcidebug" = "7:0:0"
- | | | | | "IOName" = "pci8086,1513"
- | | | | | "IOPCITunnelControllerID" = 0x10000024b
- | | | | | "reg" = &lt;000007000000000000000000000000000000000010000702000000000000000000000000000004001400070200000000000000000000000000100000&gt;
- | | | | | }
- | | | | |
- | | | | +-o AppleThunderboltHAL &lt;class AppleThunderboltHAL, id 0x10000024b, registered, matched, active, busy 0 (1126 ms), retain 8&gt;
- | | | | | {
- | | | | | "IOClass" = "AppleThunderboltHAL"
- | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleThunderboltNHI"
- | | | | | "IOProviderClass" = "IOPCIDevice"
- | | | | | "IOPCIClassMatch" = "0x08800000&amp;0xffff0000"
- | | | | | "IOUserClientClass" = "AppleThunderboltNHIUserClient"
- | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"DesiredPowerState"=0x2,"CurrentPowerState"=0x0,"MaxPowerState"=0x2,"DriverPowerState"=0x2}
- | | | | | "IOProbeScore" = 0x0
- | | | | | "IOPCIMatch" = "0x15008086&amp;0xff00ffff"
- | | | | | "IOPlatformSleepAction" = 0x30d40
- | | | | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | | | | "IOPCITunnelCompatible" = Yes
- | | | | | "Hardware Owner" = "AppleThunderboltNHIType1"
- | | | | | }
- | | | | |
- | | | | +-o AppleThunderboltNHIType1 &lt;class AppleThunderboltNHIType1, id 0x10000024d, registered, matched, active, busy 0 (1126 ms), retain 9&gt;
- | | | | | {
- | | | | | }
- | | | | |
- | | | | +-o IOThunderboltController &lt;class IOThunderboltController, id 0x10000024f, registered, matched, active, busy 0 (1126 ms), retain 15&gt;
- | | | | | {
- | | | | | "IOCFPlugInTypes" = {"3A0F596B-5D02-41D3-99D4-E27D4F218A54"="IOThunderboltFamily.kext/Contents/PlugIns/IOThunderboltLib.plugin"}
- | | | | | "IOUserClientClass" = "IOThunderboltFamilyUserClient"
- | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x1,"DesiredPowerState"=0x1,"CurrentPowerState"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x1}
- | | | | | }
- | | | | |
- | | | | +-o IOThunderboltLocalNode &lt;class IOThunderboltLocalNode, id 0x100000251, registered, matched, active, busy 0 (37 ms), retain 4&gt;
- | | | | | {
- | | | | | "Domain UUID" = "4D2A94E4-B834-DE54-BFAE-4FA8F7D1F823"
- | | | | | }
- | | | | |
- | | | | +-o IOThunderboltPort@6 &lt;class IOThunderboltPort, id 0x100000252, registered, matched, active, busy 0 (1077 ms), retain 7&gt;
- | | | | | {
- | | | | | "Revision ID" = 0x2
- | | | | | "Thunderbolt Version" = 0x1
- | | | | | "Device ID" = 0x1513
- | | | | | "Vendor ID" = 0x8086
- | | | | | "Adapter Type" = 0x2
- | | | | | "Max In Hop ID" = 0x1f
- | | | | | "Max Out Hop ID" = 0x1f
- | | | | | "Hop Table" = ()
- | | | | | "Description" = "Thunderbolt Native Host Interface Adapter"
- | | | | | "Port Number" = 0x6
- | | | | | }
- | | | | |
- | | | | +-o IOThunderboltSwitchType1 &lt;class IOThunderboltSwitchType1, id 0x100000253, registered, matched, active, busy 0 (40 ms), retain 16&gt;
- | | | | | {
- | | | | | "Device Vendor ID" = 0x1
- | | | | | "Device Model Name" = "MacBook Pro"
- | | | | | "UID" = 0x1000a1b1434c0
- | | | | | "Upstream Port Number" = 0x6
- | | | | | "IOPowerManagement" = {"DesiredPowerState"=0x1,"CurrentPowerState"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x1}
- | | | | | "Max Port Number" = 0xd
- | | | | | "Thunderbolt Version" = 0x1
- | | | | | "ROM Version" = 0x25
- | | | | | "Revision ID" = 0x2
- | | | | | "Device ID" = 0x1513
- | | | | | "Route String" = 0x0
- | | | | | "Device Model ID" = 0xa
- | | | | | "Device Model Revision" = 0x1
- | | | | | "EEPROM Revision" = 0x1
- | | | | | "Device Vendor Name" = "Apple, Inc."
- | | | | | "Vendor ID" = 0x8086
- | | | | | "Depth" = 0x0
- | | | | | }
- | | | | |
- | | | | +-o IOThunderboltPort@1 &lt;class IOThunderboltPort, id 0x1000002c1, registered, matched, active, busy 0 (25 ms), retain 5&gt;
- | | | | | {
- | | | | | "Micro Type" = 0x2
- | | | | | "Micro Version" = 0x20101
- | | | | | "Description" = "Thunderbolt Port"
- | | | | | "Micro Route String" = 0x0
- | | | | | "Dual-Link Port" = 0x2
- | | | | | "Port Number" = 0x1
- | | | | | "Max In Hop ID" = 0x3f
- | | | | | "Hop Table" = ()
- | | | | | "Thunderbolt Version" = 0x1
- | | | | | "Dual-Link Port RID" = 0x0
- | | | | | "Lane" = 0x1
- | | | | | "Revision ID" = 0x2
- | | | | | "Device ID" = 0x1513
- | | | | | "Max Out Hop ID" = 0x3f
- | | | | | "Micro Address" = 0x26
- | | | | | "Vendor ID" = 0x8086
- | | | | | "Adapter Type" = 0x1
- | | | | | }
- | | | | |
- | | | | +-o IOThunderboltPort@2 &lt;class IOThunderboltPort, id 0x1000002c2, registered, matched, active, busy 0 (25 ms), retain 5&gt;
- | | | | | {
- | | | | | "Micro Type" = 0x2
- | | | | | "Micro Version" = 0x20101
- | | | | | "Description" = "Thunderbolt Port"
- | | | | | "Micro Route String" = 0x0
- | | | | | "Dual-Link Port" = 0x1
- | | | | | "Port Number" = 0x2
- | | | | | "Max In Hop ID" = 0x3f
- | | | | | "Hop Table" = ()
- | | | | | "Thunderbolt Version" = 0x1
- | | | | | "Dual-Link Port RID" = 0x0
- | | | | | "Lane" = 0x2
- | | | | | "Revision ID" = 0x2
- | | | | | "Device ID" = 0x1513
- | | | | | "Max Out Hop ID" = 0x3f
- | | | | | "Micro Address" = 0x26
- | | | | | "Vendor ID" = 0x8086
- | | | | | "Adapter Type" = 0x1
- | | | | | }
- | | | | |
- | | | | +-o IOThunderboltPort@7 &lt;class IOThunderboltPort, id 0x1000002c3, registered, matched, active, busy 0 (29 ms), retain 6&gt;
- | | | | | | {
- | | | | | | "Description" = "PCIe Adapter"
- | | | | | | "PCI Device" = 0x4
- | | | | | | "Max In Hop ID" = 0x8
- | | | | | | "Hop Table" = ()
- | | | | | | "Thunderbolt Version" = 0x1
- | | | | | | "Port Number" = 0x7
- | | | | | | "PCI Function" = 0x0
- | | | | | | "Revision ID" = 0x2
- | | | | | | "Device ID" = 0x1513
- | | | | | | "Max Out Hop ID" = 0x8
- | | | | | | "PCI Path" = "IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/PEG1@1,1/IOPCI2PCIBridge/UPSB@0/IOPCI2PCIBridge/DSB2@4"
- | | | | | | "Vendor ID" = 0x8086
- | | | | | | "Adapter Type" = 0x100101
- | | | | | | }
- | | | | | |
- | | | | | +-o AppleThunderboltPCIDownAdapter &lt;class AppleThunderboltPCIDownAdapter, id 0x1000002cb, registered, matched, active, busy 0 (4 ms), retain 4&gt;
- | | | | | {
- | | | | | "IOClass" = "AppleThunderboltPCIDownAdapter"
- | | | | | "IOProviderClass" = "IOThunderboltPort"
- | | | | | "IOProbeScore" = 0x1000
- | | | | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleThunderboltPCIDownAdapter"
- | | | | | "Adapter Type" = 0x100101
- | | | | | }
- | | | | |
- | | | | +-o IOThunderboltPort@8 &lt;class IOThunderboltPort, id 0x1000002c4, registered, matched, active, busy 0 (36 ms), retain 6&gt;
- | | | | | | {
- | | | | | | "Description" = "PCIe Adapter"
- | | | | | | "PCI Device" = 0x5
- | | | | | | "Max In Hop ID" = 0x8
- | | | | | | "Hop Table" = ()
- | | | | | | "Thunderbolt Version" = 0x1
- | | | | | | "Port Number" = 0x8
- | | | | | | "PCI Function" = 0x0
- | | | | | | "Revision ID" = 0x2
- | | | | | | "Device ID" = 0x1513
- | | | | | | "Max Out Hop ID" = 0x8
- | | | | | | "PCI Path" = "IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/PEG1@1,1/IOPCI2PCIBridge/UPSB@0/IOPCI2PCIBridge/DSB3@5"
- | | | | | | "Vendor ID" = 0x8086
- | | | | | | "Adapter Type" = 0x100101
- | | | | | | }
- | | | | | |
- | | | | | +-o AppleThunderboltPCIDownAdapter &lt;class AppleThunderboltPCIDownAdapter, id 0x1000002cf, registered, matched, active, busy 0 (10 ms), retain 4&gt;
- | | | | | {
- | | | | | "IOClass" = "AppleThunderboltPCIDownAdapter"
- | | | | | "IOProviderClass" = "IOThunderboltPort"
- | | | | | "IOProbeScore" = 0x1000
- | | | | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleThunderboltPCIDownAdapter"
- | | | | | "Adapter Type" = 0x100101
- | | | | | }
- | | | | |
- | | | | +-o IOThunderboltPort@9 &lt;class IOThunderboltPort, id 0x1000002c5, registered, matched, active, busy 0 (37 ms), retain 6&gt;
- | | | | | | {
- | | | | | | "Description" = "PCIe Adapter"
- | | | | | | "PCI Device" = 0x6
- | | | | | | "Max In Hop ID" = 0x8
- | | | | | | "Hop Table" = ()
- | | | | | | "Thunderbolt Version" = 0x1
- | | | | | | "Port Number" = 0x9
- | | | | | | "PCI Function" = 0x0
- | | | | | | "Revision ID" = 0x2
- | | | | | | "Device ID" = 0x1513
- | | | | | | "Max Out Hop ID" = 0x8
- | | | | | | "PCI Path" = "IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/PEG1@1,1/IOPCI2PCIBridge/UPSB@0/IOPCI2PCIBridge/DSB4@6"
- | | | | | | "Vendor ID" = 0x8086
- | | | | | | "Adapter Type" = 0x100101
- | | | | | | }
- | | | | | |
- | | | | | +-o AppleThunderboltPCIDownAdapter &lt;class AppleThunderboltPCIDownAdapter, id 0x1000002d0, registered, matched, active, busy 0 (10 ms), retain 4&gt;
- | | | | | {
- | | | | | "IOClass" = "AppleThunderboltPCIDownAdapter"
- | | | | | "IOProviderClass" = "IOThunderboltPort"
- | | | | | "IOProbeScore" = 0x1000
- | | | | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleThunderboltPCIDownAdapter"
- | | | | | "Adapter Type" = 0x100101
- | | | | | }
- | | | | |
- | | | | +-o IOThunderboltPort@A &lt;class IOThunderboltPort, id 0x1000002c6, registered, matched, active, busy 0 (38 ms), retain 6&gt;
- | | | | | | {
- | | | | | | "Description" = "PCIe Adapter"
- | | | | | | "PCI Device" = 0x3
- | | | | | | "Max In Hop ID" = 0x8
- | | | | | | "Hop Table" = ()
- | | | | | | "Thunderbolt Version" = 0x1
- | | | | | | "Port Number" = 0xa
- | | | | | | "PCI Function" = 0x0
- | | | | | | "Revision ID" = 0x2
- | | | | | | "Device ID" = 0x1513
- | | | | | | "Max Out Hop ID" = 0x8
- | | | | | | "PCI Path" = "IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/PEG1@1,1/IOPCI2PCIBridge/UPSB@0/IOPCI2PCIBridge/DSB1@3"
- | | | | | | "Vendor ID" = 0x8086
- | | | | | | "Adapter Type" = 0x100101
- | | | | | | }
- | | | | | |
- | | | | | +-o AppleThunderboltPCIDownAdapter &lt;class AppleThunderboltPCIDownAdapter, id 0x1000002d1, registered, matched, active, busy 0 (10 ms), retain 4&gt;
- | | | | | {
- | | | | | "IOClass" = "AppleThunderboltPCIDownAdapter"
- | | | | | "IOProviderClass" = "IOThunderboltPort"
- | | | | | "IOProbeScore" = 0x1000
- | | | | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleThunderboltPCIDownAdapter"
- | | | | | "Adapter Type" = 0x100101
- | | | | | }
- | | | | |
- | | | | +-o IOThunderboltPort@C &lt;class IOThunderboltPort, id 0x1000002c7, registered, matched, active, busy 0 (39 ms), retain 6&gt;
- | | | | | | {
- | | | | | | "Revision ID" = 0x2
- | | | | | | "Thunderbolt Version" = 0x1
- | | | | | | "Device ID" = 0x1513
- | | | | | | "Vendor ID" = 0x8086
- | | | | | | "Adapter Type" = 0xe0101
- | | | | | | "Max In Hop ID" = 0x9
- | | | | | | "Max Out Hop ID" = 0x9
- | | | | | | "Hop Table" = ()
- | | | | | | "Description" = "DisplayPort or HDMI Adapter"
- | | | | | | "Port Number" = 0xc
- | | | | | | }
- | | | | | |
- | | | | | +-o AppleThunderboltDPInAdapter &lt;class AppleThunderboltDPInAdapter, id 0x1000002d2, registered, matched, active, busy 0 (10 ms), retain 4&gt;
- | | | | | {
- | | | | | "IOClass" = "AppleThunderboltDPInAdapter"
- | | | | | "IOProviderClass" = "IOThunderboltPort"
- | | | | | "IOProbeScore" = 0x1000
- | | | | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleThunderboltDPInAdapter"
- | | | | | "Adapter Type" = 0xe0101
- | | | | | }
- | | | | |
- | | | | +-o IOThunderboltPort@D &lt;class IOThunderboltPort, id 0x1000002c8, registered, matched, active, busy 0 (39 ms), retain 6&gt;
- | | | | | {
- | | | | | "Revision ID" = 0x2
- | | | | | "Thunderbolt Version" = 0x1
- | | | | | "Device ID" = 0x1513
- | | | | | "Vendor ID" = 0x8086
- | | | | | "Adapter Type" = 0xe0101
- | | | | | "Max In Hop ID" = 0x9
- | | | | | "Max Out Hop ID" = 0x9
- | | | | | "Hop Table" = ()
- | | | | | "Description" = "DisplayPort or HDMI Adapter"
- | | | | | "Port Number" = 0xd
- | | | | | }
- | | | | |
- | | | | +-o AppleThunderboltDPInAdapter &lt;class AppleThunderboltDPInAdapter, id 0x1000002d3, registered, matched, active, busy 0 (10 ms), retain 4&gt;
- | | | | {
- | | | | "IOClass" = "AppleThunderboltDPInAdapter"
- | | | | "IOProviderClass" = "IOThunderboltPort"
- | | | | "IOProbeScore" = 0x1000
- | | | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | | | "CFBundleIdentifier" = "com.apple.driver.AppleThunderboltDPInAdapter"
- | | | | "Adapter Type" = 0xe0101
- | | | | }
- | | | |
- | | | +-o DSB1@3 &lt;class IOPCIDevice, id 0x1000001a2, registered, matched, active, busy 0 (24 ms), retain 11&gt;
- | | | | | {
- | | | | | "IOInterruptSpecifiers" = (&lt;1000000007000000&gt;)
- | | | | | "IOPCITunnelLinkChange" = Yes
- | | | | | "#address-cells" = &lt;03000000&gt;
- | | | | | "class-code" = &lt;00040600&gt;
- | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"CurrentPowerState"=0x0,"MaxPowerState"=0x2,"DesiredPowerState"=0x2}
- | | | | | "acpi-device" = "IOACPIPlatformDevice is not serializable"
- | | | | | "IOInterruptControllers" = ("io-apic-0")
- | | | | | "vendor-id" = &lt;86800000&gt;
- | | | | | "IOChildIndex" = 0x2
- | | | | | "device-id" = &lt;13150000&gt;
- | | | | | "name" = "pci-bridge"
- | | | | | "IOPCIExpressASPMDefault" = 0x0
- | | | | | "acpi-pmcap-offset" = 0x80
- | | | | | "compatible" = &lt;706369383038362c3135313300706369636c6173732c30363034303000&gt;
- | | | | | "ranges" = &lt;0000008200000000000000000000008200000000000000000000000000000000000000c20000000000000000000000c2000000000000000000000000000000000000008100000000000000000000008100000000000000000000000000000000&gt;
- | | | | | "IOPCIExpressLinkCapabilities" = 0x333fc41
- | | | | | "IOPCIResourced" = Yes
- | | | | | "IODTPersist" = &lt;f6be88807ffffffff4db88807fffffff&gt;
- | | | | | "IOPCIConfigured" = Yes
- | | | | | "acpi-path" = "IOACPIPlane:/_SB/PCI0@0/PEG1@10001/UPSB@0/DSB1@30000"
- | | | | | "IOPCITunnelID" = 0x10000024b
- | | | | | "Thunderbolt Path" = "IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/PEG1@1,1/IOPCI2PCIBridge/UPSB@0/IOPCI2PCIBridge/DSB0@0/IOPCI2PCIBridge/NHI0@0/AppleThunderboltHAL/AppleThunderboltNHIType1/IOThunderboltController/IOThunderboltPort@6/IOThunderboltSwitchType1/IOThunderboltPort@A"
- | | | | | "revision-id" = &lt;00000000&gt;
- | | | | | "IOPCIExpressLinkStatus" = 0x1041
- | | | | | "pcidebug" = "6:3:0(8:8)"
- | | | | | "IOName" = "pci-bridge"
- | | | | | "#size-cells" = &lt;02000000&gt;
- | | | | | "reg" = &lt;0018060000000000000000000000000000000000&gt;
- | | | | | "AAPL,slot-name" = &lt;5468756e646572626f6c7420536c6f74203100&gt;
- | | | | | }
- | | | | |
- | | | | +-o IOPCI2PCIBridge &lt;class IOPCI2PCIBridge, id 0x100000238, registered, matched, active, busy 0 (8 ms), retain 5&gt;
- | | | | {
- | | | | "IOProbeScore" = 0xffffffffffffff9c
- | | | | "CFBundleIdentifier" = "com.apple.iokit.IOPCIFamily"
- | | | | "IOProviderClass" = "IOPCIDevice"
- | | | | "IOClass" = "IOPCI2PCIBridge"
- | | | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | | | "IOPCIClassMatch" = "0x06040000&amp;0xffff0000"
- | | | | "IOPowerManagement" = {"MaxPowerState"=0x2,"DesiredPowerState"=0x2,"CurrentPowerState"=0x0,"ChildProxyPowerState"=0x2,"DriverPowerState"=0x2}
- | | | | }
- | | | |
- | | | +-o DSB2@4 &lt;class IOPCIDevice, id 0x1000001a3, registered, matched, active, busy 0 (23 ms), retain 12&gt;
- | | | | | {
- | | | | | "IOInterruptSpecifiers" = (&lt;1100000007000000&gt;)
- | | | | | "IOPCITunnelLinkChange" = Yes
- | | | | | "#address-cells" = &lt;03000000&gt;
- | | | | | "class-code" = &lt;00040600&gt;
- | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"CurrentPowerState"=0x0,"MaxPowerState"=0x2,"DesiredPowerState"=0x2}
- | | | | | "acpi-device" = "IOACPIPlatformDevice is not serializable"
- | | | | | "IOInterruptControllers" = ("io-apic-0")
- | | | | | "vendor-id" = &lt;86800000&gt;
- | | | | | "IOChildIndex" = 0x3
- | | | | | "device-id" = &lt;13150000&gt;
- | | | | | "name" = "pci-bridge"
- | | | | | "IOPCIExpressASPMDefault" = 0x0
- | | | | | "acpi-pmcap-offset" = 0x80
- | | | | | "compatible" = &lt;706369383038362c3135313300706369636c6173732c30363034303000&gt;
- | | | | | "ranges" = &lt;0000008200000000000000000000008200000000000000000000000000000000000000c20000000000000000000000c2000000000000000000000000000000000000008100000000000000000000008100000000000000000000000000000000&gt;
- | | | | | "IOPCIExpressLinkCapabilities" = 0x433fc41
- | | | | | "IOPCIResourced" = Yes
- | | | | | "IODTPersist" = &lt;f6be88807ffffffff4db88807fffffff&gt;
- | | | | | "IOPCIConfigured" = Yes
- | | | | | "acpi-path" = "IOACPIPlane:/_SB/PCI0@0/PEG1@10001/UPSB@0/DSB2@40000"
- | | | | | "IOPCITunnelID" = 0x10000024b
- | | | | | "Thunderbolt Path" = "IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/PEG1@1,1/IOPCI2PCIBridge/UPSB@0/IOPCI2PCIBridge/DSB0@0/IOPCI2PCIBridge/NHI0@0/AppleThunderboltHAL/AppleThunderboltNHIType1/IOThunderboltController/IOThunderboltPort@6/IOThunderboltSwitchType1/IOThunderboltPort@7"
- | | | | | "revision-id" = &lt;00000000&gt;
- | | | | | "IOPCIExpressLinkStatus" = 0x1041
- | | | | | "pcidebug" = "6:4:0(103:103)"
- | | | | | "IOName" = "pci-bridge"
- | | | | | "#size-cells" = &lt;02000000&gt;
- | | | | | "reg" = &lt;0020060000000000000000000000000000000000&gt;
- | | | | | "AAPL,slot-name" = &lt;5468756e646572626f6c7420536c6f74203200&gt;
- | | | | | }
- | | | | |
- | | | | +-o IOPCI2PCIBridge &lt;class IOPCI2PCIBridge, id 0x10000023b, registered, matched, active, busy 0 (7 ms), retain 5&gt;
- | | | | {
- | | | | "IOProbeScore" = 0xffffffffffffff9c
- | | | | "CFBundleIdentifier" = "com.apple.iokit.IOPCIFamily"
- | | | | "IOProviderClass" = "IOPCIDevice"
- | | | | "IOClass" = "IOPCI2PCIBridge"
- | | | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | | | "IOPCIClassMatch" = "0x06040000&amp;0xffff0000"
- | | | | "IOPowerManagement" = {"MaxPowerState"=0x2,"DesiredPowerState"=0x2,"CurrentPowerState"=0x0,"ChildProxyPowerState"=0x2,"DriverPowerState"=0x2}
- | | | | }
- | | | |
- | | | +-o DSB3@5 &lt;class IOPCIDevice, id 0x1000001a5, registered, matched, active, busy 0 (24 ms), retain 12&gt;
- | | | | | {
- | | | | | "IOInterruptSpecifiers" = (&lt;1200000007000000&gt;)
- | | | | | "IOPCITunnelLinkChange" = Yes
- | | | | | "#address-cells" = &lt;03000000&gt;
- | | | | | "class-code" = &lt;00040600&gt;
- | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"CurrentPowerState"=0x0,"MaxPowerState"=0x2,"DesiredPowerState"=0x2}
- | | | | | "acpi-device" = "IOACPIPlatformDevice is not serializable"
- | | | | | "IOInterruptControllers" = ("io-apic-0")
- | | | | | "vendor-id" = &lt;86800000&gt;
- | | | | | "IOChildIndex" = 0x4
- | | | | | "device-id" = &lt;13150000&gt;
- | | | | | "name" = "pci-bridge"
- | | | | | "IOPCIExpressASPMDefault" = 0x0
- | | | | | "acpi-pmcap-offset" = 0x80
- | | | | | "compatible" = &lt;706369383038362c3135313300706369636c6173732c30363034303000&gt;
- | | | | | "ranges" = &lt;0000008200000000000000000000008200000000000000000000000000000000000000c20000000000000000000000c2000000000000000000000000000000000000008100000000000000000000008100000000000000000000000000000000&gt;
- | | | | | "IOPCIExpressLinkCapabilities" = 0x533fc41
- | | | | | "IOPCIResourced" = Yes
- | | | | | "IODTPersist" = &lt;f6be88807ffffffff4db88807fffffff&gt;
- | | | | | "IOPCIConfigured" = Yes
- | | | | | "acpi-path" = "IOACPIPlane:/_SB/PCI0@0/PEG1@10001/UPSB@0/DSB3@50000"
- | | | | | "IOPCITunnelID" = 0x10000024b
- | | | | | "Thunderbolt Path" = "IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/PEG1@1,1/IOPCI2PCIBridge/UPSB@0/IOPCI2PCIBridge/DSB0@0/IOPCI2PCIBridge/NHI0@0/AppleThunderboltHAL/AppleThunderboltNHIType1/IOThunderboltController/IOThunderboltPort@6/IOThunderboltSwitchType1/IOThunderboltPort@8"
- | | | | | "revision-id" = &lt;00000000&gt;
- | | | | | "IOPCIExpressLinkStatus" = 0x1041
- | | | | | "pcidebug" = "6:5:0(56:56)"
- | | | | | "IOName" = "pci-bridge"
- | | | | | "#size-cells" = &lt;02000000&gt;
- | | | | | "reg" = &lt;0028060000000000000000000000000000000000&gt;
- | | | | | "AAPL,slot-name" = &lt;5468756e646572626f6c7420536c6f74203300&gt;
- | | | | | }
- | | | | |
- | | | | +-o IOPCI2PCIBridge &lt;class IOPCI2PCIBridge, id 0x100000243, registered, matched, active, busy 0 (7 ms), retain 5&gt;
- | | | | {
- | | | | "IOProbeScore" = 0xffffffffffffff9c
- | | | | "CFBundleIdentifier" = "com.apple.iokit.IOPCIFamily"
- | | | | "IOProviderClass" = "IOPCIDevice"
- | | | | "IOClass" = "IOPCI2PCIBridge"
- | | | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | | | "IOPCIClassMatch" = "0x06040000&amp;0xffff0000"
- | | | | "IOPowerManagement" = {"MaxPowerState"=0x2,"DesiredPowerState"=0x2,"CurrentPowerState"=0x0,"ChildProxyPowerState"=0x2,"DriverPowerState"=0x2}
- | | | | }
- | | | |
- | | | +-o DSB4@6 &lt;class IOPCIDevice, id 0x1000001a7, registered, matched, active, busy 0 (24 ms), retain 11&gt;
- | | | | {
- | | | | "IOInterruptSpecifiers" = (&lt;1300000007000000&gt;)
- | | | | "IOPCITunnelLinkChange" = Yes
- | | | | "#address-cells" = &lt;03000000&gt;
- | | | | "class-code" = &lt;00040600&gt;
- | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"CurrentPowerState"=0x0,"MaxPowerState"=0x2,"DesiredPowerState"=0x2}
- | | | | "acpi-device" = "IOACPIPlatformDevice is not serializable"
- | | | | "IOInterruptControllers" = ("io-apic-0")
- | | | | "vendor-id" = &lt;86800000&gt;
- | | | | "IOChildIndex" = 0x5
- | | | | "device-id" = &lt;13150000&gt;
- | | | | "name" = "pci-bridge"
- | | | | "IOPCIExpressASPMDefault" = 0x0
- | | | | "acpi-pmcap-offset" = 0x80
- | | | | "compatible" = &lt;706369383038362c3135313300706369636c6173732c30363034303000&gt;
- | | | | "ranges" = &lt;0000008200000000000000000000008200000000000000000000000000000000000000c20000000000000000000000c2000000000000000000000000000000000000008100000000000000000000008100000000000000000000000000000000&gt;
- | | | | "IOPCIExpressLinkCapabilities" = 0x633fc41
- | | | | "IOPCIResourced" = Yes
- | | | | "IODTPersist" = &lt;f6be88807ffffffff4db88807fffffff&gt;
- | | | | "IOPCIConfigured" = Yes
- | | | | "acpi-path" = "IOACPIPlane:/_SB/PCI0@0/PEG1@10001/UPSB@0/DSB4@60000"
- | | | | "IOPCITunnelID" = 0x10000024b
- | | | | "Thunderbolt Path" = "IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/PEG1@1,1/IOPCI2PCIBridge/UPSB@0/IOPCI2PCIBridge/DSB0@0/IOPCI2PCIBridge/NHI0@0/AppleThunderboltHAL/AppleThunderboltNHIType1/IOThunderboltController/IOThunderboltPort@6/IOThunderboltSwitchType1/IOThunderboltPort@9"
- | | | | "revision-id" = &lt;00000000&gt;
- | | | | "IOPCIExpressLinkStatus" = 0x1041
- | | | | "pcidebug" = "6:6:0(150:150)"
- | | | | "IOName" = "pci-bridge"
- | | | | "#size-cells" = &lt;02000000&gt;
- | | | | "reg" = &lt;0030060000000000000000000000000000000000&gt;
- | | | | "AAPL,slot-name" = &lt;5468756e646572626f6c7420536c6f74203400&gt;
- | | | | }
- | | | |
- | | | +-o IOPCI2PCIBridge &lt;class IOPCI2PCIBridge, id 0x100000246, registered, matched, active, busy 0 (6 ms), retain 5&gt;
- | | | {
- | | | "IOProbeScore" = 0xffffffffffffff9c
- | | | "CFBundleIdentifier" = "com.apple.iokit.IOPCIFamily"
- | | | "IOProviderClass" = "IOPCIDevice"
- | | | "IOClass" = "IOPCI2PCIBridge"
- | | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | | "IOPCIClassMatch" = "0x06040000&amp;0xffff0000"
- | | | "IOPowerManagement" = {"MaxPowerState"=0x2,"DesiredPowerState"=0x2,"CurrentPowerState"=0x0,"ChildProxyPowerState"=0x2,"DriverPowerState"=0x2}
- | | | }
- | | |
- | | +-o IGPU@2 &lt;class IOPCIDevice, id 0x1000001a8, registered, matched, active, busy 0 (860 ms), retain 21&gt;
- | | | | {
- | | | | "acpi-device" = "IOACPIPlatformDevice is not serializable"
- | | | | "acpi-path" = "IOACPIPlane:/_SB/PCI0@0/IGPU@20000"
- | | | | "assigned-addresses" = &lt;1010008200000000000000b00000000000004000181000c20f0000000000001000000000000000102010008100000000003000000000000040000000&gt;
- | | | | "class-code" = &lt;00000300&gt;
- | | | | "subsystem-vendor-id" = &lt;6b100000&gt;
- | | | | "vendor-id" = &lt;86800000&gt;
- | | | | "revision-id" = &lt;09000000&gt;
- | | | | "AAPL00,T6" = &lt;00000000&gt;
- | | | | "IOName" = "display"
- | | | | "AAPL,tbl-info" = &lt;304400010203000102030001020300010203&gt;
- | | | | "AAPL00,T2" = &lt;01000000&gt;
- | | | | "AAPL00,DualLink" = &lt;01000000&gt;
- | | | | "AAPL,os-info" = &lt;30490101010108000001f0ff0100000010070000&gt;
- | | | | "AAPL00,LinkFormat" = &lt;00000000&gt;
- | | | | "pcidebug" = "0:2:0"
- | | | | "AAPL00,T7" = &lt;90010000&gt;
- | | | | "AAPL,gray-value" = &lt;c38c6400&gt;
- | | | | "IOInterruptControllers" = ("io-apic-0","IOPCIMessagedInterruptController")
- | | | | "AAPL00,Dither" = &lt;00000000&gt;
- | | | | "AAPL00,T3" = &lt;c8000000&gt;
- | | | | "built-in" = &lt;00&gt;
- | | | | "IOPCIResourced" = Yes
- | | | | "IODeviceMemory" = (({"address"=0xb0000000,"length"=0x400000}),({"address"=0xf10000000,"length"=0x10000000}),"IOSubMemoryDescriptor is not serializable")
- | | | | "IOPowerManagement" = {"MaxPowerState"=0x2,"ChildrenPowerState"=0x2,"CurrentPowerState"=0x2}
- | | | | "saved-config" = &lt;01000000000000000610000005a000000000000010070000004400d8001c0000000000008f062f07bf06df068f062f070000000000000000000000005400008119048f0619043704000000001c04220419043704091202000860088904691800b80b0a00d0070a003c03f080000000000000000000000000c0cb1707000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000&gt;
- | | | | "AAPL,aux-power-connected" = &lt;01000000&gt;
- | | | | "name" = "display"
- | | | | "subsystem-id" = &lt;dc000000&gt;
- | | | | "graphic-options" = &lt;04000000&gt;
- | | | | "model" = &lt;496e74656c204844204772617068696373203330303000&gt;
- | | | | "AAPL,gray-page" = &lt;01000000&gt;
- | | | | "AAPL00,PixelFormat" = &lt;00000000&gt;
- | | | | "AAPL00,T4" = &lt;2c010000&gt;
- | | | | "compatible" = &lt;706369313036622c646300706369383038362c31313600706369636c6173732c30333030303000&gt;
- | | | | "AAPL00,LinkType" = &lt;00000000&gt;
- | | | | "IOHibernateState" = &lt;00000000&gt;
- | | | | "attached-gpu-control-path" = "IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/IGPU@2/AppleIntelFramebuffer@0/AGPM"
- | | | | "AAPL00,T5" = &lt;01000000&gt;
- | | | | "reg" = &lt;0010000000000000000000000000000000000000101000020000000000000000000000000000400018100042000000000000000000000000000000102010000100000000000000000000000040000000&gt;
- | | | | "AAPL,backlight-control" = &lt;01000000&gt;
- | | | | "device-id" = &lt;16010000&gt;
- | | | | "AAPL00,T1" = &lt;00000000&gt;
- | | | | "IOInterruptSpecifiers" = (&lt;1000000007000000&gt;,&lt;0000000000000100&gt;)
- | | | | "AAPL,iokit-ndrv" = &lt;a0d7dd807fffffff&gt;
- | | | | "IOPCIMSIMode" = Yes
- | | | | }
- | | | |
- | | | +-o AppleIntelSNBGraphicsFB &lt;class AppleIntelSNBGraphicsFB, id 0x1000003a8, registered, matched, active, busy 0 (114 ms), retain 6&gt;
- | | | | | {
- | | | | | "IOClass" = "AppleIntelSNBGraphicsFB"
- | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleIntelSNBGraphicsFB"
- | | | | | "FeatureControl" = {"Watermarks"=0x1,"RenderStandby"=0x1,"GPUInterruptHandling"=0x1,"DPM"=0x1,"MaximumSelfRefreshLevel"=0x3,"Gamma"=0x1,"PowerStates"=0x1,"UseInterruptFilter"=0x1,"IgnorePanelTimings"=0x0,"SpreadON"=0x1,"FBC"=0x0,"SetRC6Voltage"=0x0}
- | | | | | "IOProviderClass" = "IOPCIDevice"
- | | | | | "IOPCIClassMatch" = "0x03000000&amp;0xff000000"
- | | | | | "IOSourceVersion" = "7.32.12"
- | | | | | "FBCControl" = {"Compression"=0x0}
- | | | | | "IOProbeScore" = 0x13880
- | | | | | "NumFrameBuffer" = &lt;01&gt;
- | | | | | "VRAM,totalsize" = &lt;00000020&gt;
- | | | | | "IOMatchCategory" = "IOFramebuffer"
- | | | | | "dpm" = &lt;01000000&gt;
- | | | | | "fRC6HandlingFuncs" = &lt;b8f15f1380ffffff&gt;
- | | | | | "IOPCIPrimaryMatch" = "0x01068086 0x11068086 0x16018086 01168086 01268086"
- | | | | | }
- | | | | |
- | | | | +-o AppleMEClientController &lt;class AppleMEClientController, id 0x1000003c5, registered, matched, active, busy 0 (1 ms), retain 5&gt;
- | | | | {
- | | | | "IOProbeScore" = 0x3e8
- | | | | "CFBundleIdentifier" = "com.apple.driver.AppleIntelSNBGraphicsFB"
- | | | | "IOProviderClass" = "AppleIntelSNBGraphicsFB"
- | | | | "IOClass" = "AppleMEClientController"
- | | | | "IOMatchCategory" = "AppleMEClientController"
- | | | | "RetryCount" = 0x3
- | | | | "IOUserClientClass" = "AppleSNBFBUserClient"
- | | | | "IOPowerManagement" = {"MaxPowerState"=0x1,"CurrentPowerState"=0x1}
- | | | | }
- | | | |
- | | | +-o AppleIntelFramebuffer@0 &lt;class AppleIntelFramebuffer, id 0x1000003ac, registered, matched, active, busy 0 (40 ms), retain 15&gt;
- | | | | | {
- | | | | | "IOI2CTransactionTypes" = 0x1f
- | | | | | "IODVDBundleName" = "AppleIntelSNBVA"
- | | | | | "IOFBScalerInfo" = &lt;000000000000000000000000000000000a000000ff0f0000ff0f00000000000000000000000000000000000000000000&gt;
- | | | | | "IOPMStrictTreeOrder" = Yes
- | | | | | "IOFBDependentIndex" = 0x0
- | | | | | "IOFBUIScale" = &lt;00000000&gt;
- | | | | | "IOFBGammaCount" = 0x400
- | | | | | "IOFBCLUTDefer" = Yes
- | | | | | "IOFramebufferOpenGLIndex" = 0x3
- | | | | | "AAPL,DisplayPipe" = &lt;ffff0000&gt;
- | | | | | "IOFBI2CInterfaceInfo" = ({"IOI2CInterfaceID"=0x0,"IOI2CTransactionTypes"=0x1f})
- | | | | | "connector-type" = &lt;02000000&gt;
- | | | | | "IODisplayParameters" = "IOFramebufferParameterHandler is not serializable"
- | | | | | "AAPL,boot-display" = Yes
- | | | | | "AAPL,display-alias" = &lt;00000000&gt;
- | | | | | "IOAccelTypes" = "IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/IGPU@2/Gen6Accelerator"
- | | | | | "IOPowerManagement" = {"MaxPowerState"=0x2,"CurrentPowerState"=0x2,"ChildProxyPowerState"=0x2,"DriverPowerState"=0x1}
- | | | | | "IOFBGammaWidth" = 0xa
- | | | | | "IOFBDependentID" = 0xffffff80135ff000
- | | | | | "IOAccelIndex" = 0x0
- | | | | | "IOFBConfig" = {"IOFB0Hz"=Yes,"IOFBModes"=({"ID"=0xffffffffffffff00,"DM"=&lt;010000000100000000000000000000000700000000000000000000000000000000000000&gt;,"AID"=0x226})}
- | | | | | "AAPL,alias-policy" = &lt;00000000&gt;
- | | | | | "IOFBWaitCursorFrames" = 0x17
- | | | | | "IOFBWaitCursorPeriod" = 0x1fca055
- | | | | | "IOFBProbeOptions" = 0x401
- | | | | | "IOFBNeedsRefresh" = Yes
- | | | | | "IOFBTransform" = 0x0
- | | | | | "IOFBCursorInfo" = ()
- | | | | | "IOFBI2CInterfaceIDs" = (0x1280400000000000)
- | | | | | "IOAccelRevision" = 0x2
- | | | | | "IOCFPlugInTypes" = {"ACCF0000-0000-0000-0000-000a2789904e"="AppleIntelHD3000GraphicsGA.plugin"}
- | | | | | "IOVARendererID" = 0x1081000
- | | | | | "AAPL,mux-switch-state" = &lt;00000000&gt;
- | | | | | "IOFBTimingRange" = &lt;0000000000000000000000000000000000000000000000000000000000000000002d31010000000080df171000000000000000000f0000000f0000000800000000000000ffffffff00000000ffffffffff1f0000ff1f0000000000000000000001010101010101010101010101010000000000000020000000000000ff1f000000000000ff1f000000000000ff1f000000000000000c000000000000ff1f000000000000ff1f000000000000ff1f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000&gt;
- | | | | | "IOGeneralInterest" = "IOCommand is not serializable"
- | | | | | "port-number" = 0x0
- | | | | | }
- | | | | |
- | | | | +-o AGPM &lt;class AGPM, id 0x1000003c1, registered, matched, active, busy 0 (12 ms), retain 8&gt;
- | | | | | | {
- | | | | | | "max-value" = 0xf
- | | | | | | "min-value" = 0x0
- | | | | | | "IOPowerManagement" = {"CurrentPowerState"=0x0}
- | | | | | | "Heuristic-ID" = &lt;02000000&gt;
- | | | | | | }
- | | | | | |
- | | | | | +-o gpu-control &lt;class IOService, id 0x1000003c2, registered, matched, active, busy 0 (2 ms), retain 6&gt;
- | | | | | | {
- | | | | | | "zone" = 0x0
- | | | | | | "compatible" = "gpu-control"
- | | | | | | "version" = 0x2
- | | | | | | "dpm" = 0x1
- | | | | | | "reg" = 0x10
- | | | | | | "max-value" = 0xf
- | | | | | | "type" = "gpu-control"
- | | | | | | "device_type" = "gpu-control"
- | | | | | | "location" = "primary-gpu-control"
- | | | | | | "control-id" = 0x10
- | | | | | | "name" = &lt;6770752d636f6e74726f6c00&gt;
- | | | | | | "min-value" = 0x0
- | | | | | | }
- | | | | | |
- | | | | | +-o IOHWControl &lt;class IOHWControl, id 0x100000458, registered, matched, active, busy 0 (0 ms), retain 7&gt;
- | | | | | {
- | | | | | "IOClass" = "IOHWControl"
- | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleHWSensor"
- | | | | | "IOProviderClass" = "IOService"
- | | | | | "IOPropertyMatch" = {"device_type"="gpu-control"}
- | | | | | "zone" = 0x0
- | | | | | "version" = 0x2
- | | | | | "IOPowerManagement" = {"MaxPowerState"=0x1,"CurrentPowerState"=0x0}
- | | | | | "IOProbeScore" = 0x0
- | | | | | "max-value" = 0xf
- | | | | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | | | | "type" = "gpu-control"
- | | | | | "current-value" = 0xb
- | | | | | "location" = "primary-gpu-control"
- | | | | | "target-value" = 0xf
- | | | | | "control-id" = 0x10
- | | | | | "min-value" = 0x0
- | | | | | }
- | | | | |
- | | | | +-o AppleMCCSControlModule &lt;class AppleMCCSControlModule, id 0x1000003c3, registered, matched, active, busy 0 (16 ms), retain 5&gt;
- | | | | | | {
- | | | | | | "IOProbeScore" = 0x0
- | | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleMCCSControl"
- | | | | | | "IOMatchCategory" = "AppleMCCSControlFamily"
- | | | | | | "IOClass" = "AppleMCCSControlModule"
- | | | | | | "IOProviderClass" = "IOFramebuffer"
- | | | | | | "IOKitDebug" = 0x0
- | | | | | | "IOUserClientClass" = "AppleMCCSUserClient"
- | | | | | | "IOResourceMatch" = "IOKit"
- | | | | | | }
- | | | | | |
- | | | | | +-o AppleMCCSParameterHandler &lt;class AppleMCCSParameterHandler, id 0x1000003cf, registered, matched, active, busy 0 (7 ms), retain 4&gt;
- | | | | | {
- | | | | | "IOProbeScore" = 0x0
- | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleMCCSControl"
- | | | | | "IOProviderClass" = "AppleMCCSControlFamily"
- | | | | | "IOClass" = "AppleMCCSParameterHandler"
- | | | | | "IOMatchCategory" = "IODisplayParameters"
- | | | | | "IOKitDebug" = 0x0
- | | | | | "IOResourceMatch" = "IOKit"
- | | | | | }
- | | | | |
- | | | | +-o AppleUpstreamUserClientDriver &lt;class AppleUpstreamUserClientDriver, id 0x1000003c4, registered, matched, active, busy 0 (5 ms), retain 4&gt;
- | | | | | {
- | | | | | "IOProbeScore" = 0x0
- | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleUpstreamUserClient"
- | | | | | "IOProviderClass" = "IOFramebuffer"
- | | | | | "IOClass" = "AppleUpstreamUserClientDriver"
- | | | | | "IOMatchCategory" = "AppleUpstreamUserClientDriver"
- | | | | | "IOUserClientClass" = "AppleUpstreamUserClient"
- | | | | | "IOResourceMatch" = "IOKit"
- | | | | | }
- | | | | |
- | | | | +-o AppleGraphicsControlBacklightNub &lt;class AppleGraphicsControlBacklightNub, id 0x100000436, !registered, !matched, active, busy 0, retain 7&gt;
- | | | | | {
- | | | | | "IOMatchCategory" = "IODisplayParameters"
- | | | | | "IONameMatched" = "backlight"
- | | | | | "IONameMatch" = "backlight"
- | | | | | "IOProviderClass" = "IOACPIPlatformDevice"
- | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleMuxControl"
- | | | | | "IODisplayParameters" = {"brightness"={"max"=0xff,"min"=0x28},"commit"={"reg"=0x0}}
- | | | | | }
- | | | | |
- | | | | +-o IOFramebufferI2CInterface &lt;class IOFramebufferI2CInterface, id 0x100000456, registered, matched, active, busy 0 (0 ms), retain 5&gt;
- | | | | | {
- | | | | | "IOI2CTransactionTypes" = 0x1f
- | | | | | "IOI2CSupportedCommFlags" = 0x2
- | | | | | "IOI2CBusType" = 0x1
- | | | | | "IOI2CInterfaceID" = 0x1280400000000000
- | | | | | }
- | | | | |
- | | | | +-o IOFramebufferUserClient &lt;class IOFramebufferUserClient, id 0x100000459, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 180, WindowServer"
- | | | | | }
- | | | | |
- | | | | +-o IOFramebufferSharedUserClient &lt;class IOFramebufferSharedUserClient, id 0x100000471, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | {
- | | | | "IOUserClientSharedInstance" = Yes
- | | | | "IOUserClientCreator" = "pid 201, SecurityAgent"
- | | | | }
- | | | |
- | | | +-o Gen6Accelerator &lt;class Gen6Accelerator, id 0x1000003aa, registered, matched, active, busy 0 (0 ms), retain 18&gt;
- | | | | {
- | | | | "IOClass" = "Gen6Accelerator"
- | | | | "CFBundleIdentifier" = "com.apple.driver.AppleIntelHD3000Graphics"
- | | | | "IOProviderClass" = "IOPCIDevice"
- | | | | "IOCFPlugInTypes" = {"ACCF0000-0000-0000-0000-000a2789904e"="AppleIntelHD3000GraphicsGA.plugin"}
- | | | | "IOPCIClassMatch" = "0x03000000&amp;0xff000000"
- | | | | "IOGVACodec" = "Gen6"
- | | | | "IOSourceVersion" = "0.0.0.0.0"
- | | | | "IOProbeScore" = 0x64
- | | | | "VRAMMethod" = 0x0
- | | | | "PerformanceStatistics" = {"removeFromGARTWaitTime"=0x0,"idctDataBufferCount"=0x0,"linearPages"=0xffffffffffd74b7a,"command2DBytesPerSample"=0x0,"dvdTextureCount"=0x0,"commandBytesPerSample"=0x0,"surfacePageOutBytesPerSample"=0x0,"dataBufferCount"=0x0,"freeContextBufferCLWaitTime"=0x0,"textureCount"=0x48,"surfaceReadLockIdleWaitTime"=0x0,"freeDataBufferWaitTime"=0x0,"freeCommandBuffer2DWaitTime"=0x0,"contextDVDSwitchCount"=0x0,"finishAll2DWaitTime"=0x0,"textureWaitTime"=0x0,"GKD_IGGL_TIMESTAMP_HAS_WAIT_eMainRing"=0x0,"GKD_IGG$
- | | | | "IOMatchCategory" = "IOAccelerator"
- | | | | "IOAccelRevision" = 0x2
- | | | | "AccelCaps" = 0xb
- | | | | "IOPCIPrimaryMatch" = "0x01068086 0x06018086 0x01168086 0x01028086 0x01268086"
- | | | | "IODVDBundleName" = "AppleIntelHD3000GraphicsVADriver"
- | | | | "SurfaceList" = ()
- | | | | "VRAMOverride" = 0x0
- | | | | "IOGLBundleName" = "AppleIntelHD3000GraphicsGLDriver"
- | | | | "IOVARendererID" = 0x1080000
- | | | | }
- | | | |
- | | | +-o Gen5752DContext &lt;class Gen5752DContext, id 0x10000045d, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | {
- | | | | "IOUserClientCreator" = "pid 180, WindowServer"
- | | | | }
- | | | |
- | | | +-o Gen575Device &lt;class Gen575Device, id 0x100000465, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | {
- | | | | "IOUserClientCreator" = "pid 180, WindowServer"
- | | | | }
- | | | |
- | | | +-o Gen6GLContext &lt;class Gen6GLContext, id 0x100000467, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | {
- | | | | "IOUserClientCreator" = "pid 180, WindowServer"
- | | | | }
- | | | |
- | | | +-o Gen575Device &lt;class Gen575Device, id 0x100000698, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | {
- | | | | "IOUserClientCreator" = "pid 302, Adium"
- | | | | }
- | | | |
- | | | +-o Gen6GLContext &lt;class Gen6GLContext, id 0x10000069a, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | {
- | | | | "IOUserClientCreator" = "pid 302, Adium"
- | | | | }
- | | | |
- | | | +-o Gen6GLContext &lt;class Gen6GLContext, id 0x1000006a0, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | {
- | | | | "IOUserClientCreator" = "pid 302, Adium"
- | | | | }
- | | | |
- | | | +-o Gen575Device &lt;class Gen575Device, id 0x100000729, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | {
- | | | | "IOUserClientCreator" = "pid 326, iTerm"
- | | | | }
- | | | |
- | | | +-o Gen6GLContext &lt;class Gen6GLContext, id 0x10000072b, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | {
- | | | | "IOUserClientCreator" = "pid 326, iTerm"
- | | | | }
- | | | |
- | | | +-o Gen6GLContext &lt;class Gen6GLContext, id 0x100000731, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | {
- | | | | "IOUserClientCreator" = "pid 326, iTerm"
- | | | | }
- | | | |
- | | | +-o Gen6GLContext &lt;class Gen6GLContext, id 0x100000c06, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | {
- | | | | "IOUserClientCreator" = "pid 180, WindowServer"
- | | | | }
- | | | |
- | | | +-o Gen6GLContext &lt;class Gen6GLContext, id 0x100000c0c, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | {
- | | | | "IOUserClientCreator" = "pid 180, WindowServer"
- | | | | }
- | | | |
- | | | +-o Gen6GLContext &lt;class Gen6GLContext, id 0x100000c0e, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | {
- | | | | "IOUserClientCreator" = "pid 180, WindowServer"
- | | | | }
- | | | |
- | | | +-o Gen575Device &lt;class Gen575Device, id 0x100000f4c, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | {
- | | | | "IOUserClientCreator" = "pid 46, loginwindow"
- | | | | }
- | | | |
- | | | +-o Gen6GLContext &lt;class Gen6GLContext, id 0x100000f4e, !registered, !matched, active, busy 0, retain 5&gt;
- | | | {
- | | | "IOUserClientCreator" = "pid 46, loginwindow"
- | | | }
- | | |
- | | +-o pci8086,1c3a@16 &lt;class IOPCIDevice, id 0x1000001dc, registered, matched, active, busy 0 (351 ms), retain 10&gt;
- | | | | {
- | | | | "acpi-pmcap-offset" = 0x50
- | | | | "compatible" = &lt;706369383038362c3732373000706369383038362c3163336100706369636c6173732c30373830303000&gt;
- | | | | "subsystem-vendor-id" = &lt;86800000&gt;
- | | | | "IOName" = "pci8086,1c3a"
- | | | | "reg" = &lt;00b000000000000000000000000000000000000010b0000200000000000000000000000010000000&gt;
- | | | | "device-id" = &lt;3a1c0000&gt;
- | | | | "assigned-addresses" = &lt;10b0008200000000007190b00000000010000000&gt;
- | | | | "IOPowerManagement" = {"MaxPowerState"=0x2,"ChildrenPowerState"=0x2,"CurrentPowerState"=0x2}
- | | | | "IOPCIResourced" = Yes
- | | | | "IODeviceMemory" = (({"address"=0xb0907100,"length"=0x10}))
- | | | | "revision-id" = &lt;04000000&gt;
- | | | | "IOInterruptControllers" = ("io-apic-0","IOPCIMessagedInterruptController")
- | | | | "vendor-id" = &lt;86800000&gt;
- | | | | "pcidebug" = "0:22:0"
- | | | | "class-code" = &lt;00800700&gt;
- | | | | "IOInterruptSpecifiers" = (&lt;1000000007000000&gt;,&lt;0100000000000100&gt;)
- | | | | "IOPCIMSIMode" = Yes
- | | | | "subsystem-id" = &lt;70720000&gt;
- | | | | "name" = "pci8086,1c3a"
- | | | | }
- | | | |
- | | | +-o AppleIntelMEIDriver &lt;class AppleIntelMEIDriver, id 0x10000035d, registered, matched, active, busy 0 (311 ms), retain 6&gt;
- | | | {
- | | | "IOProbeScore" = 0x13880
- | | | "CFBundleIdentifier" = "com.apple.driver.AppleIntelSNBGraphicsFB"
- | | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | | "IOClass" = "AppleIntelMEIDriver"
- | | | "IOProviderClass" = "IOPCIDevice"
- | | | "IOPCIPrimaryMatch" = "0x1C3A8086"
- | | | "IOSourceVersion" = "0.0.0.0.0"
- | | | "IOPowerManagement" = {"MaxPowerState"=0x1,"ChildrenPowerState"=0x1,"CurrentPowerState"=0x1}
- | | | }
- | | |
- | | +-o UHC5@1A &lt;class IOPCIDevice, id 0x1000001c7, registered, matched, active, busy 0 (26 ms), retain 9&gt;
- | | | {
- | | | "name" = "pci8086,1c2c"
- | | | "subsystem-vendor-id" = &lt;86800000&gt;
- | | | "compatible" = &lt;706369383038362c3732373000706369383038362c3163326300706369636c6173732c30633033303000&gt;
- | | | "IOName" = "pci8086,1c2c"
- | | | "reg" = &lt;00d000000000000000000000000000000000000020d0000100000000000000000000000020000000&gt;
- | | | "device-id" = &lt;2c1c0000&gt;
- | | | "assigned-addresses" = &lt;20d0008100000000203100000000000020000000&gt;
- | | | "IOPowerManagement" = {"MaxPowerState"=0x2,"CurrentPowerState"=0x0}
- | | | "built-in" = &lt;00&gt;
- | | | "IOPCIResourced" = Yes
- | | | "revision-id" = &lt;05000000&gt;
- | | | "IODeviceMemory" = ("IOSubMemoryDescriptor is not serializable")
- | | | "vendor-id" = &lt;86800000&gt;
- | | | "pcidebug" = "0:26:0"
- | | | "class-code" = &lt;00030c00&gt;
- | | | "acpi-path" = "IOACPIPlane:/_SB/PCI0@0/UHC5@1a0000"
- | | | "subsystem-id" = &lt;70720000&gt;
- | | | "acpi-device" = "IOACPIPlatformDevice is not serializable"
- | | | }
- | | |
- | | +-o EHC2@1A,7 &lt;class IOPCIDevice, id 0x1000001d1, registered, matched, active, busy 0 (1797 ms), retain 13&gt;
- | | | | {
- | | | | "assigned-addresses" = &lt;10d7008200000000006c90b00000000000040000&gt;
- | | | | "IOInterruptSpecifiers" = (&lt;1700000007000000&gt;)
- | | | | "AAPL,current-extra-in-sleep" = 0x640
- | | | | "class-code" = &lt;20030c00&gt;
- | | | | "IODeviceMemory" = (({"address"=0xb0906c00,"length"=0x400}))
- | | | | "IOPowerManagement" = {"MaxPowerState"=0x2,"ChildrenPowerState"=0x2,"CurrentPowerState"=0x2}
- | | | | "subsystem-vendor-id" = &lt;86800000&gt;
- | | | | "built-in" = &lt;00&gt;
- | | | | "acpi-device" = "IOACPIPlatformDevice is not serializable"
- | | | | "AAPL,current-extra" = 0x898
- | | | | "AAPL,device-internal" = 0x2
- | | | | "IOInterruptControllers" = ("io-apic-0")
- | | | | "name" = "pci8086,1c2d"
- | | | | "vendor-id" = &lt;86800000&gt;
- | | | | "device-id" = &lt;2d1c0000&gt;
- | | | | "acpi-pmcap-offset" = 0x50
- | | | | "IOPCIResourced" = Yes
- | | | | "AAPL,current-available" = 0x834
- | | | | "compatible" = &lt;706369383038362c3732373000706369383038362c3163326400706369636c6173732c30633033323000&gt;
- | | | | "AAPL,max-port-current-in-sleep" = 0x834
- | | | | "USBBusNumber" = 0xfa
- | | | | "locationID" = 0xfffffffffa000000
- | | | | "acpi-path" = "IOACPIPlane:/_SB/PCI0@0/EHC2@1a0007"
- | | | | "subsystem-id" = &lt;70720000&gt;
- | | | | "revision-id" = &lt;05000000&gt;
- | | | | "pcidebug" = "0:26:7"
- | | | | "IOName" = "pci8086,1c2d"
- | | | | "reg" = &lt;00d700000000000000000000000000000000000010d7000200000000000000000000000000040000&gt;
- | | | | }
- | | | |
- | | | +-o AppleUSBEHCI &lt;class AppleUSBEHCI, id 0x100000201, registered, matched, active, busy 0 (1781 ms), retain 13&gt;
- | | | | {
- | | | | "IOClass" = "AppleUSBEHCI"
- | | | | "CFBundleIdentifier" = "com.apple.driver.AppleUSBEHCI"
- | | | | "IOProviderClass" = "IOPCIDevice"
- | | | | "Card Type" = "Built-in"
- | | | | "IOPCIClassMatch" = "0x0c032000"
- | | | | "IOUserClientClass" = "IOUSBControllerUserClient"
- | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x4,"DevicePowerState"=0x3,"CurrentPowerState"=0x4,"MaxPowerState"=0x4,"DriverPowerState"=0x3}
- | | | | "IOProbeScore" = 0x0
- | | | | "IOPCITunnelCompatible" = Yes
- | | | | "this" = 0xffffff8012190000
- | | | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | | | "Errata" = 0x400000
- | | | | "UpdatedSleepPropertiesExists" = Yes
- | | | | "Statistics" = {"Errors (New)"=0x0,"Access Count"=0x19,"Bytes (New)"=0xf26,"Resets (New)"=0x0,"Errors (Total)"=0x1a,"ControlBulkTxOut"=0x0,"Bytes"=0xfcdec,"ms (Current)"=0x15ea3f7,"Timeouts"=0x0,"Bytes (New)/ms"=0x9,"Resets"=0x2,"ms (since last read)"=0x186,"Timeouts (New)"=0x0,"Debug Flags"=0x0}
- | | | | "64bit" = Yes
- | | | | }
- | | | |
- | | | +-o EHCI Root Hub Simulation@1A,7 &lt;class IOUSBRootHubDevice, id 0x100000218, registered, matched, active, busy 0 (742 ms), retain 12&gt;
- | | | | | {
- | | | | | "sessionID" = 0xd131517
- | | | | | "Low Power Displayed" = No
- | | | | | "AAPL,current-extra-in-sleep" = 0x640
- | | | | | "iManufacturer" = 0x2
- | | | | | "bNumConfigurations" = 0x1
- | | | | | "idProduct" = 0x8006
- | | | | | "bcdDevice" = 0x200
- | | | | | "Bus Power Available" = 0xfa
- | | | | | "bMaxPacketSize0" = 0x40
- | | | | | "USB Product Name" = "EHCI Root Hub Simulation"
- | | | | | "iProduct" = 0x1
- | | | | | "iSerialNumber" = 0x0
- | | | | | "USB Address" = 0x1
- | | | | | "bDeviceClass" = 0x9
- | | | | | "locationID" = 0xfffffffffa000000
- | | | | | "bDeviceSubClass" = 0x0
- | | | | | "AAPL,current-extra" = 0x898
- | | | | | "AAPL,device-internal" = 0x2
- | | | | | "IOUserClientClass" = "IOUSBDeviceUserClientV2"
- | | | | | "IOCFPlugInTypes" = {"9dc7b780-9ec0-11d4-a54f-000a27052861"="IOUSBFamily.kext/Contents/PlugIns/IOUSBLib.bundle"}
- | | | | | "AAPL,current-available" = 0x834
- | | | | | "bDeviceProtocol" = 0x1
- | | | | | "AAPL,max-port-current-in-sleep" = 0x834
- | | | | | "Ports" = 0x6
- | | | | | "Unconnected External Ports" = 0x4
- | | | | | "USB Vendor Name" = "Apple Inc."
- | | | | | "Device Speed" = 0x2
- | | | | | "idVendor" = 0x5ac
- | | | | | "Requested Power" = 0x0
- | | | | | "AAPL,standard-port-current-in-sleep" = 0x1f4
- | | | | | }
- | | | | |
- | | | | +-o AppleUSBHub &lt;class AppleUSBHub, id 0x100000231, registered, matched, active, busy 0 (11 ms), retain 9&gt;
- | | | | | {
- | | | | | "IOClass" = "AppleUSBHub"
- | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleUSBHub"
- | | | | | "IOProviderClass" = "IOUSBDevice"
- | | | | | "High Speed" = 0x1
- | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x4,"DevicePowerState"=0x4,"CurrentPowerState"=0x4,"MaxPowerState"=0x4,"DriverPowerState"=0x3}
- | | | | | "IOUserClientClass" = "AppleUSBHSHubUserClient"
- | | | | | "IOProbeScore" = 0xc350
- | | | | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | | | | "Errata" = 0x0
- | | | | | "Interrupt Pending" = Yes
- | | | | | "bDeviceSubClass" = 0x0
- | | | | | "bDeviceClass" = 0x9
- | | | | | }
- | | | | |
- | | | | +-o IOUSBInterface@0 &lt;class IOUSBInterface, id 0x100000233, !registered, !matched, active, busy 0, retain 7&gt;
- | | | | {
- | | | | "bcdDevice" = 0x200
- | | | | "idProduct" = 0x8006
- | | | | "bConfigurationValue" = 0x1
- | | | | "bInterfaceSubClass" = 0x0
- | | | | "locationID" = 0xfffffffffa000000
- | | | | "idVendor" = 0x5ac
- | | | | "iInterface" = 0x0
- | | | | "bAlternateSetting" = 0x0
- | | | | "bInterfaceProtocol" = 0x1
- | | | | "bInterfaceNumber" = 0x0
- | | | | "bInterfaceClass" = 0x9
- | | | | "bNumEndpoints" = 0x1
- | | | | }
- | | | |
- | | | +-o HubDevice@fa100000 &lt;class IOUSBHubDevice, id 0x100000281, registered, matched, active, busy 0 (371 ms), retain 12&gt;
- | | | | | {
- | | | | | "sessionID" = 0x1e734e6f
- | | | | | "AAPL,standard-port-current-in-sleep" = 0x1f4
- | | | | | "iManufacturer" = 0x0
- | | | | | "idProduct" = 0x2513
- | | | | | "bDeviceClass" = 0x9
- | | | | | "bcdDevice" = 0xbb3
- | | | | | "Bus Power Available" = 0xfa
- | | | | | "bMaxPacketSize0" = 0x40
- | | | | | "iProduct" = 0x0
- | | | | | "iSerialNumber" = 0x0
- | | | | | "USB Address" = 0x2
- | | | | | "bNumConfigurations" = 0x1
- | | | | | "IOUserClientClass" = "IOUSBDeviceUserClientV2"
- | | | | | "locationID" = 0xfffffffffa100000
- | | | | | "bDeviceSubClass" = 0x0
- | | | | | "Ports" = 0x3
- | | | | | "Unconnected External Ports" = 0x1
- | | | | | "non-removable" = "yes"
- | | | | | "IOCFPlugInTypes" = {"9dc7b780-9ec0-11d4-a54f-000a27052861"="IOUSBFamily.kext/Contents/PlugIns/IOUSBLib.bundle"}
- | | | | | "PortNum" = 0x1
- | | | | | "bDeviceProtocol" = 0x2
- | | | | | "Device Speed" = 0x2
- | | | | | "idVendor" = 0x424
- | | | | | "Requested Power" = 0x1
- | | | | | "Low Power Displayed" = No
- | | | | | }
- | | | | |
- | | | | +-o AppleUSBHub &lt;class AppleUSBHub, id 0x100000283, registered, matched, active, busy 0 (0 ms), retain 10&gt;
- | | | | | {
- | | | | | "IOClass" = "AppleUSBHub"
- | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleUSBHub"
- | | | | | "IOProviderClass" = "IOUSBDevice"
- | | | | | "High Speed" = 0x3
- | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x4,"DevicePowerState"=0x4,"CurrentPowerState"=0x4,"MaxPowerState"=0x4,"DriverPowerState"=0x3}
- | | | | | "IOUserClientClass" = "AppleUSBHSHubUserClient"
- | | | | | "IOProbeScore" = 0xc350
- | | | | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | | | | "Errata" = 0x0
- | | | | | "Interrupt Pending" = Yes
- | | | | | "bDeviceSubClass" = 0x0
- | | | | | "bDeviceClass" = 0x9
- | | | | | }
- | | | | |
- | | | | +-o IOUSBInterface@0 &lt;class IOUSBInterface, id 0x100000285, !registered, !matched, active, busy 0, retain 7&gt;
- | | | | {
- | | | | "bcdDevice" = 0xbb3
- | | | | "idProduct" = 0x2513
- | | | | "bConfigurationValue" = 0x1
- | | | | "bInterfaceSubClass" = 0x0
- | | | | "locationID" = 0xfffffffffa100000
- | | | | "idVendor" = 0x424
- | | | | "iInterface" = 0x0
- | | | | "bAlternateSetting" = 0x1
- | | | | "bInterfaceProtocol" = 0x2
- | | | | "bInterfaceNumber" = 0x0
- | | | | "bInterfaceClass" = 0x9
- | | | | "bNumEndpoints" = 0x1
- | | | | }
- | | | |
- | | | +-o FaceTime HD Camera (Built-in)@fa200000 &lt;class IOUSBDevice, id 0x100000286, registered, matched, active, busy 0 (730 ms), retain 12&gt;
- | | | | | {
- | | | | | "sessionID" = 0x27b711a4
- | | | | | "iManufacturer" = 0x1
- | | | | | "bNumConfigurations" = 0x1
- | | | | | "idProduct" = 0x8509
- | | | | | "bcdDevice" = 0x516
- | | | | | "Bus Power Available" = 0xfa
- | | | | | "bMaxPacketSize0" = 0x40
- | | | | | "USB Product Name" = "FaceTime HD Camera (Built-in)"
- | | | | | "iProduct" = 0x2
- | | | | | "iSerialNumber" = 0x3
- | | | | | "USB Address" = 0x3
- | | | | | "bDeviceClass" = 0xef
- | | | | | "bDeviceSubClass" = 0x2
- | | | | | "locationID" = 0xfffffffffa200000
- | | | | | "IOUserClientClass" = "IOUSBDeviceUserClientV2"
- | | | | | "PortNum" = 0x2
- | | | | | "non-removable" = "yes"
- | | | | | "IOCFPlugInTypes" = {"9dc7b780-9ec0-11d4-a54f-000a27052861"="IOUSBFamily.kext/Contents/PlugIns/IOUSBLib.bundle"}
- | | | | | "bDeviceProtocol" = 0x1
- | | | | | "USB Vendor Name" = "Apple Inc."
- | | | | | "Device Speed" = 0x2
- | | | | | "idVendor" = 0x5ac
- | | | | | "USB Serial Number" = "CC2BCR00A0DG6ML0"
- | | | | | "Requested Power" = 0xfa
- | | | | | "IOGeneralInterest" = "IOCommand is not serializable"
- | | | | | "kSuspendPort" = Yes
- | | | | | "Low Power Displayed" = No
- | | | | | }
- | | | | |
- | | | | +-o IOUSBCompositeDriver &lt;class IOUSBCompositeDriver, id 0x100000289, !registered, !matched, active, busy 0, retain 4&gt;
- | | | | | {
- | | | | | "IOProbeScore" = 0xea60
- | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleUSBComposite"
- | | | | | "IOProviderClass" = "IOUSBDevice"
- | | | | | "IOClass" = "IOUSBCompositeDriver"
- | | | | | "bDeviceSubClass" = 0x2
- | | | | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | | | | "bDeviceClass" = 0xef
- | | | | | "bDeviceProtocol" = 0x1
- | | | | | }
- | | | | |
- | | | | +-o FaceTime HD Camera (Built-in)@0 &lt;class IOUSBInterface, id 0x10000028a, registered, matched, active, busy 0 (522 ms), retain 8&gt;
- | | | | | | {
- | | | | | | "IOCFPlugInTypes" = {"2d9786c6-9ef3-11d4-ad51-000a27052861"="IOUSBFamily.kext/Contents/PlugIns/IOUSBLib.bundle"}
- | | | | | | "bcdDevice" = 0x516
- | | | | | | "IOUserClientClass" = "IOUSBInterfaceUserClientV2"
- | | | | | | "idProduct" = 0x8509
- | | | | | | "bConfigurationValue" = 0x1
- | | | | | | "bInterfaceSubClass" = 0x1
- | | | | | | "locationID" = 0xfffffffffa200000
- | | | | | | "USB Interface Name" = "FaceTime HD Camera (Built-in)"
- | | | | | | "idVendor" = 0x5ac
- | | | | | | "iInterface" = 0x2
- | | | | | | "bAlternateSetting" = 0x0
- | | | | | | "bInterfaceProtocol" = 0x0
- | | | | | | "bInterfaceNumber" = 0x0
- | | | | | | "bInterfaceClass" = 0xe
- | | | | | | "bNumEndpoints" = 0x1
- | | | | | | }
- | | | | | |
- | | | | | +-o IOUSBInterfaceUserClientV2 &lt;class IOUSBInterfaceUserClientV2, id 0x100000e54, !registered, !matched, active, busy 0, retain 7&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 7691, VDCAssistant"
- | | | | | }
- | | | | |
- | | | | +-o IOUSBInterface@1 &lt;class IOUSBInterface, id 0x10000028b, registered, matched, active, busy 0 (543 ms), retain 8&gt;
- | | | | | | {
- | | | | | | "IOCFPlugInTypes" = {"2d9786c6-9ef3-11d4-ad51-000a27052861"="IOUSBFamily.kext/Contents/PlugIns/IOUSBLib.bundle"}
- | | | | | | "bcdDevice" = 0x516
- | | | | | | "IOUserClientClass" = "IOUSBInterfaceUserClientV2"
- | | | | | | "idProduct" = 0x8509
- | | | | | | "IOUserClientCrossEndianCompatible" = No
- | | | | | | "bConfigurationValue" = 0x1
- | | | | | | "bInterfaceSubClass" = 0x2
- | | | | | | "locationID" = 0xfffffffffa200000
- | | | | | | "IOGeneralInterest" = "IOCommand is not serializable"
- | | | | | | "idVendor" = 0x5ac
- | | | | | | "iInterface" = 0x0
- | | | | | | "bAlternateSetting" = 0x0
- | | | | | | "bInterfaceProtocol" = 0x0
- | | | | | | "bInterfaceNumber" = 0x1
- | | | | | | "bInterfaceClass" = 0xe
- | | | | | | "bNumEndpoints" = 0x0
- | | | | | | }
- | | | | | |
- | | | | | +-o IOUSBInterfaceUserClientV2 &lt;class IOUSBInterfaceUserClientV2, id 0x100000e55, !registered, !matched, active, busy 0, retain 7&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 7691, VDCAssistant"
- | | | | | }
- | | | | |
- | | | | +-o IOUSBInterface@2 &lt;class IOUSBInterface, id 0x10000028c, registered, matched, active, busy 0 (561 ms), retain 6&gt;
- | | | | | {
- | | | | | "IOCFPlugInTypes" = {"2d9786c6-9ef3-11d4-ad51-000a27052861"="IOUSBFamily.kext/Contents/PlugIns/IOUSBLib.bundle"}
- | | | | | "bcdDevice" = 0x516
- | | | | | "IOUserClientClass" = "IOUSBInterfaceUserClientV2"
- | | | | | "idProduct" = 0x8509
- | | | | | "bConfigurationValue" = 0x1
- | | | | | "bInterfaceSubClass" = 0x0
- | | | | | "locationID" = 0xfffffffffa200000
- | | | | | "idVendor" = 0x5ac
- | | | | | "iInterface" = 0x0
- | | | | | "bAlternateSetting" = 0x0
- | | | | | "bInterfaceProtocol" = 0x0
- | | | | | "bInterfaceNumber" = 0x2
- | | | | | "bInterfaceClass" = 0xff
- | | | | | "bNumEndpoints" = 0x0
- | | | | | }
- | | | | |
- | | | | +-o IOUSBDeviceUserClientV2 &lt;class IOUSBDeviceUserClientV2, id 0x100000e53, !registered, !matched, active, busy 0, retain 7&gt;
- | | | | {
- | | | | "IOUserClientCreator" = "pid 7691, VDCAssistant"
- | | | | }
- | | | |
- | | | +-o Apple Internal Keyboard / Trackpad@fa120000 &lt;class IOUSBDevice, id 0x10000029a, registered, matched, active, busy 0 (1326 ms), retain 13&gt;
- | | | | | {
- | | | | | "sessionID" = 0x3680b4eb
- | | | | | "iManufacturer" = 0x1
- | | | | | "bNumConfigurations" = 0x1
- | | | | | "idProduct" = 0x252
- | | | | | "bcdDevice" = 0x118
- | | | | | "Bus Power Available" = 0xfa
- | | | | | "bMaxPacketSize0" = 0x8
- | | | | | "USB Product Name" = "Apple Internal Keyboard / Trackpad"
- | | | | | "iProduct" = 0x2
- | | | | | "iSerialNumber" = 0x0
- | | | | | "USB Address" = 0x4
- | | | | | "bDeviceClass" = 0x0
- | | | | | "locationID" = 0xfffffffffa120000
- | | | | | "bDeviceSubClass" = 0x0
- | | | | | "IOUserClientClass" = "IOUSBDeviceUserClientV2"
- | | | | | "PortNum" = 0x2
- | | | | | "non-removable" = "yes"
- | | | | | "IOCFPlugInTypes" = {"9dc7b780-9ec0-11d4-a54f-000a27052861"="IOUSBFamily.kext/Contents/PlugIns/IOUSBLib.bundle"}
- | | | | | "bDeviceProtocol" = 0x0
- | | | | | "USB Vendor Name" = "Apple Inc."
- | | | | | "Device Speed" = 0x1
- | | | | | "idVendor" = 0x5ac
- | | | | | "ExtendedData" = (0x3010921,0x3020921)
- | | | | | "Requested Power" = 0x14
- | | | | | "IOGeneralInterest" = "IOCommand is not serializable"
- | | | | | "Low Power Displayed" = No
- | | | | | }
- | | | | |
- | | | | +-o IOUSBCompositeDriver &lt;class IOUSBCompositeDriver, id 0x10000029d, !registered, !matched, active, busy 0, retain 4&gt;
- | | | | | {
- | | | | | "IOProbeScore" = 0xc350
- | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleUSBComposite"
- | | | | | "IOProviderClass" = "IOUSBDevice"
- | | | | | "IOClass" = "IOUSBCompositeDriver"
- | | | | | "bDeviceSubClass" = 0x0
- | | | | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | | | | "bDeviceClass" = 0x0
- | | | | | }
- | | | | |
- | | | | +-o Apple Internal Keyboard@0 &lt;class IOUSBInterface, id 0x10000029e, registered, matched, active, busy 0 (529 ms), retain 8&gt;
- | | | | | | {
- | | | | | | "IOCFPlugInTypes" = {"2d9786c6-9ef3-11d4-ad51-000a27052861"="IOUSBFamily.kext/Contents/PlugIns/IOUSBLib.bundle"}
- | | | | | | "bcdDevice" = 0x118
- | | | | | | "IOUserClientClass" = "IOUSBInterfaceUserClientV2"
- | | | | | | "idProduct" = 0x252
- | | | | | | "bConfigurationValue" = 0x1
- | | | | | | "bInterfaceSubClass" = 0x1
- | | | | | | "locationID" = 0xfffffffffa120000
- | | | | | | "USB Interface Name" = "Apple Internal Keyboard"
- | | | | | | "ExtendedData" = (0x3010921,0x3020921)
- | | | | | | "idVendor" = 0x5ac
- | | | | | | "iInterface" = 0x3
- | | | | | | "bAlternateSetting" = 0x0
- | | | | | | "bInterfaceProtocol" = 0x1
- | | | | | | "bInterfaceNumber" = 0x0
- | | | | | | "bInterfaceClass" = 0x3
- | | | | | | "bNumEndpoints" = 0x1
- | | | | | | }
- | | | | | |
- | | | | | +-o AppleUSBTCKeyboard &lt;class AppleUSBTCKeyboard, id 0x1000002a2, registered, matched, active, busy 0 (192 ms), retain 8&gt;
- | | | | | | {
- | | | | | | "PrimaryUsagePage" = 0x1
- | | | | | | "MaxInputReportSize" = 0xa
- | | | | | | "IOUserClientClass" = "IOHIDLibUserClient"
- | | | | | | "VersionNumber" = 0x118
- | | | | | | "VendorID" = 0x5ac
- | | | | | | "bConfigurationValue" = 0x1
- | | | | | | "BootProtocol" = 0x1
- | | | | | | "MaxFeatureReportSize" = 0x4
- | | | | | | "typeTime" = 0x0
- | | | | | | "Product" = "Apple Internal Keyboard / Trackpad"
- | | | | | | "Transport" = "USB"
- | | | | | | "Elements" = ({"ReportID"=0x0,"ElementCookie"=0x1,"CollectionType"=0x1,"Type"=0x201,"Elements"=({"UnitExponent"=0x0,"IsRelative"=No,"UsagePage"=0x7,"Max"=0x1,"IsArray"=No,"Min"=0x0,"Type"=0x2,"Size"=0x1,"Flags"=0x2,"ReportID"=0x1,"Usage"=0xe0,"ReportCount"=0x1,"Unit"=0x0,"HasNullState"=No,"IsNonLinear"=No,"HasPreferredState"=Yes,"ReportSize"=0x1,"ScaledMin"=0x0,"IsWrapping"=No,"ScaledMax"=0x1,"ElementCookie"=0x3},{"UnitExponent"=0x0,"IsRelative"=No,"UsagePage"=0x7,"Max"=0x1,"IsArray"=No,"Min"=0x0,"Type"=0x2,"Size"=0x1,"$
- | | | | | | "Manufacturer" = "Apple Inc."
- | | | | | | "IOKitDebug" = 0x0
- | | | | | | "kbSuspendTime" = 0xbb8
- | | | | | | "ProductID" = 0x252
- | | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0x1,"DeviceUsage"=0x6},{"DeviceUsagePage"=0xc,"DeviceUsage"=0x1})
- | | | | | | "IOPowerManagement" = {"TimeSinceDeviceIdle"=0x3ad4,"MaxPowerState"=0x4,"ActivityTickles"=0x0,"IdleTimerPeriod"=0xbb8,"DevicePowerState"=0x0,"TimeSinceLastTickle"=0x61b8,"DriverPowerState"=0x3,"CurrentPowerState"=0x3}
- | | | | | | "idVendor" = 0x5ac
- | | | | | | "ReportInterval" = 0x1f40
- | | | | | | "InputReportElements" = ({"ReportID"=0x1,"ElementCookie"=0x11f,"Size"=0x50,"ReportCount"=0x1,"Type"=0x1,"UsagePage"=0x0,"ReportSize"=0x50,"Usage"=0x0},{"ReportID"=0x52,"ElementCookie"=0x120,"Size"=0x10,"ReportCount"=0x1,"Type"=0x1,"UsagePage"=0x0,"ReportSize"=0x10,"Usage"=0x0},{"ReportID"=0x9,"ElementCookie"=0x121,"Size"=0x8,"ReportCount"=0x1,"Type"=0x1,"UsagePage"=0x0,"ReportSize"=0x8,"Usage"=0x0})
- | | | | | | "idProduct" = 0x252
- | | | | | | "deviceIsSuspended" = No
- | | | | | | "MaxOutputReportSize" = 0x2
- | | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleUSBTCKeyboard"
- | | | | | | "IOProviderClass" = "IOUSBInterface"
- | | | | | | "bInterfaceNumber" = 0x0
- | | | | | | "noRecentActivity" = Yes
- | | | | | | "LocationID" = 0xfffffffffa120000
- | | | | | | "alt_handler_id" = 0x2b
- | | | | | | "IOClass" = "AppleUSBTCKeyboard"
- | | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"}
- | | | | | | "PrimaryUsage" = 0x6
- | | | | | | "HIDDefaultBehavior" = ""
- | | | | | | "CountryCode" = 0x21
- | | | | | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | | | | | "IOProbeScore" = 0x15f90
- | | | | | | }
- | | | | | |
- | | | | | +-o IOHIDInterface &lt;class IOHIDInterface, id 0x1000002a7, registered, matched, active, busy 0 (104 ms), retain 6&gt;
- | | | | | | {
- | | | | | | "VendorID" = 0x5ac
- | | | | | | "CountryCode" = 0x21
- | | | | | | "Product" = "Apple Internal Keyboard / Trackpad"
- | | | | | | "VersionNumber" = 0x118
- | | | | | | "PrimaryUsage" = 0x6
- | | | | | | "LocationID" = 0xfffffffffa120000
- | | | | | | "BootProtocol" = 0x1
- | | | | | | "ProductID" = 0x252
- | | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0x1,"DeviceUsage"=0x6},{"DeviceUsagePage"=0xc,"DeviceUsage"=0x1})
- | | | | | | "Transport" = "USB"
- | | | | | | "ReportInterval" = 0x1f40
- | | | | | | "HIDDefaultBehavior" = ""
- | | | | | | "PrimaryUsagePage" = 0x1
- | | | | | | "Manufacturer" = "Apple Inc."
- | | | | | | }
- | | | | | |
- | | | | | +-o AppleEmbeddedKeyboard &lt;class AppleEmbeddedKeyboard, id 0x1000002a8, registered, matched, active, busy 0 (1 ms), retain 9&gt;
- | | | | | | {
- | | | | | | "IOClass" = "AppleEmbeddedKeyboard"
- | | | | | | "StandardType" = 0x0
- | | | | | | "Transport" = "USB"
- | | | | | | "BootProtocol" = 0x1
- | | | | | | "HIDMouseKeysEnablesVirtualNumPad" = Yes
- | | | | | | "HIDDefaultBehavior" = ""
- | | | | | | "Manufacturer" = "Apple Inc."
- | | | | | | "IOProviderClass" = "IOHIDInterface"
- | | | | | | "Product" = "Apple Internal Keyboard / Trackpad"
- | | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0x1,"DeviceUsage"=0x6},{"DeviceUsagePage"=0xc,"DeviceUsage"=0x1})
- | | | | | | "IOProbeScore" = 0x1c20
- | | | | | | "FnModifierUsagePage" = 0xff
- | | | | | | "VendorIDSource" = 0x0
- | | | | | | "FnKeyboardUsageMap" = "0x00070050,0x0007004a,0x00070052,0x0007004b,0x0007002a,0x0007004c,0x0007004f,0x0007004d,0x00070051,0x0007004e,0x00070028,0x00070058"
- | | | | | | "NumLockKeyboardUsageMap" = "0x00070029,0x00070029,0x0007002a,0x0007002a,0x0007002b,0x0007002b,0x0007003a,0x0007003a,0x0007003b,0x0007003b,0x0007003c,0x0007003c,0x0007003d,0x0007003d,0x0007003e,0x0007003e,0x0007003f,0x0007003f,0x00070040,0x00070040,0x00070041,0x00070041,0x00070042,0x00070042,0x00070043,0x00070043,0x00070044,0x00070044,0x00070045,0x00070045,0x0007004a,0x0007004a,0x0007004b,0x0007004b,0x0007004c,0x0007004c,0x0007004d,0x0007004d,0x0007004e,0x0007004e,0x0007004f,0x0007004f,0x00070050,0x00070050,0x000700$
- | | | | | | "HIDFKeyMode" = 0x0
- | | | | | | "VendorID" = 0x5ac
- | | | | | | "VersionNumber" = 0x118
- | | | | | | "CountryCode" = 0x21
- | | | | | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleUSBTCKeyEventDriver"
- | | | | | | "HIDEventServiceProperties" = {"HIDKeyboardModifierMappingPairs"=()}
- | | | | | | "FnFunctionUsageMap" = "0x0007003a,0x00ff0005,0x0007003b,0x00ff0004,0x0007003c,0xff010010,0x0007003d,0xff010004,0x0007003e,0x00ff0009,0x0007003f,0x00ff0008,0x00070040,0x000C00B4,0x00070041,0x000C00CD,0x00070042,0x000C00B3,0x00070043,0x000C00E2,0x00070044,0x000C00EA,0x00070045,0x000C00E9"
- | | | | | | "LocationID" = 0xfffffffffa120000
- | | | | | | "CapsLockDelay" = 0x4b
- | | | | | | "ProductID" = 0x252
- | | | | | | "alt_handler_id" = 0x2b
- | | | | | | "FnModifierUsage" = 0x3
- | | | | | | }
- | | | | | |
- | | | | | +-o IOHIDKeyboard &lt;class IOHIDKeyboard, id 0x1000002aa, registered, matched, active, busy 0 (0 ms), retain 7&gt;
- | | | | | | | {
- | | | | | | | "HIDVirtualDevice" = No
- | | | | | | | "Transport" = "USB"
- | | | | | | | "HIDKeyboardRightModifierSupport" = Yes
- | | | | | | | "HIDKeyboardKeysDefined" = Yes
- | | | | | | | "HIDDeviceEventID" = 0x123c300
- | | | | | | | "Product" = "Apple Internal Keyboard / Trackpad"
- | | | | | | | "HIDKeyboardCapsLockDoesLock" = No
- | | | | | | | "Manufacturer" = "Apple Inc."
- | | | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0x1,"DeviceUsage"=0x6},{"DeviceUsagePage"=0xc,"DeviceUsage"=0x1})
- | | | | | | | "VendorIDSource" = 0x0
- | | | | | | | "CountryCode" = 0x21
- | | | | | | | "VendorID" = 0x5ac
- | | | | | | | "HIDSubinterfaceID" = 0x2b
- | | | | | | | "HIDFKeyMode" = 0x0
- | | | | | | | "VersionNumber" = 0x118
- | | | | | | | "HIDInterfaceID" = 0x2
- | | | | | | | "HIDKeyboardSupportedModifiers" = 0xfe207f
- | | | | | | | "LocationID" = 0xfffffffffa120000
- | | | | | | | "ProductID" = 0x252
- | | | | | | | "HIDKind" = 0x1
- | | | | | | | "HIDKeyMapping" = &lt;00000b01013802013b03013a04013705145241535455455857565b5c434b517b7d7e7c4e5906017207013f09013c0a013e0b013d0c0136a20d006100410001000100ca00c7000100010d007300530013001300fb00a7001300130d0064004400040004014401b6000400040d006600460006000600a601ac000600060d006800480008000800e300eb000018000d006700470007000700f100e1000700070d007a005a001a001a00cf0157001a001a0d007800580018001801b401ce001800180d006300430003000301e301d3000300030d007600560016001601d601e00016001602003c003e0d006200420002000201e501f2000200020d00$
- | | | | | | | "HIDParameters" = {"HIDKeyboardModifierMappingPairs"=()}
- | | | | | | | "HIDKeyboardModifierMappingPairs" = ()
- | | | | | | | }
- | | | | | | |
- | | | | | | +-o IOHIDSystem &lt;class IOHIDSystem, id 0x100000263, registered, matched, active, busy 0 (0 ms), retain 19&gt;
- | | | | | | | {
- | | | | | | | "IOProbeScore" = 0x0
- | | | | | | | "CFBundleIdentifier" = "com.apple.iokit.IOHIDFamily"
- | | | | | | | "IOProviderClass" = "IOResources"
- | | | | | | | "IOClass" = "IOHIDSystem"
- | | | | | | | "IOMatchCategory" = "IOHID"
- | | | | | | | "NXSystemInfo" = ({"serviceID"=0xffffff80124d4000,"HIDKind"=0x1,"HIDInterfaceID"=0x2,"built-in"=Yes,"HIDSubinterfaceID"=0x2b},{"serviceID"=0xffffff80124d1800,"HIDKind"=0x1,"HIDInterfaceID"=0x0,"built-in"=Yes,"HIDSubinterfaceID"=0x0},{"serviceID"=0xffffff8012629e00,"HIDKind"=0x2,"HIDInterfaceID"=0x0,"HIDSubinterfaceID"=0x0},{"serviceID"=0xffffff8014bc5600,"HIDKind"=0x2,"HIDInterfaceID"=0x0,"HIDSubinterfaceID"=0x0})
- | | | | | | | "HIDParameters" = {"EjectDelay"=0x64,"TrackpadCornerSecondaryClick"=0x0,"HIDTrackpadAcceleration"=0xb000,"HIDMouseKeysOptionToggles"=0x0,"HIDWaitCursorFrameInterval"=0x1fc9f07,"Trackpad Jitter Milliseconds"=0xc0,"TrackpadThreeFingerDoubleTapGesture"=0x2,"DragLock"=0x0,"TrackpadScroll"=0x1,"TrackpadThreeFingerVertSwipeGesture"=0x2,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"PalmNoAction Permanent"=0x1,"Dragging"=0x0,"TrackpadMomentumScroll"=0x1,"TrackpadThreeFingerDrag"=0x0,"HIDDefaultParameters"=Yes,"TrackpadFiv$
- | | | | | | | "HIDIdleTime" = 0x638c05
- | | | | | | | "IOResourceMatch" = "IOBSD"
- | | | | | | | }
- | | | | | | |
- | | | | | | +-o IOHIDStackShotUserClient &lt;class IOHIDStackShotUserClient, id 0x1000003fc, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | | | | {
- | | | | | | | "IOUserClientCrossEndianCompatible" = Yes
- | | | | | | | "IOUserClientCreator" = "pid 36, stackshot"
- | | | | | | | }
- | | | | | | |
- | | | | | | +-o IOHIDUserClient &lt;class IOHIDUserClient, id 0x100000431, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | | | | {
- | | | | | | | "IOUserClientCrossEndianCompatible" = Yes
- | | | | | | | "IOUserClientCreator" = "pid 180, WindowServer"
- | | | | | | | }
- | | | | | | |
- | | | | | | +-o IOHIDParamUserClient &lt;class IOHIDParamUserClient, id 0x100000432, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | | | | {
- | | | | | | | "IOUserClientCrossEndianCompatible" = Yes
- | | | | | | | "IOUserClientCreator" = "pid 20679, iCal Helper"
- | | | | | | | }
- | | | | | | |
- | | | | | | +-o IOHIDEventSystemUserClient &lt;class IOHIDEventSystemUserClient, id 0x100000460, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | | | | {
- | | | | | | | "IOUserClientCrossEndianCompatible" = Yes
- | | | | | | | "IOUserClientCreator" = "pid 50, hidd"
- | | | | | | | }
- | | | | | | |
- | | | | | | +-o IOHIDEventSystemUserClient &lt;class IOHIDEventSystemUserClient, id 0x100000461, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | | | {
- | | | | | | "IOUserClientCrossEndianCompatible" = Yes
- | | | | | | "IOUserClientCreator" = "pid 180, WindowServer"
- | | | | | | }
- | | | | | |
- | | | | | +-o IOHIDConsumer &lt;class IOHIDConsumer, id 0x1000002ab, registered, matched, active, busy 0 (0 ms), retain 7&gt;
- | | | | | | | {
- | | | | | | | "HIDSubinterfaceID" = 0x0
- | | | | | | | "VendorID" = 0x5ac
- | | | | | | | "CountryCode" = 0x21
- | | | | | | | "HIDVirtualDevice" = Yes
- | | | | | | | "Product" = "Apple Internal Keyboard / Trackpad"
- | | | | | | | "VersionNumber" = 0x118
- | | | | | | | "HIDDeviceEventID" = 0x123c080
- | | | | | | | "LocationID" = 0xfffffffffa120000
- | | | | | | | "HIDInterfaceID" = 0x0
- | | | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0x1,"DeviceUsage"=0x6},{"DeviceUsagePage"=0xc,"DeviceUsage"=0x1})
- | | | | | | | "ProductID" = 0x252
- | | | | | | | "Transport" = "USB"
- | | | | | | | "HIDKeyMapping" = &lt;00000000001800000101020203030404050506060707080809090a0a0b0b0c0c0d0d0e0e0f0f10101111121213131414151516161717&gt;
- | | | | | | | "Manufacturer" = "Apple Inc."
- | | | | | | | "HIDKind" = 0x1
- | | | | | | | "VendorIDSource" = 0x0
- | | | | | | | }
- | | | | | | |
- | | | | | | +-o IOHIDSystem &lt;class IOHIDSystem, id 0x100000263, registered, matched, active, busy 0 (0 ms), retain 19&gt;
- | | | | | | | {
- | | | | | | | "IOProbeScore" = 0x0
- | | | | | | | "CFBundleIdentifier" = "com.apple.iokit.IOHIDFamily"
- | | | | | | | "IOProviderClass" = "IOResources"
- | | | | | | | "IOClass" = "IOHIDSystem"
- | | | | | | | "IOMatchCategory" = "IOHID"
- | | | | | | | "NXSystemInfo" = ({"serviceID"=0xffffff80124d4000,"HIDKind"=0x1,"HIDInterfaceID"=0x2,"built-in"=Yes,"HIDSubinterfaceID"=0x2b},{"serviceID"=0xffffff80124d1800,"HIDKind"=0x1,"HIDInterfaceID"=0x0,"built-in"=Yes,"HIDSubinterfaceID"=0x0},{"serviceID"=0xffffff8012629e00,"HIDKind"=0x2,"HIDInterfaceID"=0x0,"HIDSubinterfaceID"=0x0},{"serviceID"=0xffffff8014bc5600,"HIDKind"=0x2,"HIDInterfaceID"=0x0,"HIDSubinterfaceID"=0x0})
- | | | | | | | "HIDParameters" = {"EjectDelay"=0x64,"TrackpadCornerSecondaryClick"=0x0,"HIDTrackpadAcceleration"=0xb000,"HIDMouseKeysOptionToggles"=0x0,"HIDWaitCursorFrameInterval"=0x1fc9f07,"Trackpad Jitter Milliseconds"=0xc0,"TrackpadThreeFingerDoubleTapGesture"=0x2,"DragLock"=0x0,"TrackpadScroll"=0x1,"TrackpadThreeFingerVertSwipeGesture"=0x2,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"PalmNoAction Permanent"=0x1,"Dragging"=0x0,"TrackpadMomentumScroll"=0x1,"TrackpadThreeFingerDrag"=0x0,"HIDDefaultParameters"=Yes,"TrackpadFiv$
- | | | | | | | "HIDIdleTime" = 0x72f95c
- | | | | | | | "IOResourceMatch" = "IOBSD"
- | | | | | | | }
- | | | | | | |
- | | | | | | +-o IOHIDStackShotUserClient &lt;class IOHIDStackShotUserClient, id 0x1000003fc, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | | | | {
- | | | | | | | "IOUserClientCrossEndianCompatible" = Yes
- | | | | | | | "IOUserClientCreator" = "pid 36, stackshot"
- | | | | | | | }
- | | | | | | |
- | | | | | | +-o IOHIDUserClient &lt;class IOHIDUserClient, id 0x100000431, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | | | | {
- | | | | | | | "IOUserClientCrossEndianCompatible" = Yes
- | | | | | | | "IOUserClientCreator" = "pid 180, WindowServer"
- | | | | | | | }
- | | | | | | |
- | | | | | | +-o IOHIDParamUserClient &lt;class IOHIDParamUserClient, id 0x100000432, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | | | | {
- | | | | | | | "IOUserClientCrossEndianCompatible" = Yes
- | | | | | | | "IOUserClientCreator" = "pid 20679, iCal Helper"
- | | | | | | | }
- | | | | | | |
- | | | | | | +-o IOHIDEventSystemUserClient &lt;class IOHIDEventSystemUserClient, id 0x100000460, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | | | | {
- | | | | | | | "IOUserClientCrossEndianCompatible" = Yes
- | | | | | | | "IOUserClientCreator" = "pid 50, hidd"
- | | | | | | | }
- | | | | | | |
- | | | | | | +-o IOHIDEventSystemUserClient &lt;class IOHIDEventSystemUserClient, id 0x100000461, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | | | {
- | | | | | | "IOUserClientCrossEndianCompatible" = Yes
- | | | | | | "IOUserClientCreator" = "pid 180, WindowServer"
- | | | | | | }
- | | | | | |
- | | | | | +-o IOHIDSystem &lt;class IOHIDSystem, id 0x100000263, registered, matched, active, busy 0 (0 ms), retain 18&gt;
- | | | | | | {
- | | | | | | "IOProbeScore" = 0x0
- | | | | | | "CFBundleIdentifier" = "com.apple.iokit.IOHIDFamily"
- | | | | | | "IOProviderClass" = "IOResources"
- | | | | | | "IOClass" = "IOHIDSystem"
- | | | | | | "IOMatchCategory" = "IOHID"
- | | | | | | "NXSystemInfo" = ({"serviceID"=0xffffff80124d4000,"HIDKind"=0x1,"HIDInterfaceID"=0x2,"built-in"=Yes,"HIDSubinterfaceID"=0x2b},{"serviceID"=0xffffff80124d1800,"HIDKind"=0x1,"HIDInterfaceID"=0x0,"built-in"=Yes,"HIDSubinterfaceID"=0x0},{"serviceID"=0xffffff8012629e00,"HIDKind"=0x2,"HIDInterfaceID"=0x0,"HIDSubinterfaceID"=0x0},{"serviceID"=0xffffff8014bc5600,"HIDKind"=0x2,"HIDInterfaceID"=0x0,"HIDSubinterfaceID"=0x0})
- | | | | | | "HIDParameters" = {"EjectDelay"=0x64,"TrackpadCornerSecondaryClick"=0x0,"HIDTrackpadAcceleration"=0xb000,"HIDMouseKeysOptionToggles"=0x0,"HIDWaitCursorFrameInterval"=0x1fc9f07,"Trackpad Jitter Milliseconds"=0xc0,"TrackpadThreeFingerDoubleTapGesture"=0x2,"DragLock"=0x0,"TrackpadScroll"=0x1,"TrackpadThreeFingerVertSwipeGesture"=0x2,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"PalmNoAction Permanent"=0x1,"Dragging"=0x0,"TrackpadMomentumScroll"=0x1,"TrackpadThreeFingerDrag"=0x0,"HIDDefaultParameters"=Yes,"TrackpadFiveF$
- | | | | | | "HIDIdleTime" = 0x805391
- | | | | | | "IOResourceMatch" = "IOBSD"
- | | | | | | }
- | | | | | |
- | | | | | +-o IOHIDStackShotUserClient &lt;class IOHIDStackShotUserClient, id 0x1000003fc, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | | | {
- | | | | | | "IOUserClientCrossEndianCompatible" = Yes
- | | | | | | "IOUserClientCreator" = "pid 36, stackshot"
- | | | | | | }
- | | | | | |
- | | | | | +-o IOHIDUserClient &lt;class IOHIDUserClient, id 0x100000431, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | | | {
- | | | | | | "IOUserClientCrossEndianCompatible" = Yes
- | | | | | | "IOUserClientCreator" = "pid 180, WindowServer"
- | | | | | | }
- | | | | | |
- | | | | | +-o IOHIDParamUserClient &lt;class IOHIDParamUserClient, id 0x100000432, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | | | {
- | | | | | | "IOUserClientCrossEndianCompatible" = Yes
- | | | | | | "IOUserClientCreator" = "pid 20679, iCal Helper"
- | | | | | | }
- | | | | | |
- | | | | | +-o IOHIDEventSystemUserClient &lt;class IOHIDEventSystemUserClient, id 0x100000460, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | | | {
- | | | | | | "IOUserClientCrossEndianCompatible" = Yes
- | | | | | | "IOUserClientCreator" = "pid 50, hidd"
- | | | | | | }
- | | | | | |
- | | | | | +-o IOHIDEventSystemUserClient &lt;class IOHIDEventSystemUserClient, id 0x100000461, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | | {
- | | | | | "IOUserClientCrossEndianCompatible" = Yes
- | | | | | "IOUserClientCreator" = "pid 180, WindowServer"
- | | | | | }
- | | | | |
- | | | | +-o Touchpad@1 &lt;class IOUSBInterface, id 0x10000029f, registered, matched, active, busy 0 (864 ms), retain 8&gt;
- | | | | | | {
- | | | | | | "IOCFPlugInTypes" = {"2d9786c6-9ef3-11d4-ad51-000a27052861"="IOUSBFamily.kext/Contents/PlugIns/IOUSBLib.bundle"}
- | | | | | | "bcdDevice" = 0x118
- | | | | | | "IOUserClientClass" = "IOUSBInterfaceUserClientV2"
- | | | | | | "idProduct" = 0x252
- | | | | | | "bConfigurationValue" = 0x1
- | | | | | | "bInterfaceSubClass" = 0x0
- | | | | | | "locationID" = 0xfffffffffa120000
- | | | | | | "USB Interface Name" = "Touchpad"
- | | | | | | "idVendor" = 0x5ac
- | | | | | | "iInterface" = 0x4
- | | | | | | "bAlternateSetting" = 0x0
- | | | | | | "bInterfaceProtocol" = 0x0
- | | | | | | "bInterfaceNumber" = 0x1
- | | | | | | "bInterfaceClass" = 0x3
- | | | | | | "bNumEndpoints" = 0x1
- | | | | | | }
- | | | | | |
- | | | | | +-o AppleUSBMultitouchDriver &lt;class AppleUSBMultitouchDriver, id 0x1000002ad, registered, matched, active, busy 0 (200 ms), retain 15&gt;
- | | | | | | {
- | | | | | | "Multitouch ID" = 0x3000000fa120000
- | | | | | | "Sensor Surface Height" = 0x1db0
- | | | | | | "MaxFeatureReportSize" = 0x1
- | | | | | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | | | | | "HIDServiceSupport" = Yes
- | | | | | | "parser-options" = 0x27
- | | | | | | "TrackpadThreeFingerDrag" = Yes
- | | | | | | "VersionNumber" = 0x118
- | | | | | | "Sensor Region Descriptor" = &lt;0101000c01001400&gt;
- | | | | | | "IOProbeScore" = 0x15f90
- | | | | | | "Sensor Surface Width" = 0x2904
- | | | | | | "IOClass" = "AppleUSBMultitouchDriver"
- | | | | | | "SupportsGestureScrolling" = Yes
- | | | | | | "IOGeneralInterest" = "IOCommand is not serializable"
- | | | | | | "IOUserClientClass" = "AppleUSBMultitouchUserClient"
- | | | | | | "MaxInputReportSize" = 0x200
- | | | | | | "bcdVersion" = 0x109
- | | | | | | "parser-type" = 0x3e8
- | | | | | | "Product" = "Apple Internal Keyboard / Trackpad"
- | | | | | | "TrackpadUserPreferences" = {"TrackpadPinch"=Yes,"TrackpadFourFingerVertSwipeGesture"=0x2,"USBMouseStopsTrackpad"=No,"TrackpadRotate"=Yes,"TrackpadHorizScroll"=Yes,"TrackpadTwoFingerDoubleTapGesture"=0x1,"TrackpadThreeFingerDoubleTapGesture"=0x2,"TrackpadFourFingerPinchGesture"=0x2,"JitterNoMove"=Yes,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"Clicking"=No,"TrackpadMomentumScroll"=Yes,"HIDScrollZoomModifierMask"=0x40000,"TrackpadScroll"=Yes,"DragLock"=No,"TrackpadFiveFingerPinchGesture"=0x2,"TrackpadThreeFingerVertSwipe$
- | | | | | | "TrackpadSecondaryClickCorners" = Yes
- | | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleUSBMultitouch"
- | | | | | | "IOCFPlugInTypes" = {"0516B563-B15B-11DA-96EB-0014519758EF"="AppleMultitouchDriver.kext/Contents/PlugIns/MultitouchHID.plugin","7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"}
- | | | | | | "Max Packet Size" = 0x200
- | | | | | | "ReportInterval" = 0x7d0
- | | | | | | "idVendor" = 0x5ac
- | | | | | | "VendorID" = 0x5ac
- | | | | | | "SessionID" = 0x3680b4eb
- | | | | | | "MaxOutputReportSize" = 0x1
- | | | | | | "Multitouch Serial Number" = "None"
- | | | | | | "PrimaryUsagePage" = 0xff00
- | | | | | | "InputReportElements" = ({"ReportID"=0x44,"ElementCookie"=0x203,"Size"=0x1000,"ReportCount"=0x1,"Type"=0x1,"UsagePage"=0x0,"ReportSize"=0x1000,"Usage"=0x0})
- | | | | | | "TrackpadFourFingerGestures" = Yes
- | | | | | | "Endianness" = 0x1
- | | | | | | "BootProtocol" = 0x0
- | | | | | | "ProductID" = 0x252
- | | | | | | "Sensor Rows" = 0xc
- | | | | | | "DisablingMouseAttached" = No
- | | | | | | "bConfigurationValue" = 0x1
- | | | | | | "Family ID" = 0x62
- | | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x1})
- | | | | | | "Elements" = ({"ReportID"=0x0,"ElementCookie"=0x1,"CollectionType"=0x3,"Type"=0x201,"Elements"=({"UnitExponent"=0x0,"IsRelative"=No,"UsagePage"=0xff00,"Max"=0xff,"IsArray"=Yes,"Min"=0x0,"Type"=0x2,"Size"=0xff8,"Flags"=0x0,"ReportID"=0x44,"Usage"=0xffffffffffffffff,"ReportCount"=0x1ff,"Unit"=0x0,"HasNullState"=No,"IsNonLinear"=No,"HasPreferredState"=Yes,"ReportSize"=0x8,"ScaledMin"=0x0,"IsWrapping"=No,"ScaledMax"=0xff,"ElementCookie"=0x2},{"UnitExponent"=0x0,"IsRelative"=No,"DuplicateIndex"=0x0,"UsagePage"=0xff00,"Max"=0$
- | | | | | | "DisablingMouseKeysEnabled" = No
- | | | | | | "PrimaryUsage" = 0x1
- | | | | | | "IOProviderClass" = "IOUSBInterface"
- | | | | | | "MT Built-In" = Yes
- | | | | | | "Sensor Region Param" = &lt;00000300be01&gt;
- | | | | | | "HIDDefaultBehavior" = "Mouse"
- | | | | | | "IOPowerManagement" = {"TimeSinceDeviceIdle"=0x100a9,"MaxPowerState"=0x4,"ActivityTickles"=0x12a9,"IdleTimerPeriod"=0xbb8,"DevicePowerState"=0x4,"TimeSinceLastTickle"=0x4,"ChildrenPowerState"=0x3,"DriverPowerState"=0x3,"CurrentPowerState"=0x4}
- | | | | | | "idProduct" = 0x252
- | | | | | | "TrackpadMomentumScroll" = Yes
- | | | | | | "bInterfaceNumber" = 0x1
- | | | | | | "Transport" = "USB"
- | | | | | | "Sensor Columns" = 0x14
- | | | | | | "MTHIDDevice" = Yes
- | | | | | | "Manufacturer" = "Apple Inc."
- | | | | | | "CountryCode" = 0x0
- | | | | | | "LocationID" = 0xfffffffffa120000
- | | | | | | }
- | | | | | |
- | | | | | +-o IOHIDInterface &lt;class IOHIDInterface, id 0x1000002d7, registered, matched, active, busy 0 (12 ms), retain 6&gt;
- | | | | | | | {
- | | | | | | | "VendorID" = 0x5ac
- | | | | | | | "CountryCode" = 0x0
- | | | | | | | "Product" = "Apple Internal Keyboard / Trackpad"
- | | | | | | | "VersionNumber" = 0x118
- | | | | | | | "PrimaryUsage" = 0x1
- | | | | | | | "LocationID" = 0xfffffffffa120000
- | | | | | | | "BootProtocol" = 0x0
- | | | | | | | "ProductID" = 0x252
- | | | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x1})
- | | | | | | | "Transport" = "USB"
- | | | | | | | "ReportInterval" = 0x1f40
- | | | | | | | "HIDDefaultBehavior" = "Mouse"
- | | | | | | | "PrimaryUsagePage" = 0xff00
- | | | | | | | "Manufacturer" = "Apple Inc."
- | | | | | | | }
- | | | | | | |
- | | | | | | +-o AppleUSBMultitouchHIDEventDriver &lt;class AppleUSBMultitouchHIDEventDriver, id 0x1000002d8, registered, matched, active, busy 0 (10 ms), retain 9&gt;
- | | | | | | | {
- | | | | | | | "IOClass" = "AppleUSBMultitouchHIDEventDriver"
- | | | | | | | "StandardType" = 0x0
- | | | | | | | "HIDScrollAccelerationType" = "HIDTrackpadScrollAcceleration"
- | | | | | | | "Transport" = "USB"
- | | | | | | | "HIDDefaultBehavior" = ""
- | | | | | | | "Manufacturer" = "Apple Inc."
- | | | | | | | "IOProviderClass" = "IOHIDInterface"
- | | | | | | | "MTEventSource" = Yes
- | | | | | | | "HIDScrollAccelerationTable" = &lt;000080005553422a000700000000000100010000000100000000200000100000713b00004ce300030000000760000004c000000e80000006f14a0017e95e000957820023105a000b67a1002c117b000d8dd40034dd3a000f7e9a003bd0b8001258a000465d3500150000004ed9d80017c0000055caed001ab3e5005b6150001d9000005ed2aa0020bef9006120cb00242d7b006275ef0027b0000063465f0000800000130000713b0000567f000100000002e000000200000009600000030000001200000004c0000020c000000680000030800000086a790041fdb6000aedb50057866e000d01d8006b3d39000efd7f008104700$
- | | | | | | | "Product" = "Apple Internal Keyboard / Trackpad"
- | | | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x1})
- | | | | | | | "IOProbeScore" = 0x1c20
- | | | | | | | "VendorIDSource" = 0x0
- | | | | | | | "HIDAccelCurves" = ({"HIDAccelGainLinear"=0x10000,"HIDAccelTangentSpeedParabolicRoot"=0x150000,"HIDAccelTangentSpeedLinear"=0x76666,"HIDAccelIndex"=0x0},{"HIDAccelGainLinear"=0x1147b,"HIDAccelTangentSpeedLinear"=0x74ccd,"HIDAccelGainCubic"=0x147b,"HIDAccelGainParabolic"=0x8000,"HIDAccelTangentSpeedParabolicRoot"=0x140000,"HIDAccelIndex"=0x2000},{"HIDAccelGainLinear"=0x128f6,"HIDAccelTangentSpeedLinear"=0x73333,"HIDAccelGainCubic"=0x199a,"HIDAccelGainParabolic"=0xa8f6,"HIDAccelTangentSpeedParabolicRoot"=0x130000,"HID$
- | | | | | | | "CountryCode" = 0x0
- | | | | | | | "VendorID" = 0x5ac
- | | | | | | | "VersionNumber" = 0x118
- | | | | | | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleUSBMultitouch"
- | | | | | | | "TrackpadSecondaryClickCorners" = Yes
- | | | | | | | "HIDPointerAccelerationTable" = &lt;000080005553422a00070000000000020004000000040000001000000010000000002000000d00008000000080000001400000018000000200000002e000000300000004e000000400000007400000050000000a000000060000000d40000008000000160000000ac00000230000000d0000002f0000000ec0000038c00000104000004100000011c0000048c00000005000000f0000800000008000000100000001400000018000000240000002000000038000000280000004e000000300000006600000040000000a000000050000000e4000000600000013400000080000001ec000000ac000002ec000000d0000003c8000$
- | | | | | | | "HIDPointerAccelerationType" = "HIDTrackpadAcceleration"
- | | | | | | | "ProductID" = 0x252
- | | | | | | | "HIDScrollAccelCurves" = ({"HIDAccelGainLinear"=0x10000,"HIDAccelTangentSpeedParabolicRoot"=0xc0000,"HIDAccelTangentSpeedLinear"=0x60000,"HIDAccelIndex"=0x0},{"HIDAccelGainLinear"=0xf333,"HIDAccelTangentSpeedParabolicRoot"=0xc0000,"HIDAccelTangentSpeedLinear"=0x63333,"HIDAccelGainParabolic"=0x999a,"HIDAccelIndex"=0x2000},{"HIDAccelGainLinear"=0xe666,"HIDAccelTangentSpeedParabolicRoot"=0xc0000,"HIDAccelTangentSpeedLinear"=0x66666,"HIDAccelGainParabolic"=0xe666,"HIDAccelIndex"=0x8000},{"HIDAccelGainLinear"=0xd99a,"HID$
- | | | | | | | "HIDScrollResolution" = 0x1900000
- | | | | | | | "LocationID" = 0x0
- | | | | | | | }
- | | | | | | |
- | | | | | | +-o IOHIDSystem &lt;class IOHIDSystem, id 0x100000263, registered, matched, active, busy 0 (0 ms), retain 18&gt;
- | | | | | | | | {
- | | | | | | | | "IOProbeScore" = 0x0
- | | | | | | | | "CFBundleIdentifier" = "com.apple.iokit.IOHIDFamily"
- | | | | | | | | "IOProviderClass" = "IOResources"
- | | | | | | | | "IOClass" = "IOHIDSystem"
- | | | | | | | | "IOMatchCategory" = "IOHID"
- | | | | | | | | "NXSystemInfo" = ({"serviceID"=0xffffff80124d4000,"HIDKind"=0x1,"HIDInterfaceID"=0x2,"built-in"=Yes,"HIDSubinterfaceID"=0x2b},{"serviceID"=0xffffff80124d1800,"HIDKind"=0x1,"HIDInterfaceID"=0x0,"built-in"=Yes,"HIDSubinterfaceID"=0x0},{"serviceID"=0xffffff8012629e00,"HIDKind"=0x2,"HIDInterfaceID"=0x0,"HIDSubinterfaceID"=0x0},{"serviceID"=0xffffff8014bc5600,"HIDKind"=0x2,"HIDInterfaceID"=0x0,"HIDSubinterfaceID"=0x0})
- | | | | | | | | "HIDParameters" = {"EjectDelay"=0x64,"TrackpadCornerSecondaryClick"=0x0,"HIDTrackpadAcceleration"=0xb000,"HIDMouseKeysOptionToggles"=0x0,"HIDWaitCursorFrameInterval"=0x1fc9f07,"Trackpad Jitter Milliseconds"=0xc0,"TrackpadThreeFingerDoubleTapGesture"=0x2,"DragLock"=0x0,"TrackpadScroll"=0x1,"TrackpadThreeFingerVertSwipeGesture"=0x2,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"PalmNoAction Permanent"=0x1,"Dragging"=0x0,"TrackpadMomentumScroll"=0x1,"TrackpadThreeFingerDrag"=0x0,"HIDDefaultParameters"=Yes,"TrackpadFiveF$
- | | | | | | | | "HIDIdleTime" = 0x80f4b7b
- | | | | | | | | "IOResourceMatch" = "IOBSD"
- | | | | | | | | }
- | | | | | | | |
- | | | | | | | +-o IOHIDStackShotUserClient &lt;class IOHIDStackShotUserClient, id 0x1000003fc, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | | | | | {
- | | | | | | | | "IOUserClientCrossEndianCompatible" = Yes
- | | | | | | | | "IOUserClientCreator" = "pid 36, stackshot"
- | | | | | | | | }
- | | | | | | | |
- | | | | | | | +-o IOHIDUserClient &lt;class IOHIDUserClient, id 0x100000431, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | | | | | {
- | | | | | | | | "IOUserClientCrossEndianCompatible" = Yes
- | | | | | | | | "IOUserClientCreator" = "pid 180, WindowServer"
- | | | | | | | | }
- | | | | | | | |
- | | | | | | | +-o IOHIDParamUserClient &lt;class IOHIDParamUserClient, id 0x100000432, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | | | | | {
- | | | | | | | | "IOUserClientCrossEndianCompatible" = Yes
- | | | | | | | | "IOUserClientCreator" = "pid 20679, iCal Helper"
- | | | | | | | | }
- | | | | | | | |
- | | | | | | | +-o IOHIDEventSystemUserClient &lt;class IOHIDEventSystemUserClient, id 0x100000460, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | | | | | {
- | | | | | | | | "IOUserClientCrossEndianCompatible" = Yes
- | | | | | | | | "IOUserClientCreator" = "pid 50, hidd"
- | | | | | | | | }
- | | | | | | | |
- | | | | | | | +-o IOHIDEventSystemUserClient &lt;class IOHIDEventSystemUserClient, id 0x100000461, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | | | | {
- | | | | | | | "IOUserClientCrossEndianCompatible" = Yes
- | | | | | | | "IOUserClientCreator" = "pid 180, WindowServer"
- | | | | | | | }
- | | | | | | |
- | | | | | | +-o IOHIDPointing &lt;class IOHIDPointing, id 0x100000f8c, registered, matched, active, busy 0 (9 ms), retain 10&gt;
- | | | | | | | {
- | | | | | | | "HIDScrollAccelerationType" = "HIDTrackpadScrollAcceleration"
- | | | | | | | "HIDVirtualDevice" = No
- | | | | | | | "Transport" = "USB"
- | | | | | | | "HIDDeviceEventID" = 0x14ab460
- | | | | | | | "Product" = "Apple Internal Keyboard / Trackpad"
- | | | | | | | "Manufacturer" = "Apple Inc."
- | | | | | | | "HIDScrollAccelerationTable" = &lt;000080005553422a000700000000000100010000000100000000200000100000713b00004ce300030000000760000004c000000e80000006f14a0017e95e000957820023105a000b67a1002c117b000d8dd40034dd3a000f7e9a003bd0b8001258a000465d3500150000004ed9d80017c0000055caed001ab3e5005b6150001d9000005ed2aa0020bef9006120cb00242d7b006275ef0027b0000063465f0000800000130000713b0000567f000100000002e000000200000009600000030000001200000004c0000020c000000680000030800000086a790041fdb6000aedb50057866e000d01d8006b3d39000efd7f0081047$
- | | | | | | | "HIDPointerAccelerationSettings" = (&lt;00000000&gt;,&lt;00002000&gt;,&lt;00005000&gt;,&lt;00008000&gt;,&lt;0000b000&gt;,&lt;0000e000&gt;,&lt;00010000&gt;)
- | | | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x1})
- | | | | | | | "HIDPointerResolution" = 0x1900000
- | | | | | | | "VendorIDSource" = 0x0
- | | | | | | | "HIDPointerConvertAbsolute" = &lt;00&gt;
- | | | | | | | "TrackpadEmbedded" = Yes
- | | | | | | | "CountryCode" = 0x0
- | | | | | | | "VendorID" = 0x5ac
- | | | | | | | "VersionNumber" = 0x118
- | | | | | | | "HIDSubinterfaceID" = 0x0
- | | | | | | | "HIDInterfaceID" = 0x0
- | | | | | | | "HIDPointerContactToMove" = &lt;00&gt;
- | | | | | | | "LocationID" = 0x0
- | | | | | | | "HIDPointerAccelerationType" = "HIDTrackpadAcceleration"
- | | | | | | | "ProductID" = 0x252
- | | | | | | | "HIDPointerAccelerationTable" = &lt;000080005553422a00070000000000020004000000040000001000000010000000002000000d00008000000080000001400000018000000200000002e000000300000004e000000400000007400000050000000a000000060000000d40000008000000160000000ac00000230000000d0000002f0000000ec0000038c00000104000004100000011c0000048c00000005000000f0000800000008000000100000001400000018000000240000002000000038000000280000004e000000300000006600000040000000a000000050000000e4000000600000013400000080000001ec000000ac000002ec000000d0000003c80$
- | | | | | | | "HIDScrollResolution" = 0x1900000
- | | | | | | | "HIDKind" = 0x2
- | | | | | | | }
- | | | | | | |
- | | | | | | +-o IOHIDSystem &lt;class IOHIDSystem, id 0x100000263, registered, matched, active, busy 0 (0 ms), retain 19&gt;
- | | | | | | | | {
- | | | | | | | | "IOProbeScore" = 0x0
- | | | | | | | | "CFBundleIdentifier" = "com.apple.iokit.IOHIDFamily"
- | | | | | | | | "IOProviderClass" = "IOResources"
- | | | | | | | | "IOClass" = "IOHIDSystem"
- | | | | | | | | "IOMatchCategory" = "IOHID"
- | | | | | | | | "NXSystemInfo" = ({"serviceID"=0xffffff80124d4000,"HIDKind"=0x1,"HIDInterfaceID"=0x2,"built-in"=Yes,"HIDSubinterfaceID"=0x2b},{"serviceID"=0xffffff80124d1800,"HIDKind"=0x1,"HIDInterfaceID"=0x0,"built-in"=Yes,"HIDSubinterfaceID"=0x0},{"serviceID"=0xffffff8012629e00,"HIDKind"=0x2,"HIDInterfaceID"=0x0,"HIDSubinterfaceID"=0x0},{"serviceID"=0xffffff8014bc5600,"HIDKind"=0x2,"HIDInterfaceID"=0x0,"HIDSubinterfaceID"=0x0})
- | | | | | | | | "HIDParameters" = {"EjectDelay"=0x64,"TrackpadCornerSecondaryClick"=0x0,"HIDTrackpadAcceleration"=0xb000,"HIDMouseKeysOptionToggles"=0x0,"HIDWaitCursorFrameInterval"=0x1fc9f07,"Trackpad Jitter Milliseconds"=0xc0,"TrackpadThreeFingerDoubleTapGesture"=0x2,"DragLock"=0x0,"TrackpadScroll"=0x1,"TrackpadThreeFingerVertSwipeGesture"=0x2,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"PalmNoAction Permanent"=0x1,"Dragging"=0x0,"TrackpadMomentumScroll"=0x1,"TrackpadThreeFingerDrag"=0x0,"HIDDefaultParameters"=Yes,"TrackpadFiv$
- | | | | | | | | "HIDIdleTime" = 0x828b34b
- | | | | | | | | "IOResourceMatch" = "IOBSD"
- | | | | | | | | }
- | | | | | | | |
- | | | | | | | +-o IOHIDStackShotUserClient &lt;class IOHIDStackShotUserClient, id 0x1000003fc, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | | | | | {
- | | | | | | | | "IOUserClientCrossEndianCompatible" = Yes
- | | | | | | | | "IOUserClientCreator" = "pid 36, stackshot"
- | | | | | | | | }
- | | | | | | | |
- | | | | | | | +-o IOHIDUserClient &lt;class IOHIDUserClient, id 0x100000431, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | | | | | {
- | | | | | | | | "IOUserClientCrossEndianCompatible" = Yes
- | | | | | | | | "IOUserClientCreator" = "pid 180, WindowServer"
- | | | | | | | | }
- | | | | | | | |
- | | | | | | | +-o IOHIDParamUserClient &lt;class IOHIDParamUserClient, id 0x100000432, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | | | | | {
- | | | | | | | | "IOUserClientCrossEndianCompatible" = Yes
- | | | | | | | | "IOUserClientCreator" = "pid 20679, iCal Helper"
- | | | | | | | | }
- | | | | | | | |
- | | | | | | | +-o IOHIDEventSystemUserClient &lt;class IOHIDEventSystemUserClient, id 0x100000460, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | | | | | {
- | | | | | | | | "IOUserClientCrossEndianCompatible" = Yes
- | | | | | | | | "IOUserClientCreator" = "pid 50, hidd"
- | | | | | | | | }
- | | | | | | | |
- | | | | | | | +-o IOHIDEventSystemUserClient &lt;class IOHIDEventSystemUserClient, id 0x100000461, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | | | | {
- | | | | | | | "IOUserClientCrossEndianCompatible" = Yes
- | | | | | | | "IOUserClientCreator" = "pid 180, WindowServer"
- | | | | | | | }
- | | | | | | |
- | | | | | | +-o IOHIDPointingDevice &lt;class IOHIDPointingDevice, id 0x100000fb1, registered, matched, active, busy 0 (5 ms), retain 6&gt;
- | | | | | | | {
- | | | | | | | "MaxOutputReportSize" = 0x0
- | | | | | | | "InputReportElements" = ({"ReportID"=0x0,"ElementCookie"=0x7,"Size"=0x30,"ReportCount"=0x1,"Type"=0x1,"UsagePage"=0x0,"ReportSize"=0x30,"Usage"=0x0})
- | | | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"}
- | | | | | | | "VendorID" = 0x5ac
- | | | | | | | "IOUserClientClass" = "IOHIDLibUserClient"
- | | | | | | | "Product" = "Apple Internal Keyboard / Trackpad"
- | | | | | | | "PrimaryUsage" = 0x2
- | | | | | | | "LocationID" = 0xfffffffffa120000
- | | | | | | | "ProductID" = 0x252
- | | | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0x1,"DeviceUsage"=0x2},{"DeviceUsagePage"=0x1,"DeviceUsage"=0x1})
- | | | | | | | "Transport" = "USB"
- | | | | | | | "ReportInterval" = 0x1f40
- | | | | | | | "Elements" = ({"ReportID"=0x0,"ElementCookie"=0x1,"CollectionType"=0x1,"Type"=0x201,"Elements"=({"ReportID"=0x0,"ElementCookie"=0x2,"CollectionType"=0x0,"Type"=0x201,"Elements"=({"UnitExponent"=0x0,"IsRelative"=Yes,"UsagePage"=0x1,"Max"=0x7fff,"IsArray"=No,"Min"=0xffffffffffff8001,"Type"=0x1,"Size"=0x10,"Flags"=0x6,"ReportID"=0x0,"Usage"=0x30,"ReportCount"=0x1,"Unit"=0x0,"HasNullState"=No,"IsNonLinear"=No,"HasPreferredState"=Yes,"ReportSize"=0x10,"ScaledMin"=0xffffffffffff8001,"IsWrapping"=No,"ScaledMax"=0x7fff,$
- | | | | | | | "Manufacturer" = "Apple Inc."
- | | | | | | | "MaxFeatureReportSize" = 0x0
- | | | | | | | "PrimaryUsagePage" = 0x1
- | | | | | | | "MaxInputReportSize" = 0x6
- | | | | | | | }
- | | | | | | |
- | | | | | | +-o IOHIDInterface &lt;class IOHIDInterface, id 0x100000fb3, registered, matched, active, busy 0 (3 ms), retain 5&gt;
- | | | | | | {
- | | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0x1,"DeviceUsage"=0x2},{"DeviceUsagePage"=0x1,"DeviceUsage"=0x1})
- | | | | | | "VendorID" = 0x5ac
- | | | | | | "Manufacturer" = "Apple Inc."
- | | | | | | "ReportInterval" = 0x1f40
- | | | | | | "Product" = "Apple Internal Keyboard / Trackpad"
- | | | | | | "PrimaryUsage" = 0x2
- | | | | | | "PrimaryUsagePage" = 0x1
- | | | | | | "Transport" = "USB"
- | | | | | | "LocationID" = 0xfffffffffa120000
- | | | | | | "ProductID" = 0x252
- | | | | | | }
- | | | | | |
- | | | | | +-o AppleUSBMultitouchUserClient &lt;class AppleUSBMultitouchUserClient, id 0x10000041e, !registered, !matched, active, busy 0, retain 6&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 50, hidd"
- | | | | | }
- | | | | |
- | | | | +-o Touchpad@2 &lt;class IOUSBInterface, id 0x1000002a0, registered, matched, active, busy 0 (530 ms), retain 8&gt;
- | | | | | {
- | | | | | "IOCFPlugInTypes" = {"2d9786c6-9ef3-11d4-ad51-000a27052861"="IOUSBFamily.kext/Contents/PlugIns/IOUSBLib.bundle"}
- | | | | | "bcdDevice" = 0x118
- | | | | | "IOUserClientClass" = "IOUSBInterfaceUserClientV2"
- | | | | | "idProduct" = 0x252
- | | | | | "bConfigurationValue" = 0x1
- | | | | | "bInterfaceSubClass" = 0x1
- | | | | | "locationID" = 0xfffffffffa120000
- | | | | | "USB Interface Name" = "Touchpad"
- | | | | | "idVendor" = 0x5ac
- | | | | | "iInterface" = 0x4
- | | | | | "bAlternateSetting" = 0x0
- | | | | | "bInterfaceProtocol" = 0x2
- | | | | | "bInterfaceNumber" = 0x2
- | | | | | "bInterfaceClass" = 0x3
- | | | | | "bNumEndpoints" = 0x1
- | | | | | }
- | | | | |
- | | | | +-o AppleUSBTCButtons &lt;class AppleUSBTCButtons, id 0x1000002dc, registered, matched, active, busy 0 (191 ms), retain 8&gt;
- | | | | | {
- | | | | | "PrimaryUsagePage" = 0x1
- | | | | | "MaxInputReportSize" = 0x4
- | | | | | "IOUserClientClass" = "IOHIDLibUserClient"
- | | | | | "VersionNumber" = 0x118
- | | | | | "VendorID" = 0x5ac
- | | | | | "bConfigurationValue" = 0x1
- | | | | | "BootProtocol" = 0x2
- | | | | | "MTEventSource" = Yes
- | | | | | "MaxFeatureReportSize" = 0x1
- | | | | | "Product" = "Apple Internal Keyboard / Trackpad"
- | | | | | "Transport" = "USB"
- | | | | | "Elements" = ({"ReportID"=0x0,"ElementCookie"=0x1,"CollectionType"=0x1,"Type"=0x201,"Elements"=({"ReportID"=0x0,"ElementCookie"=0x2,"CollectionType"=0x0,"Type"=0x201,"Elements"=({"UnitExponent"=0x0,"IsRelative"=No,"UsagePage"=0x9,"Max"=0x1,"IsArray"=No,"Min"=0x0,"Type"=0x2,"Size"=0x1,"Flags"=0x2,"ReportID"=0x2,"Usage"=0x1,"ReportCount"=0x1,"Unit"=0x0,"HasNullState"=No,"IsNonLinear"=No,"HasPreferredState"=Yes,"ReportSize"=0x1,"ScaledMin"=0x0,"IsWrapping"=No,"ScaledMax"=0x1,"ElementCookie"=0x3},{"UnitExponent"=0x0,"IsRela$
- | | | | | "HIDPointerAccelerationType" = "HIDTrackpadAcceleration"
- | | | | | "HIDDisallowRemappingOfPrimaryClick" = Yes
- | | | | | "Manufacturer" = "Apple Inc."
- | | | | | "IOKitDebug" = 0x0
- | | | | | "ProductID" = 0x252
- | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0x1,"DeviceUsage"=0x2},{"DeviceUsagePage"=0x1,"DeviceUsage"=0x1})
- | | | | | "IOPowerManagement" = {"TimeSinceDeviceIdle"=0x276ff,"MaxPowerState"=0x4,"ActivityTickles"=0x0,"IdleTimerPeriod"=0xbb8,"DevicePowerState"=0x0,"TimeSinceLastTickle"=0x29cf2,"DriverPowerState"=0x3,"CurrentPowerState"=0x3}
- | | | | | "idVendor" = 0x5ac
- | | | | | "ReportInterval" = 0x1f40
- | | | | | "InputReportElements" = ({"ReportID"=0x2,"ElementCookie"=0x8,"Size"=0x20,"ReportCount"=0x1,"Type"=0x1,"UsagePage"=0x0,"ReportSize"=0x20,"Usage"=0x0})
- | | | | | "idProduct" = 0x252
- | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleUSBTCButtons"
- | | | | | "MaxOutputReportSize" = 0x1
- | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"}
- | | | | | "IOProviderClass" = "IOUSBInterface"
- | | | | | "bInterfaceNumber" = 0x2
- | | | | | "LocationID" = 0xfffffffffa120000
- | | | | | "IOClass" = "AppleUSBTCButtons"
- | | | | | "PrimaryUsage" = 0x2
- | | | | | "HIDDefaultBehavior" = ""
- | | | | | "CountryCode" = 0x0
- | | | | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | | | | "IOProbeScore" = 0x15f90
- | | | | | }
- | | | | |
- | | | | +-o IOHIDInterface &lt;class IOHIDInterface, id 0x1000002df, registered, matched, active, busy 0 (104 ms), retain 6&gt;
- | | | | | {
- | | | | | "VendorID" = 0x5ac
- | | | | | "CountryCode" = 0x0
- | | | | | "Product" = "Apple Internal Keyboard / Trackpad"
- | | | | | "VersionNumber" = 0x118
- | | | | | "PrimaryUsage" = 0x2
- | | | | | "LocationID" = 0xfffffffffa120000
- | | | | | "BootProtocol" = 0x2
- | | | | | "ProductID" = 0x252
- | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0x1,"DeviceUsage"=0x2},{"DeviceUsagePage"=0x1,"DeviceUsage"=0x1})
- | | | | | "Transport" = "USB"
- | | | | | "ReportInterval" = 0x1f40
- | | | | | "HIDDefaultBehavior" = ""
- | | | | | "PrimaryUsagePage" = 0x1
- | | | | | "Manufacturer" = "Apple Inc."
- | | | | | }
- | | | | |
- | | | | +-o IOHIDEventDriver &lt;class IOHIDEventDriver, id 0x1000002e0, registered, matched, active, busy 0 (0 ms), retain 9&gt;
- | | | | | {
- | | | | | "IOClass" = "IOHIDEventDriver"
- | | | | | "StandardType" = 0x0
- | | | | | "Transport" = "USB"
- | | | | | "BootProtocol" = 0x2
- | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleUSBTCButtons"
- | | | | | "HIDDefaultBehavior" = ""
- | | | | | "Manufacturer" = "Apple Inc."
- | | | | | "IOProviderClass" = "IOHIDInterface"
- | | | | | "MTEventSource" = Yes
- | | | | | "Product" = "Apple Internal Keyboard / Trackpad"
- | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0x1,"DeviceUsage"=0x2},{"DeviceUsagePage"=0x1,"DeviceUsage"=0x1})
- | | | | | "IOProbeScore" = 0x1c20
- | | | | | "VendorIDSource" = 0x0
- | | | | | "HIDDisallowRemappingOfPrimaryClick" = Yes
- | | | | | "CountryCode" = 0x0
- | | | | | "VendorID" = 0x5ac
- | | | | | "VersionNumber" = 0x118
- | | | | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | | | | "CFBundleIdentifier" = "com.apple.iokit.IOHIDFamily"
- | | | | | "LocationID" = 0xfffffffffa120000
- | | | | | "HIDPointerAccelerationType" = "HIDTrackpadAcceleration"
- | | | | | "ProductID" = 0x252
- | | | | | "HIDPointerAccelerationTable" = &lt;000080005553422a00070000000000020004000000040000001000000010000000002000000d00008000000080000001400000018000000200000002e000000300000004e000000400000007400000050000000a000000060000000d40000008000000160000000ac00000230000000d0000002f0000000ec0000038c00000104000004100000011c0000048c00000005000000f0000800000008000000100000001400000018000000240000002000000038000000280000004e000000300000006600000040000000a000000050000000e4000000600000013400000080000001ec000000ac000002ec000000d0000003c8000$
- | | | | | }
- | | | | |
- | | | | +-o IOHIDPointing &lt;class IOHIDPointing, id 0x1000002e1, registered, matched, active, busy 0 (0 ms), retain 8&gt;
- | | | | | | {
- | | | | | | "HIDScrollAccelerationType" = "HIDMouseScrollAcceleration"
- | | | | | | "HIDVirtualDevice" = No
- | | | | | | "Transport" = "USB"
- | | | | | | "HIDDeviceEventID" = 0x12518e0
- | | | | | | "Product" = "Apple Internal Keyboard / Trackpad"
- | | | | | | "Manufacturer" = "Apple Inc."
- | | | | | | "HIDPointerButtonCount" = 0x3
- | | | | | | "HIDPointerAccelerationSettings" = (&lt;00000000&gt;,&lt;00002000&gt;,&lt;00005000&gt;,&lt;00008000&gt;,&lt;0000b000&gt;,&lt;0000e000&gt;,&lt;00010000&gt;)
- | | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0x1,"DeviceUsage"=0x2},{"DeviceUsagePage"=0x1,"DeviceUsage"=0x1})
- | | | | | | "HIDPointerResolution" = 0x1900000
- | | | | | | "VendorIDSource" = 0x0
- | | | | | | "HIDDisallowRemappingOfPrimaryClick" = Yes
- | | | | | | "HIDPointerConvertAbsolute" = &lt;00&gt;
- | | | | | | "CountryCode" = 0x0
- | | | | | | "VendorID" = 0x5ac
- | | | | | | "VersionNumber" = 0x118
- | | | | | | "HIDSubinterfaceID" = 0x0
- | | | | | | "HIDInterfaceID" = 0x0
- | | | | | | "HIDPointerContactToMove" = &lt;00&gt;
- | | | | | | "LocationID" = 0xfffffffffa120000
- | | | | | | "HIDKind" = 0x2
- | | | | | | "HIDPointerAccelerationType" = "HIDTrackpadAcceleration"
- | | | | | | "ProductID" = 0x252
- | | | | | | "HIDPointerAccelerationTable" = &lt;000080005553422a00070000000000020004000000040000001000000010000000002000000d00008000000080000001400000018000000200000002e000000300000004e000000400000007400000050000000a000000060000000d40000008000000160000000ac00000230000000d0000002f0000000ec0000038c00000104000004100000011c0000048c00000005000000f0000800000008000000100000001400000018000000240000002000000038000000280000004e000000300000006600000040000000a000000050000000e4000000600000013400000080000001ec000000ac000002ec000000d0000003c80$
- | | | | | | }
- | | | | | |
- | | | | | +-o IOHIDSystem &lt;class IOHIDSystem, id 0x100000263, registered, matched, active, busy 0 (0 ms), retain 19&gt;
- | | | | | | {
- | | | | | | "IOProbeScore" = 0x0
- | | | | | | "CFBundleIdentifier" = "com.apple.iokit.IOHIDFamily"
- | | | | | | "IOProviderClass" = "IOResources"
- | | | | | | "IOClass" = "IOHIDSystem"
- | | | | | | "IOMatchCategory" = "IOHID"
- | | | | | | "NXSystemInfo" = ({"serviceID"=0xffffff80124d4000,"HIDKind"=0x1,"HIDInterfaceID"=0x2,"built-in"=Yes,"HIDSubinterfaceID"=0x2b},{"serviceID"=0xffffff80124d1800,"HIDKind"=0x1,"HIDInterfaceID"=0x0,"built-in"=Yes,"HIDSubinterfaceID"=0x0},{"serviceID"=0xffffff8012629e00,"HIDKind"=0x2,"HIDInterfaceID"=0x0,"HIDSubinterfaceID"=0x0},{"serviceID"=0xffffff8014bc5600,"HIDKind"=0x2,"HIDInterfaceID"=0x0,"HIDSubinterfaceID"=0x0})
- | | | | | | "HIDParameters" = {"EjectDelay"=0x64,"TrackpadCornerSecondaryClick"=0x0,"HIDTrackpadAcceleration"=0xb000,"HIDMouseKeysOptionToggles"=0x0,"HIDWaitCursorFrameInterval"=0x1fc9f07,"Trackpad Jitter Milliseconds"=0xc0,"TrackpadThreeFingerDoubleTapGesture"=0x2,"DragLock"=0x0,"TrackpadScroll"=0x1,"TrackpadThreeFingerVertSwipeGesture"=0x2,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"PalmNoAction Permanent"=0x1,"Dragging"=0x0,"TrackpadMomentumScroll"=0x1,"TrackpadThreeFingerDrag"=0x0,"HIDDefaultParameters"=Yes,"TrackpadFiv$
- | | | | | | "HIDIdleTime" = 0x86416bd
- | | | | | | "IOResourceMatch" = "IOBSD"
- | | | | | | }
- | | | | | |
- | | | | | +-o IOHIDStackShotUserClient &lt;class IOHIDStackShotUserClient, id 0x1000003fc, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | | | {
- | | | | | | "IOUserClientCrossEndianCompatible" = Yes
- | | | | | | "IOUserClientCreator" = "pid 36, stackshot"
- | | | | | | }
- | | | | | |
- | | | | | +-o IOHIDUserClient &lt;class IOHIDUserClient, id 0x100000431, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | | | {
- | | | | | | "IOUserClientCrossEndianCompatible" = Yes
- | | | | | | "IOUserClientCreator" = "pid 180, WindowServer"
- | | | | | | }
- | | | | | |
- | | | | | +-o IOHIDParamUserClient &lt;class IOHIDParamUserClient, id 0x100000432, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | | | {
- | | | | | | "IOUserClientCrossEndianCompatible" = Yes
- | | | | | | "IOUserClientCreator" = "pid 20679, iCal Helper"
- | | | | | | }
- | | | | | |
- | | | | | +-o IOHIDEventSystemUserClient &lt;class IOHIDEventSystemUserClient, id 0x100000460, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | | | {
- | | | | | | "IOUserClientCrossEndianCompatible" = Yes
- | | | | | | "IOUserClientCreator" = "pid 50, hidd"
- | | | | | | }
- | | | | | |
- | | | | | +-o IOHIDEventSystemUserClient &lt;class IOHIDEventSystemUserClient, id 0x100000461, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | | {
- | | | | | "IOUserClientCrossEndianCompatible" = Yes
- | | | | | "IOUserClientCreator" = "pid 180, WindowServer"
- | | | | | }
- | | | | |
- | | | | +-o IOHIDSystem &lt;class IOHIDSystem, id 0x100000263, registered, matched, active, busy 0 (0 ms), retain 18&gt;
- | | | | | {
- | | | | | "IOProbeScore" = 0x0
- | | | | | "CFBundleIdentifier" = "com.apple.iokit.IOHIDFamily"
- | | | | | "IOProviderClass" = "IOResources"
- | | | | | "IOClass" = "IOHIDSystem"
- | | | | | "IOMatchCategory" = "IOHID"
- | | | | | "NXSystemInfo" = ({"serviceID"=0xffffff80124d4000,"HIDKind"=0x1,"HIDInterfaceID"=0x2,"built-in"=Yes,"HIDSubinterfaceID"=0x2b},{"serviceID"=0xffffff80124d1800,"HIDKind"=0x1,"HIDInterfaceID"=0x0,"built-in"=Yes,"HIDSubinterfaceID"=0x0},{"serviceID"=0xffffff8012629e00,"HIDKind"=0x2,"HIDInterfaceID"=0x0,"HIDSubinterfaceID"=0x0},{"serviceID"=0xffffff8014bc5600,"HIDKind"=0x2,"HIDInterfaceID"=0x0,"HIDSubinterfaceID"=0x0})
- | | | | | "HIDParameters" = {"EjectDelay"=0x64,"TrackpadCornerSecondaryClick"=0x0,"HIDTrackpadAcceleration"=0xb000,"HIDMouseKeysOptionToggles"=0x0,"HIDWaitCursorFrameInterval"=0x1fc9f07,"Trackpad Jitter Milliseconds"=0xc0,"TrackpadThreeFingerDoubleTapGesture"=0x2,"DragLock"=0x0,"TrackpadScroll"=0x1,"TrackpadThreeFingerVertSwipeGesture"=0x2,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"PalmNoAction Permanent"=0x1,"Dragging"=0x0,"TrackpadMomentumScroll"=0x1,"TrackpadThreeFingerDrag"=0x0,"HIDDefaultParameters"=Yes,"TrackpadFiveF$
- | | | | | "HIDIdleTime" = 0x86fba71
- | | | | | "IOResourceMatch" = "IOBSD"
- | | | | | }
- | | | | |
- | | | | +-o IOHIDStackShotUserClient &lt;class IOHIDStackShotUserClient, id 0x1000003fc, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | | {
- | | | | | "IOUserClientCrossEndianCompatible" = Yes
- | | | | | "IOUserClientCreator" = "pid 36, stackshot"
- | | | | | }
- | | | | |
- | | | | +-o IOHIDUserClient &lt;class IOHIDUserClient, id 0x100000431, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | | {
- | | | | | "IOUserClientCrossEndianCompatible" = Yes
- | | | | | "IOUserClientCreator" = "pid 180, WindowServer"
- | | | | | }
- | | | | |
- | | | | +-o IOHIDParamUserClient &lt;class IOHIDParamUserClient, id 0x100000432, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | | {
- | | | | | "IOUserClientCrossEndianCompatible" = Yes
- | | | | | "IOUserClientCreator" = "pid 20679, iCal Helper"
- | | | | | }
- | | | | |
- | | | | +-o IOHIDEventSystemUserClient &lt;class IOHIDEventSystemUserClient, id 0x100000460, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | | {
- | | | | | "IOUserClientCrossEndianCompatible" = Yes
- | | | | | "IOUserClientCreator" = "pid 50, hidd"
- | | | | | }
- | | | | |
- | | | | +-o IOHIDEventSystemUserClient &lt;class IOHIDEventSystemUserClient, id 0x100000461, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | {
- | | | | "IOUserClientCrossEndianCompatible" = Yes
- | | | | "IOUserClientCreator" = "pid 180, WindowServer"
- | | | | }
- | | | |
- | | | +-o BRCM2070 Hub@fa110000 &lt;class IOUSBHubDevice, id 0x1000002b7, registered, matched, active, busy 0 (380 ms), retain 10&gt;
- | | | | | {
- | | | | | "sessionID" = 0x3fe5da54
- | | | | | "AAPL,standard-port-current-in-sleep" = 0x1f4
- | | | | | "iManufacturer" = 0x1
- | | | | | "bNumConfigurations" = 0x1
- | | | | | "idProduct" = 0x4500
- | | | | | "bcdDevice" = 0x100
- | | | | | "Bus Power Available" = 0xfa
- | | | | | "bMaxPacketSize0" = 0x8
- | | | | | "USB Product Name" = "BRCM2070 Hub"
- | | | | | "iProduct" = 0x2
- | | | | | "iSerialNumber" = 0x0
- | | | | | "USB Address" = 0x5
- | | | | | "bDeviceClass" = 0x9
- | | | | | "locationID" = 0xfffffffffa110000
- | | | | | "bDeviceSubClass" = 0x0
- | | | | | "IOUserClientClass" = "IOUSBDeviceUserClientV2"
- | | | | | "Ports" = 0x3
- | | | | | "PortNum" = 0x1
- | | | | | "non-removable" = "yes"
- | | | | | "IOCFPlugInTypes" = {"9dc7b780-9ec0-11d4-a54f-000a27052861"="IOUSBFamily.kext/Contents/PlugIns/IOUSBLib.bundle"}
- | | | | | "bDeviceProtocol" = 0x0
- | | | | | "USB Vendor Name" = "Apple Inc."
- | | | | | "Device Speed" = 0x1
- | | | | | "idVendor" = 0xa5c
- | | | | | "Requested Power" = 0x2f
- | | | | | "Low Power Displayed" = No
- | | | | | }
- | | | | |
- | | | | +-o AppleUSBHub &lt;class AppleUSBHub, id 0x1000002b9, registered, matched, active, busy 0 (0 ms), retain 8&gt;
- | | | | | {
- | | | | | "IOProbeScore" = 0xc350
- | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleUSBHub"
- | | | | | "IOProviderClass" = "IOUSBDevice"
- | | | | | "IOClass" = "AppleUSBHub"
- | | | | | "bDeviceSubClass" = 0x0
- | | | | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | | | | "Errata" = 0x0
- | | | | | "Interrupt Pending" = Yes
- | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x4,"DevicePowerState"=0x4,"CurrentPowerState"=0x4,"MaxPowerState"=0x4,"DriverPowerState"=0x3}
- | | | | | "IOUserClientClass" = "AppleUSBHSHubUserClient"
- | | | | | "bDeviceClass" = 0x9
- | | | | | }
- | | | | |
- | | | | +-o IOUSBInterface@0 &lt;class IOUSBInterface, id 0x1000002bb, !registered, !matched, active, busy 0, retain 7&gt;
- | | | | {
- | | | | "bcdDevice" = 0x100
- | | | | "idProduct" = 0x4500
- | | | | "bConfigurationValue" = 0x1
- | | | | "bInterfaceSubClass" = 0x0
- | | | | "locationID" = 0xfffffffffa110000
- | | | | "idVendor" = 0xa5c
- | | | | "iInterface" = 0x0
- | | | | "bAlternateSetting" = 0x0
- | | | | "bInterfaceProtocol" = 0x0
- | | | | "bInterfaceNumber" = 0x0
- | | | | "bInterfaceClass" = 0x9
- | | | | "bNumEndpoints" = 0x1
- | | | | }
- | | | |
- | | | +-o Bluetooth USB Host Controller@fa113000 &lt;class IOUSBDevice, id 0x1000002f9, registered, matched, active, busy 0 (425 ms), retain 11&gt;
- | | | | {
- | | | | "sessionID" = 0x5e6bab6b
- | | | | "iManufacturer" = 0x1
- | | | | "bNumConfigurations" = 0x1
- | | | | "idProduct" = 0x821a
- | | | | "bcdDevice" = 0x41
- | | | | "Bus Power Available" = 0xfa
- | | | | "bMaxPacketSize0" = 0x40
- | | | | "USB Product Name" = "Bluetooth USB Host Controller"
- | | | | "iProduct" = 0x2
- | | | | "iSerialNumber" = 0x0
- | | | | "USB Address" = 0x8
- | | | | "bDeviceClass" = 0xff
- | | | | "locationID" = 0xfffffffffa113000
- | | | | "bDeviceSubClass" = 0x1
- | | | | "IOUserClientClass" = "IOUSBDeviceUserClientV2"
- | | | | "PortNum" = 0x3
- | | | | "non-removable" = "yes"
- | | | | "IOCFPlugInTypes" = {"9dc7b780-9ec0-11d4-a54f-000a27052861"="IOUSBFamily.kext/Contents/PlugIns/IOUSBLib.bundle"}
- | | | | "bDeviceProtocol" = 0x1
- | | | | "USB Vendor Name" = "Apple Inc."
- | | | | "Device Speed" = 0x1
- | | | | "idVendor" = 0x5ac
- | | | | "Requested Power" = 0x0
- | | | | "IOGeneralInterest" = "IOCommand is not serializable"
- | | | | "Low Power Displayed" = No
- | | | | }
- | | | |
- | | | +-o Broadcom2045FamilyUSBBluetoothHCIController &lt;class Broadcom2045FamilyUSBBluetoothHCIController, id 0x1000002ff, registered, matched, active, busy 0 (1 ms), retain 19&gt;
- | | | | | {
- | | | | | "IOClass" = "Broadcom2045FamilyUSBBluetoothHCIController"
- | | | | | "AllowedIncomingRFCOMMChannels" = ({"ChannelIsSecure"=0x0,"ChannelNumber"=0x2},{"ChannelIsSecure"=0x0,"ChannelNumber"=0x3},{"ChannelIsSecure"=0x0,"ChannelNumber"=0x4})
- | | | | | "WakeOnBTEnabled" = No
- | | | | | "ConfigState" = 0x0
- | | | | | "idProduct" = 0x821a
- | | | | | "HCISupportedFeatures" = &lt;8379ff9bfecfffff&gt;
- | | | | | "IOPowerManagement" = {"DriverPowerState"=0x2,"MaxPowerState"=0x2,"CurrentPowerState"=0x2}
- | | | | | "IOProviderClass" = "IOUSBDevice"
- | | | | | "Remote-Wake" = Yes
- | | | | | "HCIControllerPowerIsOn" = Yes
- | | | | | "IOProbeScore" = 0x15f90
- | | | | | "BluetoothDeviceAddressData" = &lt;68a86d508965&gt;
- | | | | | "FeatureFlags" = 0x7
- | | | | | "FirmwareVersion" = 0x29
- | | | | | "LMPVersion" = 0x4
- | | | | | "LMPSubversion" = 0x4229
- | | | | | "PowerOptions" = 0xf
- | | | | | "CFBundleIdentifier" = "com.apple.driver.BroadcomUSBBluetoothHCIController"
- | | | | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | | | | "FirmwareVersionString" = "v41 c821"
- | | | | | "idVendor" = 0x5ac
- | | | | | "HCIRevision" = 0x335
- | | | | | "HCIVersion" = 0x4
- | | | | | "LMPLoggingEnabled" = No
- | | | | | "IOGeneralInterest" = "IOCommand is not serializable"
- | | | | | "AllowedIncomingL2CAPChannels" = ({"PSM"=0x3},{"PSM"=0x1},{"PSM"=0x11},{"PSM"=0x13},{"PSM"=0x19},{"PSM"=0x17},{"PSM"=0xf})
- | | | | | "BluetoothDeviceAddress" = "68-A8-6D-50-89-65"
- | | | | | }
- | | | | |
- | | | | +-o IOBluetoothHCIUserClient &lt;class IOBluetoothHCIUserClient, id 0x1000003f8, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 21, blued"
- | | | | | }
- | | | | |
- | | | | +-o IOBluetoothHCIUserClient &lt;class IOBluetoothHCIUserClient, id 0x1000004f4, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 239, SystemUIServer"
- | | | | | }
- | | | | |
- | | | | +-o IOBluetoothHCIUserClient &lt;class IOBluetoothHCIUserClient, id 0x1000004fd, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 233, UserEventAgent"
- | | | | | }
- | | | | |
- | | | | +-o IOBluetoothHCIUserClient &lt;class IOBluetoothHCIUserClient, id 0x100000e25, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 7019, vmware-vmx"
- | | | | | }
- | | | | |
- | | | | +-o IOBluetoothHCIUserClient &lt;class IOBluetoothHCIUserClient, id 0x100000fd3, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | {
- | | | | "IOUserClientCreator" = "pid 21079, system_profiler"
- | | | | }
- | | | |
- | | | +-o IOUSBInterface@0 &lt;class IOUSBInterface, id 0x100000300, !registered, !matched, active, busy 0, retain 7&gt;
- | | | | {
- | | | | "bcdDevice" = 0x41
- | | | | "idProduct" = 0x821a
- | | | | "bConfigurationValue" = 0x1
- | | | | "bInterfaceSubClass" = 0x1
- | | | | "locationID" = 0xfffffffffa113000
- | | | | "idVendor" = 0x5ac
- | | | | "iInterface" = 0x0
- | | | | "bAlternateSetting" = 0x0
- | | | | "bInterfaceProtocol" = 0x1
- | | | | "bInterfaceNumber" = 0x0
- | | | | "bInterfaceClass" = 0xff
- | | | | "bNumEndpoints" = 0x3
- | | | | }
- | | | |
- | | | +-o IOUSBInterface@1 &lt;class IOUSBInterface, id 0x100000301, !registered, !matched, active, busy 0, retain 7&gt;
- | | | | {
- | | | | "bcdDevice" = 0x41
- | | | | "idProduct" = 0x821a
- | | | | "bConfigurationValue" = 0x1
- | | | | "bInterfaceSubClass" = 0x1
- | | | | "locationID" = 0xfffffffffa113000
- | | | | "idVendor" = 0x5ac
- | | | | "iInterface" = 0x0
- | | | | "bAlternateSetting" = 0x0
- | | | | "bInterfaceProtocol" = 0x1
- | | | | "bInterfaceNumber" = 0x1
- | | | | "bInterfaceClass" = 0xe0
- | | | | "bNumEndpoints" = 0x2
- | | | | }
- | | | |
- | | | +-o IOUSBInterface@2 &lt;class IOUSBInterface, id 0x100000302, !registered, !matched, active, busy 0, retain 6&gt;
- | | | | {
- | | | | "bcdDevice" = 0x41
- | | | | "idProduct" = 0x821a
- | | | | "bConfigurationValue" = 0x1
- | | | | "bInterfaceSubClass" = 0xff
- | | | | "locationID" = 0xfffffffffa113000
- | | | | "idVendor" = 0x5ac
- | | | | "iInterface" = 0x0
- | | | | "bAlternateSetting" = 0x0
- | | | | "bInterfaceProtocol" = 0xff
- | | | | "bInterfaceNumber" = 0x2
- | | | | "bInterfaceClass" = 0xff
- | | | | "bNumEndpoints" = 0x2
- | | | | }
- | | | |
- | | | +-o IOUSBInterface@3 &lt;class IOUSBInterface, id 0x100000303, !registered, !matched, active, busy 0, retain 6&gt;
- | | | {
- | | | "bcdDevice" = 0x41
- | | | "idProduct" = 0x821a
- | | | "bConfigurationValue" = 0x1
- | | | "bInterfaceSubClass" = 0x1
- | | | "locationID" = 0xfffffffffa113000
- | | | "idVendor" = 0x5ac
- | | | "iInterface" = 0x0
- | | | "bAlternateSetting" = 0x0
- | | | "bInterfaceProtocol" = 0x1
- | | | "bInterfaceNumber" = 0x3
- | | | "bInterfaceClass" = 0xfe
- | | | "bNumEndpoints" = 0x0
- | | | }
- | | |
- | | +-o HDEF@1B &lt;class IOPCIDevice, id 0x1000001b9, registered, matched, active, busy 0 (1696 ms), retain 11&gt;
- | | | | {
- | | | | "assigned-addresses" = &lt;10d8008200000000000090b00000000000400000&gt;
- | | | | "platformFamily" = &lt;00&gt;
- | | | | "IOInterruptSpecifiers" = (&lt;1600000007000000&gt;,&lt;0200000000000100&gt;)
- | | | | "class-code" = &lt;00030400&gt;
- | | | | "IODeviceMemory" = (({"address"=0xb0900000,"length"=0x4000}))
- | | | | "PinConfigurations" = &lt;50402b00410110904001109020308b001001a09030e0cb0060e04b007090ab01&gt;
- | | | | "subsystem-vendor-id" = &lt;86800000&gt;
- | | | | "MaximumBootBeepVolume" = &lt;5b&gt;
- | | | | "acpi-device" = "IOACPIPlatformDevice is not serializable"
- | | | | "IOPowerManagement" = {"MaxPowerState"=0x2,"ChildrenPowerState"=0x2,"CurrentPowerState"=0x2}
- | | | | "built-in" = &lt;00&gt;
- | | | | "IOPCIMSIMode" = Yes
- | | | | "IOInterruptControllers" = ("io-apic-0","IOPCIMessagedInterruptController")
- | | | | "name" = "pci8086,1c20"
- | | | | "vendor-id" = &lt;86800000&gt;
- | | | | "device-id" = &lt;201c0000&gt;
- | | | | "acpi-pmcap-offset" = 0x50
- | | | | "layout-id" = &lt;1d000000&gt;
- | | | | "IOPCIExpressASPMDefault" = 0x0
- | | | | "compatible" = &lt;706369383038362c3732373000706369383038362c3163323000706369636c6173732c30343033303000&gt;
- | | | | "IOPCIResourced" = Yes
- | | | | "IOPCIExpressLinkCapabilities" = 0x0
- | | | | "acpi-path" = "IOACPIPlane:/_SB/PCI0@0/HDEF@1b0000"
- | | | | "subsystem-id" = &lt;70720000&gt;
- | | | | "revision-id" = &lt;05000000&gt;
- | | | | "IOPCIExpressLinkStatus" = 0x0
- | | | | "pcidebug" = "0:27:0"
- | | | | "IOName" = "pci8086,1c20"
- | | | | "reg" = &lt;00d800000000000000000000000000000000000010d8000200000000000000000000000000400000&gt;
- | | | | }
- | | | |
- | | | +-o AppleHDAController@1B &lt;class AppleHDAController, id 0x100000371, registered, matched, active, busy 0 (1620 ms), retain 7&gt;
- | | | | {
- | | | | "IOClass" = "AppleHDAController"
- | | | | "CFBundleIdentifier" = "com.apple.driver.AppleHDAController"
- | | | | "IOProviderClass" = "IOPCIDevice"
- | | | | "DPAudioDeviceExclusion" = ({"ManufacturerID"=0x610,"ProductID"=0x2792})
- | | | | "IOPCIClassMatch" = "0x04020000&amp;0xFFFE0000"
- | | | | "DPAlwaysDisplayRouting" = (0x3,0x21,0x23)
- | | | | "IOPMUnattendedWakePowerState" = 0x0
- | | | | "IOProbeScore" = 0x1
- | | | | "CodecAddressFilterArray" = ({"CodecAddressMask"=&lt;01000000&gt;,"PCIVendorDeviceID"=0x10de0ac0,"LayoutID"=0x4008},{"CodecAddressMask"=&lt;01000000&gt;,"PCIVendorDeviceID"=0x10de0ac0,"LayoutID"=0x0},{"CodecAddressMask"=&lt;09000000&gt;,"PCIVendorDeviceID"=0x10de0ac0,"LayoutID"=0x41},{"CodecAddressMask"=&lt;01000000&gt;,"PCIVendorDeviceID"=0x10de0ac0,"LayoutID"=0x49})
- | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"DevicePowerState"=0x2,"CurrentPowerState"=0x2,"MaxPowerState"=0x2}
- | | | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | | | "RequireMaxBusStall" = ({"Layouts"=(),"MaxBusStall"=0x3a98})
- | | | | "HDAControllerIndex" = 0x0
- | | | | "CodecList" = ({"RevisionID"=0x100302,"VendorProductID"=0x10134206})
- | | | | "HwFactoryPrefixTranslation" = ({"LayoutID"=0x4e,"StandInDID"=0xaa30,"SourceDID"=0xaa40,"VID"=0x1002},{"LayoutID"=0x4e,"StandInDID"=0xaa30,"SourceDID"=0xaa38,"VID"=0x1002},{"LayoutID"=0x4f,"StandInDID"=0xaa30,"SourceDID"=0xaa40,"VID"=0x1002},{"LayoutID"=0x4f,"StandInDID"=0xaa30,"SourceDID"=0xaa38,"VID"=0x1002})
- | | | | "IOHDAClockStop" = No
- | | | | }
- | | | |
- | | | +-o IOHDACodecDevice@1B,0 &lt;class IOHDACodecDevice, id 0x10000037c, registered, matched, active, busy 0 (1620 ms), retain 6&gt;
- | | | | {
- | | | | "IOHDACodecVendorID" = 0x10134206
- | | | | "IOHDACodecRevisionID" = 0x100302
- | | | | "IOHDACodecAddress" = 0x0
- | | | | }
- | | | |
- | | | +-o IOHDACodecDriver &lt;class IOHDACodecDriver, id 0x1000003b4, !registered, !matched, active, busy 0 (1336 ms), retain 5&gt;
- | | | | {
- | | | | "IOClass" = "IOHDACodecDriver"
- | | | | "IOProviderClass" = "IOHDACodecDevice"
- | | | | "IOProbeScore" = 0x0
- | | | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | | | "CFBundleIdentifier" = "com.apple.iokit.IOHDAFamily"
- | | | | }
- | | | |
- | | | +-o IOHDACodecFunction@1B,0,1 &lt;class IOHDACodecFunction, id 0x1000003b5, registered, matched, active, busy 0 (1336 ms), retain 6&gt;
- | | | | {
- | | | | "IOHDACodecFunctionGroupType" = 0x1
- | | | | "IOHDACodecFunctionSubsystemID" = 0x106b1d00
- | | | | }
- | | | |
- | | | +-o AppleHDACodecGeneric &lt;class AppleHDACodecGeneric, id 0x1000003c6, registered, matched, active, busy 0 (1292 ms), retain 5&gt;
- | | | | {
- | | | | "IOClass" = "AppleHDACodecGeneric"
- | | | | "IOProviderClass" = "IOHDACodecFunction"
- | | | | "IOProbeScore" = 0x1
- | | | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | | | "IOHDACodecFunctionGroupType" = 0x1
- | | | | "CFBundleIdentifier" = "com.apple.driver.AppleHDA"
- | | | | }
- | | | |
- | | | +-o AppleHDADriver &lt;class AppleHDADriver, id 0x1000003e4, registered, matched, active, busy 0 (1277 ms), retain 8&gt;
- | | | | {
- | | | | "IOClass" = "AppleHDADriver"
- | | | | "IOPMUnattendedWakePowerState" = 0x0
- | | | | "IOAudioDeviceShortName" = "DeviceShortName2"
- | | | | "IOAudioDeviceModelID" = "AppleHDA:29"
- | | | | "IOAudioDeviceManufacturerName" = "ManufacturerName"
- | | | | "OutputSampleLatency" = 0x0
- | | | | "IOPowerManagement" = {"DriverPowerState"=0x1,"MaxPowerState"=0x1,"CurrentPowerState"=0x1}
- | | | | "IOProviderClass" = "AppleHDACodec"
- | | | | "InputSampleLatency" = 0x0
- | | | | "IOAudioDeviceTransportType" = 0x626c746e
- | | | | "IOProbeScore" = 0x0
- | | | | "SystemSpecificSampleOffsetPad" = ({"SampleOffsetPad"=0x104,"LayoutID"=0x8})
- | | | | "IOAudioPowerState" = 0x2
- | | | | "IOAudioDeviceLocalizedBundle" = "AppleHDA.kext"
- | | | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | | | "CFBundleIdentifier" = "com.apple.driver.AppleHDA"
- | | | | "MultiDisplayPorts" = (0x20,0x23,0x42)
- | | | | "PeriodicTasks" = Yes
- | | | | "PowerProfile" = {"PowerIdentity"="Built-in Audio","MaximumPowerLimit"=0x36718,"IdlePowerLevel"=0x0,"CurrentPowerLevel"=0x0}
- | | | | "IOAudioDeviceCanBeDefaults" = 0x7
- | | | | "SampleOffsetPad" = 0x0
- | | | | "IOAudioDeviceName" = "DeviceName2"
- | | | | }
- | | | |
- | | | +-o AppleHDAEngineInput@1B,0,1,0 &lt;class AppleHDAEngineInput, id 0x1000003fd, registered, matched, active, busy 0 (344 ms), retain 33&gt;
- | | | | | {
- | | | | | "IOAudioEngineGlobalUniqueIDLegacy" = "AppleHDAEngineInput:1"
- | | | | | "IOAudioEngineCoreAudioPlugIn" = "AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle"
- | | | | | "IOAudioEngineDeviceDescription" = {"driver digital input gain"=0x9,"PGA Setting"=0x2,"post-processing input gain"=0x7,"PGA Pad Value"=0xa}
- | | | | | "IOGeneralInterest" = "IOCommand is not serializable"
- | | | | | "IOAudioEngineDescription" = "DevShortNameIMic"
- | | | | | "IOAudioEngineState" = 0x0
- | | | | | "IOAudioEngineInputSampleLatency" = 0xa
- | | | | | "IOAudioEngineClientDescription" = {"kind"=0x0}
- | | | | | "IOAudioDeviceCanBeDefaults" = 0x1
- | | | | | "IOAudioEngineNumSampleFramesPerBuffer" = 0x1800
- | | | | | "IOAudioEngineGlobalUniqueID" = "AppleHDAEngineInput:1B,0,1,0:1"
- | | | | | "IOAudioEngineClockDomain" = 0x13397000
- | | | | | "IOAudioSampleRate" = {"IOAudioSampleRateWholeNumber"=0xac44,"IOAudioSampleRateFraction"=0x0}
- | | | | | "IOAudioEngineFlavor" = 0x1
- | | | | | "IOAudioEngineSampleOffset" = 0xe
- | | | | | "IOAudioEngineOutputSampleLatency" = 0xa
- | | | | | "IOAudioEngineNumActiveUserClients" = 0x0
- | | | | | }
- | | | | |
- | | | | +-o AppleHDAStream &lt;class AppleHDAStream, id 0x1000003fe, registered, matched, active, busy 0 (2 ms), retain 7&gt;
- | | | | | {
- | | | | | "IOAudioStreamAvailableFormats" = ({"IOAudioStreamMaximumSampleRate"={"IOAudioSampleRateWholeNumber"=0x1f40,"IOAudioSampleRateFraction"=0x0},"IOAudioStreamAlignment"=0x0,"IOAudioStreamNumericRepresentation"=0x73696e74,"IOAudioStreamIsMixable"=0x1,"IOAudioStreamFormatFlags"=0x0,"IOAudioStreamByteOrder"=0x1,"IOAudioStreamBitDepth"=0x10,"IOAudioStreamSampleFormat"=0x6c70636d,"IOAudioStreamDriverTag"=0x0,"IOAudioStreamNumChannels"=0x2,"IOAudioStreamBytesPerPacket"=0x4,"IOAudioStreamBitWidth"=0x10,"IOAudioStreamFrame$
- | | | | | "IOAudioStreamDirection" = 0x1
- | | | | | "IOAudioStreamID" = 0x0
- | | | | | "IOAudioStreamStartingChannelID" = 0x1
- | | | | | "IOAudioStreamTerminalType" = 0x201
- | | | | | "IOAudioStreamFormat" = {"IOAudioStreamAlignment"=0x0,"IOAudioStreamNumericRepresentation"=0x73696e74,"IOAudioStreamIsMixable"=0x1,"IOAudioStreamFormatFlags"=0x0,"IOAudioStreamByteOrder"=0x1,"IOAudioStreamBitDepth"=0x18,"IOAudioStreamSampleFormat"=0x6c70636d,"IOAudioStreamDriverTag"=0x0,"IOAudioStreamNumChannels"=0x2,"IOAudioStreamBytesPerPacket"=0x8,"IOAudioStreamBitWidth"=0x20,"IOAudioStreamFramesPerPacket"=0x1}
- | | | | | "IOAudioStreamAvailable" = 0x1
- | | | | | "IOAudioStreamNumClients" = 0x0
- | | | | | "IOAudioStreamStartingChannelNumber" = 0x1
- | | | | | }
- | | | | |
- | | | | +-o IOAudioSelectorControl &lt;class IOAudioSelectorControl, id 0x1000003ff, !registered, !matched, active, busy 0, retain 8&gt;
- | | | | | | {
- | | | | | | "IOAudioControlType" = 0x736c6374
- | | | | | | "IOAudioSelectorControlAvailableSelections" = ({"IOAudioSelectorControlSelectionValue"=0x696d6963,"IOAudioSelectorControlSelectionDescriptionKey"="InternalMic"})
- | | | | | | "IOAudioControlChannelNumber" = 0x0
- | | | | | | "IOAudioControlChannelID" = 0x0
- | | | | | | "IOAudioControlValue" = 0x696d6963
- | | | | | | "IOAudioControlUsage" = 0x696e7074
- | | | | | | "IOAudioControlID" = 0x0
- | | | | | | "IOAudioControlSubType" = 0x696e7074
- | | | | | | }
- | | | | | |
- | | | | | +-o IOAudioControlUserClient &lt;class IOAudioControlUserClient, id 0x100000495, !registered, !matched, active, busy 0, retain 6&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 212, coreaudiod"
- | | | | | }
- | | | | |
- | | | | +-o IOAudioLevelControl &lt;class IOAudioLevelControl, id 0x100000400, !registered, !matched, active, busy 0, retain 8&gt;
- | | | | | | {
- | | | | | | "IOAudioLevelControlMinValue" = 0x0
- | | | | | | "IOAudioLevelControlMinDB" = 0xfffffffffff40000
- | | | | | | "IOAudioControlChannelNumber" = 0x2
- | | | | | | "IOAudioLevelControlMaxValue" = 0x18
- | | | | | | "IOAudioControlValue" = 0x14
- | | | | | | "IOAudioControlID" = 0x2
- | | | | | | "IOAudioLevelControlMaxDB" = 0xc0000
- | | | | | | "IOAudioLevelControlUseLinearScale" = 0x0
- | | | | | | "IOAudioControlType" = 0x6c65766c
- | | | | | | "IOAudioControlChannelID" = 0x2
- | | | | | | "IOAudioControlUsage" = 0x696e7074
- | | | | | | "IOAudioControlChannelName" = "Right"
- | | | | | | "IOAudioControlSubType" = 0x766c6d65
- | | | | | | }
- | | | | | |
- | | | | | +-o IOAudioControlUserClient &lt;class IOAudioControlUserClient, id 0x100000496, !registered, !matched, active, busy 0, retain 6&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 212, coreaudiod"
- | | | | | }
- | | | | |
- | | | | +-o IOAudioLevelControl &lt;class IOAudioLevelControl, id 0x100000401, !registered, !matched, active, busy 0, retain 8&gt;
- | | | | | | {
- | | | | | | "IOAudioLevelControlMinValue" = 0x0
- | | | | | | "IOAudioLevelControlMinDB" = 0xfffffffffff40000
- | | | | | | "IOAudioControlChannelNumber" = 0x1
- | | | | | | "IOAudioLevelControlMaxValue" = 0x18
- | | | | | | "IOAudioControlValue" = 0x14
- | | | | | | "IOAudioControlID" = 0x0
- | | | | | | "IOAudioLevelControlMaxDB" = 0xc0000
- | | | | | | "IOAudioLevelControlUseLinearScale" = 0x0
- | | | | | | "IOAudioControlType" = 0x6c65766c
- | | | | | | "IOAudioControlChannelID" = 0x1
- | | | | | | "IOAudioControlUsage" = 0x696e7074
- | | | | | | "IOAudioControlChannelName" = "Left"
- | | | | | | "IOAudioControlSubType" = 0x766c6d65
- | | | | | | }
- | | | | | |
- | | | | | +-o IOAudioControlUserClient &lt;class IOAudioControlUserClient, id 0x100000497, !registered, !matched, active, busy 0, retain 6&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 212, coreaudiod"
- | | | | | }
- | | | | |
- | | | | +-o IOAudioToggleControl &lt;class IOAudioToggleControl, id 0x100000402, !registered, !matched, active, busy 0, retain 8&gt;
- | | | | | | {
- | | | | | | "IOAudioControlType" = 0x746f676c
- | | | | | | "IOAudioControlChannelNumber" = 0x2
- | | | | | | "IOAudioControlChannelID" = 0x2
- | | | | | | "IOAudioControlUsage" = 0x696e7074
- | | | | | | "IOAudioControlChannelName" = "Right"
- | | | | | | "IOAudioControlValue" = 0x1
- | | | | | | "IOAudioControlID" = 0x3
- | | | | | | "IOAudioControlSubType" = 0x6d757465
- | | | | | | }
- | | | | | |
- | | | | | +-o IOAudioControlUserClient &lt;class IOAudioControlUserClient, id 0x100000498, !registered, !matched, active, busy 0, retain 6&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 212, coreaudiod"
- | | | | | }
- | | | | |
- | | | | +-o IOAudioToggleControl &lt;class IOAudioToggleControl, id 0x100000403, !registered, !matched, active, busy 0, retain 8&gt;
- | | | | | | {
- | | | | | | "IOAudioControlType" = 0x746f676c
- | | | | | | "IOAudioControlChannelNumber" = 0x1
- | | | | | | "IOAudioControlChannelID" = 0x1
- | | | | | | "IOAudioControlUsage" = 0x696e7074
- | | | | | | "IOAudioControlChannelName" = "Left"
- | | | | | | "IOAudioControlValue" = 0x1
- | | | | | | "IOAudioControlID" = 0x1
- | | | | | | "IOAudioControlSubType" = 0x6d757465
- | | | | | | }
- | | | | | |
- | | | | | +-o IOAudioControlUserClient &lt;class IOAudioControlUserClient, id 0x100000499, !registered, !matched, active, busy 0, retain 6&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 212, coreaudiod"
- | | | | | }
- | | | | |
- | | | | +-o IOAudioToggleControl &lt;class IOAudioToggleControl, id 0x100000404, !registered, !matched, active, busy 0, retain 8&gt;
- | | | | | | {
- | | | | | | "IOAudioControlType" = 0x746f676c
- | | | | | | "IOAudioControlChannelNumber" = 0x0
- | | | | | | "IOAudioControlChannelID" = 0x0
- | | | | | | "IOAudioControlUsage" = 0x696e7074
- | | | | | | "IOAudioControlChannelName" = "All Channels"
- | | | | | | "IOAudioControlValue" = 0x1
- | | | | | | "IOAudioControlID" = 0x4
- | | | | | | "IOAudioControlSubType" = 0x6d757465
- | | | | | | }
- | | | | | |
- | | | | | +-o IOAudioControlUserClient &lt;class IOAudioControlUserClient, id 0x10000049a, !registered, !matched, active, busy 0, retain 6&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 212, coreaudiod"
- | | | | | }
- | | | | |
- | | | | +-o IOAudioToggleControl &lt;class IOAudioToggleControl, id 0x100000405, !registered, !matched, active, busy 0, retain 8&gt;
- | | | | | | {
- | | | | | | "IOAudioControlType" = 0x746f676c
- | | | | | | "IOAudioControlChannelNumber" = 0x0
- | | | | | | "IOAudioControlChannelID" = 0x0
- | | | | | | "IOAudioControlUsage" = 0x696e7074
- | | | | | | "IOAudioControlChannelName" = "All Channels"
- | | | | | | "IOAudioControlValue" = 0x0
- | | | | | | "IOAudioControlID" = 0x0
- | | | | | | "IOAudioControlSubType" = 0x6a61636b
- | | | | | | "IOAudioControlValueIsReadOnly" = Yes
- | | | | | | }
- | | | | | |
- | | | | | +-o IOAudioControlUserClient &lt;class IOAudioControlUserClient, id 0x10000049b, !registered, !matched, active, busy 0, retain 6&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 212, coreaudiod"
- | | | | | }
- | | | | |
- | | | | +-o IOAudioEngineUserClient &lt;class IOAudioEngineUserClient, id 0x100000493, !registered, !matched, active, busy 0, retain 6&gt;
- | | | | | {
- | | | | | "IOAudioEngineUserClientActive" = 0x0
- | | | | | "IOUserClientCreator" = "pid 212, coreaudiod"
- | | | | | }
- | | | | |
- | | | | +-o IOAudioEngineUserClient &lt;class IOAudioEngineUserClient, id 0x1000004a2, !registered, !matched, active, busy 0, retain 6&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 212, coreaudiod"
- | | | | | }
- | | | | |
- | | | | +-o IOAudioEngineUserClient &lt;class IOAudioEngineUserClient, id 0x1000004e0, !registered, !matched, active, busy 0, retain 6&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 46, loginwindow"
- | | | | | }
- | | | | |
- | | | | +-o IOAudioEngineUserClient &lt;class IOAudioEngineUserClient, id 0x1000004f8, !registered, !matched, active, busy 0, retain 6&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 239, SystemUIServer"
- | | | | | }
- | | | | |
- | | | | +-o IOAudioEngineUserClient &lt;class IOAudioEngineUserClient, id 0x100000501, !registered, !matched, active, busy 0, retain 6&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 233, UserEventAgent"
- | | | | | }
- | | | | |
- | | | | +-o IOAudioEngineUserClient &lt;class IOAudioEngineUserClient, id 0x100000514, !registered, !matched, active, busy 0, retain 6&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 269, HipChat"
- | | | | | }
- | | | | |
- | | | | +-o IOAudioEngineUserClient &lt;class IOAudioEngineUserClient, id 0x10000051c, !registered, !matched, active, busy 0, retain 6&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 280, Shush"
- | | | | | }
- | | | | |
- | | | | +-o IOAudioEngineUserClient &lt;class IOAudioEngineUserClient, id 0x100000532, !registered, !matched, active, busy 0, retain 6&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 302, Adium"
- | | | | | }
- | | | | |
- | | | | +-o IOAudioEngineUserClient &lt;class IOAudioEngineUserClient, id 0x100000593, !registered, !matched, active, busy 0, retain 6&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 692, Rdio"
- | | | | | }
- | | | | |
- | | | | +-o IOAudioEngineUserClient &lt;class IOAudioEngineUserClient, id 0x100000dbf, !registered, !matched, active, busy 0, retain 6&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 6819, Google Chrome"
- | | | | | }
- | | | | |
- | | | | +-o IOAudioEngineUserClient &lt;class IOAudioEngineUserClient, id 0x100000de7, !registered, !matched, active, busy 0, retain 6&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 6878, VMware Fusion"
- | | | | | }
- | | | | |
- | | | | +-o IOAudioToggleControl &lt;class IOAudioToggleControl, id 0x100000f5e, !registered, !matched, active, busy 0, retain 22&gt;
- | | | | | {
- | | | | | "IOAudioControlType" = 0x746f676c
- | | | | | "IOAudioControlChannelNumber" = 0x0
- | | | | | "IOAudioControlChannelID" = 0x0
- | | | | | "IOAudioControlUsage" = 0x696e7074
- | | | | | "IOAudioControlChannelName" = "All Channels"
- | | | | | "IOAudioControlValue" = 0x1
- | | | | | "IOAudioControlID" = 0x696d6963
- | | | | | "IOAudioControlSubType" = 0x646f6e7a
- | | | | | }
- | | | | |
- | | | | +-o IOAudioControlUserClient &lt;class IOAudioControlUserClient, id 0x100000f5f, !registered, !matched, active, busy 0, retain 6&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 280, Shush"
- | | | | | }
- | | | | |
- | | | | +-o IOAudioControlUserClient &lt;class IOAudioControlUserClient, id 0x100000f60, !registered, !matched, active, busy 0, retain 6&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 239, SystemUIServer"
- | | | | | }
- | | | | |
- | | | | +-o IOAudioControlUserClient &lt;class IOAudioControlUserClient, id 0x100000f61, !registered, !matched, active, busy 0, retain 6&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 6878, VMware Fusion"
- | | | | | }
- | | | | |
- | | | | +-o IOAudioControlUserClient &lt;class IOAudioControlUserClient, id 0x100000f62, !registered, !matched, active, busy 0, retain 6&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 233, UserEventAgent"
- | | | | | }
- | | | | |
- | | | | +-o IOAudioControlUserClient &lt;class IOAudioControlUserClient, id 0x100000f63, !registered, !matched, active, busy 0, retain 6&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 302, Adium"
- | | | | | }
- | | | | |
- | | | | +-o IOAudioControlUserClient &lt;class IOAudioControlUserClient, id 0x100000f64, !registered, !matched, active, busy 0, retain 6&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 212, coreaudiod"
- | | | | | }
- | | | | |
- | | | | +-o IOAudioControlUserClient &lt;class IOAudioControlUserClient, id 0x100000f65, !registered, !matched, active, busy 0, retain 6&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 212, coreaudiod"
- | | | | | }
- | | | | |
- | | | | +-o IOAudioControlUserClient &lt;class IOAudioControlUserClient, id 0x100000f66, !registered, !matched, active, busy 0, retain 6&gt;
- | | | | {
- | | | | "IOUserClientCreator" = "pid 46, loginwindow"
- | | | | }
- | | | |
- | | | +-o AppleHDAEngineInput@1B,0,1,1 &lt;class AppleHDAEngineInput, id 0x100000406, registered, matched, active, busy 0 (7 ms), retain 34&gt;
- | | | | | {
- | | | | | "IOAudioEngineGlobalUniqueIDLegacy" = "AppleHDAEngineInput:2"
- | | | | | "IOAudioEngineCoreAudioPlugIn" = "AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle"
- | | | | | "IOGeneralInterest" = "IOCommand is not serializable"
- | | | | | "IOAudioEngineDescription" = "DevShortNameIn"
- | | | | | "IOAudioEngineState" = 0x0
- | | | | | "IOAudioEngineInputSampleLatency" = 0xa
- | | | | | "IOAudioEngineClientDescription" = {"kind"=0x0}
- | | | | | "IOAudioDeviceCanBeDefaults" = 0x1
- | | | | | "IOAudioEngineNumSampleFramesPerBuffer" = 0x1800
- | | | | | "IOAudioEngineGlobalUniqueID" = "AppleHDAEngineInput:1B,0,1,1:2"
- | | | | | "IOAudioEngineClockDomain" = 0x13397000
- | | | | | "IOAudioSampleRate" = {"IOAudioSampleRateWholeNumber"=0xac44,"IOAudioSampleRateFraction"=0x0}
- | | | | | "IOAudioEngineFlavor" = 0x1
- | | | | | "IOAudioEngineSampleOffset" = 0xe
- | | | | | "IOAudioEngineOutputSampleLatency" = 0xa
- | | | | | }
- | | | | |
- | | | | +-o AppleHDAStream &lt;class AppleHDAStream, id 0x100000408, registered, matched, active, busy 0 (3 ms), retain 7&gt;
- | | | | | {
- | | | | | "IOAudioStreamAvailableFormats" = ({"IOAudioStreamMaximumSampleRate"={"IOAudioSampleRateWholeNumber"=0x1f40,"IOAudioSampleRateFraction"=0x0},"IOAudioStreamAlignment"=0x0,"IOAudioStreamNumericRepresentation"=0x73696e74,"IOAudioStreamIsMixable"=0x1,"IOAudioStreamFormatFlags"=0x0,"IOAudioStreamByteOrder"=0x1,"IOAudioStreamBitDepth"=0x10,"IOAudioStreamSampleFormat"=0x6c70636d,"IOAudioStreamDriverTag"=0x0,"IOAudioStreamNumChannels"=0x2,"IOAudioStreamBytesPerPacket"=0x4,"IOAudioStreamBitWidth"=0x10,"IOAudioStreamFrame$
- | | | | | "IOAudioStreamDirection" = 0x1
- | | | | | "IOAudioStreamID" = 0x0
- | | | | | "IOAudioStreamStartingChannelID" = 0x1
- | | | | | "IOAudioStreamTerminalType" = 0x603
- | | | | | "IOAudioStreamFormat" = {"IOAudioStreamAlignment"=0x0,"IOAudioStreamNumericRepresentation"=0x73696e74,"IOAudioStreamIsMixable"=0x1,"IOAudioStreamFormatFlags"=0x0,"IOAudioStreamByteOrder"=0x1,"IOAudioStreamBitDepth"=0x18,"IOAudioStreamSampleFormat"=0x6c70636d,"IOAudioStreamDriverTag"=0x0,"IOAudioStreamNumChannels"=0x2,"IOAudioStreamBytesPerPacket"=0x8,"IOAudioStreamBitWidth"=0x20,"IOAudioStreamFramesPerPacket"=0x1}
- | | | | | "IOAudioStreamAvailable" = 0x1
- | | | | | "IOAudioStreamNumClients" = 0x0
- | | | | | "IOAudioStreamStartingChannelNumber" = 0x1
- | | | | | }
- | | | | |
- | | | | +-o IOAudioSelectorControl &lt;class IOAudioSelectorControl, id 0x100000409, !registered, !matched, active, busy 0, retain 8&gt;
- | | | | | | {
- | | | | | | "IOAudioControlType" = 0x736c6374
- | | | | | | "IOAudioSelectorControlAvailableSelections" = ({"IOAudioSelectorControlSelectionValue"=0x6c696e65,"IOAudioSelectorControlSelectionDescriptionKey"="LineIn"})
- | | | | | | "IOAudioControlChannelNumber" = 0x0
- | | | | | | "IOAudioControlChannelID" = 0x0
- | | | | | | "IOAudioControlValue" = 0x6c696e65
- | | | | | | "IOAudioControlUsage" = 0x696e7074
- | | | | | | "IOAudioControlID" = 0x0
- | | | | | | "IOAudioControlSubType" = 0x696e7074
- | | | | | | }
- | | | | | |
- | | | | | +-o IOAudioControlUserClient &lt;class IOAudioControlUserClient, id 0x10000048b, !registered, !matched, active, busy 0, retain 6&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 212, coreaudiod"
- | | | | | }
- | | | | |
- | | | | +-o IOAudioLevelControl &lt;class IOAudioLevelControl, id 0x10000040a, !registered, !matched, active, busy 0, retain 8&gt;
- | | | | | | {
- | | | | | | "IOAudioLevelControlMinValue" = 0x0
- | | | | | | "IOAudioLevelControlMinDB" = 0xfffffffffff40000
- | | | | | | "IOAudioControlChannelNumber" = 0x2
- | | | | | | "IOAudioLevelControlMaxValue" = 0x18
- | | | | | | "IOAudioControlValue" = 0x18
- | | | | | | "IOAudioControlID" = 0x7
- | | | | | | "IOAudioLevelControlMaxDB" = 0xc0000
- | | | | | | "IOAudioLevelControlUseLinearScale" = 0x0
- | | | | | | "IOAudioControlType" = 0x6c65766c
- | | | | | | "IOAudioControlChannelID" = 0x2
- | | | | | | "IOAudioControlUsage" = 0x696e7074
- | | | | | | "IOAudioControlChannelName" = "Right"
- | | | | | | "IOAudioControlSubType" = 0x766c6d65
- | | | | | | }
- | | | | | |
- | | | | | +-o IOAudioControlUserClient &lt;class IOAudioControlUserClient, id 0x10000048c, !registered, !matched, active, busy 0, retain 6&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 212, coreaudiod"
- | | | | | }
- | | | | |
- | | | | +-o IOAudioLevelControl &lt;class IOAudioLevelControl, id 0x10000040b, !registered, !matched, active, busy 0, retain 8&gt;
- | | | | | | {
- | | | | | | "IOAudioLevelControlMinValue" = 0x0
- | | | | | | "IOAudioLevelControlMinDB" = 0xfffffffffff40000
- | | | | | | "IOAudioControlChannelNumber" = 0x1
- | | | | | | "IOAudioLevelControlMaxValue" = 0x18
- | | | | | | "IOAudioControlValue" = 0x18
- | | | | | | "IOAudioControlID" = 0x5
- | | | | | | "IOAudioLevelControlMaxDB" = 0xc0000
- | | | | | | "IOAudioLevelControlUseLinearScale" = 0x0
- | | | | | | "IOAudioControlType" = 0x6c65766c
- | | | | | | "IOAudioControlChannelID" = 0x1
- | | | | | | "IOAudioControlUsage" = 0x696e7074
- | | | | | | "IOAudioControlChannelName" = "Left"
- | | | | | | "IOAudioControlSubType" = 0x766c6d65
- | | | | | | }
- | | | | | |
- | | | | | +-o IOAudioControlUserClient &lt;class IOAudioControlUserClient, id 0x10000048d, !registered, !matched, active, busy 0, retain 6&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 212, coreaudiod"
- | | | | | }
- | | | | |
- | | | | +-o IOAudioToggleControl &lt;class IOAudioToggleControl, id 0x10000040c, !registered, !matched, active, busy 0, retain 8&gt;
- | | | | | | {
- | | | | | | "IOAudioControlType" = 0x746f676c
- | | | | | | "IOAudioControlChannelNumber" = 0x2
- | | | | | | "IOAudioControlChannelID" = 0x2
- | | | | | | "IOAudioControlUsage" = 0x696e7074
- | | | | | | "IOAudioControlChannelName" = "Right"
- | | | | | | "IOAudioControlValue" = 0x1
- | | | | | | "IOAudioControlID" = 0x8
- | | | | | | "IOAudioControlSubType" = 0x6d757465
- | | | | | | }
- | | | | | |
- | | | | | +-o IOAudioControlUserClient &lt;class IOAudioControlUserClient, id 0x10000048e, !registered, !matched, active, busy 0, retain 6&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 212, coreaudiod"
- | | | | | }
- | | | | |
- | | | | +-o IOAudioToggleControl &lt;class IOAudioToggleControl, id 0x10000040d, !registered, !matched, active, busy 0, retain 8&gt;
- | | | | | | {
- | | | | | | "IOAudioControlType" = 0x746f676c
- | | | | | | "IOAudioControlChannelNumber" = 0x1
- | | | | | | "IOAudioControlChannelID" = 0x1
- | | | | | | "IOAudioControlUsage" = 0x696e7074
- | | | | | | "IOAudioControlChannelName" = "Left"
- | | | | | | "IOAudioControlValue" = 0x1
- | | | | | | "IOAudioControlID" = 0x6
- | | | | | | "IOAudioControlSubType" = 0x6d757465
- | | | | | | }
- | | | | | |
- | | | | | +-o IOAudioControlUserClient &lt;class IOAudioControlUserClient, id 0x10000048f, !registered, !matched, active, busy 0, retain 6&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 212, coreaudiod"
- | | | | | }
- | | | | |
- | | | | +-o IOAudioToggleControl &lt;class IOAudioToggleControl, id 0x10000040e, !registered, !matched, active, busy 0, retain 8&gt;
- | | | | | | {
- | | | | | | "IOAudioControlType" = 0x746f676c
- | | | | | | "IOAudioControlChannelNumber" = 0x0
- | | | | | | "IOAudioControlChannelID" = 0x0
- | | | | | | "IOAudioControlUsage" = 0x696e7074
- | | | | | | "IOAudioControlChannelName" = "All Channels"
- | | | | | | "IOAudioControlValue" = 0x1
- | | | | | | "IOAudioControlID" = 0x9
- | | | | | | "IOAudioControlSubType" = 0x6d757465
- | | | | | | }
- | | | | | |
- | | | | | +-o IOAudioControlUserClient &lt;class IOAudioControlUserClient, id 0x100000490, !registered, !matched, active, busy 0, retain 6&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 212, coreaudiod"
- | | | | | }
- | | | | |
- | | | | +-o IOAudioSelectorControl &lt;class IOAudioSelectorControl, id 0x10000040f, !registered, !matched, active, busy 0 (2 ms), retain 28&gt;
- | | | | | | {
- | | | | | | "IOAudioControlType" = 0x736c6374
- | | | | | | "IOAudioSelectorControlAvailableSelections" = ({"IOAudioSelectorControlSelectionValue"=0x6175746f,"IOAudioSelectorControlSelectionDescriptionKey"="HwSrcAutomatic"},{"IOAudioSelectorControlSelectionValue"=0x73726365,"IOAudioSelectorControlSelectionDescriptionKey"="HwSrcEnable"},{"IOAudioSelectorControlSelectionValue"=0x73726364,"IOAudioSelectorControlSelectionDescriptionKey"="HwSrcDisable"})
- | | | | | | "IOAudioControlChannelNumber" = 0x0
- | | | | | | "IOAudioControlChannelID" = 0x0
- | | | | | | "IOAudioControlUsage" = 0x696e7074
- | | | | | | "IOAudioControlChannelName" = "All Channels"
- | | | | | | "IOAudioControlValue" = 0x73726364
- | | | | | | "IOAudioControlID" = 0x0
- | | | | | | "IOAudioControlSubType" = 0x68737263
- | | | | | | }
- | | | | | |
- | | | | | +-o IOAudioControlUserClient &lt;class IOAudioControlUserClient, id 0x100000491, !registered, !matched, active, busy 0, retain 6&gt;
- | | | | | | {
- | | | | | | "IOUserClientCreator" = "pid 212, coreaudiod"
- | | | | | | }
- | | | | | |
- | | | | | +-o IOAudioControlUserClient &lt;class IOAudioControlUserClient, id 0x100000513, !registered, !matched, active, busy 0, retain 6&gt;
- | | | | | | {
- | | | | | | "IOUserClientCreator" = "pid 269, HipChat"
- | | | | | | }
- | | | | | |
- | | | | | +-o IOAudioControlUserClient &lt;class IOAudioControlUserClient, id 0x100000592, !registered, !matched, active, busy 0, retain 6&gt;
- | | | | | | {
- | | | | | | "IOUserClientCreator" = "pid 692, Rdio"
- | | | | | | }
- | | | | | |
- | | | | | +-o IOAudioControlUserClient &lt;class IOAudioControlUserClient, id 0x100000dbe, !registered, !matched, active, busy 0, retain 6&gt;
- | | | | | | {
- | | | | | | "IOUserClientCreator" = "pid 6819, Google Chrome"
- | | | | | | }
- | | | | | |
- | | | | | +-o IOAudioControlUserClient &lt;class IOAudioControlUserClient, id 0x100000f67, !registered, !matched, active, busy 0, retain 6&gt;
- | | | | | | {
- | | | | | | "IOUserClientCreator" = "pid 280, Shush"
- | | | | | | }
- | | | | | |
- | | | | | +-o IOAudioControlUserClient &lt;class IOAudioControlUserClient, id 0x100000f68, !registered, !matched, active, busy 0, retain 6&gt;
- | | | | | | {
- | | | | | | "IOUserClientCreator" = "pid 239, SystemUIServer"
- | | | | | | }
- | | | | | |
- | | | | | +-o IOAudioControlUserClient &lt;class IOAudioControlUserClient, id 0x100000f69, !registered, !matched, active, busy 0, retain 6&gt;
- | | | | | | {
- | | | | | | "IOUserClientCreator" = "pid 46, loginwindow"
- | | | | | | }
- | | | | | |
- | | | | | +-o IOAudioControlUserClient &lt;class IOAudioControlUserClient, id 0x100000f6b, !registered, !matched, active, busy 0, retain 6&gt;
- | | | | | | {
- | | | | | | "IOUserClientCreator" = "pid 302, Adium"
- | | | | | | }
- | | | | | |
- | | | | | +-o IOAudioControlUserClient &lt;class IOAudioControlUserClient, id 0x100000f6c, !registered, !matched, active, busy 0, retain 6&gt;
- | | | | | | {
- | | | | | | "IOUserClientCreator" = "pid 6878, VMware Fusion"
- | | | | | | }
- | | | | | |
- | | | | | +-o IOAudioControlUserClient &lt;class IOAudioControlUserClient, id 0x100000f70, !registered, !matched, active, busy 0, retain 6&gt;
- | | | | | | {
- | | | | | | "IOUserClientCreator" = "pid 233, UserEventAgent"
- | | | | | | }
- | | | | | |
- | | | | | +-o IOAudioControlUserClient &lt;class IOAudioControlUserClient, id 0x100000f74, !registered, !matched, active, busy 0, retain 6&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 212, coreaudiod"
- | | | | | }
- | | | | |
- | | | | +-o IOAudioToggleControl &lt;class IOAudioToggleControl, id 0x100000410, !registered, !matched, active, busy 0, retain 8&gt;
- | | | | | | {
- | | | | | | "IOAudioControlType" = 0x746f676c
- | | | | | | "IOAudioControlChannelNumber" = 0x0
- | | | | | | "IOAudioControlChannelID" = 0x0
- | | | | | | "IOAudioControlUsage" = 0x696e7074
- | | | | | | "IOAudioControlChannelName" = "All Channels"
- | | | | | | "IOAudioControlValue" = 0x0
- | | | | | | "IOAudioControlID" = 0x0
- | | | | | | "IOAudioControlSubType" = 0x6a61636b
- | | | | | | "IOAudioControlValueIsReadOnly" = Yes
- | | | | | | }
- | | | | | |
- | | | | | +-o IOAudioControlUserClient &lt;class IOAudioControlUserClient, id 0x100000492, !registered, !matched, active, busy 0, retain 6&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 212, coreaudiod"
- | | | | | }
- | | | | |
- | | | | +-o IOAudioEngineUserClient &lt;class IOAudioEngineUserClient, id 0x10000048a, !registered, !matched, active, busy 0, retain 6&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 212, coreaudiod"
- | | | | | }
- | | | | |
- | | | | +-o IOAudioEngineUserClient &lt;class IOAudioEngineUserClient, id 0x1000004a0, !registered, !matched, active, busy 0, retain 6&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 212, coreaudiod"
- | | | | | }
- | | | | |
- | | | | +-o IOAudioEngineUserClient &lt;class IOAudioEngineUserClient, id 0x1000004de, !registered, !matched, active, busy 0, retain 6&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 46, loginwindow"
- | | | | | }
- | | | | |
- | | | | +-o IOAudioEngineUserClient &lt;class IOAudioEngineUserClient, id 0x1000004f6, !registered, !matched, active, busy 0, retain 6&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 239, SystemUIServer"
- | | | | | }
- | | | | |
- | | | | +-o IOAudioEngineUserClient &lt;class IOAudioEngineUserClient, id 0x1000004ff, !registered, !matched, active, busy 0, retain 6&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 233, UserEventAgent"
- | | | | | }
- | | | | |
- | | | | +-o IOAudioEngineUserClient &lt;class IOAudioEngineUserClient, id 0x100000512, !registered, !matched, active, busy 0, retain 6&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 269, HipChat"
- | | | | | }
- | | | | |
- | | | | +-o IOAudioEngineUserClient &lt;class IOAudioEngineUserClient, id 0x10000051a, !registered, !matched, active, busy 0, retain 6&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 280, Shush"
- | | | | | }
- | | | | |
- | | | | +-o IOAudioEngineUserClient &lt;class IOAudioEngineUserClient, id 0x100000530, !registered, !matched, active, busy 0, retain 6&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 302, Adium"
- | | | | | }
- | | | | |
- | | | | +-o IOAudioEngineUserClient &lt;class IOAudioEngineUserClient, id 0x100000591, !registered, !matched, active, busy 0, retain 6&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 692, Rdio"
- | | | | | }
- | | | | |
- | | | | +-o IOAudioEngineUserClient &lt;class IOAudioEngineUserClient, id 0x100000dbd, !registered, !matched, active, busy 0, retain 6&gt;
- | | | | | {
- | | | | | "IOUserClientCreator" = "pid 6819, Google Chrome"
- | | | | | }
- | | | | |
- | | | | +-o IOAudioEngineUserClient &lt;class IOAudioEngineUserClient, id 0x100000de5, !registered, !matched, active, busy 0, retain 6&gt;
- | | | | {
- | | | | "IOUserClientCreator" = "pid 6878, VMware Fusion"
- | | | | }
- | | | |
- | | | +-o AppleHDAEngineOutput@1B,0,1,2 &lt;class AppleHDAEngineOutput, id 0x100000411, registered, matched, active, busy 0 (927 ms), retain 32&gt;
- | | | | {
- | | | | "IOAudioEngineGlobalUniqueIDLegacy" = "AppleHDAEngineOutput:0"
- | | | | "IOAudioEngineCoreAudioPlugIn" = "AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle"
- | | | | "IOAudioEngineInputSampleOffset" = 0x1
- | | | | "IOGeneralInterest" = "IOCommand is not serializable"
- | | | | "IOAudioEngineDescription" = "DevShortNameOut"
- | | | | "IOAudioEngineState" = 0x0
- | | | | "IOAudioEngineInputSampleLatency" = 0xf
- | | | | "IOAudioEngineClientDescription" = {"kind"=0x0}
- | | | | "IOAudioDeviceCanBeDefaults" = 0x6
- | | | | "IOAudioEngineNumSampleFramesPerBuffer" = 0x3000
- | | | | "SupportAudioAUUC" = 0x1
- | | | | "IOAudioEngineGlobalUniqueID" = "AppleHDAEngineOutput:1B,0,1,2:0"
- | | | | "IOAudioEngineClockDomain" = 0x13397000
- | | | | "IOAudioSampleRate" = {"IOAudioSampleRateWholeNumber"=0xac44,"IOAudioSampleRateFraction"=0x0}
- | | | | "IOAudioEngineFlavor" = 0x1
- | | | | "IOAudioEngineSampleOffset" = 0x1a
- | | | | "IOAudioEngineOutputSampleLatency" = 0xf
- | | | | "IOAudioEngineNumActiveUserClients" = 0x0
- | | | | }
- | | | |
- | | | +-o AppleHDAStream &lt;class AppleHDAStream, id 0x100000412, registered, matched, active, busy 0 (1 ms), retain 7&gt;
- | | | | {
- | | | | "IOAudioStreamAvailableFormats" = ({"IOAudioStreamMaximumSampleRate"={"IOAudioSampleRateWholeNumber"=0xac44,"IOAudioSampleRateFraction"=0x0},"IOAudioStreamAlignment"=0x0,"IOAudioStreamNumericRepresentation"=0x666c6f74,"IOAudioStreamIsMixable"=0x1,"IOAudioStreamFormatFlags"=0x0,"IOAudioStreamByteOrder"=0x1,"IOAudioStreamBitDepth"=0x20,"IOAudioStreamSampleFormat"=0x6c70636d,"IOAudioStreamDriverTag"=0x0,"IOAudioStreamNumChannels"=0x2,"IOAudioStreamBytesPerPacket"=0x8,"IOAudioStreamBitWidth"=0x20,"IOAudioStreamFrame$
- | | | | "IOAudioStreamTap" = 0x1
- | | | | "IOAudioStreamDirection" = 0x1
- | | | | "IOAudioStreamID" = 0x1
- | | | | "IOAudioStreamStartingChannelID" = 0x1
- | | | | "IOAudioStreamTerminalType" = 0x200
- | | | | "IOAudioStreamFormat" = {"IOAudioStreamAlignment"=0x0,"IOAudioStreamNumericRepresentation"=0x666c6f74,"IOAudioStreamIsMixable"=0x1,"IOAudioStreamFormatFlags"=0x0,"IOAudioStreamByteOrder"=0x1,"IOAudioStreamBitDepth"=0x20,"IOAudioStreamSampleFormat"=0x6c70636d,"IOAudioStreamDriverTag"=0x0,"IOAudioStreamNumChannels"=0x1,"IOAudioStreamBytesPerPacket"=0x4,"IOAudioStreamBitWidth"=0x20,"IOAudioStreamFramesPerPacket"=0x1}
- | | | | "IOAudioStreamAvailable" = 0x0
- | | | | "IOAudioStreamNumClients" = 0x0
- | | | | "IOAudioStreamStartingChannelNumber" = 0x0
- | | | | }
- | | | |
- | | | +-o IOAudioToggleControl &lt;class IOAudioToggleControl, id 0x100000413, !registered, !matched, active, busy 0, retain 8&gt;
- | | | | | {
- | | | | | "IOAudioControlType" = 0x746f676c
- | | | | | "IOAudioControlChannelNumber" = 0x0
- | | | | | "IOAudioControlChannelID" = 0x0
- | | | | | "IOAudioControlUsage" = 0x6f757470
- | | | | | "IOAudioControlChannelName" = "All Channels"
- | | | | | "IOAudioControlValue" = 0x0
- | | | | | "IOAudioControlID" = 0x0
- | | | | | "IOAudioControlSubType" = 0x65766973
- | | | | | }
- | | | | |
- | | | | +-o IOAudioControlUserClient &lt;class IOAudioControlUserClient, id 0x100000484, !registered, !matched, active, busy 0, retain 6&gt;
- | | | | {
- | | | | "IOUserClientCreator" = "pid 212, coreaudiod"
- | | | | }
- | | | |
- | | | +-o AppleHDAStream &lt;class AppleHDAStream, id 0x100000415, registered, matched, active, busy 0 (1 ms), retain 7&gt;
- | | | | {
- | | | | "IOAudioStreamAvailableFormats" = ({"IOAudioStreamMaximumSampleRate"={"IOAudioSampleRateWholeNumber"=0xac44,"IOAudioSampleRateFraction"=0x0},"IOAudioStreamAlignment"=0x0,"IOAudioStreamNumericRepresentation"=0x73696e74,"IOAudioStreamIsMixable"=0x1,"IOAudioStreamFormatFlags"=0x0,"IOAudioStreamByteOrder"=0x1,"IOAudioStreamBitDepth"=0x10,"IOAudioStreamSampleFormat"=0x6c70636d,"IOAudioStreamDriverTag"=0x0,"IOAudioStreamNumChannels"=0x2,"IOAudioStreamBytesPerPacket"=0x4,"IOAudioStreamBitWidth"=0x10,"IOAudioStreamFrame$
- | | | | "IOAudioStreamDirection" = 0x0
- | | | | "IOAudioStreamID" = 0x0
- | | | | "IOAudioStreamStartingChannelID" = 0x1
- | | | | "IOAudioStreamTerminalType" = 0x301
- | | | | "IOAudioStreamFormat" = {"IOAudioStreamSampleFormat"=0x6c70636d,"IOAudioStreamIsMixable"=0x1,"IOAudioStreamNumChannels"=0x2,"IOAudioStreamNumericRepresentation"=0x73696e74,"IOAudioStreamBitWidth"=0x20,"IOAudioStreamDriverTag"=0x0,"IOAudioStreamAlignment"=0x0,"IOAudioStreamBitDepth"=0x18,"IOAudioStreamByteOrder"=0x1}
- | | | | "IOAudioStreamAvailable" = 0x1
- | | | | "IOAudioStreamNumClients" = 0x0
- | | | | "IOAudioStreamStartingChannelNumber" = 0x1
- | | | | }
- | | | |
- | | | +-o IOAudioSelectorControl &lt;class IOAudioSelectorControl, id 0x100000416, !registered, !matched, active, busy 0, retain 8&gt;
- | | | | | {
- | | | | | "IOAudioControlType" = 0x736c6374
- | | | | | "IOAudioSelectorControlAvailableSelections" = ({"IOAudioSelectorControlSelectionValue"=0x6973706b,"IOAudioSelectorControlSelectionDescriptionKey"="IntSpeakers"})
- | | | | | "IOAudioControlChannelNumber" = 0x0
- | | | | | "IOAudioControlChannelID" = 0x0
- | | | | | "IOAudioControlValue" = 0x6973706b
- | | | | | "IOAudioControlUsage" = 0x6f757470
- | | | | | "IOAudioControlID" = 0x0
- | | | | | "IOAudioControlSubType" = 0x6f757470
- | | | | | }
- | | | | |
- | | | | +-o IOAudioControlUserClient &lt;class IOAudioControlUserClient, id 0x100000485, !registered, !matched, active, busy 0, retain 6&gt;
- | | | | {
- | | | | "IOUserClientCreator" = "pid 212, coreaudiod"
- | | | | }
- | | | |
- | | | +-o IOAudioToggleControl &lt;class IOAudioToggleControl, id 0x10000041a, !registered, !matched, active, busy 0, retain 8&gt;
- | | | | | {
- | | | | | "IOAudioControlType" = 0x746f676c
- | | | | | "IOAudioControlChannelNumber" = 0x0
- | | | | | "IOAudioControlChannelID" = 0x0
- | | | | | "IOAudioControlUsage" = 0x6f757470
- | | | | | "IOAudioControlChannelName" = "All Channels"
- | | | | | "IOAudioControlValue" = 0x0
- | | | | | "IOAudioControlID" = 0x0
- | | | | | "IOAudioControlSubType" = 0x6a61636b
- | | | | | "IOAudioControlValueIsReadOnly" = Yes
- | | | | | }
- | | | | |
- | | | | +-o IOAudioControlUserClient &lt;class IOAudioControlUserClient, id 0x100000489, !registered, !matched, active, busy 0, retain 6&gt;
- | | | | {
- | | | | "IOUserClientCreator" = "pid 212, coreaudiod"
- | | | | }
- | | | |
- | | | +-o AudioAUUCDriver &lt;class AudioAUUCDriver, id 0x10000041b, registered, matched, active, busy 0 (1 ms), retain 4&gt;
- | | | | {
- | | | | "IOProbeScore" = 0x0
- | | | | "CFBundleIdentifier" = "com.apple.driver.AudioAUUC"
- | | | | "IOProviderClass" = "IOAudioEngine"
- | | | | "IOClass" = "AudioAUUCDriver"
- | | | | "IOMatchCategory" = "AudioAUUCDriver"
- | | | | "IOUserClientClass" = "AudioAUUC"
- | | | | "IOResourceMatch" = "IOKit"
- | | | | }
- | | | |
- | | | +-o IOAudioEngineUserClient &lt;class IOAudioEngineUserClient, id 0x100000483, !registered, !matched, active, busy 0, retain 6&gt;
- | | | | {
- | | | | "IOAudioEngineUserClientActive" = 0x0
- | | | | "IOUserClientCreator" = "pid 212, coreaudiod"
- | | | | }
- | | | |
- | | | +-o IOAudioEngineUserClient &lt;class IOAudioEngineUserClient, id 0x10000049f, !registered, !matched, active, busy 0, retain 6&gt;
- | | | | {
- | | | | "IOUserClientCreator" = "pid 212, coreaudiod"
- | | | | }
- | | | |
- | | | +-o IOAudioEngineUserClient &lt;class IOAudioEngineUserClient, id 0x1000004dd, !registered, !matched, active, busy 0, retain 6&gt;
- | | | | {
- | | | | "IOUserClientCreator" = "pid 46, loginwindow"
- | | | | }
- | | | |
- | | | +-o IOAudioEngineUserClient &lt;class IOAudioEngineUserClient, id 0x1000004f5, !registered, !matched, active, busy 0, retain 6&gt;
- | | | | {
- | | | | "IOUserClientCreator" = "pid 239, SystemUIServer"
- | | | | }
- | | | |
- | | | +-o IOAudioEngineUserClient &lt;class IOAudioEngineUserClient, id 0x1000004fe, !registered, !matched, active, busy 0, retain 6&gt;
- | | | | {
- | | | | "IOUserClientCreator" = "pid 233, UserEventAgent"
- | | | | }
- | | | |
- | | | +-o IOAudioEngineUserClient &lt;class IOAudioEngineUserClient, id 0x100000511, !registered, !matched, active, busy 0, retain 6&gt;
- | | | | {
- | | | | "IOUserClientCreator" = "pid 269, HipChat"
- | | | | }
- | | | |
- | | | +-o IOAudioEngineUserClient &lt;class IOAudioEngineUserClient, id 0x100000519, !registered, !matched, active, busy 0, retain 6&gt;
- | | | | {
- | | | | "IOUserClientCreator" = "pid 280, Shush"
- | | | | }
- | | | |
- | | | +-o IOAudioEngineUserClient &lt;class IOAudioEngineUserClient, id 0x10000052f, !registered, !matched, active, busy 0, retain 6&gt;
- | | | | {
- | | | | "IOUserClientCreator" = "pid 302, Adium"
- | | | | }
- | | | |
- | | | +-o IOAudioEngineUserClient &lt;class IOAudioEngineUserClient, id 0x100000590, !registered, !matched, active, busy 0, retain 6&gt;
- | | | | {
- | | | | "IOUserClientCreator" = "pid 692, Rdio"
- | | | | }
- | | | |
- | | | +-o IOAudioLevelControl &lt;class IOAudioLevelControl, id 0x100000b63, !registered, !matched, active, busy 0, retain 8&gt;
- | | | | | {
- | | | | | "IOAudioLevelControlMinValue" = 0x0
- | | | | | "IOAudioLevelControlMinDB" = 0xffffffffffc68000
- | | | | | "IOAudioControlChannelNumber" = 0x2
- | | | | | "IOAudioLevelControlMaxValue" = 0x73
- | | | | | "IOAudioControlValue" = 0x35
- | | | | | "IOAudioControlID" = 0x11
- | | | | | "IOAudioLevelControlMaxDB" = 0x0
- | | | | | "IOAudioControlType" = 0x6c65766c
- | | | | | "IOAudioControlChannelID" = 0x2
- | | | | | "IOAudioControlUsage" = 0x6f757470
- | | | | | "IOAudioControlChannelName" = "Right"
- | | | | | "IOAudioControlSubType" = 0x766c6d65
- | | | | | }
- | | | | |
- | | | | +-o IOAudioControlUserClient &lt;class IOAudioControlUserClient, id 0x100000b67, !registered, !matched, active, busy 0, retain 6&gt;
- | | | | {
- | | | | "IOUserClientCreator" = "pid 212, coreaudiod"
- | | | | }
- | | | |
- | | | +-o IOAudioLevelControl &lt;class IOAudioLevelControl, id 0x100000b64, !registered, !matched, active, busy 0, retain 8&gt;
- | | | | | {
- | | | | | "IOAudioLevelControlMinValue" = 0x0
- | | | | | "IOAudioLevelControlMinDB" = 0xffffffffffc68000
- | | | | | "IOAudioControlChannelNumber" = 0x1
- | | | | | "IOAudioLevelControlMaxValue" = 0x73
- | | | | | "IOAudioControlValue" = 0x35
- | | | | | "IOAudioControlID" = 0x10
- | | | | | "IOAudioLevelControlMaxDB" = 0x0
- | | | | | "IOAudioControlType" = 0x6c65766c
- | | | | | "IOAudioControlChannelID" = 0x1
- | | | | | "IOAudioControlUsage" = 0x6f757470
- | | | | | "IOAudioControlChannelName" = "Left"
- | | | | | "IOAudioControlSubType" = 0x766c6d65
- | | | | | }
- | | | | |
- | | | | +-o IOAudioControlUserClient &lt;class IOAudioControlUserClient, id 0x100000b68, !registered, !matched, active, busy 0, retain 6&gt;
- | | | | {
- | | | | "IOUserClientCreator" = "pid 212, coreaudiod"
- | | | | }
- | | | |
- | | | +-o IOAudioToggleControl &lt;class IOAudioToggleControl, id 0x100000b65, !registered, !matched, active, busy 0, retain 8&gt;
- | | | | | {
- | | | | | "IOAudioControlType" = 0x746f676c
- | | | | | "IOAudioControlChannelNumber" = 0x0
- | | | | | "IOAudioControlChannelID" = 0x0
- | | | | | "IOAudioControlUsage" = 0x6f757470
- | | | | | "IOAudioControlChannelName" = "All Channels"
- | | | | | "IOAudioControlValue" = 0x0
- | | | | | "IOAudioControlID" = 0x12
- | | | | | "IOAudioControlSubType" = 0x6d757465
- | | | | | }
- | | | | |
- | | | | +-o IOAudioControlUserClient &lt;class IOAudioControlUserClient, id 0x100000b69, !registered, !matched, active, busy 0, retain 6&gt;
- | | | | {
- | | | | "IOUserClientCreator" = "pid 212, coreaudiod"
- | | | | }
- | | | |
- | | | +-o IOAudioEngineUserClient &lt;class IOAudioEngineUserClient, id 0x100000dbc, !registered, !matched, active, busy 0, retain 6&gt;
- | | | | {
- | | | | "IOUserClientCreator" = "pid 6819, Google Chrome"
- | | | | }
- | | | |
- | | | +-o IOAudioEngineUserClient &lt;class IOAudioEngineUserClient, id 0x100000de4, !registered, !matched, active, busy 0, retain 6&gt;
- | | | {
- | | | "IOUserClientCreator" = "pid 6878, VMware Fusion"
- | | | }
- | | |
- | | +-o RP01@1C &lt;class IOPCIDevice, id 0x1000001ba, registered, matched, active, busy 0 (2812 ms), retain 13&gt;
- | | | | {
- | | | | "IOInterruptSpecifiers" = (&lt;1000000007000000&gt;)
- | | | | "#address-cells" = &lt;03000000&gt;
- | | | | "class-code" = &lt;00040600&gt;
- | | | | "IOPowerManagement" = {"MaxPowerState"=0x2,"ChildrenPowerState"=0x2,"CurrentPowerState"=0x2}
- | | | | "subsystem-vendor-id" = &lt;0f000000&gt;
- | | | | "built-in" = &lt;00&gt;
- | | | | "acpi-device" = "IOACPIPlatformDevice is not serializable"
- | | | | "IOInterruptControllers" = ("io-apic-0")
- | | | | "name" = "pci-bridge"
- | | | | "vendor-id" = &lt;86800000&gt;
- | | | | "device-id" = &lt;101c0000&gt;
- | | | | "acpi-pmcap-offset" = 0xa0
- | | | | "IOPCIExpressASPMDefault" = 0x2
- | | | | "IOPCIResourced" = Yes
- | | | | "compatible" = &lt;706369662c3000706369383038362c3163313000706369636c6173732c30363034303000&gt;
- | | | | "ranges" = &lt;0000008200000000000000000000008200000000000000000000000000000000000000c20f00000000000070000000c20f0000000000007000000000000010000000008100000000000000000000008100000000000000000000000000000000&gt;
- | | | | "IOPCIExpressLinkCapabilities" = 0x1123c12
- | | | | "IODTPersist" = &lt;f6be88807ffffffff4db88807fffffff&gt;
- | | | | "IOPCIConfigured" = Yes
- | | | | "acpi-path" = "IOACPIPlane:/_SB/PCI0@0/RP01@1c0000"
- | | | | "subsystem-id" = &lt;00000000&gt;
- | | | | "revision-id" = &lt;b5000000&gt;
- | | | | "IOPCIExpressLinkStatus" = 0x7011
- | | | | "pcidebug" = "0:28:0(2:2)"
- | | | | "IOName" = "pci-bridge"
- | | | | "#size-cells" = &lt;02000000&gt;
- | | | | "reg" = &lt;00e0000000000000000000000000000000000000&gt;
- | | | | }
- | | | |
- | | | +-o IOPCI2PCIBridge &lt;class IOPCI2PCIBridge, id 0x100000203, registered, matched, active, busy 0 (2802 ms), retain 9&gt;
- | | | | {
- | | | | "IOProbeScore" = 0xffffffffffffff9c
- | | | | "CFBundleIdentifier" = "com.apple.iokit.IOPCIFamily"
- | | | | "IOProviderClass" = "IOPCIDevice"
- | | | | "IOClass" = "IOPCI2PCIBridge"
- | | | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | | | "IOPCIClassMatch" = "0x06040000&amp;0xffff0000"
- | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"CurrentPowerState"=0x2,"ChildProxyPowerState"=0x2,"MaxPowerState"=0x2}
- | | | | }
- | | | |
- | | | +-o GIGE@0 &lt;class IOPCIDevice, id 0x1000001bb, registered, matched, active, busy 0 (2802 ms), retain 11&gt;
- | | | | | {
- | | | | | "assigned-addresses" = &lt;100002c20f000000000000700000000000000100180002c20f000000000001700000000000000100&gt;
- | | | | | "IOInterruptSpecifiers" = (&lt;1000000007000000&gt;,&lt;0600000000000100&gt;)
- | | | | | "class-code" = &lt;00000200&gt;
- | | | | | "IODeviceMemory" = (({"address"=0xf70000000,"length"=0x10000}),({"address"=0xf70010000,"length"=0x10000}))
- | | | | | "IOPowerManagement" = {"MaxPowerState"=0x2,"ChildrenPowerState"=0x2,"CurrentPowerState"=0x2}
- | | | | | "subsystem-vendor-id" = &lt;e4140000&gt;
- | | | | | "built-in" = &lt;00&gt;
- | | | | | "acpi-device" = "IOACPIPlatformDevice is not serializable"
- | | | | | "IOPCIMSIMode" = Yes
- | | | | | "IOInterruptControllers" = ("io-apic-0","IOPCIMessagedInterruptController")
- | | | | | "name" = "ethernet"
- | | | | | "IOChildIndex" = 0x1
- | | | | | "device-id" = &lt;b4160000&gt;
- | | | | | "vendor-id" = &lt;e4140000&gt;
- | | | | | "IOPCIExpressASPMDefault" = 0x2
- | | | | | "acpi-pmcap-offset" = 0x48
- | | | | | "compatible" = &lt;706369313465342c3136623400706369636c6173732c30323030303000&gt;
- | | | | | "IOPCIResourced" = Yes
- | | | | | "IOPCIExpressLinkCapabilities" = 0x75c11
- | | | | | "acpi-path" = "IOACPIPlane:/_SB/PCI0@0/RP01@1c0000/GIGE@0"
- | | | | | "model" = "Broadcom 57765-B0"
- | | | | | "subsystem-id" = &lt;b4160000&gt;
- | | | | | "revision-id" = &lt;10000000&gt;
- | | | | | "IOPCIExpressLinkStatus" = 0x1011
- | | | | | "pcidebug" = "2:0:0"
- | | | | | "IOName" = "ethernet"
- | | | | | "acpi-wake-type" = 0x2
- | | | | | "reg" = &lt;000002000000000000000000000000000000000010000242000000000000000000000000000001001800024200000000000000000000000000000100&gt;
- | | | | | }
- | | | | |
- | | | | +-o BCM5701Enet &lt;class BCM5701Enet, id 0x100000225, registered, matched, active, busy 0 (1 ms), retain 8&gt;
- | | | | | {
- | | | | | "IOClass" = "BCM5701Enet"
- | | | | | "IOActiveMedium" = "00000022"
- | | | | | "IOMinPacketSize" = 0x40
- | | | | | "IOPowerManagement" = {"MaxPowerState"=0x1,"CurrentPowerState"=0x1}
- | | | | | "IOProviderClass" = "IOPCIDevice"
- | | | | | "IOLinkStatus" = 0x1
- | | | | | "IOVendor" = "Broadcom"
- | | | | | "NVRamInfo" = "Offset=0x2f8, PageSize=264, Chip=AT45DB021D-2Mb-D"
- | | | | | "IOPacketFilters" = {"IONetworkFilterGroup"=0x113,"IOEthernetDisabledWakeOnLANFilterGroup"=0x0,"IOEthernetWakeOnLANFilterGroup"=0x1}
- | | | | | "IOProbeScore" = 0x0
- | | | | | "SleepState" = "D0"
- | | | | | "IOMediumDictionary" = {"00900026"={"Index"=0x0,"Type"=0x900026,"Flags"=0x0,"Speed"=0x64},"00500026"={"Index"=0x0,"Type"=0x500026,"Flags"=0x0,"Speed"=0x64},"00100026"={"Index"=0x0,"Type"=0x100026,"Flags"=0x0,"Speed"=0x64},"08100023"={"Index"=0x0,"Type"=0x8100023,"Flags"=0x0,"Speed"=0xa},"00200023"={"Index"=0x0,"Type"=0x200023,"Flags"=0x0,"Speed"=0xa},"00000020"={"Index"=0x0,"Type"=0x20,"Flags"=0x0,"Speed"=0x0},"08100030"={"Index"=0x0,"Type"=0x8100030,"Flags"=0x0,"Speed"=0x3e8},"00d00030"={"Index"=0x0,"Type"=0xd00030,"Flag$
- | | | | | "IONameMatch" = ("pci14e4,1684","pci14e4,16b4","pci14e4,16b0","pci14e4,1682","pci14e4,1686")
- | | | | | "Configuration Data" = {"RxJumboRcvBuffers"=0x20,"TxCoalescingTicks"=0x96,"JumboRcvThreshold"=0x5,"LEDMode"="Auto","RxCoalescingTicksDuringInt"=0x78,"MTU"=0x233a,"OneDmaAtOnce"=No,"DmaReadBoundary"=0x0,"EnableRxHwCksum"=Yes,"TxMaxCoalescedFrames"=0x40,"DmaUseMemRdMult"=Yes,"TxCoalescingTicksDuringInt"=0x96,"RxMaxCoalescedFramesDuringInt"=0xf,"RxMaxCoalescedFrames"=0xf,"MBufThrottle"=0x0,"Batch_ARP_Enable"=Yes,"MinimumDMA"=0x0,"TxSendBuffers"=0x1f4,"DmaWriteBoundary"=0x0,"TxMaxCoalescedFramesDuringInt"=0x40,"EnableTxHwCksu$
- | | | | | "WOL-State" = "disabled"
- | | | | | "IOMACAddress" = &lt;3c0754741e2b&gt;
- | | | | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | | | | "CFBundleIdentifier" = "com.apple.iokit.AppleBCM5701Ethernet"
- | | | | | "IOMaxPacketSize" = 0x233a
- | | | | | "FirmwareVersionString" = "57765-v1.37, 0x7287af41"
- | | | | | "IOModel" = "57765-B0"
- | | | | | "IOSelectedMedium" = "00000020"
- | | | | | "IONameMatched" = "pci14e4,16b4"
- | | | | | "IOLinkSpeed" = 0x0
- | | | | | "BJP_Firmware_Version" = "1.13"
- | | | | | "IOPCITunnelCompatible" = Yes
- | | | | | "Driver_Version" = "3.2.4b8"
- | | | | | "IOFeatures" = 0x1a
- | | | | | }
- | | | | |
- | | | | +-o IOEthernetAVBInterface &lt;class IOEthernetAVBInterface, id 0x100000353, registered, matched, active, busy 0 (1 ms), retain 12&gt;
- | | | | | {
- | | | | | "IOLocation" = ""
- | | | | | "IORequiredPacketFilters" = {"IONetworkFilterGroup"=0x13,"IOEthernetWakeOnLANFilterGroup"=0x0}
- | | | | | "IOInterfaceFlags" = 0x8863
- | | | | | "IOMaxTransferUnit" = 0x5dc
- | | | | | "IOMediaAddressLength" = 0x6
- | | | | | "IOInterfaceType" = 0x6
- | | | | | "BSD Name" = "en0"
- | | | | | "IOMulticastAddressList" = &lt;0180c2000003&gt;
- | | | | | "IOInterfaceState" = 0x3
- | | | | | "mDNS_Offload_Capable" = "3c:07:54:74:1e:2b"
- | | | | | "IOMediaHeaderLength" = 0xe
- | | | | | "IOActivePacketFilters" = {"IONetworkFilterGroup"=0x13,"IOEthernetWakeOnLANFilterGroup"=0x0}
- | | | | | "IOInterfaceExtraFlags" = 0x100
- | | | | | "IOPrimaryInterface" = Yes
- | | | | | "IOControllerEnabled" = Yes
- | | | | | "IOInterfaceUnit" = 0x0
- | | | | | "IOInterfaceNamePrefix" = "en"
- | | | | | "IOBuiltin" = Yes
- | | | | | "IONetworkData" = {"IOOutputQueueStatsKey"={"Size"=0x2c,"Data"=&lt;0010000000000000000000000000000001000000000000000000000000000000000000000000000000000000&gt;,"Access Types"=0x9},"IONetworkStatsKey"={"Size"=0x14,"Data"=&lt;0000000000000000000000000000000000000000&gt;,"Access Types"=0x9},"IOEthernetStatsKey"={"Size"=0xd8,"Data"=&lt;00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000$
- | | | | | }
- | | | | |
- | | | | +-o IONetworkStack &lt;class IONetworkStack, id 0x100000264, registered, matched, active, busy 0 (0 ms), retain 11&gt;
- | | | | | {
- | | | | | "IOClass" = "IONetworkStack"
- | | | | | "IOProviderClass" = "IOResources"
- | | | | | "IOMatchCategory" = "IONetworkStack"
- | | | | | "IOResourceMatch" = "IOBSD"
- | | | | | "CFBundleIdentifier" = "com.apple.iokit.IONetworkingFamily"
- | | | | | "IOProbeScore" = 0x0
- | | | | | }
- | | | | |
- | | | | +-o IONetworkStackUserClient &lt;class IONetworkStackUserClient, id 0x100000355, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | {
- | | | | "IOUserClientCreator" = "pid 14, configd"
- | | | | }
- | | | |
- | | | +-o SDXC@0,1 &lt;class IOPCIDevice, id 0x1000001bc, registered, matched, active, busy 0 (36 ms), retain 12&gt;
- | | | | {
- | | | | "assigned-addresses" = &lt;100102c20f000000000002700000000000000100&gt;
- | | | | "IOInterruptSpecifiers" = (&lt;1100000007000000&gt;,&lt;0700000000000100&gt;)
- | | | | "class-code" = &lt;01050800&gt;
- | | | | "IODeviceMemory" = (({"address"=0xf70020000,"length"=0x10000}))
- | | | | "IOPowerManagement" = {"MaxPowerState"=0x2,"ChildrenPowerState"=0x2,"CurrentPowerState"=0x2}
- | | | | "subsystem-vendor-id" = &lt;e4140000&gt;
- | | | | "built-in" = &lt;00&gt;
- | | | | "acpi-device" = "IOACPIPlatformDevice is not serializable"
- | | | | "IOPCIMSIMode" = Yes
- | | | | "IOInterruptControllers" = ("io-apic-0","IOPCIMessagedInterruptController")
- | | | | "name" = "pci14e4,16bc"
- | | | | "IOChildIndex" = 0x2
- | | | | "device-id" = &lt;bc160000&gt;
- | | | | "vendor-id" = &lt;e4140000&gt;
- | | | | "IOPCIExpressASPMDefault" = 0x2
- | | | | "acpi-pmcap-offset" = 0x48
- | | | | "compatible" = &lt;706369313465342c3000706369313465342c3136626300706369636c6173732c30383035303100&gt;
- | | | | "IOPCIResourced" = Yes
- | | | | "IOPCIExpressLinkCapabilities" = 0x75c11
- | | | | "acpi-path" = "IOACPIPlane:/_SB/PCI0@0/RP01@1c0000/SDXC@1"
- | | | | "IOPMPCIConfigSpaceVolatile" = No
- | | | | "subsystem-id" = &lt;00000000&gt;
- | | | | "revision-id" = &lt;10000000&gt;
- | | | | "IOPCIExpressLinkStatus" = 0x1011
- | | | | "pcidebug" = "2:0:1"
- | | | | "IOName" = "pci14e4,16bc"
- | | | | "reg" = &lt;00010200000000000000000000000000000000001001024200000000000000000000000000000100&gt;
- | | | | }
- | | | |
- | | | +-o AppleSDXC &lt;class AppleSDXC, id 0x100000226, registered, matched, active, busy 0 (25 ms), retain 8&gt;
- | | | | {
- | | | | "IOClass" = "AppleSDXC"
- | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSDXC"
- | | | | "IOProviderClass" = "IOPCIDevice"
- | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x1,"MaxPowerState"=0x2,"CurrentPowerState"=0x1,"ChildProxyPowerState"=0x2,"DriverPowerState"=0x1}
- | | | | "IOMaximumSegmentByteCountWrite" = 0x8000
- | | | | "IOProbeScore" = 0x0
- | | | | "IONameMatch" = ("pci14e4,16bc")
- | | | | "IOMaximumSegmentByteCountRead" = 0x8000
- | | | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | | | "Protocol Characteristics" = {"Physical Interconnect"="Secure Digital","Physical Interconnect Location"="Internal"}
- | | | | "IOMinimumSegmentAlignmentByteCount" = 0x4
- | | | | "IONameMatched" = "pci14e4,16bc"
- | | | | "IOMaximumSegmentCountRead" = 0x400
- | | | | "IOMaximumSegmentCountWrite" = 0x400
- | | | | }
- | | | |
- | | | +-o AppleSDXCSlot@1 &lt;class AppleSDXCSlot, id 0x100000228, registered, matched, active, busy 0 (25 ms), retain 10&gt;
- | | | | {
- | | | | "IOUnit" = 0x1
- | | | | "64-bit" = Yes
- | | | | "Card Present" = No
- | | | | "Slot" = 0x1
- | | | | "Bus Voltage" = 0xce4
- | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x1,"MaxPowerState"=0x2,"CurrentPowerState"=0x1,"ChildProxyPowerState"=0x2,"DriverPowerState"=0x1}
- | | | | "IOMaximumSegmentAddressableBitCount" = 0x40
- | | | | "Base Frequency" = 0xc8
- | | | | }
- | | | |
- | | | +-o AppleSDXCBlockStorageDevice &lt;class AppleSDXCBlockStorageDevice, id 0x100000249, registered, matched, active, busy 0 (4 ms), retain 6&gt;
- | | | | {
- | | | | "IOClass" = "AppleSDXCBlockStorageDevice"
- | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSDXC"
- | | | | "IOProviderClass" = "AppleSDXCSlot"
- | | | | "IOMaximumBlockCountRead" = 0x10000
- | | | | "IOCommandPoolSize" = 0x40
- | | | | "IOMaximumBlockCountWrite" = 0x10000
- | | | | "IOMediaIcon" = {"CFBundleIdentifier"="com.apple.iokit.IOSCSIArchitectureModelFamily","IOBundleResourceFile"="SD.icns"}
- | | | | "IOProbeScore" = 0x0
- | | | | "IOPowerManagement" = {"TimeSinceDeviceIdle"=0x2a7fd,"MaxPowerState"=0x3,"ActivityTickles"=0x0,"IdleTimerPeriod"=0x1388,"DevicePowerState"=0x0,"TimeSinceLastTickle"=0x2e297,"DriverPowerState"=0x1,"CurrentPowerState"=0x1}
- | | | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | | | "device-type" = "Generic"
- | | | | "Protocol Characteristics" = {"Physical Interconnect"="Secure Digital","Physical Interconnect Location"="Internal"}
- | | | | "Device Characteristics" = {"Vendor Name"="Apple","Product Name"="Built In SDXC Reader"}
- | | | | }
- | | | |
- | | | +-o IOBlockStorageDriver &lt;class IOBlockStorageDriver, id 0x10000024e, registered, matched, active, busy 0 (1 ms), retain 5&gt;
- | | | {
- | | | "IOPropertyMatch" = {"device-type"="Generic"}
- | | | "IOProbeScore" = 0x0
- | | | "IOProviderClass" = "IOBlockStorageDevice"
- | | | "IOClass" = "IOBlockStorageDriver"
- | | | "CFBundleIdentifier" = "com.apple.iokit.IOStorageFamily"
- | | | "Statistics" = {"Operations (Write)"=0x0,"Latency Time (Write)"=0x0,"Bytes (Read)"=0x0,"Errors (Write)"=0x0,"Total Time (Read)"=0x0,"Retries (Read)"=0x0,"Latency Time (Read)"=0x0,"Errors (Read)"=0x0,"Total Time (Write)"=0x0,"Bytes (Write)"=0x0,"Operations (Read)"=0x0,"Retries (Write)"=0x0}
- | | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | | }
- | | |
- | | +-o RP02@1C,1 &lt;class IOPCIDevice, id 0x1000001bd, registered, matched, active, busy 0 (251 ms), retain 12&gt;
- | | | | {
- | | | | "IOInterruptSpecifiers" = (&lt;1100000007000000&gt;)
- | | | | "#address-cells" = &lt;03000000&gt;
- | | | | "class-code" = &lt;00040600&gt;
- | | | | "IOPowerManagement" = {"MaxPowerState"=0x2,"ChildrenPowerState"=0x2,"CurrentPowerState"=0x2}
- | | | | "built-in" = &lt;00&gt;
- | | | | "acpi-device" = "IOACPIPlatformDevice is not serializable"
- | | | | "IOInterruptControllers" = ("io-apic-0")
- | | | | "vendor-id" = &lt;86800000&gt;
- | | | | "name" = "pci-bridge"
- | | | | "device-id" = &lt;121c0000&gt;
- | | | | "acpi-pmcap-offset" = 0xa0
- | | | | "IOPCIExpressASPMDefault" = 0x3
- | | | | "IOPCIResourced" = Yes
- | | | | "compatible" = &lt;706369383038362c3163313200706369636c6173732c30363034303000&gt;
- | | | | "ranges" = &lt;0000008200000000000060b00000008200000000000060b00000000000001000000000c20000000000000000000000c2000000000000000000000000000000000000008100000000000000000000008100000000000000000000000000000000&gt;
- | | | | "IOPCIExpressLinkCapabilities" = 0x2123c12
- | | | | "IODTPersist" = &lt;f6be88807ffffffff4db88807fffffff&gt;
- | | | | "IOPCIConfigured" = Yes
- | | | | "acpi-path" = "IOACPIPlane:/_SB/PCI0@0/RP02@1c0001"
- | | | | "revision-id" = &lt;b5000000&gt;
- | | | | "IOPCIExpressLinkStatus" = 0x7011
- | | | | "pcidebug" = "0:28:1(3:3)"
- | | | | "IOName" = "pci-bridge"
- | | | | "#size-cells" = &lt;02000000&gt;
- | | | | "reg" = &lt;00e1000000000000000000000000000000000000&gt;
- | | | | }
- | | | |
- | | | +-o IOPCI2PCIBridge &lt;class IOPCI2PCIBridge, id 0x100000208, registered, matched, active, busy 0 (240 ms), retain 7&gt;
- | | | | {
- | | | | "IOProbeScore" = 0xffffffffffffff9c
- | | | | "CFBundleIdentifier" = "com.apple.iokit.IOPCIFamily"
- | | | | "IOProviderClass" = "IOPCIDevice"
- | | | | "IOClass" = "IOPCI2PCIBridge"
- | | | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | | | "IOPCIClassMatch" = "0x06040000&amp;0xffff0000"
- | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"CurrentPowerState"=0x2,"ChildProxyPowerState"=0x2,"MaxPowerState"=0x2}
- | | | | }
- | | | |
- | | | +-o ARPT@0 &lt;class IOPCIDevice, id 0x1000001be, registered, matched, active, busy 0 (240 ms), retain 12&gt;
- | | | | {
- | | | | "assigned-addresses" = &lt;1000038200000000000060b00000000000400000&gt;
- | | | | "IOInterruptSpecifiers" = (&lt;1100000007000000&gt;,&lt;0800000000000100&gt;)
- | | | | "class-code" = &lt;00800200&gt;
- | | | | "IODeviceMemory" = (({"address"=0xb0600000,"length"=0x4000}))
- | | | | "IOPowerManagement" = {"MaxPowerState"=0x2,"ChildrenPowerState"=0x2,"CurrentPowerState"=0x2}
- | | | | "subsystem-vendor-id" = &lt;6b100000&gt;
- | | | | "built-in" = &lt;00&gt;
- | | | | "acpi-device" = "IOACPIPlatformDevice is not serializable"
- | | | | "IOPCIMSIMode" = Yes
- | | | | "IOInterruptControllers" = ("io-apic-0","IOPCIMessagedInterruptController")
- | | | | "name" = "pci14e4,4331"
- | | | | "IOChildIndex" = 0x1
- | | | | "device-id" = &lt;31430000&gt;
- | | | | "vendor-id" = &lt;e4140000&gt;
- | | | | "IOPCIExpressASPMDefault" = 0x3
- | | | | "acpi-pmcap-offset" = 0x40
- | | | | "compatible" = &lt;706369313036622c643600706369313465342c3433333100706369636c6173732c30323830303000&gt;
- | | | | "IOPCIResourced" = Yes
- | | | | "IOPCIExpressLinkCapabilities" = 0x176c11
- | | | | "acpi-path" = "IOACPIPlane:/_SB/PCI0@0/RP02@1c0001/ARPT@0"
- | | | | "subsystem-id" = &lt;d6000000&gt;
- | | | | "revision-id" = &lt;02000000&gt;
- | | | | "IOPCIExpressLinkStatus" = 0x3011
- | | | | "pcidebug" = "3:0:0"
- | | | | "IOName" = "pci14e4,4331"
- | | | | "acpi-wake-type" = 0x2
- | | | | "reg" = &lt;00000300000000000000000000000000000000001000030200000000000000000000000000400000&gt;
- | | | | }
- | | | |
- | | | +-o AirPort_Brcm4331 &lt;class AirPort_Brcm4331, id 0x10000022a, registered, matched, active, busy 0 (47 ms), retain 10&gt;
- | | | | {
- | | | | "IOClass" = "AirPort_Brcm4331"
- | | | | "IOActiveMedium" = "00000080"
- | | | | "TruePowerOff" = Yes
- | | | | "IOMinPacketSize" = 0x40
- | | | | "IOPowerManagement" = {"MaxPowerState"=0x2,"DevicePowerState"=0x2,"CurrentPowerState"=0x2}
- | | | | "IOProviderClass" = "IOPCIDevice"
- | | | | "IOLinkStatus" = 0x3
- | | | | "APChipRev" = 0x2
- | | | | "IOVendor" = "Apple"
- | | | | "APFeatures" = 0x1
- | | | | "IOProbeScore" = 0x231
- | | | | "IOPacketFilters" = {"IONetworkFilterGroup"=0x113,"IOEthernetDisabledWakeOnLANFilterGroup"=0x1,"IOEthernetWakeOnLANFilterGroup"=0x1}
- | | | | "APTAPD" = 0x1
- | | | | "IOMediumDictionary" = {"00000080"={"Index"=0x0,"Type"=0x80,"Flags"=0x0,"Speed"=0xa7d8c0}}
- | | | | "IONameMatch" = ("pci14e4,4331","pci14e4,4353","pci14e4,432b")
- | | | | "IOMACAddress" = &lt;68a86d508964&gt;
- | | | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | | | "CFBundleIdentifier" = "com.apple.driver.AirPort.Brcm4331"
- | | | | "IOFirmwareVersion" = "Broadcom BCM43xx 1.0 (5.106.198.19.22)"
- | | | | "IONameMatched" = "pci14e4,4331"
- | | | | "IOModel" = "Wireless Network Adapter (802.11 a/b/g/n)"
- | | | | "IOSelectedMedium" = "00000080"
- | | | | "IOMaxPacketSize" = 0x5ee
- | | | | "IOLinkSpeed" = 0x337f980
- | | | | "IOFeatures" = 0x8
- | | | | }
- | | | |
- | | | +-o AirPort_Brcm4331_Interface &lt;class AirPort_Brcm4331_Interface, id 0x10000027a, registered, matched, active, busy 0 (32 ms), retain 10&gt;
- | | | | | {
- | | | | | "IOMaxTransferUnit" = 0x5dc
- | | | | | "IOInterfaceState" = 0x3
- | | | | | "IOPrimaryInterface" = No
- | | | | | "IONetworkData" = {"IOOutputQueueStatsKey"={"Size"=0x2c,"Data"=&lt;0001000000000000000000000000000000000000000000000000000000000000000000000000000000000000&gt;,"Access Types"=0x9},"IONetworkStatsKey"={"Size"=0x14,"Data"=&lt;aa8b2d0000000000870718000000000000000000&gt;,"Access Types"=0x9},"IOEthernetStatsKey"={"Size"=0xd8,"Data"=&lt;00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000$
- | | | | | "IOControllerEnabled" = Yes
- | | | | | "IO80211Channel" = 0xb
- | | | | | "IO80211Band" = "2.4 GHz"
- | | | | | "IO80211SSID" = "Paul-WiFi"
- | | | | | "IO80211BSSID" = &lt;0022156cd552&gt;
- | | | | | "IOActivePacketFilters" = {"IONetworkFilterGroup"=0x13,"IOEthernetWakeOnLANFilterGroup"=0x0}
- | | | | | "IO80211DriverVersion" = "Broadcom BCM43xx 1.0 (5.106.198.19.22)"
- | | | | | "IORequiredPacketFilters" = {"IONetworkFilterGroup"=0x13,"IOEthernetWakeOnLANFilterGroup"=0x0}
- | | | | | "IOMediaAddressLength" = 0x6
- | | | | | "IOInterfaceUnit" = 0x1
- | | | | | "IO80211Locale" = "FCC"
- | | | | | "IOInterfaceFlags" = 0x8863
- | | | | | "IOMACAddress" = &lt;68a86d508964&gt;
- | | | | | "IOInterfaceType" = 0x6
- | | | | | "IOMediaHeaderLength" = 0xe
- | | | | | "IOInterfaceExtraFlags" = 0x940
- | | | | | "IOBuiltin" = Yes
- | | | | | "IOMulticastAddressList" = &lt;01005e0000fb3333000000fb01005e0000013333759c468e3333000000013333ff508964010393df0b92&gt;
- | | | | | "IO80211CountryCode" = "US"
- | | | | | "BSD Name" = "en1"
- | | | | | "IO80211HardwareVersion" = "vendorid: 0x14e4 deviceid: 0x4331 radiorev: 0x2059000 chipnum: 0x4331 chiprev: 0x2 corerev: 0x1d boardid: 0xd6 boardvendor: 0x106b boardrev: 0x1501 driverrev: 0x56ac613 ucoderev: 0x28808c4 bus: 0x1 "
- | | | | | "IO80211RSNDone" = Yes
- | | | | | "IOLocation" = ""
- | | | | | "IOInterfaceNamePrefix" = "en"
- | | | | | }
- | | | | |
- | | | | +-o IONetworkStack &lt;class IONetworkStack, id 0x100000264, registered, matched, active, busy 0 (0 ms), retain 11&gt;
- | | | | | {
- | | | | | "IOClass" = "IONetworkStack"
- | | | | | "IOProviderClass" = "IOResources"
- | | | | | "IOMatchCategory" = "IONetworkStack"
- | | | | | "IOResourceMatch" = "IOBSD"
- | | | | | "CFBundleIdentifier" = "com.apple.iokit.IONetworkingFamily"
- | | | | | "IOProbeScore" = 0x0
- | | | | | }
- | | | | |
- | | | | +-o IONetworkStackUserClient &lt;class IONetworkStackUserClient, id 0x100000355, !registered, !matched, active, busy 0, retain 5&gt;
- | | | | {
- | | | | "IOUserClientCreator" = "pid 14, configd"
- | | | | }
- | | | |
- | | | +-o AirPort_Brcm4331_P2PInterface &lt;class AirPort_Brcm4331_P2PInterface, id 0x1000003b8, registered, matched, active, busy 0 (15 ms), retain 7&gt;
- | | | {
- | | | "IOMACAddress" = &lt;0aa86d508964&gt;
- | | | "IO80211VirtualInterfaceRole" = "P2P Device"
- | | | }
- | | |
- | | +-o RP03@1C,2 &lt;class IOPCIDevice, id 0x1000001bf, registered, matched, active, busy 0 (546 ms), retain 12&gt;
- | | | | {
- | | | | "IOInterruptSpecifiers" = (&lt;1200000007000000&gt;)
- | | | | "#address-cells" = &lt;03000000&gt;
- | | | | "class-code" = &lt;00040600&gt;
- | | | | "IOPowerManagement" = {"MaxPowerState"=0x2,"ChildrenPowerState"=0x2,"CurrentPowerState"=0x2}
- | | | | "built-in" = &lt;00&gt;
- | | | | "acpi-device" = "IOACPIPlatformDevice is not serializable"
- | | | | "IOInterruptControllers" = ("io-apic-0")
- | | | | "vendor-id" = &lt;86800000&gt;
- | | | | "name" = "pci-bridge"
- | | | | "device-id" = &lt;141c0000&gt;
- | | | | "acpi-pmcap-offset" = 0xa0
- | | | | "IOPCIExpressASPMDefault" = 0x0
- | | | | "IOPCIResourced" = Yes
- | | | | "compatible" = &lt;706369383038362c3163313400706369636c6173732c30363034303000&gt;
- | | | | "ranges" = &lt;0000008200000000000050b00000008200000000000050b00000000000001000000000c20000000000000000000000c2000000000000000000000000000000000000008100000000000000000000008100000000000000000000000000000000&gt;
- | | | | "IOPCIExpressLinkCapabilities" = 0x3123c12
- | | | | "IODTPersist" = &lt;f6be88807ffffffff4db88807fffffff&gt;
- | | | | "IOPCIConfigured" = Yes
- | | | | "acpi-path" = "IOACPIPlane:/_SB/PCI0@0/RP03@1c0002"
- | | | | "revision-id" = &lt;b5000000&gt;
- | | | | "IOPCIExpressLinkStatus" = 0x7011
- | | | | "pcidebug" = "0:28:2(4:4)"
- | | | | "IOName" = "pci-bridge"
- | | | | "#size-cells" = &lt;02000000&gt;
- | | | | "reg" = &lt;00e2000000000000000000000000000000000000&gt;
- | | | | }
- | | | |
- | | | +-o IOPCI2PCIBridge &lt;class IOPCI2PCIBridge, id 0x10000020c, registered, matched, active, busy 0 (534 ms), retain 7&gt;
- | | | | {
- | | | | "IOProbeScore" = 0xffffffffffffff9c
- | | | | "CFBundleIdentifier" = "com.apple.iokit.IOPCIFamily"
- | | | | "IOProviderClass" = "IOPCIDevice"
- | | | | "IOClass" = "IOPCI2PCIBridge"
- | | | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | | | "IOPCIClassMatch" = "0x06040000&amp;0xffff0000"
- | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"CurrentPowerState"=0x2,"ChildProxyPowerState"=0x2,"MaxPowerState"=0x2}
- | | | | }
- | | | |
- | | | +-o FRWR@0 &lt;class IOPCIDevice, id 0x1000001c0, registered, matched, active, busy 0 (534 ms), retain 11&gt;
- | | | | {
- | | | | "assigned-addresses" = &lt;1000048200000000000050b00000000000100000&gt;
- | | | | "IOInterruptSpecifiers" = (&lt;1200000007000000&gt;,&lt;0900000000000100&gt;)
- | | | | "fwswappedbib" = &lt;01000000&gt;
- | | | | "class-code" = &lt;10000c00&gt;
- | | | | "IODeviceMemory" = (({"address"=0xb0500000,"length"=0x1000}))
- | | | | "fwtune" = &lt;00000008e3e3040000000808e3e30c4100004008200b40bf0000700810000000&gt;
- | | | | "pci-aspm-supported" = Yes
- | | | | "IOPowerManagement" = {"MaxPowerState"=0x2,"ChildrenPowerState"=0x2,"CurrentPowerState"=0x2}
- | | | | "subsystem-vendor-id" = &lt;c1110000&gt;
- | | | | "built-in" = &lt;00&gt;
- | | | | "acpi-device" = "IOACPIPlatformDevice is not serializable"
- | | | | "IOPCIMSIMode" = Yes
- | | | | "IOInterruptControllers" = ("io-apic-0","IOPCIMessagedInterruptController")
- | | | | "name" = "pci11c1,5901"
- | | | | "vendor-id" = &lt;c1110000&gt;
- | | | | "device-id" = &lt;01590000&gt;
- | | | | "IOChildIndex" = 0x1
- | | | | "IOPCIExpressASPMDefault" = 0x0
- | | | | "fws0" = &lt;01000000&gt;
- | | | | "compatible" = &lt;706369313163312c3539303000706369313163312c3539303100706369636c6173732c30633030313000&gt;
- | | | | "acpi-pmcap-offset" = 0x44
- | | | | "IOPCIExpressLinkCapabilities" = 0x73c11
- | | | | "IOPCIResourced" = Yes
- | | | | "acpi-path" = "IOACPIPlane:/_SB/PCI0@0/RP03@1c0002/FRWR@0"
- | | | | "subsystem-id" = &lt;00590000&gt;
- | | | | "revision-id" = &lt;08000000&gt;
- | | | | "IOPCIExpressLinkStatus" = 0x1011
- | | | | "pcidebug" = "4:0:0"
- | | | | "IOName" = "pci11c1,5901"
- | | | | "fwports" = &lt;01000000&gt;
- | | | | "reg" = &lt;00000400000000000000000000000000000000001000040200000000000000000000000000100000&gt;
- | | | | }
- | | | |
- | | | +-o AppleFWOHCI &lt;class AppleFWOHCI, id 0x10000022c, !registered, !matched, active, busy 0 (519 ms), retain 6&gt;
- | | | | {
- | | | | "IOClass" = "AppleFWOHCI"
- | | | | "CFBundleIdentifier" = "com.apple.driver.AppleFWOHCI"
- | | | | "IOProviderClass" = "IOPCIDevice"
- | | | | "CFBundleVersion" = "4.9.0"
- | | | | "RcvPhyPkt" = 0x1
- | | | | "IOPCITunnelCompatible" = Yes
- | | | | "IOProbeScore" = 0x1000
- | | | | "IONameMatch" = ("pciclass,0c0010")
- | | | | "PHY Vendor_ID" = 0x53d
- | | | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | | | "PhysicalUnitBlocksOnReads" = Yes
- | | | | "IsochReceiveContextCount" = 0x8
- | | | | "IsochTransmitContextCount" = 0x8
- | | | | "IONameMatched" = "pciclass,0c0010"
- | | | | "PHY Device_ID" = 0x6430b
- | | | | }
- | | | |
- | | | +-o IOFireWireController &lt;class IOFireWireController, id 0x10000022e, registered, matched, active, busy 0 (519 ms), retain 9&gt;
- | | | | {
- | | | | "FireWire Self IDs" = &lt;807fc856&gt;
- | | | | "IOPowerManagement" = {"DriverPowerState"=0x1,"MaxPowerState"=0x2,"CurrentPowerState"=0x1}
- | | | | "FireWire Generation ID" = "4"
- | | | | }
- | | | |
- | | | +-o IOFireWireLocalNode &lt;class IOFireWireLocalNode, id 0x10000027f, registered, matched, active, busy 0 (519 ms), retain 12&gt;
- | | | | {
- | | | | "FireWire Self IDs" = &lt;807fc856&gt;
- | | | | "FireWire Speed" = 0x3
- | | | | "IOCFPlugInTypes" = {"B54BC8F8-D53B-11D5-A1A1-0003934B81A0"="IOFireWireAVC.kext/Contents/PlugIns/IOFireWireAVCLib.plugin","CDCFCA94-F197-11D4-87E6-000502072F80"="IOFireWireFamily.kext/Contents/PlugIns/IOFireWireLib.plugin"}
- | | | | "FireWire Node ID" = 0xffc0
- | | | | "FireWire Device ROM" = &lt;0404990931333934e000b0733c0754fffeb1434c0009a1413800000703000a27810000071700000a8100000d0c0083c08d000011d1000013d10000150007ac7500000000000000004170706c6520436f6d70757465722c20496e632e0005ddde00000000000000004d6163696e746f7368000000000247ba3c0754fffeb1434c0002f8d21200005e130000010002c8b11200005e13000002&gt;
- | | | | "IOUserClientClass" = "IOFireWireUserClient"
- | | | | "GUID" = 0x3c0754fffeb1434c
- | | | | }
- | | | |
- | | | +-o IOFireWireUserClientIniter &lt;class IOFireWireUserClientIniter, id 0x100000280, !registered, !matched, active, busy 0, retain 4&gt;
- | | | | {
- | | | | "IOClass" = "IOFireWireUserClientIniter"
- | | | | "IOProviderClass" = "IOFireWireNub"
- | | | | "IOMatchCategory" = "IOFireWireUserClient"
- | | | | "IOProviderMergeProperties" = {"IOCFPlugInTypes"={"CDCFCA94-F197-11D4-87E6-000502072F80"="IOFireWireFamily.kext/Contents/PlugIns/IOFireWireLib.plugin"},"IOUserClientClass"="IOFireWireUserClient"}
- | | | | "CFBundleIdentifier" = "com.apple.iokit.IOFireWireFamily"
- | | | | "IOProbeScore" = 0x0
- | | | | }
- | | | |
- | | | +-o IOFireWireUserClientIniter &lt;class IOFireWireUserClientIniter, id 0x10000038d, !registered, !matched, active, busy 0, retain 4&gt;
- | | | | {
- | | | | "IOProviderMergeProperties" = {"IOCFPlugInTypes"={"B54BC8F8-D53B-11D5-A1A1-0003934B81A0"="IOFireWireAVC.kext/Contents/PlugIns/IOFireWireAVCLib.plugin"}}
- | | | | "CFBundleIdentifier" = "com.apple.iokit.IOFireWireFamily"
- | | | | "IOProviderClass" = "IOFireWireLocalNode"
- | | | | "IOClass" = "IOFireWireUserClientIniter"
- | | | | "IOMatchCategory" = "IOFireWireAVCProtocol"
- | | | | "IOPersonalityPublisher" = "com.apple.iokit.IOFireWireAVC"
- | | | | "IOProbeScore" = 0x0
- | | | | }
- | | | |
- | | | +-o IOFireWireIP &lt;class IOFireWireIP, id 0x10000038e, registered, matched, active, busy 0 (2 ms), retain 5&gt;
- | | | | {
- | | | | "IOClass" = "IOFireWireIP"
- | | | | "IORevision" = ""
- | | | | "IOActiveMedium" = "00100020"
- | | | | "IOMinPacketSize" = 0x40
- | | | | "IOProviderClass" = "IOFireWireLocalNode"
- | | | | "GUID" = 0x3c0754fffeb1434c
- | | | | "Diagnostics" = {"fwFastRetryBusyAcks"=0x0,"fwLastStarted"=0x0,"fwNoCommands"=0x0,"RxB"=0x0,"fwUnknownGroupAddress"=0x0,"fwActiveBCastCmds"=0x0,"fwMaxQueueSize"=0x0,"tqState"=0x1,"tqSize"=0x0,"fwInActiveMbufs"=0x0,"fwNonRFC2734Error"=0x0,"fwUnknownMCAPDesc"=0x0,"fwAttemptedDC"=0x0,"TxU"=0x0,"tqStall"=0x0,"TxF"=0x0,"fwSubmitErrs"=0x0,"fwNoBcastCommands"=0x0,"fwActiveMbufs"=0x0,"fwRxBHeaderError"=0x0,"fwRemoteGaspError"=0x0,"RxU"=0x0,"fwNoMbufs"=0x0,"tqRetries"=0x0,"fwBusyAcks"=0x0,"fwMaxPacketSize"=0x0,"fwInActiveCmd$
- | | | | "IOVendor" = "Apple"
- | | | | "IOLinkStatus" = 0x1
- | | | | "IOProbeScore" = 0x0
- | | | | "IOPacketFilters" = {"IONetworkFilterGroup"=0x113,"IOEthernetWakeOnLANFilterGroup"=0x0}
- | | | | "IOMediumDictionary" = {"00100020"={"Index"=0x0,"Type"=0x100020,"Flags"=0x0,"Speed"=0x0}}
- | | | | "IOMACAddress" = &lt;3c0754fffeb1434c&gt;
- | | | | "IOMatchCategory" = "IOFireWireIPMatchCategory"
- | | | | "CFBundleIdentifier" = "com.apple.iokit.IOFireWireIP"
- | | | | "IOMaxPacketSize" = 0x1000
- | | | | "IOModel" = "fw+"
- | | | | "IOSelectedMedium" = "00100020"
- | | | | "IOLinkSpeed" = 0x0
- | | | | "IOFWHWAddr" = &lt;3c0754fffeb1434c0b03010000000000&gt;
- | | | | "IOFeatures" = 0x8
- | | | | }
- | | | |
- | | | +-o IOFWInterface &lt;class IOFWInterface, id 0x1000003ee, registered, matched, active, busy 0 (1 ms), retain 10&gt;
- | | | | {
- | | | | "IOLocation" = ""
- | | | | "IORequiredPacketFilters" = {"IONetworkFilterGroup"=0x3,"IOEthernetWakeOnLANFilterGroup"=0x0}
- | | | | "IOInterfaceFlags" = 0x8863
- | | | | "IOMaxTransferUnit" = 0xfee
- | | | | "IOMediaAddressLength" = 0x8
- | | | | "IOInterfaceType" = 0x90
- | | | | "BSD Name" = "fw0"
- | | | | "IOInterfaceState" = 0x3
- | | | | "IOMediaHeaderLength" = 0x12
- | | | | "IOActivePacketFilters" = {"IONetworkFilterGroup"=0x3,"IOEthernetWakeOnLANFilterGroup"=0x0}
- | | | | "IOInterfaceExtraFlags" = 0x100
- | | | | "IOPrimaryInterface" = No
- | | | | "IOControllerEnabled" = Yes
- | | | | "IOInterfaceUnit" = 0x0
- | | | | "IOInterfaceNamePrefix" = "fw"
- | | | | "IOBuiltin" = No
- | | | | "IONetworkData" = {"IOFWStatsKey"={"Size"=0xd8,"Data"=&lt;000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000&gt;,"Access Types"=0x9},"IONetwork$
- | | | | }
- | | | |
- | | | +-o IONetworkStack &lt;class IONetworkStack, id 0x100000264, registered, matched, active, busy 0 (0 ms), retain 11&gt;
- | | | | {
- | | | | "IOClass" = "IONetworkStack"
- | | | | "IOProviderClass" = "IOResources"
- | | | | "IOMatchCategory" = "IONetworkStack"
- | | | | "IOResourceMatch" = "IOBSD"
- | | | | "CFBundleIdentifier" = "com.apple.iokit.IONetworkingFamily"
- | | | | "IOProbeScore" = 0x0
- | | | | }
- | | | |
- | | | +-o IONetworkStackUserClient &lt;class IONetworkStackUserClient, id 0x100000355, !registered, !matched, active, busy 0, retain 5&gt;
- | | | {
- | | | "IOUserClientCreator" = "pid 14, configd"
- | | | }
- | | |
- | | +-o UHC1@1D &lt;class IOPCIDevice, id 0x1000001c3, registered, matched, active, busy 0 (36 ms), retain 9&gt;
- | | | {
- | | | "assigned-addresses" = &lt;20e8008100000000c03000000000000020000000&gt;
- | | | "IOInterruptSpecifiers" = (&lt;1300000007000000&gt;)
- | | | "IODeviceMemory" = ("IOSubMemoryDescriptor is not serializable")
- | | | "class-code" = &lt;00030c00&gt;
- | | | "IOPowerManagement" = {"MaxPowerState"=0x2,"CurrentPowerState"=0x0}
- | | | "subsystem-vendor-id" = &lt;86800000&gt;
- | | | "built-in" = &lt;00&gt;
- | | | "acpi-device" = "IOACPIPlatformDevice is not serializable"
- | | | "IOInterruptControllers" = ("io-apic-0")
- | | | "name" = "pci8086,1c27"
- | | | "vendor-id" = &lt;86800000&gt;
- | | | "device-id" = &lt;271c0000&gt;
- | | | "IOPCIResourced" = Yes
- | | | "compatible" = &lt;706369383038362c3732373000706369383038362c3163323700706369636c6173732c30633033303000&gt;
- | | | "acpi-path" = "IOACPIPlane:/_SB/PCI0@0/UHC1@1d0000"
- | | | "subsystem-id" = &lt;70720000&gt;
- | | | "revision-id" = &lt;05000000&gt;
- | | | "pcidebug" = "0:29:0"
- | | | "IOName" = "pci8086,1c27"
- | | | "reg" = &lt;00e800000000000000000000000000000000000020e8000100000000000000000000000020000000&gt;
- | | | }
- | | |
- | | +-o EHC1@1D,7 &lt;class IOPCIDevice, id 0x1000001ca, registered, matched, active, busy 0 (5523 ms), retain 12&gt;
- | | | | {
- | | | | "assigned-addresses" = &lt;10ef008200000000006890b00000000000040000&gt;
- | | | | "IOInterruptSpecifiers" = (&lt;1600000007000000&gt;)
- | | | | "AAPL,current-extra-in-sleep" = 0x640
- | | | | "class-code" = &lt;20030c00&gt;
- | | | | "IODeviceMemory" = (({"address"=0xb0906800,"length"=0x400}))
- | | | | "IOPowerManagement" = {"MaxPowerState"=0x2,"ChildrenPowerState"=0x2,"CurrentPowerState"=0x2}
- | | | | "subsystem-vendor-id" = &lt;86800000&gt;
- | | | | "built-in" = &lt;00&gt;
- | | | | "acpi-device" = "IOACPIPlatformDevice is not serializable"
- | | | | "AAPL,current-extra" = 0x898
- | | | | "AAPL,device-internal" = 0x2
- | | | | "IOInterruptControllers" = ("io-apic-0")
- | | | | "name" = "pci8086,1c26"
- | | | | "vendor-id" = &lt;86800000&gt;
- | | | | "device-id" = &lt;261c0000&gt;
- | | | | "acpi-pmcap-offset" = 0x50
- | | | | "IOPCIResourced" = Yes
- | | | | "AAPL,current-available" = 0x834
- | | | | "compatible" = &lt;706369383038362c3732373000706369383038362c3163323600706369636c6173732c30633033323000&gt;
- | | | | "AAPL,max-port-current-in-sleep" = 0x834
- | | | | "USBBusNumber" = 0xfd
- | | | | "locationID" = 0xfffffffffd000000
- | | | | "acpi-path" = "IOACPIPlane:/_SB/PCI0@0/EHC1@1d0007"
- | | | | "subsystem-id" = &lt;70720000&gt;
- | | | | "revision-id" = &lt;05000000&gt;
- | | | | "pcidebug" = "0:29:7"
- | | | | "IOName" = "pci8086,1c26"
- | | | | "reg" = &lt;00ef00000000000000000000000000000000000010ef000200000000000000000000000000040000&gt;
- | | | | }
- | | | |
- | | | +-o AppleUSBEHCI &lt;class AppleUSBEHCI, id 0x100000211, registered, matched, active, busy 0 (5505 ms), retain 10&gt;
- | | | | {
- | | | | "IOClass" = "AppleUSBEHCI"
- | | | | "CFBundleIdentifier" = "com.apple.driver.AppleUSBEHCI"
- | | | | "IOProviderClass" = "IOPCIDevice"
- | | | | "Card Type" = "Built-in"
- | | | | "IOPCIClassMatch" = "0x0c032000"
- | | | | "IOUserClientClass" = "IOUSBControllerUserClient"
- | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x3,"DevicePowerState"=0x3,"CurrentPowerState"=0x3,"MaxPowerState"=0x4,"DriverPowerState"=0x3}
- | | | | "IOProbeScore" = 0x0
- | | | | "IOPCITunnelCompatible" = Yes
- | | | | "this" = 0xffffff80121a4000
- | | | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | | | "Errata" = 0x400000
- | | | | "UpdatedSleepPropertiesExists" = Yes
- | | | | "Statistics" = {"Errors (New)"=0x0,"Access Count"=0x19,"Bytes (New)"=0x0,"Resets (New)"=0x0,"Errors (Total)"=0x124,"ControlBulkTxOut"=0x0,"Bytes"=0xea4462,"ms (Current)"=0x15ea4e1,"Timeouts"=0x0,"Bytes (New)/ms"=0x0,"Resets"=0x1,"ms (since last read)"=0x195,"Timeouts (New)"=0x0,"Debug Flags"=0x0}
- | | | | "64bit" = Yes
- | | | | }
- | | | |
- | | | +-o EHCI Root Hub Simulation@1D,7 &lt;class IOUSBRootHubDevice, id 0x10000021c, registered, matched, active, busy 0 (411 ms), retain 10&gt;
- | | | | | {
- | | | | | "sessionID" = 0xd457eba
- | | | | | "Low Power Displayed" = No
- | | | | | "AAPL,current-extra-in-sleep" = 0x640
- | | | | | "iManufacturer" = 0x2
- | | | | | "bNumConfigurations" = 0x1
- | | | | | "idProduct" = 0x8006
- | | | | | "bcdDevice" = 0x200
- | | | | | "Bus Power Available" = 0xfa
- | | | | | "bMaxPacketSize0" = 0x40
- | | | | | "USB Product Name" = "EHCI Root Hub Simulation"
- | | | | | "iProduct" = 0x1
- | | | | | "iSerialNumber" = 0x0
- | | | | | "USB Address" = 0x1
- | | | | | "bDeviceClass" = 0x9
- | | | | | "locationID" = 0xfffffffffd000000
- | | | | | "bDeviceSubClass" = 0x0
- | | | | | "AAPL,current-extra" = 0x898
- | | | | | "AAPL,device-internal" = 0x2
- | | | | | "IOUserClientClass" = "IOUSBDeviceUserClientV2"
- | | | | | "IOCFPlugInTypes" = {"9dc7b780-9ec0-11d4-a54f-000a27052861"="IOUSBFamily.kext/Contents/PlugIns/IOUSBLib.bundle"}
- | | | | | "AAPL,current-available" = 0x834
- | | | | | "bDeviceProtocol" = 0x1
- | | | | | "AAPL,max-port-current-in-sleep" = 0x834
- | | | | | "Ports" = 0x8
- | | | | | "Unconnected External Ports" = 0x7
- | | | | | "USB Vendor Name" = "Apple Inc."
- | | | | | "Device Speed" = 0x2
- | | | | | "idVendor" = 0x5ac
- | | | | | "Requested Power" = 0x0
- | | | | | "AAPL,standard-port-current-in-sleep" = 0x1f4
- | | | | | }
- | | | | |
- | | | | +-o AppleUSBHub &lt;class AppleUSBHub, id 0x10000023f, registered, matched, active, busy 0 (7 ms), retain 8&gt;
- | | | | | {
- | | | | | "IOClass" = "AppleUSBHub"
- | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleUSBHub"
- | | | | | "IOProviderClass" = "IOUSBDevice"
- | | | | | "High Speed" = 0x1
- | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x3,"DevicePowerState"=0x3,"CurrentPowerState"=0x3,"MaxPowerState"=0x4,"DriverPowerState"=0x3}
- | | | | | "IOUserClientClass" = "AppleUSBHSHubUserClient"
- | | | | | "IOProbeScore" = 0xc350
- | | | | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | | | | "Errata" = 0x0
- | | | | | "Interrupt Pending" = No
- | | | | | "bDeviceSubClass" = 0x0
- | | | | | "bDeviceClass" = 0x9
- | | | | | }
- | | | | |
- | | | | +-o IOUSBInterface@0 &lt;class IOUSBInterface, id 0x100000242, !registered, !matched, active, busy 0, retain 7&gt;
- | | | | {
- | | | | "bcdDevice" = 0x200
- | | | | "idProduct" = 0x8006
- | | | | "bConfigurationValue" = 0x1
- | | | | "bInterfaceSubClass" = 0x0
- | | | | "locationID" = 0xfffffffffd000000
- | | | | "idVendor" = 0x5ac
- | | | | "iInterface" = 0x0
- | | | | "bAlternateSetting" = 0x0
- | | | | "bInterfaceProtocol" = 0x1
- | | | | "bInterfaceNumber" = 0x0
- | | | | "bInterfaceClass" = 0x9
- | | | | "bNumEndpoints" = 0x1
- | | | | }
- | | | |
- | | | +-o HubDevice@fd100000 &lt;class IOUSBHubDevice, id 0x100000273, registered, matched, active, busy 0 (394 ms), retain 10&gt;
- | | | | | {
- | | | | | "sessionID" = 0x172c06f4
- | | | | | "AAPL,standard-port-current-in-sleep" = 0x1f4
- | | | | | "iManufacturer" = 0x0
- | | | | | "idProduct" = 0x2513
- | | | | | "bDeviceClass" = 0x9
- | | | | | "bcdDevice" = 0xbb3
- | | | | | "Bus Power Available" = 0xfa
- | | | | | "bMaxPacketSize0" = 0x40
- | | | | | "iProduct" = 0x0
- | | | | | "iSerialNumber" = 0x0
- | | | | | "USB Address" = 0x2
- | | | | | "bNumConfigurations" = 0x1
- | | | | | "IOUserClientClass" = "IOUSBDeviceUserClientV2"
- | | | | | "locationID" = 0xfffffffffd100000
- | | | | | "bDeviceSubClass" = 0x0
- | | | | | "Ports" = 0x2
- | | | | | "Unconnected External Ports" = 0x1
- | | | | | "non-removable" = "yes"
- | | | | | "IOCFPlugInTypes" = {"9dc7b780-9ec0-11d4-a54f-000a27052861"="IOUSBFamily.kext/Contents/PlugIns/IOUSBLib.bundle"}
- | | | | | "PortNum" = 0x1
- | | | | | "bDeviceProtocol" = 0x2
- | | | | | "Device Speed" = 0x2
- | | | | | "idVendor" = 0x424
- | | | | | "Requested Power" = 0x1
- | | | | | "Low Power Displayed" = No
- | | | | | }
- | | | | |
- | | | | +-o AppleUSBHub &lt;class AppleUSBHub, id 0x100000275, registered, matched, active, busy 0 (0 ms), retain 8&gt;
- | | | | | {
- | | | | | "IOClass" = "AppleUSBHub"
- | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleUSBHub"
- | | | | | "IOProviderClass" = "IOUSBDevice"
- | | | | | "High Speed" = 0x2
- | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x3,"DevicePowerState"=0x3,"CurrentPowerState"=0x3,"MaxPowerState"=0x4,"DriverPowerState"=0x3}
- | | | | | "IOUserClientClass" = "AppleUSBHSHubUserClient"
- | | | | | "IOProbeScore" = 0xc350
- | | | | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | | | | "Errata" = 0x0
- | | | | | "Interrupt Pending" = No
- | | | | | "bDeviceSubClass" = 0x0
- | | | | | "bDeviceClass" = 0x9
- | | | | | }
- | | | | |
- | | | | +-o IOUSBInterface@0 &lt;class IOUSBInterface, id 0x100000277, !registered, !matched, active, busy 0, retain 7&gt;
- | | | | {
- | | | | "bcdDevice" = 0xbb3
- | | | | "idProduct" = 0x2513
- | | | | "bConfigurationValue" = 0x1
- | | | | "bInterfaceSubClass" = 0x0
- | | | | "locationID" = 0xfffffffffd100000
- | | | | "idVendor" = 0x424
- | | | | "iInterface" = 0x0
- | | | | "bAlternateSetting" = 0x1
- | | | | "bInterfaceProtocol" = 0x2
- | | | | "bInterfaceNumber" = 0x0
- | | | | "bInterfaceClass" = 0x9
- | | | | "bNumEndpoints" = 0x1
- | | | | }
- | | | |
- | | | +-o IR Receiver@fd110000 &lt;class IOUSBDevice, id 0x100000290, registered, matched, active, busy 0 (780 ms), retain 9&gt;
- | | | | {
- | | | | "sessionID" = 0x3120f724
- | | | | "iManufacturer" = 0x1
- | | | | "bNumConfigurations" = 0x1
- | | | | "idProduct" = 0x8242
- | | | | "bcdDevice" = 0x16
- | | | | "Bus Power Available" = 0xfa
- | | | | "bMaxPacketSize0" = 0x8
- | | | | "USB Product Name" = "IR Receiver"
- | | | | "iProduct" = 0x2
- | | | | "iSerialNumber" = 0x0
- | | | | "USB Address" = 0x3
- | | | | "bDeviceClass" = 0x0
- | | | | "locationID" = 0xfffffffffd110000
- | | | | "bDeviceSubClass" = 0x0
- | | | | "IOUserClientClass" = "IOUSBDeviceUserClientV2"
- | | | | "PortNum" = 0x1
- | | | | "non-removable" = "yes"
- | | | | "IOCFPlugInTypes" = {"9dc7b780-9ec0-11d4-a54f-000a27052861"="IOUSBFamily.kext/Contents/PlugIns/IOUSBLib.bundle"}
- | | | | "bDeviceProtocol" = 0x0
- | | | | "USB Vendor Name" = "Apple Computer, Inc."
- | | | | "Device Speed" = 0x0
- | | | | "idVendor" = 0x5ac
- | | | | "Requested Power" = 0x32
- | | | | "IOGeneralInterest" = "IOCommand is not serializable"
- | | | | "Low Power Displayed" = No
- | | | | }
- | | | |
- | | | +-o IOUSBCompositeDriver &lt;class IOUSBCompositeDriver, id 0x100000292, !registered, !matched, active, busy 0, retain 4&gt;
- | | | | {
- | | | | "IOProbeScore" = 0xc350
- | | | | "CFBundleIdentifier" = "com.apple.driver.AppleUSBComposite"
- | | | | "IOProviderClass" = "IOUSBDevice"
- | | | | "IOClass" = "IOUSBCompositeDriver"
- | | | | "bDeviceSubClass" = 0x0
- | | | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | | | "bDeviceClass" = 0x0
- | | | | }
- | | | |
- | | | +-o IOUSBInterface@0 &lt;class IOUSBInterface, id 0x100000293, registered, matched, active, busy 0 (543 ms), retain 8&gt;
- | | | | {
- | | | | "IOCFPlugInTypes" = {"2d9786c6-9ef3-11d4-ad51-000a27052861"="IOUSBFamily.kext/Contents/PlugIns/IOUSBLib.bundle"}
- | | | | "bcdDevice" = 0x16
- | | | | "IOUserClientClass" = "IOUSBInterfaceUserClientV2"
- | | | | "idProduct" = 0x8242
- | | | | "bConfigurationValue" = 0x1
- | | | | "bInterfaceSubClass" = 0x0
- | | | | "locationID" = 0xfffffffffd110000
- | | | | "idVendor" = 0x5ac
- | | | | "iInterface" = 0x0
- | | | | "bAlternateSetting" = 0x0
- | | | | "bInterfaceProtocol" = 0x0
- | | | | "bInterfaceNumber" = 0x0
- | | | | "bInterfaceClass" = 0x3
- | | | | "bNumEndpoints" = 0x1
- | | | | }
- | | | |
- | | | +-o AppleIRController &lt;class AppleIRController, id 0x100000295, registered, matched, active, busy 0 (190 ms), retain 9&gt;
- | | | | {
- | | | | "PrimaryUsagePage" = 0xc
- | | | | "MaxInputReportSize" = 0x5
- | | | | "IOUserClientClass" = "IOHIDLibUserClient"
- | | | | "VersionNumber" = 0x16
- | | | | "VendorID" = 0x5ac
- | | | | "bConfigurationValue" = 0x1
- | | | | "DeviceEnabled" = Yes
- | | | | "BootProtocol" = 0x0
- | | | | "MaxFeatureReportSize" = 0x0
- | | | | "Product" = "Apple IR"
- | | | | "Transport" = "USB"
- | | | | "Elements" = ({"ReportID"=0x0,"ElementCookie"=0x1,"CollectionType"=0x1,"Type"=0x201,"Elements"=({"UnitExponent"=0x0,"IsRelative"=Yes,"UsagePage"=0xc,"Max"=0x4,"IsArray"=Yes,"Min"=0x1,"Type"=0x2,"Size"=0x4,"Flags"=0x44,"ReportID"=0x0,"Usage"=0xffffffffffffffff,"ReportCount"=0x1,"Unit"=0x0,"HasNullState"=Yes,"IsNonLinear"=No,"HasPreferredState"=Yes,"ReportSize"=0x4,"ScaledMin"=0x1,"IsWrapping"=No,"ScaledMax"=0x4,"ElementCookie"=0x2},{"UnitExponent"=0x0,"IsRelative"=Yes,"UsagePage"=0xc,"Max"=0x1,"IsArray"=Yes,"Min"=0x0,"Ty$
- | | | | "Manufacturer" = "Apple Computer, Inc."
- | | | | "ProductID" = 0x8242
- | | | | "IOPowerManagement" = {"TimeSinceDeviceIdle"=0x15c88e3,"MaxPowerState"=0x4,"ActivityTickles"=0x0,"IdleTimerPeriod"=0x1770,"DevicePowerState"=0x0,"TimeSinceLastTickle"=0x15cd2f8,"DriverPowerState"=0x3,"CurrentPowerState"=0x3}
- | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xc,"DeviceUsage"=0x1})
- | | | | "HIDRemoteControlType" = "IRRemoteControl"
- | | | | "idVendor" = 0x5ac
- | | | | "ReportInterval" = 0x1f40
- | | | | "InputReportElements" = ({"ReportID"=0x0,"ElementCookie"=0x2b,"Size"=0x28,"ReportCount"=0x1,"Type"=0x1,"UsagePage"=0x0,"ReportSize"=0x28,"Usage"=0x0})
- | | | | "idProduct" = 0x8242
- | | | | "HIDRemoteControl" = Yes
- | | | | "CFBundleIdentifier" = "com.apple.driver.AppleIRController"
- | | | | "MaxOutputReportSize" = 0x0
- | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"}
- | | | | "IOProviderClass" = "IOUSBInterface"
- | | | | "bInterfaceNumber" = 0x0
- | | | | "LocationID" = 0xfffffffffd110000
- | | | | "IOClass" = "AppleIRController"
- | | | | "PrimaryUsage" = 0x1
- | | | | "CountryCode" = 0x0
- | | | | "IOGeneralInterest" = "IOCommand is not serializable"
- | | | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | | | "IOProbeScore" = 0x15f90
- | | | | "bInterfaceClass" = 0x3
- | | | | }
- | | | |
- | | | +-o IOHIDInterface &lt;class IOHIDInterface, id 0x100000298, registered, matched, active, busy 0 (2 ms), retain 5&gt;
- | | | | {
- | | | | "VendorID" = 0x5ac
- | | | | "CountryCode" = 0x0
- | | | | "Product" = "Apple IR"
- | | | | "VersionNumber" = 0x16
- | | | | "PrimaryUsage" = 0x1
- | | | | "LocationID" = 0xfffffffffd110000
- | | | | "BootProtocol" = 0x0
- | | | | "ProductID" = 0x8242
- | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xc,"DeviceUsage"=0x1})
- | | | | "Transport" = "USB"
- | | | | "ReportInterval" = 0x1f40
- | | | | "PrimaryUsagePage" = 0xc
- | | | | "Manufacturer" = "Apple Computer, Inc."
- | | | | }
- | | | |
- | | | +-o IOHIDLibUserClient &lt;class IOHIDLibUserClient, id 0x10000046c, !registered, !matched, active, busy 0, retain 6&gt;
- | | | | {
- | | | | "IOUserClientCreator" = "pid 46, loginwindow"
- | | | | }
- | | | |
- | | | +-o IOHIDLibUserClient &lt;class IOHIDLibUserClient, id 0x100000598, !registered, !matched, active, busy 0, retain 6&gt;
- | | | {
- | | | "IOUserClientCreator" = "pid 692, Rdio"
- | | | }
- | | |
- | | +-o LPCB@1F &lt;class IOPCIDevice, id 0x1000001b8, registered, matched, active, busy 0 (442 ms), retain 23&gt;
- | | | | {
- | | | | "name" = "pci8086,1c49"
- | | | | "compatible" = &lt;706369383038362c3732373000706369383038362c3163343900706369636c6173732c30363031303000&gt;
- | | | | "subsystem-vendor-id" = &lt;86800000&gt;
- | | | | "IOName" = "pci8086,1c49"
- | | | | "reg" = &lt;00f8000000000000000000000000000000000000&gt;
- | | | | "device-id" = &lt;491c0000&gt;
- | | | | "IOPowerManagement" = {"MaxPowerState"=0x2,"ChildrenPowerState"=0x2,"CurrentPowerState"=0x2}
- | | | | "built-in" = &lt;00&gt;
- | | | | "IOPCIResourced" = Yes
- | | | | "revision-id" = &lt;05000000&gt;
- | | | | "vendor-id" = &lt;86800000&gt;
- | | | | "pcidebug" = "0:31:0"
- | | | | "class-code" = &lt;00010600&gt;
- | | | | "acpi-path" = "IOACPIPlane:/_SB/PCI0@0/LPCB@1f0000"
- | | | | "subsystem-id" = &lt;70720000&gt;
- | | | | "acpi-device" = "IOACPIPlatformDevice is not serializable"
- | | | | }
- | | | |
- | | | +-o AppleLPC &lt;class AppleLPC, id 0x100000360, registered, matched, active, busy 0 (1 ms), retain 5&gt;
- | | | {
- | | | "IOProbeScore" = 0x3e8
- | | | "CFBundleIdentifier" = "com.apple.driver.AppleLPC"
- | | | "IOProviderClass" = "IOPCIDevice"
- | | | "IOClass" = "AppleLPC"
- | | | "LCTL_Offset" = 0x21a8
- | | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | | "IONameMatch" = ("pci8086,1c42","pci8086,1c44","pci8086,1c4e","pci8086,1c4c","pci8086,1c50","pci8086,1c4a","pci8086,1c46","pci8086,1c5c","pci8086,1c52","pci8086,1c54","pci8086,1c56","pci8086,1c43","pci8086,1c4f","pci8086,1c47","pci8086,1c4b","pci8086,1c49","pci8086,1c41","pci8086,1c4d","pci8086,1e42","pci8086,1e55","pci8086,1e58","pci8086,1e57","pci8086,1e59","pci8086,1e5d","pci8086,1e43","pci8086,1e56")
- | | | "IOPowerManagement" = {"MaxPowerState"=0x1,"CurrentPowerState"=0x1}
- | | | "IONameMatched" = "pci8086,1c49"
- | | | }
- | | |
- | | +-o SATA@1F,2 &lt;class IOPCIDevice, id 0x1000001b1, registered, matched, active, busy 0 (222 ms), retain 14&gt;
- | | | | {
- | | | | "assigned-addresses" = &lt;10fa00810000000048310000000000000800000014fa0081000000005c310000000000000400000018fa0081000000004031000000000000080000001cfa00810000000058310000000000000400000020fa00810000000060300000000000002000000024fa008200000000006090b00000000000080000&gt;
- | | | | "IOInterruptSpecifiers" = (&lt;1300000007000000&gt;,&lt;0300000000000100&gt;)
- | | | | "IODeviceMemory" = ("IOSubMemoryDescriptor is not serializable","IOSubMemoryDescriptor is not serializable","IOSubMemoryDescriptor is not serializable","IOSubMemoryDescriptor is not serializable","IOSubMemoryDescriptor is not serializable",({"address"=0xb0906000,"length"=0x800}))
- | | | | "class-code" = &lt;01060100&gt;
- | | | | "IOPowerManagement" = {"MaxPowerState"=0x2,"ChildrenPowerState"=0x2,"CurrentPowerState"=0x2}
- | | | | "subsystem-vendor-id" = &lt;86800000&gt;
- | | | | "built-in" = &lt;00&gt;
- | | | | "acpi-device" = "IOACPIPlatformDevice is not serializable"
- | | | | "IOPCIMSIMode" = Yes
- | | | | "IOInterruptControllers" = ("io-apic-0","IOPCIMessagedInterruptController")
- | | | | "name" = "pci8086,1c03"
- | | | | "vendor-id" = &lt;86800000&gt;
- | | | | "acpi-pmcap-offset" = 0x70
- | | | | "device-id" = &lt;031c0000&gt;
- | | | | "IOPCIResourced" = Yes
- | | | | "compatible" = &lt;706369383038362c3732373000706369383038362c3163303300706369636c6173732c30313036303100&gt;
- | | | | "acpi-path" = "IOACPIPlane:/_SB/PCI0@0/SATA@1f0002"
- | | | | "subsystem-id" = &lt;70720000&gt;
- | | | | "revision-id" = &lt;05000000&gt;
- | | | | "pcidebug" = "0:31:2"
- | | | | "IOName" = "pci8086,1c03"
- | | | | "reg" = &lt;00fa00000000000000000000000000000000000010fa00010000000000000000000000000800000014fa00010000000000000000000000000400000018fa0001000000000000000000000000080000001cfa00010000000000000000000000000400000020fa00010000000000000000000000002000000024fa000200000000000000000000000000080000&gt;
- | | | | }
- | | | |
- | | | +-o AppleIntelPchSeriesAHCI &lt;class AppleIntelPchSeriesAHCI, id 0x100000213, registered, matched, active, busy 0 (155 ms), retain 9&gt;
- | | | | {
- | | | | "IOClass" = "AppleIntelPchSeriesAHCI"
- | | | | "CFBundleIdentifier" = "com.apple.driver.AppleAHCIPort"
- | | | | "IOProviderClass" = "IOPCIDevice"
- | | | | "IOPowerManagement" = {"MaxPowerState"=0x1,"ChildrenPowerState"=0x1,"CurrentPowerState"=0x1}
- | | | | "IOProbeScore" = 0x7d0
- | | | | "IONameMatch" = ("pci8086,1c02","pci8086,1c03")
- | | | | "IOPolledInterface" = "AppleAHCIPolledAdapter is not serializable"
- | | | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | | | "Vendor Name" = "Intel"
- | | | | "AHCI-Ejectable" = No
- | | | | "IONameMatched" = "pci8086,1c03"
- | | | | "AHCI-Built-In" = Yes
- | | | | "Chipset Name" = "6 Series Chipset"
- | | | | "AHCI-CAP" = 0xffffffffe730ff45
- | | | | }
- | | | |
- | | | +-o PRT0@0 &lt;class AppleIntelPchSeriesAHCIPort, id 0x1000001b2, registered, matched, active, busy 0 (83 ms), retain 10&gt;
- | | | | | {
- | | | | | "acpi-device" = "IOACPIPlatformDevice is not serializable"
- | | | | | "Controller Characteristics" = {"Port Description"="AHCI Version 1.30 Supported","Product Name"="6 Series Chipset","Vendor Name"="Intel","Port Speed"="6 Gigabit"}
- | | | | | "AHCI Port Hot Plug" = No
- | | | | | "IOMaximumSegmentCountWrite" = 0x100
- | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x1,"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"MaxPowerState"=0x1}
- | | | | | "IOMaximumSegmentByteCountWrite" = 0x400000
- | | | | | "IOMaximumSegmentByteCountRead" = 0x400000
- | | | | | "IOPolledInterface" = "AppleAHCIPortPolledAdapter is not serializable"
- | | | | | "AHCI-Ejectable" = No
- | | | | | "Protocol Characteristics" = {"Physical Interconnect"="SATA","Physical Interconnect Location"="Internal"}
- | | | | | "64-bit" = Yes
- | | | | | "AHCI-Built-In" = Yes
- | | | | | "IOMaximumSegmentCountRead" = 0x100
- | | | | | "Physical Interconnect Location" = "Internal"
- | | | | | "acpi-path" = "IOACPIPlane:/_SB/PCI0@0/SATA@1f0002/PRT0@ffff"
- | | | | | "AHCI Port ALPM" = Yes
- | | | | | "AHCI Port SNotification" = Yes
- | | | | | "AHCI Port ESATA" = No
- | | | | | }
- | | | | |
- | | | | +-o IOAHCIDevice@0 &lt;class IOAHCIDevice, id 0x100000255, registered, matched, active, busy 0 (83 ms), retain 12&gt;
- | | | | | {
- | | | | | "IOUnit" = 0x0
- | | | | | "Protocol Characteristics" = {"Physical Interconnect"="SATA","AHCI Port Number"=0x0,"Port Speed"="3 Gigabit","Physical Interconnect Location"="Internal"}
- | | | | | }
- | | | | |
- | | | | +-o AppleAHCIDiskDriver &lt;class AppleAHCIDiskDriver, id 0x100000258, registered, matched, active, busy 0 (80 ms), retain 6&gt;
- | | | | | {
- | | | | | "IOClass" = "AppleAHCIDiskDriver"
- | | | | | "CFBundleIdentifier" = "com.apple.iokit.IOAHCIBlockStorage"
- | | | | | "IOProviderClass" = "IOAHCIDevice"
- | | | | | "Model" = "TOSHIBA MK7559GSXF "
- | | | | | "Revision" = "GQ006B "
- | | | | | "NCQ" = Yes
- | | | | | "Logical Block Size" = 0x200
- | | | | | "IOProbeScore" = 0x0
- | | | | | "IOPolledInterface" = "not serializable"
- | | | | | "Serial Number" = " X1IACZPDT"
- | | | | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | | | | "Queue Depth" = 0x20
- | | | | | "IOMaximumBlockCountRead" = 0x10000
- | | | | | "Physical Block Size" = 0x1000
- | | | | | "IOMaximumBlockCountWrite" = 0x10000
- | | | | | "SATA Features" = 0xf
- | | | | | }
- | | | | |
- | | | | +-o IOAHCIBlockStorageDevice &lt;class IOAHCIBlockStorageDevice, id 0x10000025a, registered, matched, active, busy 0 (80 ms), retain 6&gt;
- | | | | | {
- | | | | | "Device Characteristics" = {"Logical Block Size"=0x200,"Product Name"="TOSHIBA MK7559GSXF ","Medium Type"="Rotational","Rotation Rate"=0x1518,"Physical Block Size"=0x1000,"SATA Features"=0xf,"Serial Number"=" X1IACZPDT","Product Revision Level"="GQ006B "}
- | | | | | "IOMinimumSegmentAlignmentByteCount" = 0x4
- | | | | | "device-type" = "Generic"
- | | | | | "Protocol Characteristics" = {"Physical Interconnect"="SATA","Physical Interconnect Location"="Internal"}
- | | | | | "SMART Capable" = Yes
- | | | | | "IOCFPlugInTypes" = {"24514B7A-2804-11D6-8A02-003065704866"="SMARTLib.plugin"}
- | | | | | }
- | | | | |
- | | | | +-o IOBlockStorageDriver &lt;class IOBlockStorageDriver, id 0x10000025d, registered, matched, active, busy 0 (79 ms), retain 7&gt;
- | | | | | {
- | | | | | "IOPropertyMatch" = {"device-type"="Generic"}
- | | | | | "IOProbeScore" = 0x0
- | | | | | "IOProviderClass" = "IOBlockStorageDevice"
- | | | | | "IOClass" = "IOBlockStorageDriver"
- | | | | | "CFBundleIdentifier" = "com.apple.iokit.IOStorageFamily"
- | | | | | "Statistics" = {"Operations (Write)"=0x313d8,"Latency Time (Write)"=0x0,"Bytes (Read)"=0x10fc9be00,"Errors (Write)"=0x0,"Total Time (Read)"=0x8831c251b4,"Retries (Read)"=0x0,"Latency Time (Read)"=0x0,"Errors (Read)"=0x0,"Total Time (Write)"=0x10d89144318,"Bytes (Write)"=0x1a4d51c00,"Operations (Read)"=0x156f5,"Retries (Write)"=0x0}
- | | | | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | | | | "IOGeneralInterest" = "IOCommand is not serializable"
- | | | | | }
- | | | | |
- | | | | +-o TOSHIBA MK7559GSXF Media &lt;class IOMedia, id 0x10000025e, registered, matched, active, busy 0 (79 ms), retain 10&gt;
- | | | | | {
- | | | | | "Removable" = No
- | | | | | "Content" = "GUID_partition_scheme"
- | | | | | "Whole" = Yes
- | | | | | "Leaf" = No
- | | | | | "BSD Name" = "disk0"
- | | | | | "Ejectable" = No
- | | | | | "Preferred Block Size" = 0x200
- | | | | | "IOMediaIcon" = {"IOBundleResourceFile"="Internal.icns","CFBundleIdentifier"="com.apple.iokit.IOStorageFamily"}
- | | | | | "BSD Minor" = 0x0
- | | | | | "IOGeneralInterest" = "IOCommand is not serializable"
- | | | | | "Writable" = Yes
- | | | | | "BSD Major" = 0xe
- | | | | | "Size" = 0xaea8cde000
- | | | | | "IOBusyInterest" = "IOCommand is not serializable"
- | | | | | "Open" = Yes
- | | | | | "Content Hint" = ""
- | | | | | "BSD Unit" = 0x0
- | | | | | }
- | | | | |
- | | | | +-o IOMediaBSDClient &lt;class IOMediaBSDClient, id 0x100000260, registered, matched, active, busy 0 (0 ms), retain 5&gt;
- | | | | | {
- | | | | | "IOClass" = "IOMediaBSDClient"
- | | | | | "IOMatchCategory" = "IOMediaBSDClient"
- | | | | | "IOProbeScore" = 0x7530
- | | | | | "IOProviderClass" = "IOMedia"
- | | | | | "IOResourceMatch" = "IOBSD"
- | | | | | "CFBundleIdentifier" = "com.apple.iokit.IOStorageFamily"
- | | | | | }
- | | | | |
- | | | | +-o IOGUIDPartitionScheme &lt;class IOGUIDPartitionScheme, id 0x10000026a, !registered, !matched, active, busy 0 (3 ms), retain 8&gt;
- | | | | | {
- | | | | | "IOProbeScore" = 0xfa0
- | | | | | "IOPropertyMatch" = {"Whole"=Yes}
- | | | | | "IOMatchCategory" = "IOStorage"
- | | | | | "IOClass" = "IOGUIDPartitionScheme"
- | | | | | "IOProviderClass" = "IOMedia"
- | | | | | "CFBundleIdentifier" = "com.apple.iokit.IOStorageFamily"
- | | | | | "Content Mask" = "GUID_partition_scheme"
- | | | | | }
- | | | | |
- | | | | +-o EFI System Partition@1 &lt;class IOMedia, id 0x10000026d, registered, matched, active, busy 0 (2 ms), retain 8&gt;
- | | | | | | {
- | | | | | | "Removable" = No
- | | | | | | "Content" = "C12A7328-F81F-11D2-BA4B-00A0C93EC93B"
- | | | | | | "Whole" = No
- | | | | | | "Leaf" = Yes
- | | | | | | "BSD Name" = "disk0s1"
- | | | | | | "Ejectable" = No
- | | | | | | "Preferred Block Size" = 0x200
- | | | | | | "BSD Minor" = 0x1
- | | | | | | "IOGeneralInterest" = "IOCommand is not serializable"
- | | | | | | "Writable" = Yes
- | | | | | | "UUID" = "9D60ACA3-6E85-4FD9-8837-FC11FE00FA38"
- | | | | | | "Partition ID" = 0x1
- | | | | | | "BSD Major" = 0xe
- | | | | | | "Size" = 0xc800000
- | | | | | | "IOBusyInterest" = "IOCommand is not serializable"
- | | | | | | "Open" = No
- | | | | | | "Content Hint" = "C12A7328-F81F-11D2-BA4B-00A0C93EC93B"
- | | | | | | "BSD Unit" = 0x0
- | | | | | | }
- | | | | | |
- | | | | | +-o IOMediaBSDClient &lt;class IOMediaBSDClient, id 0x100000270, registered, matched, active, busy 0 (1 ms), retain 5&gt;
- | | | | | {
- | | | | | "IOClass" = "IOMediaBSDClient"
- | | | | | "IOMatchCategory" = "IOMediaBSDClient"
- | | | | | "IOProbeScore" = 0x7530
- | | | | | "IOProviderClass" = "IOMedia"
- | | | | | "IOResourceMatch" = "IOBSD"
- | | | | | "CFBundleIdentifier" = "com.apple.iokit.IOStorageFamily"
- | | | | | }
- | | | | |
- | | | | +-o Macintosh HD@2 &lt;class IOMedia, id 0x10000026e, registered, matched, active, busy 0 (2 ms), retain 10&gt;
- | | | | | | {
- | | | | | | "Removable" = No
- | | | | | | "Content" = "48465300-0000-11AA-AA11-00306543ECAC"
- | | | | | | "Whole" = No
- | | | | | | "Leaf" = Yes
- | | | | | | "BSD Name" = "disk0s2"
- | | | | | | "Ejectable" = No
- | | | | | | "Preferred Block Size" = 0x200
- | | | | | | "BSD Minor" = 0x2
- | | | | | | "IOGeneralInterest" = "IOCommand is not serializable"
- | | | | | | "Writable" = Yes
- | | | | | | "UUID" = "5B5EE543-291F-4E1C-8EA1-23829C4132B4"
- | | | | | | "Partition ID" = 0x2
- | | | | | | "BSD Major" = 0xe
- | | | | | | "Size" = 0xae758f0000
- | | | | | | "IOBusyInterest" = "IOCommand is not serializable"
- | | | | | | "Open" = Yes
- | | | | | | "Content Hint" = "48465300-0000-11AA-AA11-00306543ECAC"
- | | | | | | "BSD Unit" = 0x0
- | | | | | | }
- | | | | | |
- | | | | | +-o IOMediaBSDClient &lt;class IOMediaBSDClient, id 0x100000271, registered, matched, active, busy 0 (1 ms), retain 6&gt;
- | | | | | {
- | | | | | "IOClass" = "IOMediaBSDClient"
- | | | | | "IOMatchCategory" = "IOMediaBSDClient"
- | | | | | "IOProbeScore" = 0x7530
- | | | | | "IOProviderClass" = "IOMedia"
- | | | | | "IOResourceMatch" = "IOBSD"
- | | | | | "CFBundleIdentifier" = "com.apple.iokit.IOStorageFamily"
- | | | | | }
- | | | | |
- | | | | +-o Recovery HD@3 &lt;class IOMedia, id 0x10000026f, registered, matched, active, busy 0 (3 ms), retain 8&gt;
- | | | | | {
- | | | | | "Removable" = No
- | | | | | "Content" = "426F6F74-0000-11AA-AA11-00306543ECAC"
- | | | | | "Whole" = No
- | | | | | "Leaf" = Yes
- | | | | | "BSD Name" = "disk0s3"
- | | | | | "Ejectable" = No
- | | | | | "Preferred Block Size" = 0x200
- | | | | | "BSD Minor" = 0x3
- | | | | | "IOGeneralInterest" = "IOCommand is not serializable"
- | | | | | "Writable" = Yes
- | | | | | "UUID" = "4DFF3157-00A5-4D2F-9D4F-4363B496FDD7"
- | | | | | "Partition ID" = 0x3
- | | | | | "BSD Major" = 0xe
- | | | | | "Size" = 0x26be4000
- | | | | | "IOBusyInterest" = "IOCommand is not serializable"
- | | | | | "Open" = No
- | | | | | "Content Hint" = "426F6F74-0000-11AA-AA11-00306543ECAC"
- | | | | | "BSD Unit" = 0x0
- | | | | | }
- | | | | |
- | | | | +-o IOMediaBSDClient &lt;class IOMediaBSDClient, id 0x100000272, registered, matched, active, busy 0 (1 ms), retain 5&gt;
- | | | | {
- | | | | "IOClass" = "IOMediaBSDClient"
- | | | | "IOMatchCategory" = "IOMediaBSDClient"
- | | | | "IOProbeScore" = 0x7530
- | | | | "IOProviderClass" = "IOMedia"
- | | | | "IOResourceMatch" = "IOBSD"
- | | | | "CFBundleIdentifier" = "com.apple.iokit.IOStorageFamily"
- | | | | }
- | | | |
- | | | +-o PRT1@1 &lt;class AppleIntelPchSeriesAHCIPort, id 0x1000001b3, registered, matched, active, busy 0 (142 ms), retain 10&gt;
- | | | | {
- | | | | "acpi-device" = "IOACPIPlatformDevice is not serializable"
- | | | | "Controller Characteristics" = {"Port Description"="AHCI Version 1.30 Supported","Product Name"="6 Series Chipset","Vendor Name"="Intel","Port Speed"="6 Gigabit"}
- | | | | "AHCI Port Hot Plug" = No
- | | | | "IOMaximumSegmentCountWrite" = 0x100
- | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x1,"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"MaxPowerState"=0x1}
- | | | | "IOMaximumSegmentByteCountWrite" = 0x400000
- | | | | "IOMaximumSegmentByteCountRead" = 0x400000
- | | | | "media-notify" = 0x1
- | | | | "AHCI-Ejectable" = No
- | | | | "Protocol Characteristics" = {"Physical Interconnect"="SATA","Physical Interconnect Location"="Internal"}
- | | | | "64-bit" = Yes
- | | | | "AHCI-Built-In" = Yes
- | | | | "IOMaximumSegmentCountRead" = 0x100
- | | | | "Physical Interconnect Location" = "Internal"
- | | | | "acpi-path" = "IOACPIPlane:/_SB/PCI0@0/SATA@1f0002/PRT1@1ffff"
- | | | | "AHCI Port ALPM" = Yes
- | | | | "AHCI Port SNotification" = Yes
- | | | | "AHCI Port ESATA" = No
- | | | | }
- | | | |
- | | | +-o IOAHCIDevice@0 &lt;class IOAHCIDevice, id 0x100000257, registered, matched, active, busy 0 (142 ms), retain 7&gt;
- | | | | {
- | | | | "IOUnit" = 0x0
- | | | | "Protocol Characteristics" = {"Physical Interconnect"="SATA","AHCI Port Number"=0x0,"Port Speed"="1.5 Gigabit","Physical Interconnect Location"="Internal","ATAPI"=Yes}
- | | | | }
- | | | |
- | | | +-o IOAHCISerialATAPI &lt;class IOAHCISerialATAPI, id 0x100000259, registered, matched, active, busy 0 (136 ms), retain 8&gt;
- | | | | {
- | | | | "IOClass" = "IOAHCISerialATAPI"
- | | | | "CFBundleIdentifier" = "com.apple.iokit.IOAHCISerialATAPI"
- | | | | "IOProviderClass" = "IOAHCIDevice"
- | | | | "Write Time Out Duration" = 0x3a98
- | | | | "Model" = "MATSHITADVD-R UJ-8A8 "
- | | | | "Revision" = "HB14 "
- | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x1,"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"MaxPowerState"=0x1,"DriverPowerState"=0x1}
- | | | | "Read Time Out Duration" = 0x3a98
- | | | | "IOProbeScore" = 0x0
- | | | | "Serial Number" = " D021472035WDTL7AG"
- | | | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | | | "Retry Count" = 0x1
- | | | | "Physical Interconnect" = "SATA"
- | | | | "Protocol Characteristics" = {"Physical Interconnect"="SATA","AHCI Port Number"=0x0,"Port Speed"="1.5 Gigabit","Physical Interconnect Location"="Internal","ATAPI"=Yes}
- | | | | "Physical Interconnect Location" = "Internal"
- | | | | "ATAPI" = Yes
- | | | | }
- | | | |
- | | | +-o IOSCSIPeripheralDeviceNub &lt;class IOSCSIPeripheralDeviceNub, id 0x100000262, registered, matched, active, busy 0 (31 ms), retain 6&gt;
- | | | | {
- | | | | "IOProbeScore" = 0x0
- | | | | "CFBundleIdentifier" = "com.apple.iokit.IOSCSIArchitectureModelFamily"
- | | | | "IOProviderClass" = "IOSCSIProtocolServices"
- | | | | "IOClass" = "IOSCSIPeripheralDeviceNub"
- | | | | "IOMatchCategory" = "SCSITaskUserClientIniter"
- | | | | "Peripheral Device Type" = 0x5
- | | | | "TPGS Information" = 0x0
- | | | | "Vendor Identification" = "MATSHITA"
- | | | | "Protocol Characteristics" = {"Write Time Out Duration"=0x3a98,"AHCI Port Number"=0x0,"Read Time Out Duration"=0x3a98,"Physical Interconnect"="SATA","Port Speed"="1.5 Gigabit","Physical Interconnect Location"="Internal","ATAPI"=Yes,"Retry Count"=0x1}
- | | | | "Product Identification" = "DVD-R UJ-8A8"
- | | | | "Product Revision Level" = "HB14"
- | | | | }
- | | | |
- | | | +-o IOSCSIPeripheralDeviceType05 &lt;class IOSCSIPeripheralDeviceType05, id 0x100000278, !registered, !matched, active, busy 0 (1 ms), retain 10&gt;
- | | | | {
- | | | | "IOClass" = "IOSCSIPeripheralDeviceType05"
- | | | | "CFBundleIdentifier" = "com.apple.iokit.IOSCSIMultimediaCommandsDevice"
- | | | | "IOProviderClass" = "IOSCSIPeripheralDeviceNub"
- | | | | "IOMaximumBlockCountRead" = 0xffff
- | | | | "IOPowerManagement" = {"TimeSinceDeviceIdle"=0x816,"MaxPowerState"=0x4,"ActivityTickles"=0x0,"IdleTimerPeriod"=0x1388,"DevicePowerState"=0x3,"TimeSinceLastTickle"=0x1f81,"DriverPowerState"=0x1,"CurrentPowerState"=0x3}
- | | | | "IOMaximumBlockCountWrite" = 0xffff
- | | | | "CD Features" = 0x7ff
- | | | | "IOProbeScore" = 0x1388
- | | | | "Peripheral Device Type" = 0x5
- | | | | "BD Features" = 0x0
- | | | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | | | "DVD Features" = 0x1f7
- | | | | }
- | | | |
- | | | +-o IODVDServices &lt;class IODVDServices, id 0x10000027c, registered, matched, active, busy 0 (1 ms), retain 7&gt;
- | | | | {
- | | | | "IOMatchCategory" = "SCSITaskUserClientIniter"
- | | | | "IOGeneralInterest" = "IOCommand is not serializable"
- | | | | "SCSITaskUserClient GUID" = &lt;005e361280ffffff71975b1900000000&gt;
- | | | | "device-type" = "DVD"
- | | | | "IOCFPlugInTypes" = {"97ABCF2C-23CC-11D5-A0E8-003065704866"="IOSCSIArchitectureModelFamily.kext/Contents/PlugIns/SCSITaskUserClient.kext/Contents/PlugIns/SCSITaskLib.plugin"}
- | | | | "IOUserClientClass" = "SCSITaskUserClient"
- | | | | "Protocol Characteristics" = {"Write Time Out Duration"=0x3a98,"AHCI Port Number"=0x0,"Read Time Out Duration"=0x3a98,"Physical Interconnect"="SATA","Port Speed"="1.5 Gigabit","Physical Interconnect Location"="Internal","ATAPI"=Yes,"Retry Count"=0x1}
- | | | | "Device Characteristics" = {"Power Off"=Yes,"Product Name"="DVD-R UJ-8A8","Fast Spindown"=Yes,"CD Features"=0x7ff,"Low Power Polling"=No,"DVD Features"=0x1f7,"BD Features"=0x0,"Vendor Name"="MATSHITA","Async Notification"=No,"Loading Mechanism"="Slot","Product Revision Level"="HB14"}
- | | | | "SCSITaskDeviceCategory" = "SCSITaskAuthoringDevice"
- | | | | "IOMinimumSegmentAlignmentByteCount" = 0x4
- | | | | }
- | | | |
- | | | +-o SCSITaskUserClientIniter &lt;class SCSITaskUserClientIniter, id 0x10000027d, !registered, !matched, active, busy 0, retain 4&gt;
- | | | | {
- | | | | "IOClass" = "SCSITaskUserClientIniter"
- | | | | "IOProviderClass" = "IODVDServices"
- | | | | "IOMatchCategory" = "SCSITaskUserClientIniter"
- | | | | "IOProviderMergeProperties" = {"IOCFPlugInTypes"={"97ABCF2C-23CC-11D5-A0E8-003065704866"="IOSCSIArchitectureModelFamily.kext/Contents/PlugIns/SCSITaskUserClient.kext/Contents/PlugIns/SCSITaskLib.plugin"},"IOUserClientClass"="SCSITaskUserClient","SCSITaskDeviceCategory"="SCSITaskAuthoringDevice"}
- | | | | "CFBundleIdentifier" = "com.apple.iokit.SCSITaskUserClient"
- | | | | "IOProbeScore" = 0x0
- | | | | }
- | | | |
- | | | +-o IODVDBlockStorageDriver &lt;class IODVDBlockStorageDriver, id 0x10000027e, registered, matched, active, busy 0 (0 ms), retain 5&gt;
- | | | | {
- | | | | "IOPropertyMatch" = {"device-type"="DVD"}
- | | | | "IOProbeScore" = 0x0
- | | | | "IOProviderClass" = "IODVDBlockStorageDevice"
- | | | | "IOClass" = "IODVDBlockStorageDriver"
- | | | | "CFBundleIdentifier" = "com.apple.iokit.IODVDStorageFamily"
- | | | | "Statistics" = {"Operations (Write)"=0x0,"Latency Time (Write)"=0x0,"Bytes (Read)"=0x0,"Errors (Write)"=0x0,"Total Time (Read)"=0x0,"Retries (Read)"=0x0,"Latency Time (Read)"=0x0,"Errors (Read)"=0x0,"Total Time (Write)"=0x0,"Bytes (Write)"=0x0,"Operations (Read)"=0x0,"Retries (Write)"=0x0}
- | | | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | | | }
- | | | |
- | | | +-o SCSITaskUserClient &lt;class SCSITaskUserClient, id 0x100000fd5, !registered, !matched, active, busy 0, retain 6&gt;
- | | | {
- | | | "IOUserClientCreator" = "pid 21079, system_profiler"
- | | | }
- | | |
- | | +-o SBUS@1F,3 &lt;class IOPCIDevice, id 0x1000001b4, registered, matched, active, busy 0 (439 ms), retain 13&gt;
- | | | {
- | | | "assigned-addresses" = &lt;10fb008200000000007090b0000000000001000020fb008100000000a0ef00000000000020000000&gt;
- | | | "IOInterruptSpecifiers" = (&lt;1200000007000000&gt;)
- | | | "IODeviceMemory" = (({"address"=0xb0907000,"length"=0x100}),"IOSubMemoryDescriptor is not serializable")
- | | | "class-code" = &lt;00050c00&gt;
- | | | "IOPowerManagement" = {"MaxPowerState"=0x2,"ChildrenPowerState"=0x2,"CurrentPowerState"=0x2}
- | | | "subsystem-vendor-id" = &lt;86800000&gt;
- | | | "built-in" = &lt;00&gt;
- | | | "acpi-device" = "IOACPIPlatformDevice is not serializable"
- | | | "IOInterruptControllers" = ("io-apic-0")
- | | | "name" = "pci8086,1c22"
- | | | "vendor-id" = &lt;86800000&gt;
- | | | "device-id" = &lt;221c0000&gt;
- | | | "IOPCIResourced" = Yes
- | | | "compatible" = &lt;706369383038362c3732373000706369383038362c3163323200706369636c6173732c30633035303000&gt;
- | | | "acpi-path" = "IOACPIPlane:/_SB/PCI0@0/SBUS@1f0003"
- | | | "subsystem-id" = &lt;70720000&gt;
- | | | "revision-id" = &lt;05000000&gt;
- | | | "pcidebug" = "0:31:3"
- | | | "IOName" = "pci8086,1c22"
- | | | "reg" = &lt;00fb00000000000000000000000000000000000010fb00020000000000000000000000000001000020fb000100000000000000000000000020000000&gt;
- | | | }
- | | |
- | | +-o AppleSMBusPCI &lt;class AppleSMBusPCI, id 0x100000362, registered, matched, active, busy 0 (383 ms), retain 5&gt;
- | | | {
- | | | "IOClass" = "AppleSMBusPCI"
- | | | "IOProviderClass" = "IOPCIDevice"
- | | | "IOProbeScore" = 0x3e8
- | | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | | "IOPCIClassMatch" = "0x0C050000"
- | | | "CFBundleIdentifier" = "com.apple.driver.AppleSMBusPCI"
- | | | }
- | | |
- | | +-o BUS0@0 &lt;class IOACPIPlatformDevice, id 0x100000156, registered, matched, active, busy 0 (383 ms), retain 9&gt;
- | | | {
- | | | "_STA" = 0xffffffffffffffff
- | | | "_ADR" = 0x0
- | | | "contains-device" = "true"
- | | | "bus-architecture" = "ICH"
- | | | "compatible" = &lt;736d62757300&gt;
- | | | "device-properties" = {"acpi-device"="IOACPIPlatformDevice is not serializable","acpi-path"="IOACPIPlane:/_SB/PCI0@0/SBUS@1f0003/BUS0@0"}
- | | | }
- | | |
- | | +-o AppleSMBusControllerICH &lt;class AppleSMBusControllerICH, id 0x1000003ad, registered, matched, active, busy 0 (79 ms), retain 7&gt;
- | | | {
- | | | "IOPropertyMatch" = {"contains-device"="true","bus-architecture"="ICH"}
- | | | "IOProbeScore" = 0x3e8
- | | | "CFBundleIdentifier" = "com.apple.driver.AppleSMBusController"
- | | | "IOClass" = "AppleSMBusControllerICH"
- | | | "IOProviderClass" = "IOACPIPlatformDevice"
- | | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | | "IONameMatch" = "smbus"
- | | | "IOPowerManagement" = {"MaxPowerState"=0x1,"ChildrenPowerState"=0x1,"CurrentPowerState"=0x1}
- | | | "IONameMatched" = "smbus"
- | | | }
- | | |
- | | +-o MKY0 &lt;class AppleSMBusDevice, id 0x1000003ae, registered, matched, active, busy 0 (78 ms), retain 5&gt;
- | | | {
- | | | "_STA" = 0xffffffffffffffff
- | | | "_ADR" = 0x0
- | | | "compatible" = &lt;6d696b657900&gt;
- | | | "device-properties" = {"acpi-path"="IOACPIPlane:/_SB/PCI0@0/SBUS@1f0003/BUS0@0/MKY0@0","acpi-device"="IOACPIPlatformDevice is not serializable","device-id"=0xcd2,"refnum"=0x0,"hdet"=0x1,"address"=0x39}
- | | | }
- | | |
- | | +-o AppleMikeyDriver &lt;class AppleMikeyDriver, id 0x1000003be, registered, matched, active, busy 0 (8 ms), retain 6&gt;
- | | | {
- | | | "IOProbeScore" = 0x3e8
- | | | "CFBundleIdentifier" = "com.apple.driver.AppleMikeyDriver"
- | | | "IOProviderClass" = "AppleSMBusDevice"
- | | | "IOClass" = "AppleMikeyDriver"
- | | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | | "AppleMikeyHIDMatching" = 0x0
- | | | "IOPMUnattendedWakePowerState" = 0x0
- | | | "IONameMatch" = ("mikey","MKY0","MKY1")
- | | | "IOPowerManagement" = {"DriverPowerState"=0x2,"MaxPowerState"=0x2,"CurrentPowerState"=0x2}
- | | | "IONameMatched" = "MKY0"
- | | | }
- | | |
- | | +-o AppleMikeyHIDDriver &lt;class AppleMikeyHIDDriver, id 0x1000003e6, registered, matched, active, busy 0 (6 ms), retain 6&gt;
- | | | {
- | | | "IOClass" = "AppleMikeyHIDDriver"
- | | | "HIDRemoteControl" = Yes
- | | | "HIDDefaultBehavior" = ""
- | | | "Product" = "Apple Mikey HID Driver"
- | | | "IOProviderClass" = "AppleMikeyDriver"
- | | | "MaxInputReportSize" = 0x4
- | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xc,"DeviceUsage"=0x1})
- | | | "IOProbeScore" = 0x0
- | | | "MaxOutputReportSize" = 0x0
- | | | "IOUserClientClass" = "IOHIDLibUserClient"
- | | | "HIDRemoteControlType" = "WiredRemoteControl"
- | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"}
- | | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | | "CFBundleIdentifier" = "com.apple.driver.AppleMikeyHIDDriver"
- | | | "PrimaryUsage" = 0x1
- | | | "Elements" = ({"ReportID"=0x0,"ElementCookie"=0x1,"CollectionType"=0x1,"Type"=0x201,"Elements"=({"UnitExponent"=0x0,"IsRelative"=Yes,"UsagePage"=0x1,"Max"=0x3,"IsArray"=Yes,"Min"=0x1,"Type"=0x2,"Size"=0x4,"Flags"=0x44,"ReportID"=0x0,"Usage"=0xffffffffffffffff,"ReportCount"=0x1,"Unit"=0x0,"HasNullState"=Yes,"IsNonLinear"=No,"HasPreferredState"=Yes,"ReportSize"=0x4,"ScaledMin"=0x1,"IsWrapping"=No,"ScaledMax"=0x3,"ElementCookie"=0x2},{"UnitExponent"=0x0,"IsRelative"=Yes,"UsagePage"=0x1,"Max"=0x1,"IsArray"=Yes,"Min"=0x0$
- | | | "IOGeneralInterest" = "IOCommand is not serializable"
- | | | "ReportInterval" = 0x1f40
- | | | "PrimaryUsagePage" = 0xc
- | | | "MaxFeatureReportSize" = 0x0
- | | | "InputReportElements" = ({"ReportID"=0x0,"ElementCookie"=0xa,"Size"=0x20,"ReportCount"=0x1,"Type"=0x1,"UsagePage"=0x0,"ReportSize"=0x20,"Usage"=0x0})
- | | | }
- | | |
- | | +-o IOHIDInterface &lt;class IOHIDInterface, id 0x1000003e8, registered, matched, active, busy 0 (2 ms), retain 5&gt;
- | | | {
- | | | "PrimaryUsagePage" = 0xc
- | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xc,"DeviceUsage"=0x1})
- | | | "HIDDefaultBehavior" = ""
- | | | "Product" = "Apple Mikey HID Driver"
- | | | "PrimaryUsage" = 0x1
- | | | "ReportInterval" = 0x1f40
- | | | }
- | | |
- | | +-o IOHIDLibUserClient &lt;class IOHIDLibUserClient, id 0x10000046b, !registered, !matched, active, busy 0, retain 6&gt;
- | | {
- | | "IOUserClientCreator" = "pid 46, loginwindow"
- | | }
- | |
- | +-o DMAC &lt;class IOACPIPlatformDevice, id 0x10000015a, registered, matched, active, busy 0 (0 ms), retain 6&gt;
- | | {
- | | "name" = &lt;504e503032303000&gt;
- | | "_STA" = 0xffffffffffffffff
- | | "IODeviceMemory" = (({"address"=0x0,"length"=0x20}),({"address"=0x81,"length"=0x11}),({"address"=0x93,"length"=0xd}),({"address"=0xc0,"length"=0x20}))
- | | }
- | |
- | +-o FWHD &lt;class IOACPIPlatformDevice, id 0x10000015b, registered, matched, active, busy 0 (1 ms), retain 6&gt;
- | | {
- | | "name" = &lt;494e543038303000&gt;
- | | "_STA" = 0xffffffffffffffff
- | | "IODeviceMemory" = (({"address"=0xff000000,"length"=0x1000000}))
- | | }
- | |
- | +-o HPET &lt;class IOACPIPlatformDevice, id 0x10000015c, registered, matched, active, busy 0 (2 ms), retain 7&gt;
- | | | {
- | | | "_STA" = 0xf
- | | | "IODeviceMemory" = (({"address"=0xfed00000,"length"=0x400}))
- | | | "IOInterruptSpecifiers" = (&lt;1400000000000000&gt;,&lt;1500000000000000&gt;,&lt;0b00000000000000&gt;,&lt;0c00000000000000&gt;)
- | | | "name" = &lt;504e503031303300&gt;
- | | | "compatible" = &lt;504e503043303100&gt;
- | | | "IOInterruptControllers" = ("io-apic-0","io-apic-0","io-apic-0","io-apic-0")
- | | | }
- | | |
- | | +-o AppleHPET &lt;class AppleHPET, id 0x1000001db, !registered, !matched, active, busy 0, retain 4&gt;
- | | {
- | | "IOProbeScore" = 0x0
- | | "CFBundleIdentifier" = "com.apple.driver.AppleHPET"
- | | "IOProviderClass" = "IOACPIPlatformDevice"
- | | "IOClass" = "AppleHPET"
- | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | "HPTC" = 0x0
- | | "IONameMatch" = "PNP0103"
- | | "IONameMatched" = "PNP0103"
- | | }
- | |
- | +-o IPIC &lt;class IOACPIPlatformDevice, id 0x10000015d, registered, matched, active, busy 0 (2 ms), retain 6&gt;
- | | {
- | | "_STA" = 0xffffffffffffffff
- | | "IODeviceMemory" = (({"address"=0x20,"length"=0x2}),({"address"=0x24,"length"=0x2}),({"address"=0x28,"length"=0x2}),({"address"=0x2c,"length"=0x2}),({"address"=0x30,"length"=0x2}),({"address"=0x34,"length"=0x2}),({"address"=0x38,"length"=0x2}),({"address"=0x3c,"length"=0x2}),({"address"=0xa0,"length"=0x2}),({"address"=0xa4,"length"=0x2}),({"address"=0xa8,"length"=0x2}),({"address"=0xac,"length"=0x2}),({"address"=0xb0,"length"=0x2}),({"address"=0xb4,"length"=0x2}),({"address"=0xb8,"length"=0x2}),({"address"=0xbc,"length"=0x2}),({"ad$
- | | "IOInterruptControllers" = ("io-apic-0")
- | | "IOInterruptSpecifiers" = (&lt;0200000000000000&gt;)
- | | "name" = &lt;504e503030303000&gt;
- | | }
- | |
- | +-o MATH &lt;class IOACPIPlatformDevice, id 0x10000015e, registered, matched, active, busy 0 (3 ms), retain 6&gt;
- | | {
- | | "_STA" = 0xffffffffffffffff
- | | "IODeviceMemory" = (({"address"=0xf0,"length"=0x1}))
- | | "IOInterruptControllers" = ("io-apic-0")
- | | "IOInterruptSpecifiers" = (&lt;0d00000000000000&gt;)
- | | "name" = &lt;504e503043303400&gt;
- | | }
- | |
- | +-o LDRC &lt;class IOACPIPlatformDevice, id 0x10000015f, registered, matched, active, busy 0 (3 ms), retain 6&gt;
- | | {
- | | "_STA" = 0xffffffffffffffff
- | | "_UID" = "2"
- | | "IODeviceMemory" = (({"address"=0x2e,"length"=0x2}),({"address"=0x4e,"length"=0x2}),({"address"=0x61,"length"=0x1}),({"address"=0x63,"length"=0x1}),({"address"=0x65,"length"=0x1}),({"address"=0x67,"length"=0x1}),({"address"=0x70,"length"=0x1}),({"address"=0x80,"length"=0x1}),({"address"=0x92,"length"=0x1}),({"address"=0xb2,"length"=0x2}),({"address"=0x680,"length"=0x20}),({"address"=0x1000,"length"=0x10}),({"address"=0xffff,"length"=0x1}),({"address"=0xffff,"length"=0x1}),({"address"=0x400,"length"=0x80}),({"address"=0x500,"length"$
- | | "name" = &lt;504e503043303200&gt;
- | | }
- | |
- | +-o RTC &lt;class IOACPIPlatformDevice, id 0x100000160, registered, matched, active, busy 0 (21 ms), retain 8&gt;
- | | | {
- | | | "_STA" = 0xffffffffffffffff
- | | | "IODeviceMemory" = (({"address"=0x70,"length"=0x8}))
- | | | "name" = &lt;504e503042303000&gt;
- | | | "IOInterruptControllers" = ("io-apic-0","ACPIEventController")
- | | | "acpi-wake-type" = 0x4
- | | | "IOInterruptSpecifiers" = (&lt;0800000000000000&gt;,&lt;0400000000000000&gt;)
- | | | }
- | | |
- | | +-o AppleRTC &lt;class AppleRTC, id 0x1000001dd, registered, matched, active, busy 0 (13 ms), retain 6&gt;
- | | {
- | | "IOProbeScore" = 0x0
- | | "CFBundleIdentifier" = "com.apple.driver.AppleRTC"
- | | "IOProviderClass" = "IOACPIPlatformDevice"
- | | "IOClass" = "AppleRTC"
- | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | "IOPlatformWakeAction" = 0x2710
- | | "IONameMatch" = "PNP0B00"
- | | "IOPowerManagement" = {"MaxPowerState"=0x2,"CurrentPowerState"=0x2}
- | | "IONameMatched" = "PNP0B00"
- | | }
- | |
- | +-o TIMR &lt;class IOACPIPlatformDevice, id 0x100000161, registered, matched, active, busy 0 (4 ms), retain 6&gt;
- | | {
- | | "name" = &lt;504e503031303000&gt;
- | | "_STA" = 0xffffffffffffffff
- | | "IODeviceMemory" = (({"address"=0x40,"length"=0x4}),({"address"=0x50,"length"=0x4}))
- | | }
- | |
- | +-o SMC &lt;class IOACPIPlatformDevice, id 0x100000162, registered, matched, active, busy 0 (434 ms), retain 9&gt;
- | | | {
- | | | "_STA" = 0xb
- | | | "IODeviceMemory" = (({"address"=0x300,"length"=0x20}))
- | | | "name" = &lt;4150503030303100&gt;
- | | | "IOInterruptControllers" = ("io-apic-0")
- | | | "IOInterruptSpecifiers" = (&lt;0600000000000000&gt;)
- | | | "compatible" = &lt;736d632d6875726f6e726976657200&gt;
- | | | }
- | | |
- | | +-o AppleSMC &lt;class AppleSMC, id 0x10000036f, registered, matched, active, busy 0 (33 ms), retain 6&gt;
- | | | {
- | | | "IOClass" = "AppleSMC"
- | | | "CFBundleIdentifier" = "com.apple.driver.AppleSMC"
- | | | "IOProviderClass" = "IOACPIPlatformDevice"
- | | | "NumIrqMissWithKeyStatOk" = 0x0
- | | | "NumDirtyArbitration" = 0x0
- | | | "IOUserClientClass" = "AppleSMCClient"
- | | | "NumIrqMissing" = 0x0
- | | | "IOProbeScore" = 0x4e20
- | | | "NumIrqMissWithKeyDoneSet" = 0x0
- | | | "IONameMatch" = "APP0001"
- | | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | | "NumIrqMissWithAttnSet" = 0x0
- | | | "IOPowerManagement" = {"MaxPowerState"=0x1,"CurrentPowerState"=0x1}
- | | | "smc-version" = "1.69f3"
- | | | "ShutdownCause" = "5"
- | | | "IONameMatched" = "APP0001"
- | | | "IOMode" = "PMIO"
- | | | "SleepCause" = "5"
- | | | "smc-count" = 0x1
- | | | }
- | | |
- | | +-o SMCWatchDogTimer &lt;class SMCWatchDogTimer, id 0x1000003dc, registered, matched, active, busy 0 (1 ms), retain 5&gt;
- | | {
- | | "IOWatchDogEnabled" = No
- | | }
- | |
- | +-o SMS0 &lt;class IOACPIPlatformDevice, id 0x100000163, registered, matched, active, busy 0 (351 ms), retain 7&gt;
- | | | {
- | | | "_STA" = 0xffffffffffffffff
- | | | "disk-sense-level" = 0x1
- | | | "name" = &lt;4150503030303300&gt;
- | | | "compatible" = &lt;736d632d736d7300&gt;
- | | | "device-properties" = {"disk-sense-level"=0x1}
- | | | }
- | | |
- | | +-o SMCMotionSensor &lt;class SMCMotionSensor, id 0x1000003a7, registered, matched, active, busy 0 (1 ms), retain 5&gt;
- | | {
- | | "IOProbeScore" = 0x4e20
- | | "CFBundleIdentifier" = "com.apple.driver.SMCMotionSensor"
- | | "IOProviderClass" = "IOService"
- | | "IOClass" = "SMCMotionSensor"
- | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | "IONameMatch" = "APP0003"
- | | "IOUserClientClass" = "SMCMotionSensorClient"
- | | "IONameMatched" = "APP0003"
- | | "IOPowerManagement" = {"MaxPowerState"=0x1,"CurrentPowerState"=0x1}
- | | "ams-active" = 0x1
- | | }
- | |
- | +-o ALS0 &lt;class IOACPIPlatformDevice, id 0x100000164, registered, matched, active, busy 0 (441 ms), retain 7&gt;
- | | | {
- | | | "compatible" = &lt;736d632d616c7300&gt;
- | | | "_STA" = 0xf
- | | | "name" = &lt;414350493030303800&gt;
- | | | }
- | | |
- | | +-o AppleLMUController &lt;class AppleLMUController, id 0x100000373, registered, matched, active, busy 0 (0 ms), retain 6&gt;
- | | {
- | | "IOProbeScore" = 0x0
- | | "CFBundleIdentifier" = "com.apple.driver.AppleSMCLMU"
- | | "IOProviderClass" = "IOService"
- | | "IOClass" = "AppleLMUController"
- | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | "IOGeneralInterest" = "IOCommand is not serializable"
- | | "IONameMatch" = "ACPI0008"
- | | "IOPowerManagement" = {"MaxPowerState"=0x1,"CurrentPowerState"=0x1}
- | | "IONameMatched" = "ACPI0008"
- | | }
- | |
- | +-o EC &lt;class IOACPIPlatformDevice, id 0x100000165, registered, matched, active, busy 0 (6 ms), retain 9&gt;
- | | {
- | | "_STA" = 0xffffffffffffffff
- | | "IODeviceMemory" = (({"address"=0x62,"length"=0x1}),({"address"=0x66,"length"=0x1}))
- | | "_UID" = "0"
- | | "acpi-wake-system-state" = 0x4
- | | "acpi-wake-gpe" = 0x23
- | | "name" = &lt;504e503043303900&gt;
- | | }
- | |
- | +-o SMB0 &lt;class IOACPIPlatformDevice, id 0x100000166, registered, matched, active, busy 0 (46 ms), retain 9&gt;
- | | | {
- | | | "name" = &lt;414350493030303100&gt;
- | | | "_STA" = 0xf
- | | | }
- | | |
- | | +-o AppleECSMBusController &lt;class AppleECSMBusController, id 0x1000001ee, registered, matched, active, busy 0 (39 ms), retain 5&gt;
- | | | {
- | | | "_SBS" = 0x1
- | | | "IOSMBusSmartBatteryManager" = Yes
- | | | }
- | | |
- | | +-o AppleSmartBatteryManager &lt;class AppleSmartBatteryManager, id 0x100000215, registered, matched, active, busy 0 (14 ms), retain 6&gt;
- | | | {
- | | | "IOPropertyMatch" = {"IOSMBusSmartBatteryManager"=Yes}
- | | | "IOProbeScore" = 0x0
- | | | "IOProviderClass" = "IOSMBusController"
- | | | "IOClass" = "AppleSmartBatteryManager"
- | | | "CFBundleIdentifier" = "com.apple.driver.AppleSmartBatteryManager"
- | | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | | "IOUserClientClass" = "AppleSmartBatteryManagerUserClient"
- | | | "IOPowerManagement" = {"MaxPowerState"=0x1,"CurrentPowerState"=0x1}
- | | | }
- | | |
- | | +-o AppleSmartBattery &lt;class AppleSmartBattery, id 0x100000217, registered, matched, active, busy 0 (13 ms), retain 5&gt;
- | | {
- | | "ExternalConnected" = No
- | | "TimeRemaining" = 0xb9
- | | "InstantTimeToEmpty" = 0x92
- | | "ExternalChargeCapable" = No
- | | "CellVoltage" = (0xfe6,0xfe4,0xfd5,0x0)
- | | "Voltage" = 0x2f9f
- | | "BatteryInvalidWakeSeconds" = 0x1e
- | | "AdapterInfo" = 0x0
- | | "MaxCapacity" = 0x1a52
- | | "PermanentFailureStatus" = 0x0
- | | "Manufacturer" = "SMP"
- | | "Location" = 0x0
- | | "CurrentCapacity" = 0x19e4
- | | "LegacyBatteryInfo" = {"Amperage"=0xfffffffffffff7a0,"Flags"=0x4,"Capacity"=0x1a52,"Current"=0x19e4,"Voltage"=0x2f9f,"Cycle Count"=0x168}
- | | "FirmwareSerialNumber" = 0x1
- | | "BatteryInstalled" = Yes
- | | "PackReserve" = 0xc8
- | | "CycleCount" = 0x168
- | | "DesignCapacity" = 0x1af4
- | | "AvgTimeToFull" = 0xffff
- | | "ManufactureDate" = 0x402c
- | | "OperationStatus" = 0xe443
- | | "BatterySerialNumber" = "D862025008TDGDLAH"
- | | "PostDischargeWaitSeconds" = 0x78
- | | "Temperature" = 0xc21
- | | "InstantAmperage" = 0xfffffffffffff55b
- | | "ManufacturerData" = &lt;000000000406000201580000034b3931033030320341544c001700&gt;
- | | "MaxErr" = 0x1
- | | "FullyCharged" = Yes
- | | "DeviceName" = "bq20z451"
- | | "IOGeneralInterest" = "IOCommand is not serializable"
- | | "Amperage" = 0xfffffffffffff7a0
- | | "IsCharging" = No
- | | "DesignCycleCount9C" = 0x3e8
- | | "PostChargeWaitSeconds" = 0x78
- | | "AvgTimeToEmpty" = 0xb9
- | | }
- | |
- | +-o SBS0 &lt;class IOACPIPlatformDevice, id 0x100000167, registered, matched, active, busy 0 (7 ms), retain 6&gt;
- | | {
- | | "name" = &lt;414350493030303200&gt;
- | | "_STA" = 0xffffffffffffffff
- | | }
- | |
- | +-o GMUX &lt;class IOACPIPlatformDevice, id 0x100000168, registered, matched, active, busy 0 (356 ms), retain 7&gt;
- | | | {
- | | | "acpi-wake-gpe" = 0x16
- | | | "compatible" = &lt;676d757800&gt;
- | | | "acpi-wake-system-state" = 0x3
- | | | "IOInterruptControllers" = ("ACPIEventController")
- | | | "_STA" = 0xb
- | | | "IOInterruptSpecifiers" = (&lt;1b00000001000000&gt;)
- | | | "name" = &lt;4150503030304200&gt;
- | | | }
- | | |
- | | +-o AppleMuxControl &lt;class AppleMuxControl, id 0x100000367, registered, matched, active, busy 0 (303 ms), retain 15&gt;
- | | | {
- | | | "IOClass" = "AppleMuxControl"
- | | | "RunTime-Integrated" = &lt;00000000&gt;
- | | | "LionOS" = 0x1
- | | | "igd-surface-list" = ()
- | | | "IOPowerManagement" = {"MaxPowerState"=0x1,"CurrentPowerState"=0x1}
- | | | "IOProviderClass" = "IOACPIPlatformDevice"
- | | | "Config1" = {"FeatureMask"=0x20400,"FBDriver0"="AppleIntelFramebuffer","GLDriver1"="NVKernel","NumberFramebuffers1"=0x2,"Policy"=0x30,"FBDriver1"="NVDA","DebounceAppExit"=0x0,"EnergySavingPolicy"=0x1,"BacklightSmoothing"=0x8,"GLDriver0"="Gen575","DebounceHDP"=0x0,"HDADriver1"="AppleHDAController","NumberFramebuffers0"=0x1}
- | | | "ExternalDisplayPresent" = &lt;00&gt;
- | | | "IOProbeScore" = 0x3e8
- | | | "IOUserClientClass" = "AppleGraphicsControlClient"
- | | | "Config2" = {"CheckExternalPort"=0x0,"NumberFramebuffers0"=0x1,"FBDriver0"="AppleIntelFramebuffer","PowerUpPCILinkOnSleep"=0x1,"FeatureMask"=0x20400,"GLDriver1"="ATIRadeonX3000","ClamshellVendorWorkaround"=0x1,"DebounceAppExit"=0x0,"BacklightSmoothing"=0x8,"HPDInterval"=0x7d0,"SpreadSpectrumControl"=0x1,"NumberFramebuffers1"=0x3,"HDADriver1"="AppleHDAController","FBDriver1"="ATIFramebufferNI","Policy"=0x30,"ReversePowerdownSequence"=0x1,"DisableTerminationControl"=0x0,"DebounceHDP"=0x0,"EnergySavingPolicy"=0x1,"GLDriver0"="Gen6Ac$
- | | | "Default" = {"EnergySavingPolicy"=0x1,"FBDriver0"="NVDA","FBDriver1"="NVDA","GLDriver0"="NVKernel","GLDriver1"="NVKernel"}
- | | | "ActivePolicy" = &lt;01000000&gt;
- | | | "task-list" = (0x1b6b,0x1ade,0xa63,0x2b4)
- | | | "IONameMatch" = "GMUX"
- | | | "IOUserClientCrossEndianCompatible" = Yes
- | | | "Config3" = {"CheckExternalPort"=0x0,"NumberFramebuffers0"=0x1,"FBDriver0"="AppleIntelFramebuffer","GPUMinimumOffTime"=0x32,"PowerUpPCILinkOnSleep"=0x1,"FeatureMask"=0x20400,"GLDriver1"="NVKernel","BacklightSmoothing"=0x8,"DebounceAppExit"=0x0,"HPDInterval"=0x7d0,"HDADriver1"="AppleHDAController","NumberFramebuffers1"=0x4,"FBDriver1"="NVDA","Policy"=0x30,"DisableTerminationControl"=0x0,"ReversePowerdownSequence"=0x1,"DebounceHDP"=0x0,"StartUpDelay"=0x1388,"EnergySavingPolicy"=0x1,"GLDriver0"="Gen7Accelerator"}
- | | | "IOMatchCategory" = "AppleMuxControl"
- | | | "CFBundleIdentifier" = "com.apple.driver.AppleMuxControl"
- | | | "Config4" = {"FeatureMask"=0x20400,"FBDriver0"="AppleIntelFramebuffer","GLDriver1"="NVKernel","GPUMinimumOffTime"=0x32,"PowerUpPCILinkOnSleep"=0x1,"Policy"=0x30,"NumberFramebuffers1"=0x4,"DisableTerminationControl"=0x0,"FBDriver1"="NVDA","CheckExternalPort"=0x0,"ReversePowerdownSequence"=0x1,"DebounceAppExit"=0x0,"EnergySavingPolicy"=0x1,"BacklightSmoothing"=0x8,"HPDInterval"=0x7d0,"GLDriver0"="Gen7Accelerator","DebounceHDP"=0x0,"HDADriver1"="AppleHDAController","NumberFramebuffers0"=0x1}
- | | | "IONameMatched" = "GMUX"
- | | | "peg-surface-list" = ({"surfaceType"="2d","width"=0x1,"height"=0x1,"pid"=0xb4},{"surfaceType"="gl","width"=0x17c,"height"=0x24b,"pid"=0xa63},{"surfaceType"="gl","width"=0x400,"height"=0x300,"pid"=0x1b6b},{"surfaceType"="gl","width"=0x690,"height"=0x41a,"pid"=0x2e},{"surfaceType"="gl","width"=0x400,"height"=0x300,"pid"=0x1ade},{"surfaceType"="gl","width"=0x1,"height"=0x1,"pid"=0xb4})
- | | | "gMux-version" = "1.9.23"
- | | | "IOGeneralInterest" = "IOCommand is not serializable"
- | | | "RunTime-Discrete" = &lt;c62a5b01&gt;
- | | | "ConfigMap" = {"06XX"="Config2","04XX"="Config1","07XX"="Config3","Mac-4B7AC7E43945597E"="Config4"}
- | | | }
- | | |
- | | +-o AppleGraphicsControlBacklight &lt;class AppleGraphicsControlBacklight, id 0x100000366, registered, matched, active, busy 0 (301 ms), retain 5&gt;
- | | | {
- | | | "IOProbeScore" = 0x1388
- | | | "CFBundleIdentifier" = "com.apple.driver.AppleMuxControl"
- | | | "IOMatchCategory" = "IODisplayParameters"
- | | | "IOClass" = "AppleGraphicsControlBacklight"
- | | | "IOProviderClass" = "IOACPIPlatformDevice"
- | | | "IONameMatch" = "backlight"
- | | | "IONameMatched" = "backlight"
- | | | "IODisplayParameters" = {"brightness"={"max"=0xff,"min"=0x28},"commit"={"reg"=0x0}}
- | | | "ApplePanel" = {"F14Ta005"=&lt;0011000000150022003500490062008300ac00dc0114014c019401e6024d02c5035403ff&gt;}
- | | | }
- | | |
- | | +-o AppleGraphicsControlClient &lt;class AppleGraphicsControlClient, id 0x10000045e, !registered, !matched, active, busy 0, retain 5&gt;
- | | | {
- | | | "IOUserClientCreator" = "pid 180, WindowServer"
- | | | }
- | | |
- | | +-o AppleGraphicsControlClient &lt;class AppleGraphicsControlClient, id 0x10000059b, !registered, !matched, active, busy 0, retain 5&gt;
- | | | {
- | | | "IOUserClientCreator" = "pid 692, Rdio"
- | | | }
- | | |
- | | +-o AppleGraphicsControlClient &lt;class AppleGraphicsControlClient, id 0x100000c4b, !registered, !matched, active, busy 0, retain 5&gt;
- | | | {
- | | | "IOUserClientCreator" = "pid 2659, Twitter"
- | | | }
- | | |
- | | +-o AppleGraphicsControlClient &lt;class AppleGraphicsControlClient, id 0x100000e12, !registered, !matched, active, busy 0, retain 5&gt;
- | | | {
- | | | "IOUserClientCreator" = "pid 6878, VMware Fusion"
- | | | }
- | | |
- | | +-o AppleGraphicsControlClient &lt;class AppleGraphicsControlClient, id 0x100000e20, !registered, !matched, active, busy 0, retain 5&gt;
- | | {
- | | "IOUserClientCreator" = "pid 7019, vmware-vmx"
- | | }
- | |
- | +-o PDRC &lt;class IOACPIPlatformDevice, id 0x100000173, registered, matched, active, busy 0 (7 ms), retain 6&gt;
- | | {
- | | "_STA" = 0xffffffffffffffff
- | | "_UID" = "1"
- | | "IODeviceMemory" = (({"address"=0xfed1c000,"length"=0x4000}),({"address"=0xfed10000,"length"=0x8000}),({"address"=0xfed18000,"length"=0x1000}),({"address"=0xfed19000,"length"=0x1000}),({"address"=0xe0000000,"length"=0x10000000}),({"address"=0xfed20000,"length"=0x20000}),({"address"=0xfed90000,"length"=0x4000}),({"address"=0xfed45000,"length"=0x4b000}),({"address"=0xff000000,"length"=0x1000000}),({"address"=0xfee00000,"length"=0x100000}))
- | | "name" = &lt;504e503043303200&gt;
- | | }
- | |
- | +-o MEM2 &lt;class IOACPIPlatformDevice, id 0x10000018a, registered, matched, active, busy 0 (8 ms), retain 6&gt;
- | | {
- | | "_STA" = 0xffffffffffffffff
- | | "_UID" = "2"
- | | "IODeviceMemory" = (({"address"=0x20000000,"length"=0x200000}),({"address"=0x40000000,"length"=0x200000}))
- | | "name" = &lt;504e503043303100&gt;
- | | }
- | |
- | +-o ADP1 &lt;class IOACPIPlatformDevice, id 0x100000193, registered, matched, active, busy 0 (25 ms), retain 7&gt;
- | | | {
- | | | "_STA" = 0xffffffffffffffff
- | | | "acpi-wake-system-state" = 0x4
- | | | "acpi-wake-gpe" = 0x23
- | | | "name" = &lt;414350493030303300&gt;
- | | | }
- | | |
- | | +-o AppleACPIACAdapter &lt;class AppleACPIACAdapter, id 0x1000001f1, !registered, !matched, active, busy 0, retain 4&gt;
- | | {
- | | "IOProbeScore" = 0x0
- | | "CFBundleIdentifier" = "com.apple.driver.AppleACPIButtons"
- | | "IOProviderClass" = "IOACPIPlatformDevice"
- | | "IOClass" = "AppleACPIACAdapter"
- | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | "IONameMatch" = "ACPI0003"
- | | "IONameMatched" = "ACPI0003"
- | | }
- | |
- | +-o LID0 &lt;class IOACPIPlatformDevice, id 0x100000194, registered, matched, active, busy 0 (32 ms), retain 9&gt;
- | | | {
- | | | "_STA" = 0xffffffffffffffff
- | | | "acpi-wake-system-state" = 0x4
- | | | "acpi-wake-gpe" = 0x23
- | | | "name" = &lt;504e503043304400&gt;
- | | | }
- | | |
- | | +-o AppleACPILid &lt;class AppleACPILid, id 0x1000001f2, !registered, !matched, active, busy 0, retain 5&gt;
- | | {
- | | "IOProbeScore" = 0x0
- | | "CFBundleIdentifier" = "com.apple.driver.AppleACPIButtons"
- | | "IOProviderClass" = "IOACPIPlatformDevice"
- | | "IOClass" = "AppleACPILid"
- | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | "IONameMatch" = "PNP0C0D"
- | | "IONameMatched" = "PNP0C0D"
- | | }
- | |
- | +-o PWRB &lt;class IOACPIPlatformDevice, id 0x100000195, registered, matched, active, busy 0 (9 ms), retain 8&gt;
- | | | {
- | | | "_STA" = 0xffffffffffffffff
- | | | "IOInterruptSpecifiers" = (&lt;0200000000000000&gt;)
- | | | "name" = &lt;504e503043304300&gt;
- | | | "acpi-wake-type" = 0x1
- | | | "IOInterruptControllers" = ("ACPIEventController")
- | | | }
- | | |
- | | +-o AppleACPIButton &lt;class AppleACPIButton, id 0x1000001f3, !registered, !matched, active, busy 0, retain 4&gt;
- | | {
- | | "IOProbeScore" = 0x0
- | | "CFBundleIdentifier" = "com.apple.driver.AppleACPIButtons"
- | | "IOProviderClass" = "IOACPIPlatformDevice"
- | | "IOClass" = "AppleACPIButton"
- | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | "IONameMatch" = ("PNP0C0C","power-button","PNP0C0E","sleep-button")
- | | "IONameMatched" = "PNP0C0C"
- | | }
- | |
- | +-o PNLF &lt;class IOACPIPlatformDevice, id 0x100000196, registered, matched, active, busy 0 (356 ms), retain 9&gt;
- | | | {
- | | | "compatible" = &lt;6261636b6c6967687400&gt;
- | | | "_UID" = "14"
- | | | "AppleRestoreBacklight" = No
- | | | "ApplePanelRawBrightness" = 0x2d9
- | | | "_STA" = 0xb
- | | | "AppleNumBrightLevels" = 0x400
- | | | "name" = &lt;4150503030303200&gt;
- | | | }
- | | |
- | | +-o AppleGraphicsControlBacklight &lt;class AppleGraphicsControlBacklight, id 0x100000366, registered, matched, active, busy 0 (301 ms), retain 5&gt;
- | | | {
- | | | "IOProbeScore" = 0x1388
- | | | "CFBundleIdentifier" = "com.apple.driver.AppleMuxControl"
- | | | "IOMatchCategory" = "IODisplayParameters"
- | | | "IOClass" = "AppleGraphicsControlBacklight"
- | | | "IOProviderClass" = "IOACPIPlatformDevice"
- | | | "IONameMatch" = "backlight"
- | | | "IONameMatched" = "backlight"
- | | | "IODisplayParameters" = {"brightness"={"max"=0xff,"min"=0x28},"commit"={"reg"=0x0}}
- | | | "ApplePanel" = {"F14Ta005"=&lt;0011000000150022003500490062008300ac00dc0114014c019401e6024d02c5035403ff&gt;}
- | | | }
- | | |
- | | +-o AppleGraphicsControlBacklightNub &lt;class AppleGraphicsControlBacklightNub, id 0x100000435, !registered, !matched, active, busy 0, retain 7&gt;
- | | | {
- | | | "IOMatchCategory" = "IODisplayParameters"
- | | | "IONameMatched" = "backlight"
- | | | "IONameMatch" = "backlight"
- | | | "IOProviderClass" = "IOACPIPlatformDevice"
- | | | "CFBundleIdentifier" = "com.apple.driver.AppleMuxControl"
- | | | "IODisplayParameters" = {"brightness"={"max"=0xff,"min"=0x28},"commit"={"reg"=0x0}}
- | | | }
- | | |
- | | +-o AppleGraphicsControlBacklightNub &lt;class AppleGraphicsControlBacklightNub, id 0x100000436, !registered, !matched, active, busy 0, retain 7&gt;
- | | {
- | | "IOMatchCategory" = "IODisplayParameters"
- | | "IONameMatched" = "backlight"
- | | "IONameMatch" = "backlight"
- | | "IOProviderClass" = "IOACPIPlatformDevice"
- | | "CFBundleIdentifier" = "com.apple.driver.AppleMuxControl"
- | | "IODisplayParameters" = {"brightness"={"max"=0xff,"min"=0x28},"commit"={"reg"=0x0}}
- | | }
- | |
- | +-o SLPB &lt;class IOACPIPlatformDevice, id 0x100000197, registered, matched, active, busy 0 (9 ms), retain 7&gt;
- | | | {
- | | | "name" = &lt;504e503043304500&gt;
- | | | "_STA" = 0xb
- | | | }
- | | |
- | | +-o AppleACPIButton &lt;class AppleACPIButton, id 0x1000001f4, !registered, !matched, active, busy 0, retain 4&gt;
- | | {
- | | "IOProbeScore" = 0x0
- | | "CFBundleIdentifier" = "com.apple.driver.AppleACPIButtons"
- | | "IOProviderClass" = "IOACPIPlatformDevice"
- | | "IOClass" = "AppleACPIButton"
- | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | "IONameMatch" = ("PNP0C0C","power-button","PNP0C0E","sleep-button")
- | | "IONameMatched" = "PNP0C0E"
- | | }
- | |
- | +-o AppleEFIRuntime &lt;class AppleEFIRuntime, id 0x1000001f5, registered, matched, active, busy 0 (110 ms), retain 7&gt;
- | | | {
- | | | "IOClass" = "AppleEFIRuntime"
- | | | "IOProviderClass" = "AppleACPIPlatformExpert"
- | | | "IOMatchCategory" = "AppleEFIRuntime"
- | | | "IOResourceMatch" = "ACPI"
- | | | "CFBundleIdentifier" = "com.apple.driver.AppleEFIRuntime"
- | | | "IOProbeScore" = 0x0
- | | | }
- | | |
- | | +-o AppleEFINVRAM &lt;class AppleEFINVRAM, id 0x100000219, registered, matched, active, busy 0 (0 ms), retain 9&gt;
- | | {
- | | "boot-gamma" = &lt;1006000005a00000000000006e0000000000000007000404db050b0bb20e1e1e952436366d3e57574f6077770980a1a187a807000404db050b0bb20e1e1e952436366d3e57574f6077770980a1a187a807000404db050b0bb20e1e1e952436366d3e57574f6077770980a1a187a8&gt;
- | | "gpu-policy" = &lt;01&gt;
- | | "fmm-mobileme-token-FMM" = &lt;62706c6973743030d70102030405060708090a15161718567573657269645961757468546f6b656e5f101364617461636c61737350726f7065727469657358706572736f6e494458757365726e616d655f1012656e61626c656444617461636c61737365735875736572496e666f1101f55f10284151414141414250533734316b68755f724f686863694c6e75685966437055332d614569754c737ed10b0c5f1021636f6d2e6170706c652e44617461636c6173732e4465766963654c6f6361746f72d40d0e0f101112131456617073456e7658686f73746e616d655d617574684d656368616e69736d56736368656d655a50726f64756374696f6e5f1$
- | | "prev-lang:kbd" = &lt;656e3a30&gt;
- | | "EFICapsule_Result" = &lt;53544152&gt;
- | | "efi-apple-recovery" = &lt;3c61727261793e3c646963743e3c6b65793e494f4d617463683c2f6b65793e3c646963743e3c6b65793e494f50726f7669646572436c6173733c2f6b65793e3c737472696e673e494f4d656469613c2f737472696e673e3c6b65793e494f50726f70657274794d617463683c2f6b65793e3c646963743e3c6b65793e555549443c2f6b65793e3c737472696e673e30303030333245452d374143352d303030302d354237462d3030303033413541303030303c2f737472696e673e3c2f646963743e3c2f646963743e3c6b65793e424c4c6173744253444e616d653c2f6b65793e3c737472696e673e6469736b3073313c2f737472696e673e3c2f646963743$
- | | "RemoteDisabled" = &lt;01&gt;
- | | "boot-image" = &lt;02010c00d041030a0000000001010600021f03120a000000000000000404180032003600360036003200650030003000300000007fff0400&gt;
- | | "bluetoothActiveControllerInfo" = &lt;1a82ac0568a86d508965&gt;
- | | "efi-boot-device" = &lt;3c61727261793e3c646963743e3c6b65793e494f4d617463683c2f6b65793e3c646963743e3c6b65793e494f50726f7669646572436c6173733c2f6b65793e3c737472696e673e494f4d656469613c2f737472696e673e3c6b65793e494f50726f70657274794d617463683c2f6b65793e3c646963743e3c6b65793e555549443c2f6b65793e3c737472696e673e35423545453534332d323931462d344531432d384541312d3233383239433431333242343c2f737472696e673e3c2f646963743e3c2f646963743e3c6b65793e424c4c6173744253444e616d653c2f6b65793e3c737472696e673e6469736b3073323c2f737472696e673e3c2f646963743e3c$
- | | "efi-boot-device-data" = &lt;02010c00d041030a0000000001010600021f03120a0000000000000004012a00020000002840060000000000a0264a570000000043e55e5b1f291c4e8ea123829c4132b402027fff0400&gt;
- | | "fmm-computer-name" = &lt;5061756ce2809973204d6163426f6f6b2050726f&gt;
- | | "SystemAudioVolume" = &lt;35&gt;
- | | "backlight-level" = &lt;d902&gt;
- | | }
- | |
- | +-o IOPCIMessagedInterruptController &lt;class IOPCIMessagedInterruptController, id 0x1000001f6, registered, matched, active, busy 0 (10 ms), retain 6&gt;
- | {
- | "Vector Count" = 0x40
- | "MSIFree" = 0x35
- | "Base Vector Number" = 0x90
- | "InterruptControllerName" = "IOPCIMessagedInterruptController"
- | }
- |
- +-o IOResources &lt;class IOResources, id 0x100000113, registered, matched, active, busy 0 (1555 ms), retain 28&gt;
- | {
- | "IOSMSClass" = "SMCMotionSensor"
- | "IOConsoleUsers" = ({"kCGSSessionOnConsoleKey"=Yes,"kCGSSessionLoginwindowSafeLogin"=No,"kSCSecuritySessionID"=0x186a4,"kCGSessionLongUserNameKey"="Paul Mooring","kCGSSessionUserIDKey"=0x1f5,"kCGSSessionUserNameKey"="paul","kCGSSessionSystemSafeBoot"=No,"kCGSessionLoginDoneKey"=Yes,"kCGSSessionAuditIDKey"=0x186a4,"kCGSSessionIDKey"=0x100,"kCGSSessionGroupIDKey"=0x14})
- | "AAPL,current-extra-in-sleep" = 0x640
- | "IOConsoleUsersSeed" = &lt;27000000&gt;
- | "IOPlatformDeviceASPMEnable" = "ACPI_SMC_PlatformPlugin is not serializable"
- | "IOSerialManagerMustLoad" = Yes
- | "AAPL,current-extra" = 0x898
- | "efi-runtime" = "AppleEFIRuntime is not serializable"
- | "com.apple.AppleFSCompression.Type1" = Yes
- | "boot-uuid-media" = "IOMedia is not serializable"
- | "WindowServer" = "IOService"
- | "IOKit" = "IOService"
- | "AAPL,current-available" = 0x834
- | "IONVRAM" = "IOService"
- | "IOBSD" = "IOService"
- | "AAPL,max-port-current-in-sleep" = 0x834
- | "com.apple.AppleFSCompression.Type3" = Yes
- | "SMBIOS" = "IOService"
- | "IOPlatformMonitor" = "ACPI_SMC_PlatformPlugin is not serializable"
- | "com.apple.AppleFSCompression.Type4" = Yes
- | "intel_cpupm_matching" = 0x0
- | "IOPlatformPlugin" = "ACPI_SMC_PlatformPlugin is not serializable"
- | "als-lgp-version" = 0x4
- | "com.apple.iokit.SCSISubsystemGlobals" = Yes
- | "com.apple.AppleFSCompression.Type5" = Yes
- | "ACPI" = "AppleACPIPlatformExpert is not serializable"
- | "IORTC" = "AppleRTC is not serializable"
- | "IOPlatformUUID" = "DAB7AD41-9312-5322-89DE-1FA4A8F1CB91"
- | }
- |
- +-o AppleKeyStore &lt;class AppleKeyStore, id 0x100000117, registered, matched, active, busy 0 (2 ms), retain 5&gt;
- | {
- | "IOProbeScore" = 0x0
- | "CFBundleIdentifier" = "com.apple.driver.AppleKeyStore"
- | "IOProviderClass" = "IOResources"
- | "IOClass" = "AppleKeyStore"
- | "IOMatchCategory" = "AppleKeyStore"
- | "IOKitDebug" = 0xffff
- | "IOUserClientClass" = "AppleKeyStoreUserClient"
- | "IOPowerManagement" = {"MaxPowerState"=0x1,"CurrentPowerState"=0x1}
- | "IOResourceMatch" = "IOKit"
- | }
- |
- +-o IOHDIXController &lt;class IOHDIXController, id 0x100000118, registered, matched, active, busy 0 (0 ms), retain 4&gt;
- | {
- | "IOClass" = "IOHDIXController"
- | "CFBundleIdentifier" = "com.apple.driver.DiskImages"
- | "IOProviderClass" = "IOResources"
- | "Product Name" = "Disk Image Driver for MacOS X"
- | "IOUserClientClass" = "IOHDIXControllerUserClient"
- | "IOProbeScore" = 0x0
- | "revision" = "10.7v331.7"
- | "IOResourceMatch" = "IOKit"
- | "IOMatchCategory" = "IOHDIXController"
- | "Vendor Name" = "Apple"
- | "Product Revision Level" = "10.7v331.7"
- | "vendor" = "Apple"
- | "model" = "Disk Image Driver for MacOS X"
- | }
- |
- +-o AppleIntelCPUPowerManagement &lt;class AppleIntelCPUPowerManagement, id 0x100000119, registered, matched, active, busy 0 (190 ms), retain 5&gt;
- | | {
- | | "IOPropertyMatch" = {"intel_cpupm_matching"=0x0}
- | | "CFBundleIdentifier" = "com.apple.driver.AppleIntelCPUPowerManagement"
- | | "IOMatchCategory" = "AppleIntelCPUPowerManagement"
- | | "IOClass" = "AppleIntelCPUPowerManagement"
- | | "IOProviderClass" = "IOResources"
- | | "IOProbeScore" = 0x0
- | | "IOResourceMatch" = "IOKit"
- | | }
- | |
- | +-o AppleIntelCPUPowerManagementClient &lt;class AppleIntelCPUPowerManagementClient, id 0x10000012e, !registered, !matched, active, busy 0, retain 4&gt;
- | {
- | "IOClass" = "AppleIntelCPUPowerManagementClient"
- | "IOMatchCategory" = "AppleIntelCPUPowerManagementDriver"
- | "IOProbeScore" = 0x0
- | "IOProviderClass" = "AppleIntelCPUPowerManagement"
- | "CFBundleIdentifier" = "com.apple.driver.AppleIntelCPUPowerManagementClient"
- | "IOResourceMatch" = "IOBSD"
- | }
- |
- +-o IOHIDSystem &lt;class IOHIDSystem, id 0x100000263, registered, matched, active, busy 0 (0 ms), retain 18&gt;
- | | {
- | | "IOProbeScore" = 0x0
- | | "CFBundleIdentifier" = "com.apple.iokit.IOHIDFamily"
- | | "IOProviderClass" = "IOResources"
- | | "IOClass" = "IOHIDSystem"
- | | "IOMatchCategory" = "IOHID"
- | | "NXSystemInfo" = ({"serviceID"=0xffffff80124d4000,"HIDKind"=0x1,"HIDInterfaceID"=0x2,"built-in"=Yes,"HIDSubinterfaceID"=0x2b},{"serviceID"=0xffffff80124d1800,"HIDKind"=0x1,"HIDInterfaceID"=0x0,"built-in"=Yes,"HIDSubinterfaceID"=0x0},{"serviceID"=0xffffff8012629e00,"HIDKind"=0x2,"HIDInterfaceID"=0x0,"HIDSubinterfaceID"=0x0},{"serviceID"=0xffffff8014bc5600,"HIDKind"=0x2,"HIDInterfaceID"=0x0,"HIDSubinterfaceID"=0x0})
- | | "HIDParameters" = {"EjectDelay"=0x64,"TrackpadCornerSecondaryClick"=0x0,"HIDTrackpadAcceleration"=0xb000,"HIDMouseKeysOptionToggles"=0x0,"HIDWaitCursorFrameInterval"=0x1fc9f07,"Trackpad Jitter Milliseconds"=0xc0,"TrackpadThreeFingerDoubleTapGesture"=0x2,"DragLock"=0x0,"TrackpadScroll"=0x1,"TrackpadThreeFingerVertSwipeGesture"=0x2,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"PalmNoAction Permanent"=0x1,"Dragging"=0x0,"TrackpadMomentumScroll"=0x1,"TrackpadThreeFingerDrag"=0x0,"HIDDefaultParameters"=Yes,"TrackpadFiveFingerPinchGesture"$
- | | "HIDIdleTime" = 0xb4414a3
- | | "IOResourceMatch" = "IOBSD"
- | | }
- | |
- | +-o IOHIDStackShotUserClient &lt;class IOHIDStackShotUserClient, id 0x1000003fc, !registered, !matched, active, busy 0, retain 5&gt;
- | | {
- | | "IOUserClientCrossEndianCompatible" = Yes
- | | "IOUserClientCreator" = "pid 36, stackshot"
- | | }
- | |
- | +-o IOHIDUserClient &lt;class IOHIDUserClient, id 0x100000431, !registered, !matched, active, busy 0, retain 5&gt;
- | | {
- | | "IOUserClientCrossEndianCompatible" = Yes
- | | "IOUserClientCreator" = "pid 180, WindowServer"
- | | }
- | |
- | +-o IOHIDParamUserClient &lt;class IOHIDParamUserClient, id 0x100000432, !registered, !matched, active, busy 0, retain 5&gt;
- | | {
- | | "IOUserClientCrossEndianCompatible" = Yes
- | | "IOUserClientCreator" = "pid 20679, iCal Helper"
- | | }
- | |
- | +-o IOHIDEventSystemUserClient &lt;class IOHIDEventSystemUserClient, id 0x100000460, !registered, !matched, active, busy 0, retain 5&gt;
- | | {
- | | "IOUserClientCrossEndianCompatible" = Yes
- | | "IOUserClientCreator" = "pid 50, hidd"
- | | }
- | |
- | +-o IOHIDEventSystemUserClient &lt;class IOHIDEventSystemUserClient, id 0x100000461, !registered, !matched, active, busy 0, retain 5&gt;
- | {
- | "IOUserClientCrossEndianCompatible" = Yes
- | "IOUserClientCreator" = "pid 180, WindowServer"
- | }
- |
- +-o IONetworkStack &lt;class IONetworkStack, id 0x100000264, registered, matched, active, busy 0 (0 ms), retain 11&gt;
- | | {
- | | "IOClass" = "IONetworkStack"
- | | "IOProviderClass" = "IOResources"
- | | "IOMatchCategory" = "IONetworkStack"
- | | "IOResourceMatch" = "IOBSD"
- | | "CFBundleIdentifier" = "com.apple.iokit.IONetworkingFamily"
- | | "IOProbeScore" = 0x0
- | | }
- | |
- | +-o IONetworkStackUserClient &lt;class IONetworkStackUserClient, id 0x100000355, !registered, !matched, active, busy 0, retain 5&gt;
- | {
- | "IOUserClientCreator" = "pid 14, configd"
- | }
- |
- +-o com_apple_BootCache &lt;class com_apple_BootCache, id 0x100000265, !registered, !matched, active, busy 0, retain 4&gt;
- | {
- | "IOClass" = "com_apple_BootCache"
- | "IOProviderClass" = "IOResources"
- | "IOMatchCategory" = "com_apple_BootCache"
- | "IOResourceMatch" = "IOBSD"
- | "CFBundleIdentifier" = "com.apple.BootCache"
- | "IOProbeScore" = 0x0
- | }
- |
- +-o com_apple_AppleFSCompression_AppleFSCompressionTypeZlib &lt;class com_apple_AppleFSCompression_AppleFSCompressionTypeZlib, id 0x100000266, !registered, !matched, active, busy 0, retain 4&gt;
- | {
- | "IOProbeScore" = 0x0
- | "CFBundleIdentifier" = "com.apple.AppleFSCompression.AppleFSCompressionTypeZlib"
- | "IOMatchCategory" = "com_apple_AppleFSCompression_AppleFSCompressionTypeZlib"
- | "IOClass" = "com_apple_AppleFSCompression_AppleFSCompressionTypeZlib"
- | "IOProviderClass" = "IOResources"
- | "com.apple.AppleFSCompression.providesType4" = Yes
- | "com.apple.AppleFSCompression.providesType3" = Yes
- | "IOResourceMatch" = "IOBSD"
- | }
- |
- +-o com_apple_AppleFSCompression_AppleFSCompressionTypeDataless &lt;class com_apple_AppleFSCompression_AppleFSCompressionTypeDataless, id 0x100000267, !registered, !matched, active, busy 0, retain 4&gt;
- | {
- | "IOProbeScore" = 0x0
- | "CFBundleIdentifier" = "com.apple.AppleFSCompression.AppleFSCompressionTypeDataless"
- | "IOProviderClass" = "IOResources"
- | "IOClass" = "com_apple_AppleFSCompression_AppleFSCompressionTypeDataless"
- | "IOMatchCategory" = "com_apple_AppleFSCompression_AppleFSCompressionTypeDataless"
- | "com.apple.AppleFSCompression.providesType5" = Yes
- | "IOResourceMatch" = "IOBSD"
- | }
- |
- +-o ApplePolicyControl &lt;class ApplePolicyControl, id 0x100000374, !registered, !matched, active, busy 0, retain 4&gt;
- | {
- | "IOProbeScore" = 0x3e8
- | "CFBundleIdentifier" = "com.apple.driver.ApplePolicyControl"
- | "IOMatchCategory" = "ApplePolicyControl"
- | "IOClass" = "ApplePolicyControl"
- | "IOProviderClass" = "IOResources"
- | "IOUserClientClass" = "AppleGraphicsPolicyClient"
- | "IOResourceMatch" = "IOKit"
- | }
- |
- +-o com_apple_driver_AudioIPCDevice &lt;class com_apple_driver_AudioIPCDevice, id 0x100000375, registered, matched, active, busy 0 (141 ms), retain 6&gt;
- | | {
- | | "IOClass" = "com_apple_driver_AudioIPCDevice"
- | | "CFBundleIdentifier" = "com.apple.driver.AudioIPCDriver"
- | | "IOProviderClass" = "IOResources"
- | | "IOAudioDeviceName" = "Audio IPC"
- | | "IOAudioDeviceShortName" = "Audio IPC"
- | | "IOAudioDeviceModelID" = "Audio_IPC"
- | | "IOPowerManagement" = {"DriverPowerState"=0x1,"MaxPowerState"=0x1,"CurrentPowerState"=0x1}
- | | "IOProbeScore" = 0x0
- | | "IOResourceMatch" = "IOBSD"
- | | "IOMatchCategory" = "com_apple_driver_AudioIPCDevice"
- | | "IOAudioDeviceManufacturerName" = "Apple, Inc."
- | | "IOAudioDeviceCanBeDefaults" = 0x0
- | | "IOAudioDeviceTransportType" = 0x76697274
- | | }
- | |
- | +-o com_apple_driver_AudioIPCEngine &lt;class com_apple_driver_AudioIPCEngine, id 0x100000397, registered, matched, active, busy 0 (141 ms), retain 6&gt;
- | | {
- | | "IOAudioEngineCoreAudioPlugIn" = "AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugIn.bundle"
- | | "com.apple.AudioIPC.NumberChannels" = 0x0
- | | "IOGeneralInterest" = "IOCommand is not serializable"
- | | "IOAudioEngineDescription" = "Audio IPC"
- | | "IOAudioEngineState" = 0x0
- | | "IOAudioEngineIsHidden" = 0x1
- | | "IOAudioEngineGlobalUniqueID" = "Audio_IPC"
- | | "IOAudioEngineNumSampleFramesPerBuffer" = 0x4000
- | | "IOAudioEngineClockDomain" = 0x4d19600
- | | "IOAudioSampleRate" = {"IOAudioSampleRateWholeNumber"=0xac44,"IOAudioSampleRateFraction"=0x0}
- | | "IOAudioEngineFlavor" = 0x1
- | | "IOAudioEngineSampleOffset" = 0x4
- | | }
- | |
- | +-o IOAudioEngineUserClient &lt;class IOAudioEngineUserClient, id 0x10000047f, !registered, !matched, active, busy 0, retain 6&gt;
- | {
- | "IOUserClientCreator" = "pid 212, coreaudiod"
- | }
- |
- +-o Dont_Steal_Mac_OS_X &lt;class Dont_Steal_Mac_OS_X, id 0x100000376, !registered, !matched, active, busy 0, retain 5&gt;
- | {
- | "IOClass" = "Dont_Steal_Mac_OS_X"
- | "IOProviderClass" = "IOResources"
- | "IOMatchCategory" = "Dont_Steal_Mac_OS_X"
- | "IOResourceMatch" = "IOKit"
- | "CFBundleIdentifier" = "com.apple.Dont_Steal_Mac_OS_X"
- | "IOProbeScore" = 0x0
- | }
- |
- +-o IOBluetoothSerialManager &lt;class IOBluetoothSerialManager, id 0x100000377, registered, matched, active, busy 0 (145 ms), retain 7&gt;
- | | {
- | | "IOPropertyMatch" = {"IOSerialManagerMustLoad"=Yes}
- | | "CFBundleIdentifier" = "com.apple.iokit.IOBluetoothSerialManager"
- | | "IOMatchCategory" = "IOBluetoothSerialManager"
- | | "IOClass" = "IOBluetoothSerialManager"
- | | "IOProviderClass" = "IOResources"
- | | "IOProbeScore" = 0x0
- | | "IOResourceMatch" = "IOKit"
- | | }
- | |
- | +-o IOBluetoothSerialClient &lt;class IOBluetoothSerialClient, id 0x1000003f0, !registered, !matched, active, busy 0 (4 ms), retain 5&gt;
- | | | {
- | | | "BTName" = "Bluetooth-Modem"
- | | | "P49SerialPort" = 0x1
- | | | "BTTTYName" = "Bluetooth-Modem"
- | | | "BTRFCOMMChannel" = 0x0
- | | | "BTAuthenticationRequired" = 0x0
- | | | "IOTTYBaseName" = "Bluetooth-Modem"
- | | | "BTAddress" = &lt;&gt;
- | | | "BTPSM" = 0x0
- | | | }
- | | |
- | | +-o IOBluetoothSerialClientModemStreamSync &lt;class IOBluetoothSerialClientModemStreamSync, id 0x1000003f1, registered, matched, active, busy 0 (4 ms), retain 5&gt;
- | | | {
- | | | "IOTTYBaseName" = "Bluetooth-Modem"
- | | | "IOTTYSuffix" = ""
- | | | }
- | | |
- | | +-o IOSerialBSDClient &lt;class IOSerialBSDClient, id 0x1000003f3, registered, matched, active, busy 0 (1 ms), retain 4&gt;
- | | {
- | | "IOClass" = "IOSerialBSDClient"
- | | "CFBundleIdentifier" = "com.apple.iokit.IOSerialFamily"
- | | "IOProviderClass" = "IOSerialStreamSync"
- | | "IOTTYBaseName" = "Bluetooth-Modem"
- | | "IOSerialBSDClientType" = "IOModemSerialStream"
- | | "IOProbeScore" = 0x3e8
- | | "IOCalloutDevice" = "/dev/cu.Bluetooth-Modem"
- | | "IODialinDevice" = "/dev/tty.Bluetooth-Modem"
- | | "IOMatchCategory" = "IODefaultMatchCategory"
- | | "IOTTYDevice" = "Bluetooth-Modem"
- | | "IOResourceMatch" = "IOBSD"
- | | "IOGeneralInterest" = "IOCommand is not serializable"
- | | "IOTTYSuffix" = ""
- | | }
- | |
- | +-o IOBluetoothSerialClient &lt;class IOBluetoothSerialClient, id 0x1000003f5, !registered, !matched, active, busy 0 (2 ms), retain 5&gt;
- | | {
- | | "BTName" = "incoming port - Bluetooth-PDA-Sync"
- | | "P49SerialPort" = 0x1
- | | "HiddenPort" = 0x1
- | | "BTRFCOMMChannel" = 0x3
- | | "BTAuthenticationRequired" = No
- | | "BTPSM" = 0x3
- | | "BTTTYName" = "Bluetooth-PDA-Sync"
- | | "IOTTYBaseName" = "Bluetooth-PDA-Sync"
- | | "BTEncryptionType" = No
- | | "BTSerialConnectionType" = 0x0
- | | }
- | |
- | +-o IOBluetoothSerialClientSerialStreamSync &lt;class IOBluetoothSerialClientSerialStreamSync, id 0x1000003f6, registered, matched, active, busy 0 (2 ms), retain 5&gt;
- | | {
- | | "IOTTYBaseName" = "Bluetooth-PDA-Sync"
- | | "IOTTYSuffix" = ""
- | | }
- | |
- | +-o IOSerialBSDClient &lt;class IOSerialBSDClient, id 0x1000003f7, registered, matched, active, busy 0 (1 ms), retain 4&gt;
- | {
- | "IOClass" = "IOSerialBSDClient"
- | "CFBundleIdentifier" = "com.apple.iokit.IOSerialFamily"
- | "IOProviderClass" = "IOSerialStreamSync"
- | "IOTTYBaseName" = "Bluetooth-PDA-Sync"
- | "IOSerialBSDClientType" = "IORS232SerialStream"
- | "IOProbeScore" = 0x3e8
- | "IOCalloutDevice" = "/dev/cu.Bluetooth-PDA-Sync"
- | "IODialinDevice" = "/dev/tty.Bluetooth-PDA-Sync"
- | "IOMatchCategory" = "IODefaultMatchCategory"
- | "IOTTYDevice" = "Bluetooth-PDA-Sync"
- | "IOResourceMatch" = "IOBSD"
- | "IOTTYSuffix" = ""
- | }
- |
- +-o IODisplayWrangler &lt;class IODisplayWrangler, id 0x100000378, registered, matched, active, busy 0 (138 ms), retain 8&gt;
- | | {
- | | "IOProbeScore" = 0x0
- | | "CFBundleIdentifier" = "com.apple.iokit.IOGraphicsFamily"
- | | "IOMatchCategory" = "IOGraphics"
- | | "IOClass" = "IODisplayWrangler"
- | | "IOProviderClass" = "IOResources"
- | | "IOGeneralInterest" = "IOCommand is not serializable"
- | | "IOGraphicsIgnoreParameters" = {"aupc"=Yes,"auph"=Yes," bpc"=Yes,"aums"=Yes,"aupp"=Yes}
- | | "IOUserClientClass" = "IOAccelerationUserClient"
- | | "IOPowerManagement" = {"TimeSinceDeviceIdle"=0x2fdd8,"MaxPowerState"=0x4,"ActivityTickles"=0x1c14,"DevicePowerState"=0x4,"IdleTimerPeriod"=0x249f0,"TimeSinceLastTickle"=0x27,"CurrentPowerState"=0x4}
- | | "IOGraphicsPrefsParameters" = {"thue"=Yes,"pscn"=Yes,"vbst"=Yes,"tbri"=Yes,"oscn"=Yes,"tsat"=Yes,"cyuv"=0x10000000}
- | | "IOResourceMatch" = "IOKit"
- | | }
- | |
- | +-o IOAccelerationUserClient &lt;class IOAccelerationUserClient, id 0x10000046f, !registered, !matched, active, busy 0, retain 5&gt;
- | {
- | "IOUserClientCreator" = "pid 180, WindowServer"
- | }
- |
- +-o IOHIDResource &lt;class IOHIDResource, id 0x100000379, registered, matched, active, busy 0 (139 ms), retain 4&gt;
- | {
- | "IOProbeScore" = 0x0
- | "CFBundleIdentifier" = "com.apple.iokit.IOHIDFamily"
- | "IOMatchCategory" = "IOHIDResource"
- | "IOClass" = "IOHIDResource"
- | "IOProviderClass" = "IOResources"
- | "IOPersonalityPublisher" = "com.apple.iokit.IOHIDUserClient"
- | "IOUserClientClass" = "IOHIDResourceDeviceUserClient"
- | "IOResourceMatch" = "IOBSD"
- | }
- |
- +-o IOSurfaceRoot &lt;class IOSurfaceRoot, id 0x10000037a, registered, matched, active, busy 0 (11 ms), retain 8&gt;
- | | {
- | | "IOProbeScore" = 0x0
- | | "CFBundleIdentifier" = "com.apple.iokit.IOSurface"
- | | "IOProviderClass" = "IOResources"
- | | "IOClass" = "IOSurfaceRoot"
- | | "IOMatchCategory" = "IOSurfaceRoot"
- | | "SurfaceInfo" = {"User Clients"=({"name"="Google Chrome He","Client Surfaces"=()},{"name"="Google Chrome","Client Surfaces"=()}),"Global Surfaces"=()}
- | | "IOUserClientClass" = "IOSurfaceRootUserClient"
- | | "IOResourceMatch" = "IOKit"
- | | }
- | |
- | +-o IOSurfaceRootUserClient &lt;class IOSurfaceRootUserClient, id 0x100000e49, !registered, !matched, active, busy 0, retain 5&gt;
- | | {
- | | "IOUserClientCreator" = "pid 6823, Google Chrome He"
- | | }
- | |
- | +-o IOSurfaceRootUserClient &lt;class IOSurfaceRootUserClient, id 0x100000e73, !registered, !matched, active, busy 0, retain 5&gt;
- | {
- | "IOUserClientCreator" = "pid 6819, Google Chrome"
- | }
- |
- +-o IOUserEthernetResource &lt;class IOUserEthernetResource, id 0x10000037b, registered, matched, active, busy 0 (11 ms), retain 4&gt;
- | {
- | "IOProbeScore" = 0x0
- | "CFBundleIdentifier" = "com.apple.iokit.IOUserEthernet"
- | "IOProviderClass" = "IOResources"
- | "IOClass" = "IOUserEthernetResource"
- | "IOMatchCategory" = "IOUserEthernetResource"
- | "IOUserClientClass" = "IOUserEthernetResourceUserClient"
- | "IOResourceMatch" = "IOKit"
- | }
- |
- +-o AppleSCSISubsystemGlobals &lt;class AppleSCSISubsystemGlobals, id 0x1000003fb, registered, matched, active, busy 0 (0 ms), retain 5&gt;
- | {
- | "IOClass" = "AppleSCSISubsystemGlobals"
- | "IOProviderClass" = "IOResources"
- | "IOMatchCategory" = "com.apple.iokit.IOSCSIArchitectureModelFamily"
- | "IOResourceMatch" = "com.apple.iokit.SCSISubsystemGlobals"
- | "CFBundleIdentifier" = "com.apple.iokit.IOSCSIArchitectureModelFamily"
- | "IOProbeScore" = 0x0
- | }
- |
- +-o org_virtualbox_SupDrv &lt;class org_virtualbox_SupDrv, id 0x100000421, registered, matched, active, busy 0 (0 ms), retain 4&gt;
- | {
- | "IOProbeScore" = 0x0
- | "CFBundleIdentifier" = "org.virtualbox.kext.VBoxDrv"
- | "IOProviderClass" = "IOResources"
- | "IOClass" = "org_virtualbox_SupDrv"
- | "IOMatchCategory" = "org_virtualbox_SupDrv"
- | "IOUserClientClass" = "org_virtualbox_SupDrvClient"
- | "IOResourceMatch" = "IOKit"
- | }
- |
- +-o org_virtualbox_VBoxUSB &lt;class org_virtualbox_VBoxUSB, id 0x100000422, registered, matched, active, busy 0 (8 ms), retain 4&gt;
- | {
- | "IOProbeScore" = 0x0
- | "CFBundleIdentifier" = "org.virtualbox.kext.VBoxUSB"
- | "IOProviderClass" = "IOResources"
- | "IOClass" = "org_virtualbox_VBoxUSB"
- | "IOMatchCategory" = "org_virtualbox_VBoxUSB"
- | "IOUserClientClass" = "org_virtualbox_VBoxUSBClient"
- | "IOResourceMatch" = "IOKit"
- | }
- |
- +-o com_vmware_kext_UsbPortArbiter_10_1_24 &lt;class com_vmware_kext_UsbPortArbiter_10_1_24, id 0x100000dfe, registered, matched, active, busy 0 (0 ms), retain 6&gt;
- | {
- | "IOProbeScore" = 0x0
- | "CFBundleIdentifier" = "com.vmware.kext.vmioplug.10.1.24"
- | "IOProviderClass" = "IOResources"
- | "IOClass" = "com_vmware_kext_UsbPortArbiter_10_1_24"
- | "IOMatchCategory" = "com_vmware_kext_UsbPortArbiter_10_1_24"
- | "safeToUnload" = No
- | "claimAllNewDevices" = {"ownerPID"=0x1b59,"userClient"="com_vmware_kext_UsbPortArbiterUserClient_10_1_24 is not serializable"}
- | "IOUserClientClass" = "com_vmware_kext_UsbPortArbiterUserClient_10_1_24"
- | "IOResourceMatch" = "IOKit"
- | }
- |
- +-o com_vmware_kext_UsbPortArbiterUserClient_10_1_24 &lt;class com_vmware_kext_UsbPortArbiterUserClient_10_1_24, id 0x100000dff, !registered, !matched, active, busy 0, retain 7&gt;
- {
- "IOUserClientCreator" = "pid 7001, vmware-usbarbitr"
- "claimAllNewDevices" = "claimed"
- }
-
-</string>
- <key>lastModified</key>
- <date>2012-12-04T21:30:18Z</date>
- <key>source</key>
- <string>/usr/sbin/ioreg -lxw550</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>power_management_log_description</string>
- <key>byteSize</key>
- <integer>8250</integer>
- <key>contents</key>
- <string>Power Management ASL logs.
--&gt; All messages with "com.apple.message.domain" key set to "com.apple.powermanagement".)
-
-Time stamp Domain Message Duration Delay
-========== ====== ======= ======== =====
-UUID: BD77E55C-D513-4EFB-8A8B-EB9D9A0A7D62
-11/30/12 10:22:50 AM MST sleep Sleep: Success - BATT 97 - Clamshell Sleep 855 secs
-11/30/12 10:37:05 AM MST wake Wake: Success - BATT 96 - EC.LidOpen
-Sleep/Wakes since boot:0 Dark Wake Count in this sleep cycle:0
-
-Time stamp Domain Message Duration Delay
-========== ====== ======= ======== =====
-UUID: 497810E6-4ADE-4BCA-9DEF-414C06E3A2A1
-12/1/12 12:17:42 PM MST sleep Low Power Sleep: Using BATT (Charge:0%) 112 secs
-12/1/12 12:17:42 PM MST slowresponse PMConnection: Response from IPConfiguration is slow (powercaps:0x0) 187 ms
-12/1/12 12:17:42 PM MST slowresponse PMConnection: Response from AirPort configd plug-in is slow (powercaps:0x0) 294 ms
-12/1/12 12:19:34 PM MST wake Wake from Standby due to User: Using AC (Charge:0%) 1021 secs
-12/1/12 12:19:35 PM MST slowresponse PMConnection: Response from mDNSResponder is slow (powercaps:0x1f) 405 ms
-12/1/12 12:19:45 PM MST slowresponse PMConnection: Response from SystemUIServer is slow (powercaps:0x1f) 11009 ms
-12/1/12 12:19:49 PM MST slowresponse PMConnection: Response from AirPort configd plug-in is slow (powercaps:0x1f) 14476 ms
-12/1/12 12:19:49 PM MST slowresponse PMConnection: Response from IPConfiguration is slow (powercaps:0x1f) 14560 ms
-Sleep/Wakes since boot:1 Dark Wake Count in this sleep cycle:0
-
-Time stamp Domain Message Duration Delay
-========== ====== ======= ======== =====
-UUID: 56C4756B-DA78-471C-AEF9-EA2B1DE4A849
-12/1/12 12:36:35 PM MST sleep Clamshell Sleep: Using AC (Charge:16%) 1120 secs
-12/1/12 12:36:35 PM MST slowresponse Kernel: Response from powerd is slow 15428 ms
-12/1/12 12:55:15 PM MST wake Wake due to EC.LidOpen: Using AC (Charge:36%) 10399 secs
-12/1/12 12:55:15 PM MST hibernatestats hibmode=3 standbydelay=4200 rd=11862 ms
-Sleep/Wakes since boot:2 Dark Wake Count in this sleep cycle:0
-
-Time stamp Domain Message Duration Delay
-========== ====== ======= ======== =====
-UUID: D10FC184-BAE4-45A7-9B57-ACB90BD26680
-12/1/12 3:48:34 PM MST sleep Clamshell Sleep: Using BATT (Charge:68%) 12890 secs
-12/1/12 7:23:24 PM MST wake Wake due to EC.LidOpen: Using BATT (Charge:65%) 3553 secs
-12/1/12 7:23:24 PM MST hibernatestats hibmode=3 standbydelay=4200 wr=22299 ms
-Sleep/Wakes since boot:3 Dark Wake Count in this sleep cycle:0
-
-Time stamp Domain Message Duration Delay
-========== ====== ======= ======== =====
-UUID: 41BF0852-7221-43FA-A37F-66F10BD1BF15
-12/1/12 8:22:37 PM MST sleep Clamshell Sleep: Using BATT (Charge:35%) 1655 secs
-12/1/12 8:50:12 PM MST wake Wake due to EC.LidOpen: Using BATT (Charge:34%)
-12/1/12 8:50:12 PM MST hibernatestats hibmode=3 standbydelay=4200 wr=24309 ms
-Sleep/Wakes since boot:4 Dark Wake Count in this sleep cycle:0
-
-Time stamp Domain Message Duration Delay
-========== ====== ======= ======== =====
-UUID: 195904DD-2D21-4799-BD3F-B4C1EEE75179
-12/2/12 10:11:36 PM MST sleep Clamshell Sleep: Using AC (Charge:99%) 29 secs
-12/2/12 10:12:05 PM MST wake Wake due to EC.LidOpen: Using BATT (Charge:98%) 592 secs
-Sleep/Wakes since boot:1 Dark Wake Count in this sleep cycle:0
-
-Time stamp Domain Message Duration Delay
-========== ====== ======= ======== =====
-UUID: 413788A5-BDF3-4D14-9259-BD675C2D4353
-12/2/12 10:21:57 PM MST sleep Clamshell Sleep: Using BATT (Charge:96%) 383 secs
-12/2/12 10:28:20 PM MST wake Wake due to EC.LidOpen: Using BATT (Charge:96%)
-12/2/12 10:28:20 PM MST hibernatestats hibmode=3 standbydelay=4200 wr=8214 ms
-Sleep/Wakes since boot:2 Dark Wake Count in this sleep cycle:0
-
-Time stamp Domain Message Duration Delay
-========== ====== ======= ======== =====
-UUID: 078B5566-DF20-4F6D-8876-390AFFE18539
-12/3/12 9:25:29 PM MST sleep Clamshell Sleep: Using AC (Charge:99%) 65 secs
-12/3/12 9:26:34 PM MST wake Wake due to EC.LidOpen: Using BATT (Charge:99%)
-12/3/12 9:26:35 PM MST slowresponse PMConnection: Response from SystemUIServer is slow (powercaps:0x1f) 835 ms
-Sleep/Wakes since boot:1 Dark Wake Count in this sleep cycle:0
-
-Time stamp Domain Message Duration Delay
-========== ====== ======= ======== =====
-UUID: E41B7A11-444E-4A44-982D-009A6714F62B
-12/4/12 2:26:59 PM MST sleep Clamshell Sleep: Using BATT (Charge:99%) 12 secs
-12/4/12 2:26:59 PM MST slowresponse PMConnection: Response from IPConfiguration is slow (powercaps:0x0) 184 ms
-12/4/12 2:26:59 PM MST slowresponse PMConnection: Response from AirPort configd plug-in is slow (powercaps:0x0) 210 ms
-12/4/12 2:27:11 PM MST wake Wake due to EC.LidOpen: Using BATT (Charge:99%)
-12/4/12 2:27:12 PM MST slowresponse PMConnection: Response from SystemUIServer is slow (powercaps:0x1f) 960 ms
-
-Total Sleep/Wakes since boot:1
-</string>
- <key>lastModified</key>
- <date>2012-12-04T21:30:18Z</date>
- <key>source</key>
- <string>/usr/bin/pmset -g log</string>
- </dict>
- </array>
- <key>_parentDataType</key>
- <string>SPSoftwareDataType</string>
- <key>_properties</key>
- <dict>
- <key>_name</key>
- <dict>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>0</string>
- </dict>
- <key>byteSize</key>
- <dict>
- <key>_isByteSize</key>
- <true/>
- <key>_isColumn</key>
- <true/>
- <key>_order</key>
- <integer>2</integer>
- </dict>
- <key>lastModified</key>
- <dict>
- <key>_dateFormat</key>
- <string>%X</string>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>3</string>
- </dict>
- <key>source</key>
- <dict>
- <key>_isColumn</key>
- <true/>
- <key>_isURL</key>
- <string>YES</string>
- <key>_openURLWhenOutlineViewDoubleClicked</key>
- <true/>
- <key>_order</key>
- <integer>1</integer>
- </dict>
- <key>volumes_anonymous</key>
- <dict>
- <key>_detailLevel</key>
- <string>-1</string>
- <key>_maxDetailLevel</key>
- <string>-1</string>
- </dict>
- </dict>
- <key>_splitPercentage</key>
- <real>0.20000000298023224</real>
- <key>_timeStamp</key>
- <date>2012-12-04T21:30:17Z</date>
- <key>_versionInfo</key>
- <dict>
- <key>com.apple.SystemProfiler.SPLogsReporter</key>
- <string>733</string>
- </dict>
- </dict>
- <dict>
- <key>_SPCommandLineArguments</key>
- <array>
- <string>/usr/sbin/system_profiler</string>
- <string>-xml</string>
- <string>-detailLevel</string>
- <string>mini</string>
- <string>SPParallelATADataType</string>
- <string>SPApplicationsDataType</string>
- <string>SPAudioDataType</string>
- <string>SPBluetoothDataType</string>
- <string>SPCardReaderDataType</string>
- <string>SPComponentDataType</string>
- <string>SPDeveloperToolsDataType</string>
- <string>SPDiagnosticsDataType</string>
- <string>SPDiscBurningDataType</string>
- <string>SPEthernetDataType</string>
- <string>SPExtensionsDataType</string>
- <string>SPFibreChannelDataType</string>
- <string>SPFireWireDataType</string>
- <string>SPFirewallDataType</string>
- <string>SPFontsDataType</string>
- <string>SPFrameworksDataType</string>
- <string>SPDisplaysDataType</string>
- <string>SPHardwareRAIDDataType</string>
- <string>SPNetworkLocationDataType</string>
- <string>SPLogsDataType</string>
- <string>SPManagedClientDataType</string>
- <string>SPMemoryDataType</string>
- <string>SPModemDataType</string>
- <string>SPNetworkDataType</string>
- <string>SPPCIDataType</string>
- <string>SPParallelSCSIDataType</string>
- <string>SPPowerDataType</string>
- <string>SPPrefPaneDataType</string>
- <string>SPPrintersSoftwareDataType</string>
- <string>SPPrintersDataType</string>
- <string>SPConfigurationProfileDataType</string>
- <string>SPSASDataType</string>
- <string>SPSerialATADataType</string>
- <string>SPSoftwareDataType</string>
- <string>SPStartupItemDataType</string>
- <string>SPSyncServicesDataType</string>
- <string>SPThunderboltDataType</string>
- <string>SPUSBDataType</string>
- <string>SPUniversalAccessDataType</string>
- <string>SPNetworkVolumeDataType</string>
- <string>SPWWANDataType</string>
- <string>SPAirPortDataType</string>
- </array>
- <key>_SPCompletionInterval</key>
- <real>0.086389005184173584</real>
- <key>_dataType</key>
- <string>SPManagedClientDataType</string>
- <key>_detailLevel</key>
- <integer>1</integer>
- <key>_items</key>
- <array/>
- <key>_parentDataType</key>
- <string>SPSoftwareDataType</string>
- <key>_properties</key>
- <dict>
- <key>_name</key>
- <dict>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_isOutlineColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>10</string>
- <key>_suppressLocalization</key>
- <string>YES</string>
- </dict>
- <key>data_keyValue</key>
- <dict>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>30</string>
- <key>_suppressLocalization</key>
- <string>YES</string>
- </dict>
- <key>data_source</key>
- <dict>
- <key>_order</key>
- <string>50</string>
- </dict>
- <key>data_state</key>
- <dict>
- <key>_order</key>
- <string>40</string>
- </dict>
- <key>volumes_anonymous</key>
- <dict>
- <key>_detailLevel</key>
- <string>-1</string>
- <key>_maxDetailLevel</key>
- <string>-1</string>
- </dict>
- </dict>
- <key>_timeStamp</key>
- <date>2012-12-04T21:30:18Z</date>
- <key>_versionInfo</key>
- <dict>
- <key>com.apple.SPManagedClientReporter</key>
- <string>320</string>
- </dict>
- </dict>
- <dict>
- <key>_SPCommandLineArguments</key>
- <array>
- <string>/usr/sbin/system_profiler</string>
- <string>-xml</string>
- <string>-detailLevel</string>
- <string>mini</string>
- <string>SPParallelATADataType</string>
- <string>SPApplicationsDataType</string>
- <string>SPAudioDataType</string>
- <string>SPBluetoothDataType</string>
- <string>SPCardReaderDataType</string>
- <string>SPComponentDataType</string>
- <string>SPDeveloperToolsDataType</string>
- <string>SPDiagnosticsDataType</string>
- <string>SPDiscBurningDataType</string>
- <string>SPEthernetDataType</string>
- <string>SPExtensionsDataType</string>
- <string>SPFibreChannelDataType</string>
- <string>SPFireWireDataType</string>
- <string>SPFirewallDataType</string>
- <string>SPFontsDataType</string>
- <string>SPFrameworksDataType</string>
- <string>SPDisplaysDataType</string>
- <string>SPHardwareRAIDDataType</string>
- <string>SPNetworkLocationDataType</string>
- <string>SPLogsDataType</string>
- <string>SPManagedClientDataType</string>
- <string>SPMemoryDataType</string>
- <string>SPModemDataType</string>
- <string>SPNetworkDataType</string>
- <string>SPPCIDataType</string>
- <string>SPParallelSCSIDataType</string>
- <string>SPPowerDataType</string>
- <string>SPPrefPaneDataType</string>
- <string>SPPrintersSoftwareDataType</string>
- <string>SPPrintersDataType</string>
- <string>SPConfigurationProfileDataType</string>
- <string>SPSASDataType</string>
- <string>SPSerialATADataType</string>
- <string>SPSoftwareDataType</string>
- <string>SPStartupItemDataType</string>
- <string>SPSyncServicesDataType</string>
- <string>SPThunderboltDataType</string>
- <string>SPUSBDataType</string>
- <string>SPUniversalAccessDataType</string>
- <string>SPNetworkVolumeDataType</string>
- <string>SPWWANDataType</string>
- <string>SPAirPortDataType</string>
- </array>
- <key>_SPCompletionInterval</key>
- <real>0.0030600428581237793</real>
- <key>_dataType</key>
- <string>SPMemoryDataType</string>
- <key>_detailLevel</key>
- <integer>-1</integer>
- <key>_items</key>
- <array>
- <dict>
- <key>_items</key>
- <array>
- <dict>
- <key>_name</key>
- <string>BANK 0/DIMM0</string>
- <key>dimm_manufacturer</key>
- <string>0x802C</string>
- <key>dimm_part_number</key>
- <string>0x31364A53463531323634485A2D3147314431</string>
- <key>dimm_size</key>
- <string>4 GB</string>
- <key>dimm_speed</key>
- <string>1067 MHz</string>
- <key>dimm_status</key>
- <string>ok</string>
- <key>dimm_type</key>
- <string>DDR3</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>BANK 1/DIMM0</string>
- <key>dimm_manufacturer</key>
- <string>0x802C</string>
- <key>dimm_part_number</key>
- <string>0x31364A53463531323634485A2D3147314431</string>
- <key>dimm_size</key>
- <string>4 GB</string>
- <key>dimm_speed</key>
- <string>1067 MHz</string>
- <key>dimm_status</key>
- <string>ok</string>
- <key>dimm_type</key>
- <string>DDR3</string>
- </dict>
- </array>
- <key>_name</key>
- <string>global_name</string>
- <key>global_ecc_state</key>
- <string>ecc_disabled</string>
- </dict>
- </array>
- <key>_parentDataType</key>
- <string>SPHardwareDataType</string>
- <key>_properties</key>
- <dict>
- <key>_name</key>
- <dict>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_isOutlineColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>10</string>
- </dict>
- <key>dimm_ecc_errors</key>
- <dict>
- <key>_order</key>
- <string>60</string>
- </dict>
- <key>dimm_size</key>
- <dict>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>20</string>
- </dict>
- <key>dimm_speed</key>
- <dict>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>40</string>
- </dict>
- <key>dimm_status</key>
- <dict>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>50</string>
- </dict>
- <key>dimm_type</key>
- <dict>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>30</string>
- </dict>
- <key>volumes_anonymous</key>
- <dict>
- <key>_detailLevel</key>
- <string>-1</string>
- <key>_maxDetailLevel</key>
- <string>-1</string>
- </dict>
- </dict>
- <key>_timeStamp</key>
- <date>2012-12-04T21:30:18Z</date>
- <key>_versionInfo</key>
- <dict>
- <key>com.apple.SystemProfiler.SPMemoryReporter</key>
- <string>68</string>
- </dict>
- </dict>
- <dict>
- <key>_SPCommandLineArguments</key>
- <array>
- <string>/usr/sbin/system_profiler</string>
- <string>-xml</string>
- <string>-detailLevel</string>
- <string>mini</string>
- <string>SPParallelATADataType</string>
- <string>SPApplicationsDataType</string>
- <string>SPAudioDataType</string>
- <string>SPBluetoothDataType</string>
- <string>SPCardReaderDataType</string>
- <string>SPComponentDataType</string>
- <string>SPDeveloperToolsDataType</string>
- <string>SPDiagnosticsDataType</string>
- <string>SPDiscBurningDataType</string>
- <string>SPEthernetDataType</string>
- <string>SPExtensionsDataType</string>
- <string>SPFibreChannelDataType</string>
- <string>SPFireWireDataType</string>
- <string>SPFirewallDataType</string>
- <string>SPFontsDataType</string>
- <string>SPFrameworksDataType</string>
- <string>SPDisplaysDataType</string>
- <string>SPHardwareRAIDDataType</string>
- <string>SPNetworkLocationDataType</string>
- <string>SPLogsDataType</string>
- <string>SPManagedClientDataType</string>
- <string>SPMemoryDataType</string>
- <string>SPModemDataType</string>
- <string>SPNetworkDataType</string>
- <string>SPPCIDataType</string>
- <string>SPParallelSCSIDataType</string>
- <string>SPPowerDataType</string>
- <string>SPPrefPaneDataType</string>
- <string>SPPrintersSoftwareDataType</string>
- <string>SPPrintersDataType</string>
- <string>SPConfigurationProfileDataType</string>
- <string>SPSASDataType</string>
- <string>SPSerialATADataType</string>
- <string>SPSoftwareDataType</string>
- <string>SPStartupItemDataType</string>
- <string>SPSyncServicesDataType</string>
- <string>SPThunderboltDataType</string>
- <string>SPUSBDataType</string>
- <string>SPUniversalAccessDataType</string>
- <string>SPNetworkVolumeDataType</string>
- <string>SPWWANDataType</string>
- <string>SPAirPortDataType</string>
- </array>
- <key>_SPCompletionInterval</key>
- <real>0.082992970943450928</real>
- <key>_dataType</key>
- <string>SPModemDataType</string>
- <key>_detailLevel</key>
- <integer>-1</integer>
- <key>_items</key>
- <array/>
- <key>_parentDataType</key>
- <string>SPNetworkDataType</string>
- <key>_properties</key>
- <dict>
- <key>spmodem_countryinfo</key>
- <dict>
- <key>_order</key>
- <string>80</string>
- </dict>
- <key>spmodem_driverinfo</key>
- <dict>
- <key>_order</key>
- <string>70</string>
- </dict>
- <key>spmodem_fwvers</key>
- <dict>
- <key>_order</key>
- <string>60</string>
- </dict>
- <key>spmodem_hwversion</key>
- <dict>
- <key>_order</key>
- <string>50</string>
- </dict>
- <key>spmodem_interfacetype</key>
- <dict>
- <key>_order</key>
- <string>20</string>
- </dict>
- <key>spmodem_model</key>
- <dict>
- <key>_order</key>
- <string>10</string>
- </dict>
- <key>spmodem_modemInUseBy</key>
- <dict>
- <key>_order</key>
- <string>90</string>
- </dict>
- <key>spmodem_modulation</key>
- <dict>
- <key>_order</key>
- <string>30</string>
- </dict>
- <key>spmodem_skuname</key>
- <dict>
- <key>_order</key>
- <string>40</string>
- </dict>
- <key>volumes_anonymous</key>
- <dict>
- <key>_detailLevel</key>
- <string>-1</string>
- <key>_maxDetailLevel</key>
- <string>-1</string>
- </dict>
- </dict>
- <key>_timeStamp</key>
- <date>2012-12-04T21:30:18Z</date>
- <key>_versionInfo</key>
- <dict>
- <key>com.apple.SystemProfiler.SPModemReporter</key>
- <string>66</string>
- </dict>
- </dict>
- <dict>
- <key>_SPCommandLineArguments</key>
- <array>
- <string>/usr/sbin/system_profiler</string>
- <string>-xml</string>
- <string>-detailLevel</string>
- <string>mini</string>
- <string>SPParallelATADataType</string>
- <string>SPApplicationsDataType</string>
- <string>SPAudioDataType</string>
- <string>SPBluetoothDataType</string>
- <string>SPCardReaderDataType</string>
- <string>SPComponentDataType</string>
- <string>SPDeveloperToolsDataType</string>
- <string>SPDiagnosticsDataType</string>
- <string>SPDiscBurningDataType</string>
- <string>SPEthernetDataType</string>
- <string>SPExtensionsDataType</string>
- <string>SPFibreChannelDataType</string>
- <string>SPFireWireDataType</string>
- <string>SPFirewallDataType</string>
- <string>SPFontsDataType</string>
- <string>SPFrameworksDataType</string>
- <string>SPDisplaysDataType</string>
- <string>SPHardwareRAIDDataType</string>
- <string>SPNetworkLocationDataType</string>
- <string>SPLogsDataType</string>
- <string>SPManagedClientDataType</string>
- <string>SPMemoryDataType</string>
- <string>SPModemDataType</string>
- <string>SPNetworkDataType</string>
- <string>SPPCIDataType</string>
- <string>SPParallelSCSIDataType</string>
- <string>SPPowerDataType</string>
- <string>SPPrefPaneDataType</string>
- <string>SPPrintersSoftwareDataType</string>
- <string>SPPrintersDataType</string>
- <string>SPConfigurationProfileDataType</string>
- <string>SPSASDataType</string>
- <string>SPSerialATADataType</string>
- <string>SPSoftwareDataType</string>
- <string>SPStartupItemDataType</string>
- <string>SPSyncServicesDataType</string>
- <string>SPThunderboltDataType</string>
- <string>SPUSBDataType</string>
- <string>SPUniversalAccessDataType</string>
- <string>SPNetworkVolumeDataType</string>
- <string>SPWWANDataType</string>
- <string>SPAirPortDataType</string>
- </array>
- <key>_SPCompletionInterval</key>
- <real>0.060584962368011475</real>
- <key>_dataType</key>
- <string>SPNetworkDataType</string>
- <key>_detailLevel</key>
- <integer>-1</integer>
- <key>_items</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Bluetooth DUN</string>
- <key>hardware</key>
- <string>Modem</string>
- <key>interface</key>
- <string>Bluetooth-Modem</string>
- <key>ip_assigned</key>
- <string>no</string>
- <key>spnetwork_service_order</key>
- <integer>0</integer>
- <key>type</key>
- <string>PPP (PPPSerial)</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Ethernet</string>
- <key>hardware</key>
- <string>Ethernet</string>
- <key>interface</key>
- <string>en0</string>
- <key>ip_assigned</key>
- <string>no</string>
- <key>spnetwork_service_order</key>
- <integer>1</integer>
- <key>type</key>
- <string>Ethernet</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>FireWire</string>
- <key>hardware</key>
- <string>FireWire</string>
- <key>interface</key>
- <string>fw0</string>
- <key>ip_assigned</key>
- <string>no</string>
- <key>spnetwork_service_order</key>
- <integer>2</integer>
- <key>type</key>
- <string>FireWire</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Wi-Fi</string>
- <key>hardware</key>
- <string>AirPort</string>
- <key>interface</key>
- <string>en1</string>
- <key>ip_assigned</key>
- <string>yes</string>
- <key>spnetwork_service_order</key>
- <integer>3</integer>
- <key>type</key>
- <string>AirPort</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Bluetooth PAN</string>
- <key>hardware</key>
- <string>Ethernet</string>
- <key>interface</key>
- <string>en2</string>
- <key>ip_assigned</key>
- <string>no</string>
- <key>spnetwork_service_order</key>
- <integer>4</integer>
- <key>type</key>
- <string>Ethernet</string>
- </dict>
- </array>
- <key>_parentDataType</key>
- <string>SPRootDataType</string>
- <key>_properties</key>
- <dict>
- <key>_name</key>
- <dict>
- <key>_detailLevel</key>
- <string>-1</string>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>0</string>
- </dict>
- <key>hardware</key>
- <dict>
- <key>_detailLevel</key>
- <string>-1</string>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>15</string>
- </dict>
- <key>interface</key>
- <dict>
- <key>_detailLevel</key>
- <string>-1</string>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>20</string>
- </dict>
- <key>ip_assigned</key>
- <dict>
- <key>_detailLevel</key>
- <string>-1</string>
- <key>_maxDetailLevel</key>
- <string>0</string>
- <key>_order</key>
- <string>29</string>
- </dict>
- <key>type</key>
- <dict>
- <key>_detailLevel</key>
- <string>-1</string>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>10</string>
- </dict>
- <key>volumes_anonymous</key>
- <dict>
- <key>_detailLevel</key>
- <string>-1</string>
- <key>_maxDetailLevel</key>
- <string>-1</string>
- </dict>
- </dict>
- <key>_timeStamp</key>
- <date>2012-12-04T21:30:19Z</date>
- <key>_versionInfo</key>
- <dict>
- <key>com.apple.SystemProfiler.SPNetworkReporter</key>
- <string>733</string>
- </dict>
- </dict>
- <dict>
- <key>_SPCommandLineArguments</key>
- <array>
- <string>/usr/sbin/system_profiler</string>
- <string>-xml</string>
- <string>-detailLevel</string>
- <string>mini</string>
- <string>SPParallelATADataType</string>
- <string>SPApplicationsDataType</string>
- <string>SPAudioDataType</string>
- <string>SPBluetoothDataType</string>
- <string>SPCardReaderDataType</string>
- <string>SPComponentDataType</string>
- <string>SPDeveloperToolsDataType</string>
- <string>SPDiagnosticsDataType</string>
- <string>SPDiscBurningDataType</string>
- <string>SPEthernetDataType</string>
- <string>SPExtensionsDataType</string>
- <string>SPFibreChannelDataType</string>
- <string>SPFireWireDataType</string>
- <string>SPFirewallDataType</string>
- <string>SPFontsDataType</string>
- <string>SPFrameworksDataType</string>
- <string>SPDisplaysDataType</string>
- <string>SPHardwareRAIDDataType</string>
- <string>SPNetworkLocationDataType</string>
- <string>SPLogsDataType</string>
- <string>SPManagedClientDataType</string>
- <string>SPMemoryDataType</string>
- <string>SPModemDataType</string>
- <string>SPNetworkDataType</string>
- <string>SPPCIDataType</string>
- <string>SPParallelSCSIDataType</string>
- <string>SPPowerDataType</string>
- <string>SPPrefPaneDataType</string>
- <string>SPPrintersSoftwareDataType</string>
- <string>SPPrintersDataType</string>
- <string>SPConfigurationProfileDataType</string>
- <string>SPSASDataType</string>
- <string>SPSerialATADataType</string>
- <string>SPSoftwareDataType</string>
- <string>SPStartupItemDataType</string>
- <string>SPSyncServicesDataType</string>
- <string>SPThunderboltDataType</string>
- <string>SPUSBDataType</string>
- <string>SPUniversalAccessDataType</string>
- <string>SPNetworkVolumeDataType</string>
- <string>SPWWANDataType</string>
- <string>SPAirPortDataType</string>
- </array>
- <key>_SPCompletionInterval</key>
- <real>0.010538995265960693</real>
- <key>_dataType</key>
- <string>SPPCIDataType</string>
- <key>_detailLevel</key>
- <integer>-1</integer>
- <key>_items</key>
- <array/>
- <key>_parentDataType</key>
- <string>SPHardwareDataType</string>
- <key>_properties</key>
- <dict>
- <key>_name</key>
- <dict>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>0</string>
- </dict>
- <key>sppci_bus</key>
- <dict>
- <key>_order</key>
- <string>25</string>
- </dict>
- <key>sppci_device-id</key>
- <dict>
- <key>_order</key>
- <string>50</string>
- </dict>
- <key>sppci_device_type</key>
- <dict>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>20</string>
- </dict>
- <key>sppci_driver_installed</key>
- <dict>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>22</string>
- </dict>
- <key>sppci_link-width</key>
- <dict>
- <key>_order</key>
- <string>100</string>
- </dict>
- <key>sppci_model</key>
- <dict>
- <key>_order</key>
- <string>1</string>
- </dict>
- <key>sppci_msi</key>
- <dict>
- <key>_order</key>
- <string>24</string>
- </dict>
- <key>sppci_name</key>
- <dict>
- <key>_order</key>
- <string>10</string>
- </dict>
- <key>sppci_revision-id</key>
- <dict>
- <key>_order</key>
- <string>90</string>
- </dict>
- <key>sppci_rom-revision</key>
- <dict>
- <key>_order</key>
- <string>80</string>
- </dict>
- <key>sppci_slot_name</key>
- <dict>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>30</string>
- </dict>
- <key>sppci_subsystem-id</key>
- <dict>
- <key>_order</key>
- <string>70</string>
- </dict>
- <key>sppci_subsystem-vendor-id</key>
- <dict>
- <key>_order</key>
- <string>60</string>
- </dict>
- <key>sppci_tunnel-compatible</key>
- <dict>
- <key>_order</key>
- <string>23</string>
- </dict>
- <key>sppci_vendor-id</key>
- <dict>
- <key>_order</key>
- <string>40</string>
- </dict>
- <key>volumes_anonymous</key>
- <dict>
- <key>_detailLevel</key>
- <string>-1</string>
- <key>_maxDetailLevel</key>
- <string>-1</string>
- </dict>
- </dict>
- <key>_timeStamp</key>
- <date>2012-12-04T21:30:19Z</date>
- <key>_versionInfo</key>
- <dict>
- <key>com.apple.SystemProfiler.SPPCIReporter</key>
- <string>501</string>
- </dict>
- </dict>
- <dict>
- <key>_SPCommandLineArguments</key>
- <array>
- <string>/usr/sbin/system_profiler</string>
- <string>-xml</string>
- <string>-detailLevel</string>
- <string>mini</string>
- <string>SPParallelATADataType</string>
- <string>SPApplicationsDataType</string>
- <string>SPAudioDataType</string>
- <string>SPBluetoothDataType</string>
- <string>SPCardReaderDataType</string>
- <string>SPComponentDataType</string>
- <string>SPDeveloperToolsDataType</string>
- <string>SPDiagnosticsDataType</string>
- <string>SPDiscBurningDataType</string>
- <string>SPEthernetDataType</string>
- <string>SPExtensionsDataType</string>
- <string>SPFibreChannelDataType</string>
- <string>SPFireWireDataType</string>
- <string>SPFirewallDataType</string>
- <string>SPFontsDataType</string>
- <string>SPFrameworksDataType</string>
- <string>SPDisplaysDataType</string>
- <string>SPHardwareRAIDDataType</string>
- <string>SPNetworkLocationDataType</string>
- <string>SPLogsDataType</string>
- <string>SPManagedClientDataType</string>
- <string>SPMemoryDataType</string>
- <string>SPModemDataType</string>
- <string>SPNetworkDataType</string>
- <string>SPPCIDataType</string>
- <string>SPParallelSCSIDataType</string>
- <string>SPPowerDataType</string>
- <string>SPPrefPaneDataType</string>
- <string>SPPrintersSoftwareDataType</string>
- <string>SPPrintersDataType</string>
- <string>SPConfigurationProfileDataType</string>
- <string>SPSASDataType</string>
- <string>SPSerialATADataType</string>
- <string>SPSoftwareDataType</string>
- <string>SPStartupItemDataType</string>
- <string>SPSyncServicesDataType</string>
- <string>SPThunderboltDataType</string>
- <string>SPUSBDataType</string>
- <string>SPUniversalAccessDataType</string>
- <string>SPNetworkVolumeDataType</string>
- <string>SPWWANDataType</string>
- <string>SPAirPortDataType</string>
- </array>
- <key>_SPCompletionInterval</key>
- <real>0.0029050111770629883</real>
- <key>_dataType</key>
- <string>SPParallelSCSIDataType</string>
- <key>_detailLevel</key>
- <integer>-1</integer>
- <key>_items</key>
- <array/>
- <key>_parentDataType</key>
- <string>SPHardwareDataType</string>
- <key>_properties</key>
- <dict>
- <key>_name</key>
- <dict>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_isOutlineColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>0</string>
- </dict>
- <key>bsd_name</key>
- <dict>
- <key>_order</key>
- <string>62</string>
- </dict>
- <key>detachable_drive</key>
- <dict>
- <key>_order</key>
- <string>59</string>
- </dict>
- <key>device_manufacturer</key>
- <dict>
- <key>_order</key>
- <string>41</string>
- </dict>
- <key>device_model</key>
- <dict>
- <key>_order</key>
- <string>42</string>
- </dict>
- <key>device_pdt</key>
- <dict>
- <key>_order</key>
- <string>40</string>
- </dict>
- <key>device_revision</key>
- <dict>
- <key>_order</key>
- <string>44</string>
- </dict>
- <key>disc_burning</key>
- <dict>
- <key>_order</key>
- <string>54</string>
- </dict>
- <key>file_system</key>
- <dict>
- <key>_order</key>
- <string>60</string>
- </dict>
- <key>free_space</key>
- <dict>
- <key>_deprecated</key>
- <true/>
- <key>_order</key>
- <string>12</string>
- </dict>
- <key>free_space_in_bytes</key>
- <dict>
- <key>_isByteSize</key>
- <true/>
- <key>_order</key>
- <string>12</string>
- </dict>
- <key>mount_point</key>
- <dict>
- <key>_order</key>
- <string>64</string>
- </dict>
- <key>optical_drive_type</key>
- <dict>
- <key>_order</key>
- <string>51</string>
- </dict>
- <key>optical_media_type</key>
- <dict>
- <key>_order</key>
- <string>52</string>
- </dict>
- <key>os9_drivers</key>
- <dict>
- <key>_order</key>
- <string>68</string>
- </dict>
- <key>raid_drive</key>
- <dict>
- <key>_order</key>
- <string>66</string>
- </dict>
- <key>removable_media</key>
- <dict>
- <key>_order</key>
- <string>56</string>
- </dict>
- <key>size</key>
- <dict>
- <key>_deprecated</key>
- <true/>
- <key>_order</key>
- <string>10</string>
- </dict>
- <key>size_in_bytes</key>
- <dict>
- <key>_isByteSize</key>
- <true/>
- <key>_order</key>
- <string>10</string>
- </dict>
- <key>spparallelscsi_alua_support</key>
- <dict>
- <key>_order</key>
- <string>48</string>
- </dict>
- <key>spparallelscsi_bus</key>
- <dict>
- <key>_order</key>
- <string>22</string>
- </dict>
- <key>spparallelscsi_device_features</key>
- <dict>
- <key>_order</key>
- <string>101</string>
- </dict>
- <key>spparallelscsi_domainidentifier</key>
- <dict>
- <key>_order</key>
- <string>33</string>
- </dict>
- <key>spparallelscsi_initiatorid</key>
- <dict>
- <key>_order</key>
- <string>34</string>
- </dict>
- <key>spparallelscsi_it_nexus_features</key>
- <dict>
- <key>_order</key>
- <string>102</string>
- </dict>
- <key>spparallelscsi_load_balancing_algorithm</key>
- <dict>
- <key>_order</key>
- <string>50</string>
- </dict>
- <key>spparallelscsi_logical_unit_access_state</key>
- <dict>
- <key>_order</key>
- <string>49</string>
- </dict>
- <key>spparallelscsi_logical_unit_unique_id</key>
- <dict>
- <key>_order</key>
- <string>40</string>
- </dict>
- <key>spparallelscsi_lun</key>
- <dict>
- <key>_order</key>
- <string>110</string>
- </dict>
- <key>spparallelscsi_port_description</key>
- <dict>
- <key>_order</key>
- <string>36</string>
- </dict>
- <key>spparallelscsi_product</key>
- <dict>
- <key>_order</key>
- <string>30</string>
- </dict>
- <key>spparallelscsi_revision</key>
- <dict>
- <key>_order</key>
- <string>32</string>
- </dict>
- <key>spparallelscsi_signal_type</key>
- <dict>
- <key>_order</key>
- <string>35</string>
- </dict>
- <key>spparallelscsi_slot_name</key>
- <dict>
- <key>_order</key>
- <string>24</string>
- </dict>
- <key>spparallelscsi_target</key>
- <dict>
- <key>_order</key>
- <string>100</string>
- </dict>
- <key>spparallelscsi_vendor</key>
- <dict>
- <key>_order</key>
- <string>28</string>
- </dict>
- <key>volumes_anonymous</key>
- <dict>
- <key>_detailLevel</key>
- <string>-1</string>
- <key>_maxDetailLevel</key>
- <string>-1</string>
- </dict>
- <key>writable</key>
- <dict>
- <key>_order</key>
- <string>58</string>
- </dict>
- </dict>
- <key>_timeStamp</key>
- <date>2012-12-04T21:30:19Z</date>
- <key>_versionInfo</key>
- <dict>
- <key>com.apple.SystemProfiler.SPParallelSCSIReporter</key>
- <string>2.0.2</string>
- </dict>
- </dict>
- <dict>
- <key>_SPCommandLineArguments</key>
- <array>
- <string>/usr/sbin/system_profiler</string>
- <string>-xml</string>
- <string>-detailLevel</string>
- <string>mini</string>
- <string>SPParallelATADataType</string>
- <string>SPApplicationsDataType</string>
- <string>SPAudioDataType</string>
- <string>SPBluetoothDataType</string>
- <string>SPCardReaderDataType</string>
- <string>SPComponentDataType</string>
- <string>SPDeveloperToolsDataType</string>
- <string>SPDiagnosticsDataType</string>
- <string>SPDiscBurningDataType</string>
- <string>SPEthernetDataType</string>
- <string>SPExtensionsDataType</string>
- <string>SPFibreChannelDataType</string>
- <string>SPFireWireDataType</string>
- <string>SPFirewallDataType</string>
- <string>SPFontsDataType</string>
- <string>SPFrameworksDataType</string>
- <string>SPDisplaysDataType</string>
- <string>SPHardwareRAIDDataType</string>
- <string>SPNetworkLocationDataType</string>
- <string>SPLogsDataType</string>
- <string>SPManagedClientDataType</string>
- <string>SPMemoryDataType</string>
- <string>SPModemDataType</string>
- <string>SPNetworkDataType</string>
- <string>SPPCIDataType</string>
- <string>SPParallelSCSIDataType</string>
- <string>SPPowerDataType</string>
- <string>SPPrefPaneDataType</string>
- <string>SPPrintersSoftwareDataType</string>
- <string>SPPrintersDataType</string>
- <string>SPConfigurationProfileDataType</string>
- <string>SPSASDataType</string>
- <string>SPSerialATADataType</string>
- <string>SPSoftwareDataType</string>
- <string>SPStartupItemDataType</string>
- <string>SPSyncServicesDataType</string>
- <string>SPThunderboltDataType</string>
- <string>SPUSBDataType</string>
- <string>SPUniversalAccessDataType</string>
- <string>SPNetworkVolumeDataType</string>
- <string>SPWWANDataType</string>
- <string>SPAirPortDataType</string>
- </array>
- <key>_SPCompletionInterval</key>
- <real>0.05608600378036499</real>
- <key>_dataType</key>
- <string>SPPowerDataType</string>
- <key>_detailLevel</key>
- <string>0</string>
- <key>_items</key>
- <array>
- <dict>
- <key>_name</key>
- <string>spbattery_information</string>
- <key>sppower_battery_charge_info</key>
- <dict>
- <key>sppower_battery_current_capacity</key>
- <integer>6628</integer>
- <key>sppower_battery_fully_charged</key>
- <string>TRUE</string>
- <key>sppower_battery_is_charging</key>
- <string>FALSE</string>
- <key>sppower_battery_max_capacity</key>
- <integer>6738</integer>
- </dict>
- <key>sppower_battery_health_info</key>
- <dict>
- <key>sppower_battery_cycle_count</key>
- <integer>360</integer>
- <key>sppower_battery_health</key>
- <string>Good</string>
- </dict>
- <key>sppower_battery_installed</key>
- <string>TRUE</string>
- <key>sppower_battery_model_info</key>
- <dict>
- <key>PCB Lot Code</key>
- <string>0000</string>
- <key>Pack Lot Code</key>
- <string>0000</string>
- <key>sppower_battery_cell_revision</key>
- <string>0158</string>
- <key>sppower_battery_device_name</key>
- <string>bq20z451</string>
- <key>sppower_battery_firmware_version</key>
- <string>0406</string>
- <key>sppower_battery_hardware_revision</key>
- <string>0002</string>
- <key>sppower_battery_manufacturer</key>
- <string>SMP</string>
- <key>sppower_battery_serial_number</key>
- <string>D862025008TDGDLAH</string>
- </dict>
- <key>sppower_current_amperage</key>
- <integer>-2144</integer>
- <key>sppower_current_voltage</key>
- <integer>12191</integer>
- </dict>
- <dict>
- <key>AC Power</key>
- <dict>
- <key>Disk Sleep Timer</key>
- <integer>0</integer>
- <key>Display Sleep Timer</key>
- <integer>30</integer>
- <key>Display Sleep Uses Dim</key>
- <string>No</string>
- <key>GPUSwitch</key>
- <integer>2</integer>
- <key>PrioritizeNetworkReachabilityOverSleep</key>
- <integer>0</integer>
- <key>RestartAfterKernelPanic</key>
- <integer>157680000</integer>
- <key>Standby Delay</key>
- <integer>4200</integer>
- <key>Standby Enabled</key>
- <integer>0</integer>
- <key>System Sleep Timer</key>
- <integer>0</integer>
- <key>Wake On AC Change</key>
- <string>No</string>
- <key>Wake On Clamshell Open</key>
- <string>Yes</string>
- <key>Wake On LAN</key>
- <string>Yes</string>
- </dict>
- <key>Battery Power</key>
- <dict>
- <key>Current Power Source</key>
- <string>TRUE</string>
- <key>Disk Sleep Timer</key>
- <integer>10</integer>
- <key>Display Sleep Timer</key>
- <integer>5</integer>
- <key>Display Sleep Uses Dim</key>
- <string>Yes</string>
- <key>GPUSwitch</key>
- <integer>2</integer>
- <key>ReduceBrightness</key>
- <string>Yes</string>
- <key>RestartAfterKernelPanic</key>
- <integer>157680000</integer>
- <key>Standby Delay</key>
- <integer>4200</integer>
- <key>Standby Enabled</key>
- <integer>0</integer>
- <key>System Sleep Timer</key>
- <integer>30</integer>
- <key>Wake On AC Change</key>
- <string>No</string>
- <key>Wake On Clamshell Open</key>
- <string>Yes</string>
- </dict>
- <key>_name</key>
- <string>sppower_information</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>sppower_hwconfig_information</string>
- <key>sppower_ups_installed</key>
- <string>FALSE</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>sppower_ac_charger_information</string>
- <key>sppower_battery_charger_connected</key>
- <string>FALSE</string>
- <key>sppower_battery_is_charging</key>
- <string>FALSE</string>
- </dict>
- </array>
- <key>_parentDataType</key>
- <string>SPHardwareDataType</string>
- <key>_properties</key>
- <dict>
- <key>Automatic Restart On Power Loss</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>107</string>
- </dict>
- <key>Disk Sleep Timer</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>102</string>
- </dict>
- <key>Display Sleep Timer</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>103</string>
- </dict>
- <key>Dynamic Power Step</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>104</string>
- </dict>
- <key>PCB Lot Code</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>404</string>
- </dict>
- <key>Pack Lot Code</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>403</string>
- </dict>
- <key>Reduce Processor Speed</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>105</string>
- </dict>
- <key>Sleep On Power Button</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>106</string>
- </dict>
- <key>System Sleep Timer</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>101</string>
- </dict>
- <key>Wake On AC Change</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>108</string>
- </dict>
- <key>Wake On Clamshell Open</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>109</string>
- </dict>
- <key>Wake On LAN</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>110</string>
- </dict>
- <key>Wake On Modem Ring</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>111</string>
- </dict>
- <key>spbattery_information</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>200</string>
- </dict>
- <key>sppower_ac_charger_ID</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>310</string>
- </dict>
- <key>sppower_ac_charger_family</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>313</string>
- </dict>
- <key>sppower_ac_charger_information</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>300</string>
- </dict>
- <key>sppower_ac_charger_revision</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>312</string>
- </dict>
- <key>sppower_ac_charger_serial_number</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>314</string>
- </dict>
- <key>sppower_ac_charger_watts</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>311</string>
- </dict>
- <key>sppower_battery_cannot_charge</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>401</string>
- </dict>
- <key>sppower_battery_cell_revision</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>407</string>
- </dict>
- <key>sppower_battery_charge_info</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>2</string>
- </dict>
- <key>sppower_battery_charger_connected</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>302</string>
- </dict>
- <key>sppower_battery_depleted</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>203</string>
- </dict>
- <key>sppower_battery_device_name</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>402</string>
- </dict>
- <key>sppower_battery_firmware_version</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>405</string>
- </dict>
- <key>sppower_battery_hardware_revision</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>406</string>
- </dict>
- <key>sppower_battery_health_info</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>3</string>
- </dict>
- <key>sppower_battery_installed</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>201</string>
- </dict>
- <key>sppower_battery_manufacturer</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>401</string>
- </dict>
- <key>sppower_battery_model_info</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>1</string>
- </dict>
- <key>sppower_battery_serial_number</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>400</string>
- </dict>
- <key>sppower_clamshell_closed</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>401</string>
- </dict>
- <key>sppower_current_amperage</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>206</string>
- </dict>
- <key>sppower_current_voltage</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>207</string>
- </dict>
- <key>sppower_events_info</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>500</string>
- </dict>
- <key>sppower_hwconfig_information</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>400</string>
- </dict>
- <key>sppower_information</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>100</string>
- </dict>
- <key>sppower_repeating_events_info</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>520</string>
- </dict>
- <key>sppower_scheduled_events_info</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>510</string>
- </dict>
- <key>sppower_watts</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>301</string>
- </dict>
- <key>volumes_anonymous</key>
- <dict>
- <key>_detailLevel</key>
- <string>-1</string>
- <key>_maxDetailLevel</key>
- <string>-1</string>
- </dict>
- </dict>
- <key>_timeStamp</key>
- <date>2012-12-04T21:30:19Z</date>
- <key>_versionInfo</key>
- <dict>
- <key>com.apple.SystemProfiler.SPPowerReporter</key>
- <string>141</string>
- </dict>
- </dict>
- <dict>
- <key>_SPCommandLineArguments</key>
- <array>
- <string>/usr/sbin/system_profiler</string>
- <string>-xml</string>
- <string>-detailLevel</string>
- <string>mini</string>
- <string>SPParallelATADataType</string>
- <string>SPApplicationsDataType</string>
- <string>SPAudioDataType</string>
- <string>SPBluetoothDataType</string>
- <string>SPCardReaderDataType</string>
- <string>SPComponentDataType</string>
- <string>SPDeveloperToolsDataType</string>
- <string>SPDiagnosticsDataType</string>
- <string>SPDiscBurningDataType</string>
- <string>SPEthernetDataType</string>
- <string>SPExtensionsDataType</string>
- <string>SPFibreChannelDataType</string>
- <string>SPFireWireDataType</string>
- <string>SPFirewallDataType</string>
- <string>SPFontsDataType</string>
- <string>SPFrameworksDataType</string>
- <string>SPDisplaysDataType</string>
- <string>SPHardwareRAIDDataType</string>
- <string>SPNetworkLocationDataType</string>
- <string>SPLogsDataType</string>
- <string>SPManagedClientDataType</string>
- <string>SPMemoryDataType</string>
- <string>SPModemDataType</string>
- <string>SPNetworkDataType</string>
- <string>SPPCIDataType</string>
- <string>SPParallelSCSIDataType</string>
- <string>SPPowerDataType</string>
- <string>SPPrefPaneDataType</string>
- <string>SPPrintersSoftwareDataType</string>
- <string>SPPrintersDataType</string>
- <string>SPConfigurationProfileDataType</string>
- <string>SPSASDataType</string>
- <string>SPSerialATADataType</string>
- <string>SPSoftwareDataType</string>
- <string>SPStartupItemDataType</string>
- <string>SPSyncServicesDataType</string>
- <string>SPThunderboltDataType</string>
- <string>SPUSBDataType</string>
- <string>SPUniversalAccessDataType</string>
- <string>SPNetworkVolumeDataType</string>
- <string>SPWWANDataType</string>
- <string>SPAirPortDataType</string>
- </array>
- <key>_SPCompletionInterval</key>
- <real>1.0357669591903687</real>
- <key>_dataType</key>
- <string>SPPrefPaneDataType</string>
- <key>_detailLevel</key>
- <integer>1</integer>
- <key>_items</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Bluetooth</string>
- <key>spprefpane_bundlePath</key>
- <string>/System/Library/PreferencePanes/Bluetooth.prefPane</string>
- <key>spprefpane_has64BitIntelCode</key>
- <string>yes</string>
- <key>spprefpane_identifier</key>
- <string>com.apple.preferences.Bluetooth</string>
- <key>spprefpane_isVisible</key>
- <string>yes</string>
- <key>spprefpane_support</key>
- <string>spprefpane_support_apple</string>
- <key>spprefpane_version</key>
- <string>4.0.8</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>CDs &amp; DVDs</string>
- <key>spprefpane_bundlePath</key>
- <string>/System/Library/PreferencePanes/DigiHubDiscs.prefPane</string>
- <key>spprefpane_has64BitIntelCode</key>
- <string>yes</string>
- <key>spprefpane_identifier</key>
- <string>com.apple.preference.digihub.discs</string>
- <key>spprefpane_isVisible</key>
- <string>yes</string>
- <key>spprefpane_support</key>
- <string>spprefpane_support_apple</string>
- <key>spprefpane_version</key>
- <string>1.7</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>DateAndTime</string>
- <key>spprefpane_bundlePath</key>
- <string>/System/Library/PreferencePanes/DateAndTime.prefPane</string>
- <key>spprefpane_has64BitIntelCode</key>
- <string>yes</string>
- <key>spprefpane_identifier</key>
- <string>com.apple.preference.datetime</string>
- <key>spprefpane_isVisible</key>
- <string>yes</string>
- <key>spprefpane_support</key>
- <string>spprefpane_support_apple</string>
- <key>spprefpane_version</key>
- <string>5.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>RCDefaultApp</string>
- <key>spprefpane_bundlePath</key>
- <string>/Library/PreferencePanes/RCDefaultApp.prefPane</string>
- <key>spprefpane_has64BitIntelCode</key>
- <string>yes</string>
- <key>spprefpane_identifier</key>
- <string>RCDefaultAppPref</string>
- <key>spprefpane_isVisible</key>
- <string>yes</string>
- <key>spprefpane_support</key>
- <string>spprefpane_support_3rdParty</string>
- <key>spprefpane_version</key>
- <string>2.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Desktop &amp; Screen Saver</string>
- <key>spprefpane_bundlePath</key>
- <string>/System/Library/PreferencePanes/DesktopScreenEffectsPref.prefPane</string>
- <key>spprefpane_has64BitIntelCode</key>
- <string>yes</string>
- <key>spprefpane_identifier</key>
- <string>com.apple.preference.desktopscreeneffect</string>
- <key>spprefpane_isVisible</key>
- <string>yes</string>
- <key>spprefpane_support</key>
- <string>spprefpane_support_apple</string>
- <key>spprefpane_version</key>
- <string>4.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Displays</string>
- <key>spprefpane_bundlePath</key>
- <string>/System/Library/PreferencePanes/.Displays/V1/Displays.prefPane</string>
- <key>spprefpane_has64BitIntelCode</key>
- <string>yes</string>
- <key>spprefpane_identifier</key>
- <string>com.apple.preference.displays</string>
- <key>spprefpane_isVisible</key>
- <string>yes</string>
- <key>spprefpane_support</key>
- <string>spprefpane_support_apple</string>
- <key>spprefpane_version</key>
- <string>2.5</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Dock</string>
- <key>spprefpane_bundlePath</key>
- <string>/System/Library/PreferencePanes/Dock.prefPane</string>
- <key>spprefpane_has64BitIntelCode</key>
- <string>yes</string>
- <key>spprefpane_identifier</key>
- <string>com.apple.preference.dock</string>
- <key>spprefpane_isVisible</key>
- <string>yes</string>
- <key>spprefpane_support</key>
- <string>spprefpane_support_apple</string>
- <key>spprefpane_version</key>
- <string>1.7</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Energy Saver</string>
- <key>spprefpane_bundlePath</key>
- <string>/System/Library/PreferencePanes/EnergySaver.prefPane</string>
- <key>spprefpane_has64BitIntelCode</key>
- <string>yes</string>
- <key>spprefpane_identifier</key>
- <string>com.apple.preference.energysaver</string>
- <key>spprefpane_isVisible</key>
- <string>yes</string>
- <key>spprefpane_support</key>
- <string>spprefpane_support_apple</string>
- <key>spprefpane_version</key>
- <string>5.0.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Fibre Channel</string>
- <key>spprefpane_bundlePath</key>
- <string>/System/Library/PreferencePanes/FibreChannel.prefPane</string>
- <key>spprefpane_has64BitIntelCode</key>
- <string>yes</string>
- <key>spprefpane_identifier</key>
- <string>com.apple.prefpanel.fibrechannel</string>
- <key>spprefpane_isVisible</key>
- <string>no</string>
- <key>spprefpane_support</key>
- <string>spprefpane_support_apple</string>
- <key>spprefpane_version</key>
- <string>2.1.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Flash Player</string>
- <key>spprefpane_bundlePath</key>
- <string>/Library/PreferencePanes/Flash Player.prefPane</string>
- <key>spprefpane_has64BitIntelCode</key>
- <string>yes</string>
- <key>spprefpane_identifier</key>
- <string>com.adobe.flashplayerpreferences</string>
- <key>spprefpane_isVisible</key>
- <string>yes</string>
- <key>spprefpane_support</key>
- <string>spprefpane_support_3rdParty</string>
- <key>spprefpane_version</key>
- <string>11.5.502.110</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>General</string>
- <key>spprefpane_bundlePath</key>
- <string>/System/Library/PreferencePanes/Appearance.prefPane</string>
- <key>spprefpane_has64BitIntelCode</key>
- <string>yes</string>
- <key>spprefpane_identifier</key>
- <string>com.apple.preference.general</string>
- <key>spprefpane_isVisible</key>
- <string>yes</string>
- <key>spprefpane_support</key>
- <string>spprefpane_support_apple</string>
- <key>spprefpane_version</key>
- <string>5.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>iCloud</string>
- <key>spprefpane_bundlePath</key>
- <string>/System/Library/PreferencePanes/iCloudPref.prefPane</string>
- <key>spprefpane_has64BitIntelCode</key>
- <string>yes</string>
- <key>spprefpane_identifier</key>
- <string>com.apple.preferences.icloud</string>
- <key>spprefpane_isVisible</key>
- <string>yes</string>
- <key>spprefpane_support</key>
- <string>spprefpane_support_apple</string>
- <key>spprefpane_version</key>
- <string>1.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Ink</string>
- <key>spprefpane_bundlePath</key>
- <string>/System/Library/PreferencePanes/Ink.prefPane</string>
- <key>spprefpane_has64BitIntelCode</key>
- <string>yes</string>
- <key>spprefpane_identifier</key>
- <string>com.apple.preference.ink</string>
- <key>spprefpane_isVisible</key>
- <string>no</string>
- <key>spprefpane_support</key>
- <string>spprefpane_support_apple</string>
- <key>spprefpane_version</key>
- <string>10.7.5</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Java</string>
- <key>spprefpane_bundlePath</key>
- <string>/Library/Internet Plug-Ins/JavaAppletPlugin.plugin/Contents/Home/lib/deploy/JavaControlPanel.prefpane</string>
- <key>spprefpane_has64BitIntelCode</key>
- <string>yes</string>
- <key>spprefpane_identifier</key>
- <string>com.oracle.java.JavaControlPanel</string>
- <key>spprefpane_isVisible</key>
- <string>yes</string>
- <key>spprefpane_support</key>
- <string>spprefpane_support_3rdParty</string>
- <key>spprefpane_version</key>
- <string>1.7.0_09</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Keyboard</string>
- <key>spprefpane_bundlePath</key>
- <string>/System/Library/PreferencePanes/Keyboard.prefPane</string>
- <key>spprefpane_has64BitIntelCode</key>
- <string>yes</string>
- <key>spprefpane_identifier</key>
- <string>com.apple.preference.keyboard</string>
- <key>spprefpane_isVisible</key>
- <string>yes</string>
- <key>spprefpane_support</key>
- <string>spprefpane_support_apple</string>
- <key>spprefpane_version</key>
- <string>11.5</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Language &amp; Text</string>
- <key>spprefpane_bundlePath</key>
- <string>/System/Library/PreferencePanes/Localization.prefPane</string>
- <key>spprefpane_has64BitIntelCode</key>
- <string>yes</string>
- <key>spprefpane_identifier</key>
- <string>com.apple.Localization</string>
- <key>spprefpane_isVisible</key>
- <string>yes</string>
- <key>spprefpane_support</key>
- <string>spprefpane_support_apple</string>
- <key>spprefpane_version</key>
- <string>1.5.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Logitech Control Center</string>
- <key>spprefpane_bundlePath</key>
- <string>/Library/PreferencePanes/Logitech Control Center.prefPane</string>
- <key>spprefpane_has64BitIntelCode</key>
- <string>yes</string>
- <key>spprefpane_identifier</key>
- <string>com.Logitech.Control Center.Preference Pane</string>
- <key>spprefpane_isVisible</key>
- <string>yes</string>
- <key>spprefpane_support</key>
- <string>spprefpane_support_3rdParty</string>
- <key>spprefpane_version</key>
- <string>3.6.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Mail, Contacts &amp; Calendars</string>
- <key>spprefpane_bundlePath</key>
- <string>/System/Library/PreferencePanes/InternetAccounts.prefPane</string>
- <key>spprefpane_has64BitIntelCode</key>
- <string>yes</string>
- <key>spprefpane_identifier</key>
- <string>com.apple.preferences.internetaccounts</string>
- <key>spprefpane_isVisible</key>
- <string>yes</string>
- <key>spprefpane_support</key>
- <string>spprefpane_support_apple</string>
- <key>spprefpane_version</key>
- <string>1.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Mission Control</string>
- <key>spprefpane_bundlePath</key>
- <string>/System/Library/PreferencePanes/Expose.prefPane</string>
- <key>spprefpane_has64BitIntelCode</key>
- <string>yes</string>
- <key>spprefpane_identifier</key>
- <string>com.apple.preference.expose</string>
- <key>spprefpane_isVisible</key>
- <string>yes</string>
- <key>spprefpane_support</key>
- <string>spprefpane_support_apple</string>
- <key>spprefpane_version</key>
- <string>1.8</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>MobileMe</string>
- <key>spprefpane_bundlePath</key>
- <string>/System/Library/PreferencePanes/MobileMe.prefPane</string>
- <key>spprefpane_has64BitIntelCode</key>
- <string>yes</string>
- <key>spprefpane_identifier</key>
- <string>com.apple.preference.internet</string>
- <key>spprefpane_isVisible</key>
- <string>yes</string>
- <key>spprefpane_support</key>
- <string>spprefpane_support_apple</string>
- <key>spprefpane_version</key>
- <string>7.0.4</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Mouse</string>
- <key>spprefpane_bundlePath</key>
- <string>/System/Library/PreferencePanes/Mouse.prefPane</string>
- <key>spprefpane_has64BitIntelCode</key>
- <string>yes</string>
- <key>spprefpane_identifier</key>
- <string>com.apple.preference.mouse</string>
- <key>spprefpane_isVisible</key>
- <string>yes</string>
- <key>spprefpane_support</key>
- <string>spprefpane_support_apple</string>
- <key>spprefpane_version</key>
- <string>11.5</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Network</string>
- <key>spprefpane_bundlePath</key>
- <string>/System/Library/PreferencePanes/Network.prefPane</string>
- <key>spprefpane_has64BitIntelCode</key>
- <string>yes</string>
- <key>spprefpane_identifier</key>
- <string>com.apple.preference.network</string>
- <key>spprefpane_isVisible</key>
- <string>yes</string>
- <key>spprefpane_support</key>
- <string>spprefpane_support_apple</string>
- <key>spprefpane_version</key>
- <string>2.6.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Parental Controls</string>
- <key>spprefpane_bundlePath</key>
- <string>/System/Library/PreferencePanes/ParentalControls.prefPane</string>
- <key>spprefpane_has64BitIntelCode</key>
- <string>yes</string>
- <key>spprefpane_identifier</key>
- <string>com.apple.preferences.parentalcontrols</string>
- <key>spprefpane_isVisible</key>
- <string>yes</string>
- <key>spprefpane_support</key>
- <string>spprefpane_support_apple</string>
- <key>spprefpane_version</key>
- <string>3.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Print &amp; Scan</string>
- <key>spprefpane_bundlePath</key>
- <string>/System/Library/PreferencePanes/PrintAndScan.prefPane</string>
- <key>spprefpane_has64BitIntelCode</key>
- <string>yes</string>
- <key>spprefpane_identifier</key>
- <string>com.apple.preference.printfax</string>
- <key>spprefpane_isVisible</key>
- <string>yes</string>
- <key>spprefpane_support</key>
- <string>spprefpane_support_apple</string>
- <key>spprefpane_version</key>
- <string>6.0</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Profiles</string>
- <key>spprefpane_bundlePath</key>
- <string>/System/Library/PreferencePanes/Profiles.prefPane</string>
- <key>spprefpane_has64BitIntelCode</key>
- <string>yes</string>
- <key>spprefpane_identifier</key>
- <string>com.apple.preferences.configurationprofiles</string>
- <key>spprefpane_isVisible</key>
- <string>no</string>
- <key>spprefpane_support</key>
- <string>spprefpane_support_apple</string>
- <key>spprefpane_version</key>
- <string>1.3.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Security</string>
- <key>spprefpane_bundlePath</key>
- <string>/System/Library/PreferencePanes/Security.prefPane</string>
- <key>spprefpane_has64BitIntelCode</key>
- <string>yes</string>
- <key>spprefpane_identifier</key>
- <string>com.apple.preference.security</string>
- <key>spprefpane_isVisible</key>
- <string>yes</string>
- <key>spprefpane_support</key>
- <string>spprefpane_support_apple</string>
- <key>spprefpane_version</key>
- <string>3.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Sharing</string>
- <key>spprefpane_bundlePath</key>
- <string>/System/Library/PreferencePanes/SharingPref.prefPane</string>
- <key>spprefpane_has64BitIntelCode</key>
- <string>yes</string>
- <key>spprefpane_identifier</key>
- <string>com.apple.preferences.sharing</string>
- <key>spprefpane_isVisible</key>
- <string>yes</string>
- <key>spprefpane_support</key>
- <string>spprefpane_support_apple</string>
- <key>spprefpane_version</key>
- <string>11.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>SoftwareUpdate</string>
- <key>spprefpane_bundlePath</key>
- <string>/System/Library/PreferencePanes/SoftwareUpdate.prefPane</string>
- <key>spprefpane_has64BitIntelCode</key>
- <string>yes</string>
- <key>spprefpane_identifier</key>
- <string>com.apple.preferences.softwareupdate</string>
- <key>spprefpane_isVisible</key>
- <string>yes</string>
- <key>spprefpane_support</key>
- <string>spprefpane_support_apple</string>
- <key>spprefpane_version</key>
- <string>5.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Sound</string>
- <key>spprefpane_bundlePath</key>
- <string>/System/Library/PreferencePanes/Sound.prefPane</string>
- <key>spprefpane_has64BitIntelCode</key>
- <string>yes</string>
- <key>spprefpane_identifier</key>
- <string>com.apple.preference.sound</string>
- <key>spprefpane_isVisible</key>
- <string>yes</string>
- <key>spprefpane_support</key>
- <string>spprefpane_support_apple</string>
- <key>spprefpane_version</key>
- <string>5.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Speech</string>
- <key>spprefpane_bundlePath</key>
- <string>/System/Library/PreferencePanes/Speech.prefPane</string>
- <key>spprefpane_has64BitIntelCode</key>
- <string>yes</string>
- <key>spprefpane_identifier</key>
- <string>com.apple.preference.speech</string>
- <key>spprefpane_isVisible</key>
- <string>yes</string>
- <key>spprefpane_support</key>
- <string>spprefpane_support_apple</string>
- <key>spprefpane_version</key>
- <string>3.7.8</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Spotlight</string>
- <key>spprefpane_bundlePath</key>
- <string>/System/Library/PreferencePanes/Spotlight.prefPane</string>
- <key>spprefpane_has64BitIntelCode</key>
- <string>yes</string>
- <key>spprefpane_identifier</key>
- <string>com.apple.preference.spotlight</string>
- <key>spprefpane_isVisible</key>
- <string>yes</string>
- <key>spprefpane_support</key>
- <string>spprefpane_support_apple</string>
- <key>spprefpane_version</key>
- <string>4.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Startup Disk</string>
- <key>spprefpane_bundlePath</key>
- <string>/System/Library/PreferencePanes/StartupDisk.prefPane</string>
- <key>spprefpane_has64BitIntelCode</key>
- <string>yes</string>
- <key>spprefpane_identifier</key>
- <string>com.apple.preference.startupdisk</string>
- <key>spprefpane_isVisible</key>
- <string>yes</string>
- <key>spprefpane_support</key>
- <string>spprefpane_support_apple</string>
- <key>spprefpane_version</key>
- <string>12.1.2</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>TimeMachine</string>
- <key>spprefpane_bundlePath</key>
- <string>/System/Library/PreferencePanes/TimeMachine.prefPane</string>
- <key>spprefpane_has64BitIntelCode</key>
- <string>yes</string>
- <key>spprefpane_identifier</key>
- <string>com.apple.prefs.backup</string>
- <key>spprefpane_isVisible</key>
- <string>yes</string>
- <key>spprefpane_support</key>
- <string>spprefpane_support_apple</string>
- <key>spprefpane_version</key>
- <string>10.7.5</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Trackpad</string>
- <key>spprefpane_bundlePath</key>
- <string>/System/Library/PreferencePanes/Trackpad.prefPane</string>
- <key>spprefpane_has64BitIntelCode</key>
- <string>yes</string>
- <key>spprefpane_identifier</key>
- <string>com.apple.preference.trackpad</string>
- <key>spprefpane_isVisible</key>
- <string>yes</string>
- <key>spprefpane_support</key>
- <string>spprefpane_support_apple</string>
- <key>spprefpane_version</key>
- <string>11.5</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Universal Access</string>
- <key>spprefpane_bundlePath</key>
- <string>/System/Library/PreferencePanes/UniversalAccessPref.prefPane</string>
- <key>spprefpane_has64BitIntelCode</key>
- <string>yes</string>
- <key>spprefpane_identifier</key>
- <string>com.apple.preference.universalaccess</string>
- <key>spprefpane_isVisible</key>
- <string>yes</string>
- <key>spprefpane_support</key>
- <string>spprefpane_support_apple</string>
- <key>spprefpane_version</key>
- <string>5.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Users &amp; Groups</string>
- <key>spprefpane_bundlePath</key>
- <string>/System/Library/PreferencePanes/Accounts.prefPane</string>
- <key>spprefpane_has64BitIntelCode</key>
- <string>yes</string>
- <key>spprefpane_identifier</key>
- <string>com.apple.preferences.users</string>
- <key>spprefpane_isVisible</key>
- <string>yes</string>
- <key>spprefpane_support</key>
- <string>spprefpane_support_apple</string>
- <key>spprefpane_version</key>
- <string>12.1</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Xsan</string>
- <key>spprefpane_bundlePath</key>
- <string>/System/Library/PreferencePanes/Xsan.prefPane</string>
- <key>spprefpane_has64BitIntelCode</key>
- <string>yes</string>
- <key>spprefpane_identifier</key>
- <string>com.apple.preference.xsan</string>
- <key>spprefpane_isVisible</key>
- <string>no</string>
- <key>spprefpane_support</key>
- <string>spprefpane_support_apple</string>
- <key>spprefpane_version</key>
- <string>1.0.2</string>
- </dict>
- </array>
- <key>_parentDataType</key>
- <string>SPSoftwareDataType</string>
- <key>_properties</key>
- <dict>
- <key>_name</key>
- <dict>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>0</string>
- </dict>
- <key>spprefpane_bundlePath</key>
- <dict>
- <key>_order</key>
- <string>6</string>
- </dict>
- <key>spprefpane_has64BitIntelCode</key>
- <dict>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_order</key>
- <integer>8</integer>
- </dict>
- <key>spprefpane_identifier</key>
- <dict>
- <key>_order</key>
- <string>5</string>
- </dict>
- <key>spprefpane_info</key>
- <dict>
- <key>_order</key>
- <string>7</string>
- </dict>
- <key>spprefpane_isEnabled</key>
- <dict>
- <key>_order</key>
- <string>3</string>
- </dict>
- <key>spprefpane_isVisible</key>
- <dict>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>4</string>
- </dict>
- <key>spprefpane_support</key>
- <dict>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>2</string>
- </dict>
- <key>spprefpane_version</key>
- <dict>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>1</string>
- </dict>
- <key>volumes_anonymous</key>
- <dict>
- <key>_detailLevel</key>
- <string>-1</string>
- <key>_maxDetailLevel</key>
- <string>-1</string>
- </dict>
- </dict>
- <key>_splitPercentage</key>
- <real>0.20000000298023224</real>
- <key>_timeStamp</key>
- <date>2012-12-04T21:30:19Z</date>
- <key>_versionInfo</key>
- <dict>
- <key>com.apple.SystemProfiler.SPPrefPaneReporter</key>
- <string>733</string>
- </dict>
- </dict>
- <dict>
- <key>_SPCommandLineArguments</key>
- <array>
- <string>/usr/sbin/system_profiler</string>
- <string>-xml</string>
- <string>-detailLevel</string>
- <string>mini</string>
- <string>SPParallelATADataType</string>
- <string>SPApplicationsDataType</string>
- <string>SPAudioDataType</string>
- <string>SPBluetoothDataType</string>
- <string>SPCardReaderDataType</string>
- <string>SPComponentDataType</string>
- <string>SPDeveloperToolsDataType</string>
- <string>SPDiagnosticsDataType</string>
- <string>SPDiscBurningDataType</string>
- <string>SPEthernetDataType</string>
- <string>SPExtensionsDataType</string>
- <string>SPFibreChannelDataType</string>
- <string>SPFireWireDataType</string>
- <string>SPFirewallDataType</string>
- <string>SPFontsDataType</string>
- <string>SPFrameworksDataType</string>
- <string>SPDisplaysDataType</string>
- <string>SPHardwareRAIDDataType</string>
- <string>SPNetworkLocationDataType</string>
- <string>SPLogsDataType</string>
- <string>SPManagedClientDataType</string>
- <string>SPMemoryDataType</string>
- <string>SPModemDataType</string>
- <string>SPNetworkDataType</string>
- <string>SPPCIDataType</string>
- <string>SPParallelSCSIDataType</string>
- <string>SPPowerDataType</string>
- <string>SPPrefPaneDataType</string>
- <string>SPPrintersSoftwareDataType</string>
- <string>SPPrintersDataType</string>
- <string>SPConfigurationProfileDataType</string>
- <string>SPSASDataType</string>
- <string>SPSerialATADataType</string>
- <string>SPSoftwareDataType</string>
- <string>SPStartupItemDataType</string>
- <string>SPSyncServicesDataType</string>
- <string>SPThunderboltDataType</string>
- <string>SPUSBDataType</string>
- <string>SPUniversalAccessDataType</string>
- <string>SPNetworkVolumeDataType</string>
- <string>SPWWANDataType</string>
- <string>SPAirPortDataType</string>
- </array>
- <key>_SPCompletionInterval</key>
- <real>2.0753359794616699</real>
- <key>_dataType</key>
- <string>SPPrintersSoftwareDataType</string>
- <key>_detailLevel</key>
- <string>-2</string>
- <key>_items</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Printers</string>
- <key>printers</key>
- <array>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Frameworks/BJCommand2.framework/Versions/A/Resources/Info.plist</string>
- <key>info version</key>
- <string>8.1.0</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Frameworks/BJEssential2.framework/Versions/A/Resources/Info.plist</string>
- <key>info version</key>
- <string>4.1.3</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Frameworks/BJExtDDI.framework/Versions/A/Resources/Info.plist</string>
- <key>info version</key>
- <string>3.9.0</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Frameworks/BJPDELocalizedString2.framework/Versions/A/Resources/Info.plist</string>
- <key>info version</key>
- <string>2.0.2</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Frameworks/BJPrinterUtility2.framework/Versions/A/Resources/Info.plist</string>
- <key>info version</key>
- <string>7.33.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Frameworks/BJStatus2.framework/Versions/A/Resources/Info.plist</string>
- <key>info version</key>
- <string>7.38.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Frameworks/BJTune.framework/Versions/A/Resources/Info.plist</string>
- <key>info version</key>
- <string>1.2.0</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Plugins/BJNP/canonijnetwork.bundle/Contents/Info.plist</string>
- <key>info version</key>
- <string>1.6.6</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Plugins/BJNP/CIJNetworkIOM.plugin/Contents/Info.plist</string>
- <key>info version</key>
- <string>1.0.10</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Plugins/BJNP/CIJNetworkPBM.plugin/Contents/Info.plist</string>
- <key>info version</key>
- <string>1.0.7</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Plugins/BJUSB/BJUSBIOM.plugin/Contents/Info.plist</string>
- <key>info version</key>
- <string>1.4.7</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Plugins/BJUSB/BJUSBPBM.plugin/Contents/Info.plist</string>
- <key>info version</key>
- <string>1.4.7</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Plugins/BJUSB/CIJUSBClassDriver.plugin/Contents/Info.plist</string>
- <key>info version</key>
- <string>1.1.5</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Plugins/BJUSB/CIJUSBClassDriver2.plugin/Contents/Info.plist</string>
- <key>info version</key>
- <string>1.0.3</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Plugins/CIJUtility/CIJUtilityControl.bundle/Contents/Info.plist</string>
- <key>info version</key>
- <string>1.2.0</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Plugins/IJBluetooth/IJBluetoothIOM.plugin/Contents/Info.plist</string>
- <key>info version</key>
- <string>1.0.11</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/BJPrinterUtility2.app/Contents/Info.plist</string>
- <key>info version</key>
- <string>7.27.0</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Info.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/172CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/173CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/174CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/175CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/205CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/206CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/213CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/217CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/218CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/220CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/221CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/237CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/238CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/250CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/252CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/253CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/254CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/256CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/257CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/258CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/260CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/261CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/262CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/263CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/264CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/265CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/266CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/267CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/270CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/271CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/272CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/273CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/274CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/275CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/276CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/278CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/279CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/280CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/281CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/282CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/283CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/284CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/285CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/286CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/287CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/288CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/289CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/290CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/291CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/292CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/293CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/294CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/295CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/296CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/297CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/298CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/300CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/301CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/302CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/303CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/309CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/310CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/311CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/312CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/315CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/316CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/317CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/318CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/319CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/320CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/321CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/323CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/324CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/325CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/326CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/327CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/328CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/329CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/331CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/332CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/333CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/334CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/335CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/336CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/337CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/338CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/339CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/340CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/341CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/342CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/346CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/347CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/348CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/349CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/352CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/353CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/354CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/356CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/357CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/358CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/359CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/360CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/361CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/362CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/363CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/364CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/365CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/366CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/367CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/369CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/370CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/373CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/374CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/375CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/376CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/377CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/378CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/380CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/381CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/382CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/383CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/384CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/385CIJPrinterInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/CIJBatteryLevelInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/CIJChangeBJCartridgeInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/CIJChangeInkTankInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/CIJCleaningInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/CIJCustomSettingInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/CIJInkCartridgeInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/CIJInkInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/CIJInkUsageControlInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/CIJLocalizeBatteryLevelInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/CIJLocalizeCartridgeInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/CIJLocalizeChangeBJCartridgeInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/CIJLocalizeChangeInkTankInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/CIJLocalizeCleaningInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/CIJLocalizeCustomSettingInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/CIJLocalizeHelpInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/CIJLocalizeInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/CIJLocalizeInkInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/CIJLocalizeInkUsageControlInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/CIJLocalizePaperAllocationInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/CIJLocalizePaperSourceSettingInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/CIJLocalizeRemainingInkLevelSettingInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/CIJLocalizeSelectInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/CIJLocalizeSilentModeInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/CIJLocalizeTestPrintInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/CIJPaperAllocationInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/CIJPaperSourceSettingInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/CIJRemainingInkLevelSettingInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/CIJSilentModeInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app/Contents/Resources/CIJTestPrintInfo.plist</string>
- <key>info version</key>
- <string>10.42.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/IJScanner/Frameworks/Caddis_09.framework/Versions/A/Resources/Info.plist</string>
- <key>info version</key>
- <string>1.0.5</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/IJScanner/Frameworks/SGSM5_09.framework/Versions/A/Resources/Info.plist</string>
- <key>info version</key>
- <string>6.1.0</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/IJScanner/Plugins/ag07_09.plugin/Contents/Info.plist</string>
- <key>info version</key>
- <string>7.1.4</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/IJScanner/Plugins/ag08_09.plugin/Contents/Info.plist</string>
- <key>info version</key>
- <string>7.2.4</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/IJScanner/Plugins/cncl09_09.plugin/Contents/Info.plist</string>
- <key>info version</key>
- <string>3.6.0</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/IJScanner/Plugins/cnq2413_09.plugin/Contents/Info.plist</string>
- <key>info version</key>
- <string>2.0.0</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/IJScanner/Plugins/cnq2414_09.plugin/Contents/Info.plist</string>
- <key>info version</key>
- <string>1.0.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/IJScanner/Plugins/cnq4807_09.plugin/Contents/Info.plist</string>
- <key>info version</key>
- <string>2.1.0</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/IJScanner/Plugins/cnq4808_09.plugin/Contents/Info.plist</string>
- <key>info version</key>
- <string>2.0.0</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/IJScanner/Plugins/cnq4809_09.plugin/Contents/Info.plist</string>
- <key>info version</key>
- <string>1.0.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/IJScanner/Plugins/cnq9601_09.plugin/Contents/Info.plist</string>
- <key>info version</key>
- <string>2.0.0</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/IJScanner/Plugins/ijfshlib_09.plugin/Contents/Info.plist</string>
- <key>info version</key>
- <string>1.1.4</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/IJScanner/Plugins/mld07_09.plugin/Contents/Info.plist</string>
- <key>info version</key>
- <string>1.1.2</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/IJScanner/Plugins/mld08_09.plugin/Contents/Info.plist</string>
- <key>info version</key>
- <string>3.0.2</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/IJScanner/Plugins/mld09_09.plugin/Contents/Info.plist</string>
- <key>info version</key>
- <string>6.1.0</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/IJScanner/Plugins/mld9601_09.plugin/Contents/Info.plist</string>
- <key>info version</key>
- <string>3.1.3</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/IJScanner/Plugins/sfusb_09.plugin/Contents/Info.plist</string>
- <key>info version</key>
- <string>1.2.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/IJScanner/Plugins/sgusb_09.plugin/Contents/Info.plist</string>
- <key>info version</key>
- <string>1.3.0</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/IJScanner/Plugins/smac_09.plugin/Contents/Info.plist</string>
- <key>info version</key>
- <string>1.2.4</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/Canon/IJScanner/Plugins/zoom_09.plugin/Contents/Info.plist</string>
- <key>info version</key>
- <string>1.1.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/EPSON/CIOSupport/CIOHelper.plugin/Contents/Info.plist</string>
- <key>info version</key>
- <string>2.90</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/EPSON/CIOSupport/CIOSupport.framework/Versions/A/Resources/Info.plist</string>
- <key>info version</key>
- <string>2.90</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/EPSON/CIOSupport/EPSONUSBPrintClass.plugin/Contents/Info.plist</string>
- <key>info version</key>
- <string>2.90</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/EPSON/CIOSupport/XIOP.plugin/Contents/Info.plist</string>
- <key>info version</key>
- <string>3.90</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/EPSON/CIOSupport/XIORemoteClient.plugin/Contents/Info.plist</string>
- <key>info version</key>
- <string>2.90</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Printers/EPSON/CIOSupport/XIORemoteServer.plugin/Contents/Info.plist</string>
- <key>info version</key>
- <string>2.90</string>
- </dict>
- </array>
- </dict>
- <dict>
- <key>_name</key>
- <string>image capture devices</string>
- <key>image capture devices</key>
- <array>
- <dict>
- <key>info path</key>
- <string>/Library/Image Capture/Devices/Canon IJScanner2.app/Contents/Info.plist</string>
- <key>info version</key>
- <string>1.5.0</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Image Capture/Devices/Canon IJScanner2.app/Contents/Resources/DeviceInfo.plist</string>
- <key>info version</key>
- <string>1.5.0</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Image Capture/Devices/Canon IJScanner2.app/Contents/Resources/DeviceMatchingInfo.plist</string>
- <key>info version</key>
- <string>1.5.0</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Image Capture/Devices/EPSON Scanner.app/Contents/Info.plist</string>
- <key>info version</key>
- <string>5.3.12</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Image Capture/Devices/EPSON Scanner.app/Contents/PlugIns/.ICASingle.bundle/Contents/Info.plist</string>
- <key>info version</key>
- <string>5.3.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Image Capture/Devices/EPSON Scanner.app/Contents/PlugIns/DDC.bundle/Contents/Info.plist</string>
- <key>info version</key>
- <string>1.1.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Image Capture/Devices/EPSON Scanner.app/Contents/PlugIns/FIT.bundle/Contents/Info.plist</string>
- <key>info version</key>
- <string>3.7.0</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Image Capture/Devices/EPSON Scanner.app/Contents/PlugIns/ImageFilter.bundle/Contents/Info.plist</string>
- <key>info version</key>
- <string>3.2.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Image Capture/Devices/EPSON Scanner.app/Contents/PlugIns/Interpreter 1D.bundle/Contents/Info.plist</string>
- <key>info version</key>
- <string>1.0</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Image Capture/Devices/EPSON Scanner.app/Contents/PlugIns/Interpreter 23.bundle/Contents/Info.plist</string>
- <key>info version</key>
- <string>1.0</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Image Capture/Devices/EPSON Scanner.app/Contents/PlugIns/Interpreter 30.bundle/Contents/Info.plist</string>
- <key>info version</key>
- <string>1.0.3</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Image Capture/Devices/EPSON Scanner.app/Contents/PlugIns/Interpreter 32.bundle/Contents/Info.plist</string>
- <key>info version</key>
- <string>1.0.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Image Capture/Devices/EPSON Scanner.app/Contents/PlugIns/Interpreter 41.bundle/Contents/Info.plist</string>
- <key>info version</key>
- <string>1.1.0</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Image Capture/Devices/EPSON Scanner.app/Contents/PlugIns/Interpreter 43.bundle/Contents/Info.plist</string>
- <key>info version</key>
- <string>1.1.3</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Image Capture/Devices/EPSON Scanner.app/Contents/PlugIns/Interpreter 52.bundle/Contents/Info.plist</string>
- <key>info version</key>
- <string>1.1.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Image Capture/Devices/EPSON Scanner.app/Contents/PlugIns/Interpreter 54.bundle/Contents/Info.plist</string>
- <key>info version</key>
- <string>1.0.8</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Image Capture/Devices/EPSON Scanner.app/Contents/PlugIns/Interpreter 5A.bundle/Contents/Info.plist</string>
- <key>info version</key>
- <string>1.0.2</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Image Capture/Devices/EPSON Scanner.app/Contents/PlugIns/Interpreter 66.bundle/Contents/Info.plist</string>
- <key>info version</key>
- <string>1.0.9</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Image Capture/Devices/EPSON Scanner.app/Contents/PlugIns/Interpreter 68.bundle/Contents/Info.plist</string>
- <key>info version</key>
- <string>1.1.2</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Image Capture/Devices/EPSON Scanner.app/Contents/PlugIns/Interpreter 6E.bundle/Contents/Info.plist</string>
- <key>info version</key>
- <string>1.0.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Image Capture/Devices/EPSON Scanner.app/Contents/PlugIns/Interpreter 7A.bundle/Contents/Info.plist</string>
- <key>info version</key>
- <string>1.0.5</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Image Capture/Devices/EPSON Scanner.app/Contents/PlugIns/Interpreter 7C.bundle/Contents/Info.plist</string>
- <key>info version</key>
- <string>1.0.8</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Image Capture/Devices/EPSON Scanner.app/Contents/PlugIns/Interpreter 7E.bundle/Contents/Info.plist</string>
- <key>info version</key>
- <string>1.0.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Image Capture/Devices/EPSON Scanner.app/Contents/PlugIns/Interpreter 86.bundle/Contents/Info.plist</string>
- <key>info version</key>
- <string>1.0.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Image Capture/Devices/EPSON Scanner.app/Contents/PlugIns/Interpreter 8B.bundle/Contents/Info.plist</string>
- <key>info version</key>
- <string>1.0.2</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Image Capture/Devices/EPSON Scanner.app/Contents/PlugIns/Interpreter 94.bundle/Contents/Info.plist</string>
- <key>info version</key>
- <string>1.1.0</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Image Capture/Devices/EPSON Scanner.app/Contents/PlugIns/Interpreter 95.bundle/Contents/Info.plist</string>
- <key>info version</key>
- <string>1.1.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Image Capture/Devices/EPSON Scanner.app/Contents/PlugIns/Interpreter A1.bundle/Contents/Info.plist</string>
- <key>info version</key>
- <string>1.0.5</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Image Capture/Devices/EPSON Scanner.app/Contents/PlugIns/Interpreter AD.bundle/Contents/Info.plist</string>
- <key>info version</key>
- <string>1.0.0</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Image Capture/Devices/EPSON Scanner.app/Contents/Resources/DeviceInfo.plist</string>
- <key>info version</key>
- <string>5.3.12</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Image Capture/Devices/EPSON Scanner.app/Contents/Resources/DeviceMatchingInfo.plist</string>
- <key>info version</key>
- <string>5.3.12</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Image Capture/Devices/EPSON Scanner.app/Contents/Resources/HardwareInfo.plist</string>
- <key>info version</key>
- <string>5.3.12</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Image Capture/Devices/EPSON Scanner.app/Contents/Resources/ModelInfo.plist</string>
- <key>info version</key>
- <string>5.3.12</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Image Capture/Devices/EPSON Scanner.app/Contents/Resources/ProfileInfo.plist</string>
- <key>info version</key>
- <string>5.3.12</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Image Capture/Devices/EPSON Scanner.app/Contents/Resources/RegionCodeInfo.plist</string>
- <key>info version</key>
- <string>5.3.12</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/Library/Image Capture/Devices/EPSON Scanner.app/Contents/Resources/ResolutionInfo.plist</string>
- <key>info version</key>
- <string>5.3.12</string>
- </dict>
- </array>
- </dict>
- <dict>
- <key>_name</key>
- <string>image capture support</string>
- <key>image capture support</key>
- <array/>
- </dict>
- <dict>
- <key>_name</key>
- <string>extensions</string>
- <key>extensions</key>
- <array>
- <dict>
- <key>info path</key>
- <string>/System/Library/Extensions/AppleMobileDevice.kext</string>
- <key>info version</key>
- <string>3.3.0</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/System/Library/Extensions/AppleStorageDrivers.kext/Contents/PlugIns/AppleATAPIStorage.kext</string>
- <key>info version</key>
- <string>3.0.6</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/System/Library/Extensions/AppleStorageDrivers.kext/Contents/PlugIns/AppleXserveRAID.kext</string>
- <key>info version</key>
- <string>3.0.6</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/System/Library/Extensions/AppleStorageDrivers.kext/Contents/PlugIns/FireWireStorageDeviceSpecifics.kext</string>
- <key>info version</key>
- <string>3.0.6</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/System/Library/Extensions/AppleStorageDrivers.kext/Contents/PlugIns/SonyXDCAMDriver.kext</string>
- <key>info version</key>
- <string>3.0.6</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/System/Library/Extensions/AppleStorageDrivers.kext/Contents/PlugIns/USBStorageDeviceSpecifics.kext</string>
- <key>info version</key>
- <string>3.0.6</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/System/Library/Extensions/AppleUSBTopCase.kext</string>
- <key>info version</key>
- <string>227.6</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/System/Library/Extensions/BJUSBLoad.kext</string>
- <key>info version</key>
- <string>2.0.13</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/System/Library/Extensions/CellPhoneHelper.kext</string>
- <key>info version</key>
- <string>1.2.6</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/System/Library/Extensions/EPSONUSBPrintClass.kext</string>
- <key>info version</key>
- <string>1.4.9</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/System/Library/Extensions/IOHIDFamily.kext/Contents/PlugIns/IOHIDEventDriver.kext</string>
- <key>info version</key>
- <string>1.7.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/System/Library/Extensions/IOHIDFamily.kext/Contents/PlugIns/IOHIDEventDriverSafeBoot.kext</string>
- <key>info version</key>
- <string>1.7.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/System/Library/Extensions/IOHIDFamily.kext/Contents/PlugIns/IOHIDUserClient.kext</string>
- <key>info version</key>
- <string>1.7.1</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/System/Library/Extensions/IOStreamFamily.kext/Contents/PlugIns/IOStreamUserClient.kext</string>
- <key>info version</key>
- <string>1.1.0</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/System/Library/Extensions/IOUSBFamily.kext/Contents/PlugIns/IOUSBHIDDriverSafeBoot.kext</string>
- <key>info version</key>
- <string>4.4.5</string>
- </dict>
- <dict>
- <key>info path</key>
- <string>/System/Library/Extensions/IOVideoFamily.kext/Contents/PlugIns/IOVideoDeviceUserClient.kext</string>
- <key>info version</key>
- <string>1.2.0</string>
- </dict>
- </array>
- </dict>
- </array>
- <key>_parentDataType</key>
- <string>SPSoftwareDataType</string>
- <key>_properties</key>
- <dict>
- <key>Path</key>
- <dict>
- <key>_order</key>
- <string>12</string>
- </dict>
- <key>Version</key>
- <dict>
- <key>_order</key>
- <string>15</string>
- <key>_suppressLocalization</key>
- <string>YES</string>
- </dict>
- <key>_name</key>
- <dict>
- <key>-order</key>
- <string>10</string>
- <key>_isColumn</key>
- <string>YES</string>
- </dict>
- <key>volumes_anonymous</key>
- <dict>
- <key>_detailLevel</key>
- <string>-1</string>
- <key>_maxDetailLevel</key>
- <string>-1</string>
- </dict>
- </dict>
- <key>_timeStamp</key>
- <date>2012-12-04T21:30:20Z</date>
- <key>_versionInfo</key>
- <dict>
- <key>com.apple.SystemProfiler.SPPrintersSoftwareReporter</key>
- <string>378.14</string>
- </dict>
- </dict>
- <dict>
- <key>_SPCommandLineArguments</key>
- <array>
- <string>/usr/sbin/system_profiler</string>
- <string>-xml</string>
- <string>-detailLevel</string>
- <string>mini</string>
- <string>SPParallelATADataType</string>
- <string>SPApplicationsDataType</string>
- <string>SPAudioDataType</string>
- <string>SPBluetoothDataType</string>
- <string>SPCardReaderDataType</string>
- <string>SPComponentDataType</string>
- <string>SPDeveloperToolsDataType</string>
- <string>SPDiagnosticsDataType</string>
- <string>SPDiscBurningDataType</string>
- <string>SPEthernetDataType</string>
- <string>SPExtensionsDataType</string>
- <string>SPFibreChannelDataType</string>
- <string>SPFireWireDataType</string>
- <string>SPFirewallDataType</string>
- <string>SPFontsDataType</string>
- <string>SPFrameworksDataType</string>
- <string>SPDisplaysDataType</string>
- <string>SPHardwareRAIDDataType</string>
- <string>SPNetworkLocationDataType</string>
- <string>SPLogsDataType</string>
- <string>SPManagedClientDataType</string>
- <string>SPMemoryDataType</string>
- <string>SPModemDataType</string>
- <string>SPNetworkDataType</string>
- <string>SPPCIDataType</string>
- <string>SPParallelSCSIDataType</string>
- <string>SPPowerDataType</string>
- <string>SPPrefPaneDataType</string>
- <string>SPPrintersSoftwareDataType</string>
- <string>SPPrintersDataType</string>
- <string>SPConfigurationProfileDataType</string>
- <string>SPSASDataType</string>
- <string>SPSerialATADataType</string>
- <string>SPSoftwareDataType</string>
- <string>SPStartupItemDataType</string>
- <string>SPSyncServicesDataType</string>
- <string>SPThunderboltDataType</string>
- <string>SPUSBDataType</string>
- <string>SPUniversalAccessDataType</string>
- <string>SPNetworkVolumeDataType</string>
- <string>SPWWANDataType</string>
- <string>SPAirPortDataType</string>
- </array>
- <key>_SPCompletionInterval</key>
- <real>0.2391819953918457</real>
- <key>_dataType</key>
- <string>SPPrintersDataType</string>
- <key>_detailLevel</key>
- <string>-2</string>
- <key>_items</key>
- <array>
- <dict>
- <key>cupsversion</key>
- <string>1.5.4 (cups-297.11)</string>
- <key>status</key>
- <string>no_info_found</string>
- </dict>
- </array>
- <key>_parentDataType</key>
- <string>SPHardwareDataType</string>
- <key>_properties</key>
- <dict>
- <key>Bundle</key>
- <dict>
- <key>_order</key>
- <string>233</string>
- </dict>
- <key>PDEs</key>
- <dict>
- <key>_order</key>
- <string>240</string>
- </dict>
- <key>Path</key>
- <dict>
- <key>_order</key>
- <string>232</string>
- </dict>
- <key>Permissions</key>
- <dict>
- <key>_order</key>
- <string>235</string>
- </dict>
- <key>Sandbox</key>
- <dict>
- <key>_order</key>
- <string>242</string>
- </dict>
- <key>Version</key>
- <dict>
- <key>_order</key>
- <string>234</string>
- <key>_suppressLocalization</key>
- <string>YES</string>
- </dict>
- <key>_name</key>
- <dict>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>10</string>
- </dict>
- <key>cupsfilters</key>
- <dict>
- <key>_order</key>
- <string>230</string>
- </dict>
- <key>cupsversion</key>
- <dict>
- <key>_order</key>
- <string>110</string>
- <key>_suppressLocalization</key>
- <string>YES</string>
- </dict>
- <key>default</key>
- <dict>
- <key>_order</key>
- <string>50</string>
- </dict>
- <key>driverversion</key>
- <dict>
- <key>_order</key>
- <string>40</string>
- <key>_suppressLocalization</key>
- <string>YES</string>
- </dict>
- <key>fax</key>
- <dict>
- <key>_order</key>
- <string>120</string>
- </dict>
- <key>lowinktool</key>
- <dict>
- <key>_order</key>
- <string>190</string>
- </dict>
- <key>lowinktoolversion</key>
- <dict>
- <key>_order</key>
- <string>200</string>
- <key>_suppressLocalization</key>
- <string>YES</string>
- </dict>
- <key>ppd</key>
- <dict>
- <key>_order</key>
- <string>80</string>
- </dict>
- <key>ppdfileversion</key>
- <dict>
- <key>_order</key>
- <string>90</string>
- <key>_suppressLocalization</key>
- <string>YES</string>
- </dict>
- <key>printercommands</key>
- <dict>
- <key>_order</key>
- <string>180</string>
- </dict>
- <key>printerutility</key>
- <dict>
- <key>_order</key>
- <string>210</string>
- </dict>
- <key>printerutilityversion</key>
- <dict>
- <key>_order</key>
- <string>220</string>
- <key>_suppressLocalization</key>
- <string>YES</string>
- </dict>
- <key>printserver</key>
- <dict>
- <key>_order</key>
- <string>30</string>
- </dict>
- <key>psversion</key>
- <dict>
- <key>_order</key>
- <string>100</string>
- <key>_suppressLocalization</key>
- <string>YES</string>
- </dict>
- <key>scanner</key>
- <dict>
- <key>_order</key>
- <string>130</string>
- </dict>
- <key>scannerUUID</key>
- <dict>
- <key>_order</key>
- <string>170</string>
- </dict>
- <key>scannerappbundlepath</key>
- <dict>
- <key>_order</key>
- <string>150</string>
- </dict>
- <key>scannerapppath</key>
- <dict>
- <key>_order</key>
- <string>140</string>
- </dict>
- <key>scannerappversion</key>
- <dict>
- <key>_order</key>
- <string>160</string>
- <key>_suppressLocalization</key>
- <string>YES</string>
- </dict>
- <key>shared</key>
- <dict>
- <key>_order</key>
- <string>60</string>
- </dict>
- <key>status</key>
- <dict>
- <key>_order</key>
- <string>20</string>
- </dict>
- <key>uri</key>
- <dict>
- <key>_order</key>
- <string>70</string>
- </dict>
- <key>volumes_anonymous</key>
- <dict>
- <key>_detailLevel</key>
- <string>-1</string>
- <key>_maxDetailLevel</key>
- <string>-1</string>
- </dict>
- </dict>
- <key>_timeStamp</key>
- <date>2012-12-04T21:30:22Z</date>
- <key>_versionInfo</key>
- <dict>
- <key>com.apple.SystemProfiler.SPPrintersReporter</key>
- <string>378.14</string>
- </dict>
- </dict>
- <dict>
- <key>_SPCommandLineArguments</key>
- <array>
- <string>/usr/sbin/system_profiler</string>
- <string>-xml</string>
- <string>-detailLevel</string>
- <string>mini</string>
- <string>SPParallelATADataType</string>
- <string>SPApplicationsDataType</string>
- <string>SPAudioDataType</string>
- <string>SPBluetoothDataType</string>
- <string>SPCardReaderDataType</string>
- <string>SPComponentDataType</string>
- <string>SPDeveloperToolsDataType</string>
- <string>SPDiagnosticsDataType</string>
- <string>SPDiscBurningDataType</string>
- <string>SPEthernetDataType</string>
- <string>SPExtensionsDataType</string>
- <string>SPFibreChannelDataType</string>
- <string>SPFireWireDataType</string>
- <string>SPFirewallDataType</string>
- <string>SPFontsDataType</string>
- <string>SPFrameworksDataType</string>
- <string>SPDisplaysDataType</string>
- <string>SPHardwareRAIDDataType</string>
- <string>SPNetworkLocationDataType</string>
- <string>SPLogsDataType</string>
- <string>SPManagedClientDataType</string>
- <string>SPMemoryDataType</string>
- <string>SPModemDataType</string>
- <string>SPNetworkDataType</string>
- <string>SPPCIDataType</string>
- <string>SPParallelSCSIDataType</string>
- <string>SPPowerDataType</string>
- <string>SPPrefPaneDataType</string>
- <string>SPPrintersSoftwareDataType</string>
- <string>SPPrintersDataType</string>
- <string>SPConfigurationProfileDataType</string>
- <string>SPSASDataType</string>
- <string>SPSerialATADataType</string>
- <string>SPSoftwareDataType</string>
- <string>SPStartupItemDataType</string>
- <string>SPSyncServicesDataType</string>
- <string>SPThunderboltDataType</string>
- <string>SPUSBDataType</string>
- <string>SPUniversalAccessDataType</string>
- <string>SPNetworkVolumeDataType</string>
- <string>SPWWANDataType</string>
- <string>SPAirPortDataType</string>
- </array>
- <key>_SPCompletionInterval</key>
- <real>0.027194976806640625</real>
- <key>_dataType</key>
- <string>SPConfigurationProfileDataType</string>
- <key>_detailLevel</key>
- <integer>1</integer>
- <key>_items</key>
- <array/>
- <key>_parentDataType</key>
- <string>SPSoftwareDataType</string>
- <key>_properties</key>
- <dict>
- <key>_name</key>
- <dict>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_isOutlineColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>0</string>
- </dict>
- <key>spconfigprofile_configuration_items</key>
- <dict>
- <key>_order</key>
- <string>70</string>
- </dict>
- <key>spconfigprofile_contains_computer_items</key>
- <dict>
- <key>_order</key>
- <string>55</string>
- </dict>
- <key>spconfigprofile_description</key>
- <dict>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>5</string>
- </dict>
- <key>spconfigprofile_expire_date</key>
- <dict>
- <key>_order</key>
- <string>20</string>
- </dict>
- <key>spconfigprofile_install_date</key>
- <dict>
- <key>_order</key>
- <string>15</string>
- </dict>
- <key>spconfigprofile_internal_data</key>
- <dict>
- <key>_order</key>
- <string>65</string>
- </dict>
- <key>spconfigprofile_organization</key>
- <dict>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>10</string>
- </dict>
- <key>spconfigprofile_payload_data</key>
- <dict>
- <key>_order</key>
- <string>120</string>
- </dict>
- <key>spconfigprofile_payload_display_name</key>
- <dict>
- <key>_order</key>
- <string>100</string>
- </dict>
- <key>spconfigprofile_payload_identifier</key>
- <dict>
- <key>_order</key>
- <string>105</string>
- </dict>
- <key>spconfigprofile_payload_uuid</key>
- <dict>
- <key>_order</key>
- <string>110</string>
- </dict>
- <key>spconfigprofile_payload_version</key>
- <dict>
- <key>_order</key>
- <string>115</string>
- </dict>
- <key>spconfigprofile_profile_identifier</key>
- <dict>
- <key>_order</key>
- <string>25</string>
- </dict>
- <key>spconfigprofile_profile_type</key>
- <dict>
- <key>_order</key>
- <string>35</string>
- </dict>
- <key>spconfigprofile_profile_uuid</key>
- <dict>
- <key>_order</key>
- <string>30</string>
- </dict>
- <key>spconfigprofile_requires_administrator_authorization_to_install</key>
- <dict>
- <key>_order</key>
- <string>60</string>
- </dict>
- <key>spconfigprofile_uninstall_policy</key>
- <dict>
- <key>_order</key>
- <string>50</string>
- </dict>
- <key>spconfigprofile_verification_state</key>
- <dict>
- <key>_order</key>
- <string>45</string>
- </dict>
- <key>spconfigprofile_version</key>
- <dict>
- <key>_order</key>
- <string>40</string>
- </dict>
- <key>volumes_anonymous</key>
- <dict>
- <key>_detailLevel</key>
- <string>-1</string>
- <key>_maxDetailLevel</key>
- <string>-1</string>
- </dict>
- </dict>
- <key>_timeStamp</key>
- <date>2012-12-04T21:30:22Z</date>
- <key>_versionInfo</key>
- <dict>
- <key>com.apple.SPConfigurationProfileReporter</key>
- <string>320</string>
- </dict>
- </dict>
- <dict>
- <key>_SPCommandLineArguments</key>
- <array>
- <string>/usr/sbin/system_profiler</string>
- <string>-xml</string>
- <string>-detailLevel</string>
- <string>mini</string>
- <string>SPParallelATADataType</string>
- <string>SPApplicationsDataType</string>
- <string>SPAudioDataType</string>
- <string>SPBluetoothDataType</string>
- <string>SPCardReaderDataType</string>
- <string>SPComponentDataType</string>
- <string>SPDeveloperToolsDataType</string>
- <string>SPDiagnosticsDataType</string>
- <string>SPDiscBurningDataType</string>
- <string>SPEthernetDataType</string>
- <string>SPExtensionsDataType</string>
- <string>SPFibreChannelDataType</string>
- <string>SPFireWireDataType</string>
- <string>SPFirewallDataType</string>
- <string>SPFontsDataType</string>
- <string>SPFrameworksDataType</string>
- <string>SPDisplaysDataType</string>
- <string>SPHardwareRAIDDataType</string>
- <string>SPNetworkLocationDataType</string>
- <string>SPLogsDataType</string>
- <string>SPManagedClientDataType</string>
- <string>SPMemoryDataType</string>
- <string>SPModemDataType</string>
- <string>SPNetworkDataType</string>
- <string>SPPCIDataType</string>
- <string>SPParallelSCSIDataType</string>
- <string>SPPowerDataType</string>
- <string>SPPrefPaneDataType</string>
- <string>SPPrintersSoftwareDataType</string>
- <string>SPPrintersDataType</string>
- <string>SPConfigurationProfileDataType</string>
- <string>SPSASDataType</string>
- <string>SPSerialATADataType</string>
- <string>SPSoftwareDataType</string>
- <string>SPStartupItemDataType</string>
- <string>SPSyncServicesDataType</string>
- <string>SPThunderboltDataType</string>
- <string>SPUSBDataType</string>
- <string>SPUniversalAccessDataType</string>
- <string>SPNetworkVolumeDataType</string>
- <string>SPWWANDataType</string>
- <string>SPAirPortDataType</string>
- </array>
- <key>_SPCompletionInterval</key>
- <real>0.011682987213134766</real>
- <key>_dataType</key>
- <string>SPSASDataType</string>
- <key>_detailLevel</key>
- <integer>-1</integer>
- <key>_items</key>
- <array/>
- <key>_parentDataType</key>
- <string>SPHardwareDataType</string>
- <key>_properties</key>
- <dict>
- <key>_name</key>
- <dict>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_isOutlineColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>0</string>
- </dict>
- <key>bsd_name</key>
- <dict>
- <key>_order</key>
- <string>62</string>
- </dict>
- <key>detachable_drive</key>
- <dict>
- <key>_order</key>
- <string>59</string>
- </dict>
- <key>device_manufacturer</key>
- <dict>
- <key>_order</key>
- <string>41</string>
- </dict>
- <key>device_model</key>
- <dict>
- <key>_order</key>
- <string>42</string>
- </dict>
- <key>device_revision</key>
- <dict>
- <key>_order</key>
- <string>44</string>
- </dict>
- <key>disc_burning</key>
- <dict>
- <key>_order</key>
- <string>54</string>
- </dict>
- <key>file_system</key>
- <dict>
- <key>_order</key>
- <string>60</string>
- </dict>
- <key>free_space</key>
- <dict>
- <key>_deprecated</key>
- <true/>
- <key>_order</key>
- <string>12</string>
- </dict>
- <key>free_space_in_bytes</key>
- <dict>
- <key>_isByteSize</key>
- <true/>
- <key>_order</key>
- <string>12</string>
- </dict>
- <key>mount_point</key>
- <dict>
- <key>_order</key>
- <string>64</string>
- </dict>
- <key>optical_drive_type</key>
- <dict>
- <key>_order</key>
- <string>51</string>
- </dict>
- <key>optical_media_type</key>
- <dict>
- <key>_order</key>
- <string>52</string>
- </dict>
- <key>os9_drivers</key>
- <dict>
- <key>_order</key>
- <string>68</string>
- </dict>
- <key>raid_drive</key>
- <dict>
- <key>_order</key>
- <string>66</string>
- </dict>
- <key>removable_media</key>
- <dict>
- <key>_order</key>
- <string>56</string>
- </dict>
- <key>size</key>
- <dict>
- <key>_deprecated</key>
- <true/>
- <key>_order</key>
- <string>10</string>
- </dict>
- <key>size_in_bytes</key>
- <dict>
- <key>_isByteSize</key>
- <true/>
- <key>_order</key>
- <string>10</string>
- </dict>
- <key>spsas_alua_support</key>
- <dict>
- <key>_order</key>
- <string>48</string>
- </dict>
- <key>spsas_bus</key>
- <dict>
- <key>_order</key>
- <string>23</string>
- </dict>
- <key>spsas_cablingtype</key>
- <dict>
- <key>_order</key>
- <string>35</string>
- </dict>
- <key>spsas_device_type</key>
- <dict>
- <key>_order</key>
- <string>40</string>
- </dict>
- <key>spsas_domainidentifier</key>
- <dict>
- <key>_order</key>
- <string>25</string>
- </dict>
- <key>spsas_initiatorid</key>
- <dict>
- <key>_order</key>
- <string>26</string>
- </dict>
- <key>spsas_load_balancing_algorithm</key>
- <dict>
- <key>_order</key>
- <string>50</string>
- </dict>
- <key>spsas_logical_unit_access_state</key>
- <dict>
- <key>_order</key>
- <string>49</string>
- </dict>
- <key>spsas_logical_unit_unique_id</key>
- <dict>
- <key>_order</key>
- <string>40</string>
- </dict>
- <key>spsas_lun</key>
- <dict>
- <key>_order</key>
- <string>39</string>
- </dict>
- <key>spsas_portdescription</key>
- <dict>
- <key>_order</key>
- <string>31</string>
- </dict>
- <key>spsas_portspeed</key>
- <dict>
- <key>_order</key>
- <string>32</string>
- </dict>
- <key>spsas_portstatus</key>
- <dict>
- <key>_order</key>
- <string>34</string>
- </dict>
- <key>spsas_product</key>
- <dict>
- <key>_order</key>
- <string>21</string>
- </dict>
- <key>spsas_revision</key>
- <dict>
- <key>_order</key>
- <string>22</string>
- </dict>
- <key>spsas_sasaddress</key>
- <dict>
- <key>_order</key>
- <string>28</string>
- </dict>
- <key>spsas_satadevice</key>
- <dict>
- <key>_order</key>
- <string>47</string>
- </dict>
- <key>spsas_slot_name</key>
- <dict>
- <key>_order</key>
- <string>24</string>
- </dict>
- <key>spsas_target</key>
- <dict>
- <key>_order</key>
- <string>38</string>
- </dict>
- <key>spsas_vendor</key>
- <dict>
- <key>_order</key>
- <string>20</string>
- </dict>
- <key>volumes_anonymous</key>
- <dict>
- <key>_detailLevel</key>
- <string>-1</string>
- <key>_maxDetailLevel</key>
- <string>-1</string>
- </dict>
- <key>writable</key>
- <dict>
- <key>_order</key>
- <string>58</string>
- </dict>
- </dict>
- <key>_timeStamp</key>
- <date>2012-12-04T21:30:22Z</date>
- <key>_versionInfo</key>
- <dict>
- <key>com.apple.SystemProfiler.SPSASReporter</key>
- <string>2.0.2</string>
- </dict>
- </dict>
- <dict>
- <key>_SPCommandLineArguments</key>
- <array>
- <string>/usr/sbin/system_profiler</string>
- <string>-xml</string>
- <string>-detailLevel</string>
- <string>mini</string>
- <string>SPParallelATADataType</string>
- <string>SPApplicationsDataType</string>
- <string>SPAudioDataType</string>
- <string>SPBluetoothDataType</string>
- <string>SPCardReaderDataType</string>
- <string>SPComponentDataType</string>
- <string>SPDeveloperToolsDataType</string>
- <string>SPDiagnosticsDataType</string>
- <string>SPDiscBurningDataType</string>
- <string>SPEthernetDataType</string>
- <string>SPExtensionsDataType</string>
- <string>SPFibreChannelDataType</string>
- <string>SPFireWireDataType</string>
- <string>SPFirewallDataType</string>
- <string>SPFontsDataType</string>
- <string>SPFrameworksDataType</string>
- <string>SPDisplaysDataType</string>
- <string>SPHardwareRAIDDataType</string>
- <string>SPNetworkLocationDataType</string>
- <string>SPLogsDataType</string>
- <string>SPManagedClientDataType</string>
- <string>SPMemoryDataType</string>
- <string>SPModemDataType</string>
- <string>SPNetworkDataType</string>
- <string>SPPCIDataType</string>
- <string>SPParallelSCSIDataType</string>
- <string>SPPowerDataType</string>
- <string>SPPrefPaneDataType</string>
- <string>SPPrintersSoftwareDataType</string>
- <string>SPPrintersDataType</string>
- <string>SPConfigurationProfileDataType</string>
- <string>SPSASDataType</string>
- <string>SPSerialATADataType</string>
- <string>SPSoftwareDataType</string>
- <string>SPStartupItemDataType</string>
- <string>SPSyncServicesDataType</string>
- <string>SPThunderboltDataType</string>
- <string>SPUSBDataType</string>
- <string>SPUniversalAccessDataType</string>
- <string>SPNetworkVolumeDataType</string>
- <string>SPWWANDataType</string>
- <string>SPAirPortDataType</string>
- </array>
- <key>_SPCompletionInterval</key>
- <real>0.50821900367736816</real>
- <key>_dataType</key>
- <string>SPSerialATADataType</string>
- <key>_detailLevel</key>
- <integer>-1</integer>
- <key>_items</key>
- <array>
- <dict>
- <key>_items</key>
- <array>
- <dict>
- <key>_name</key>
- <string>TOSHIBA MK7559GSXF</string>
- <key>bsd_name</key>
- <string>disk0</string>
- <key>detachable_drive</key>
- <string>no</string>
- <key>device_model</key>
- <string>TOSHIBA MK7559GSXF </string>
- <key>device_revision</key>
- <string>GQ006B </string>
- <key>partition_map_type</key>
- <string>guid_partition_map_type</string>
- <key>removable_media</key>
- <string>no</string>
- <key>size</key>
- <string>750.16 GB</string>
- <key>size_in_bytes</key>
- <integer>750156374016</integer>
- <key>smart_status</key>
- <string>Verified</string>
- <key>spsata_medium_type</key>
- <string>Rotational</string>
- <key>spsata_ncq</key>
- <string>Yes</string>
- <key>spsata_ncq_depth</key>
- <string>32</string>
- <key>spsata_rotational_rate</key>
- <integer>5400</integer>
- <key>volumes_anonymous</key>
- <array>
- <dict>
- <key>_name</key>
- <string>disk0s1</string>
- <key>iocontent</key>
- <string>EFI</string>
- <key>size</key>
- <string>209.7 MB</string>
- <key>size_in_bytes</key>
- <integer>209715200</integer>
- </dict>
- <dict>
- <key>_name</key>
- <string>disk0s2</string>
- <key>file_system</key>
- <string>Journaled HFS+</string>
- <key>free_space</key>
- <string>666.28 GB</string>
- <key>free_space_in_bytes</key>
- <integer>666279415808</integer>
- <key>iocontent</key>
- <string>Apple_HFS</string>
- <key>size</key>
- <string>749.3 GB</string>
- <key>size_in_bytes</key>
- <integer>749296615424</integer>
- <key>writable</key>
- <string>yes</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>disk0s3</string>
- <key>iocontent</key>
- <string>Apple_Boot</string>
- <key>size</key>
- <string>650 MB</string>
- <key>size_in_bytes</key>
- <integer>650002432</integer>
- </dict>
- </array>
- </dict>
- </array>
- <key>_name</key>
- <string>Intel 6 Series Chipset</string>
- <key>spsata_negotiatedlinkspeed</key>
- <string>3 Gigabit</string>
- <key>spsata_portdescription</key>
- <string>AHCI Version 1.30 Supported</string>
- <key>spsata_portspeed</key>
- <string>6 Gigabit</string>
- <key>spsata_product</key>
- <string>6 Series Chipset</string>
- <key>spsata_vendor</key>
- <string>Intel</string>
- </dict>
- <dict>
- <key>_items</key>
- <array>
- <dict>
- <key>_name</key>
- <string>MATSHITADVD-R UJ-8A8</string>
- <key>detachable_drive</key>
- <string>no</string>
- <key>device_model</key>
- <string>MATSHITADVD-R UJ-8A8 </string>
- <key>device_revision</key>
- <string>HB14 </string>
- <key>spsata_async_notify</key>
- <string>No</string>
- <key>spsata_ncq</key>
- <string>No</string>
- <key>spsata_power_off</key>
- <string>Yes</string>
- </dict>
- </array>
- <key>_name</key>
- <string>Intel 6 Series Chipset</string>
- <key>spsata_negotiatedlinkspeed</key>
- <string>1.5 Gigabit</string>
- <key>spsata_portdescription</key>
- <string>AHCI Version 1.30 Supported</string>
- <key>spsata_portspeed</key>
- <string>6 Gigabit</string>
- <key>spsata_product</key>
- <string>6 Series Chipset</string>
- <key>spsata_vendor</key>
- <string>Intel</string>
- </dict>
- </array>
- <key>_parentDataType</key>
- <string>SPHardwareDataType</string>
- <key>_properties</key>
- <dict>
- <key>_name</key>
- <dict>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_isOutlineColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>0</string>
- </dict>
- <key>bsd_name</key>
- <dict>
- <key>_order</key>
- <string>62</string>
- </dict>
- <key>detachable_drive</key>
- <dict>
- <key>_order</key>
- <string>59</string>
- </dict>
- <key>device_manufacturer</key>
- <dict>
- <key>_order</key>
- <string>40</string>
- </dict>
- <key>device_model</key>
- <dict>
- <key>_order</key>
- <string>42</string>
- </dict>
- <key>device_revision</key>
- <dict>
- <key>_order</key>
- <string>44</string>
- </dict>
- <key>disc_burning</key>
- <dict>
- <key>_order</key>
- <string>54</string>
- </dict>
- <key>file_system</key>
- <dict>
- <key>_order</key>
- <string>60</string>
- </dict>
- <key>free_space</key>
- <dict>
- <key>_deprecated</key>
- <true/>
- <key>_order</key>
- <string>12</string>
- </dict>
- <key>free_space_in_bytes</key>
- <dict>
- <key>_isByteSize</key>
- <true/>
- <key>_order</key>
- <string>12</string>
- </dict>
- <key>mount_point</key>
- <dict>
- <key>_order</key>
- <string>64</string>
- </dict>
- <key>optical_drive_type</key>
- <dict>
- <key>_order</key>
- <string>50</string>
- </dict>
- <key>optical_media_type</key>
- <dict>
- <key>_order</key>
- <string>52</string>
- </dict>
- <key>removable_media</key>
- <dict>
- <key>_order</key>
- <string>56</string>
- </dict>
- <key>size</key>
- <dict>
- <key>_deprecated</key>
- <true/>
- <key>_order</key>
- <string>10</string>
- </dict>
- <key>size_in_bytes</key>
- <dict>
- <key>_isByteSize</key>
- <true/>
- <key>_order</key>
- <string>10</string>
- </dict>
- <key>spsata_async_notify</key>
- <dict>
- <key>_order</key>
- <string>140</string>
- </dict>
- <key>spsata_bus</key>
- <dict>
- <key>_order</key>
- <string>22</string>
- </dict>
- <key>spsata_medium_type</key>
- <dict>
- <key>_order</key>
- <string>151</string>
- </dict>
- <key>spsata_name</key>
- <dict>
- <key>_order</key>
- <string>20</string>
- </dict>
- <key>spsata_ncq</key>
- <dict>
- <key>_order</key>
- <string>47</string>
- </dict>
- <key>spsata_ncq_depth</key>
- <dict>
- <key>_order</key>
- <string>48</string>
- </dict>
- <key>spsata_negotiatedlinkspeed</key>
- <dict>
- <key>_order</key>
- <string>35</string>
- </dict>
- <key>spsata_portspeed</key>
- <dict>
- <key>_order</key>
- <string>34</string>
- </dict>
- <key>spsata_power_off</key>
- <dict>
- <key>_order</key>
- <string>130</string>
- </dict>
- <key>spsata_product</key>
- <dict>
- <key>_order</key>
- <string>30</string>
- </dict>
- <key>spsata_protocol</key>
- <dict>
- <key>_order</key>
- <string>100</string>
- </dict>
- <key>spsata_revision</key>
- <dict>
- <key>_order</key>
- <string>32</string>
- </dict>
- <key>spsata_rom-revision</key>
- <dict>
- <key>_order</key>
- <string>26</string>
- </dict>
- <key>spsata_rotational_rate</key>
- <dict>
- <key>_order</key>
- <string>150</string>
- </dict>
- <key>spsata_slot_name</key>
- <dict>
- <key>_order</key>
- <string>24</string>
- </dict>
- <key>spsata_socket_type</key>
- <dict>
- <key>_order</key>
- <string>120</string>
- </dict>
- <key>spsata_trim_support</key>
- <dict>
- <key>_order</key>
- <string>152</string>
- </dict>
- <key>spsata_unit_number</key>
- <dict>
- <key>_order</key>
- <string>110</string>
- </dict>
- <key>spsata_vendor</key>
- <dict>
- <key>_order</key>
- <string>28</string>
- </dict>
- <key>volumes_anonymous</key>
- <dict>
- <key>_detailLevel</key>
- <string>-1</string>
- <key>_maxDetailLevel</key>
- <string>-1</string>
- </dict>
- <key>writable</key>
- <dict>
- <key>_order</key>
- <string>58</string>
- </dict>
- </dict>
- <key>_timeStamp</key>
- <date>2012-12-04T21:30:22Z</date>
- <key>_versionInfo</key>
- <dict>
- <key>com.apple.SystemProfiler.SPSerialATAReporter</key>
- <string>2.0.2</string>
- </dict>
- </dict>
- <dict>
- <key>_SPCommandLineArguments</key>
- <array>
- <string>/usr/sbin/system_profiler</string>
- <string>-xml</string>
- <string>-detailLevel</string>
- <string>mini</string>
- <string>SPParallelATADataType</string>
- <string>SPApplicationsDataType</string>
- <string>SPAudioDataType</string>
- <string>SPBluetoothDataType</string>
- <string>SPCardReaderDataType</string>
- <string>SPComponentDataType</string>
- <string>SPDeveloperToolsDataType</string>
- <string>SPDiagnosticsDataType</string>
- <string>SPDiscBurningDataType</string>
- <string>SPEthernetDataType</string>
- <string>SPExtensionsDataType</string>
- <string>SPFibreChannelDataType</string>
- <string>SPFireWireDataType</string>
- <string>SPFirewallDataType</string>
- <string>SPFontsDataType</string>
- <string>SPFrameworksDataType</string>
- <string>SPDisplaysDataType</string>
- <string>SPHardwareRAIDDataType</string>
- <string>SPNetworkLocationDataType</string>
- <string>SPLogsDataType</string>
- <string>SPManagedClientDataType</string>
- <string>SPMemoryDataType</string>
- <string>SPModemDataType</string>
- <string>SPNetworkDataType</string>
- <string>SPPCIDataType</string>
- <string>SPParallelSCSIDataType</string>
- <string>SPPowerDataType</string>
- <string>SPPrefPaneDataType</string>
- <string>SPPrintersSoftwareDataType</string>
- <string>SPPrintersDataType</string>
- <string>SPConfigurationProfileDataType</string>
- <string>SPSASDataType</string>
- <string>SPSerialATADataType</string>
- <string>SPSoftwareDataType</string>
- <string>SPStartupItemDataType</string>
- <string>SPSyncServicesDataType</string>
- <string>SPThunderboltDataType</string>
- <string>SPUSBDataType</string>
- <string>SPUniversalAccessDataType</string>
- <string>SPNetworkVolumeDataType</string>
- <string>SPWWANDataType</string>
- <string>SPAirPortDataType</string>
- </array>
- <key>_SPCompletionInterval</key>
- <real>0.029258966445922852</real>
- <key>_dataType</key>
- <string>SPSoftwareDataType</string>
- <key>_detailLevel</key>
- <integer>-2</integer>
- <key>_items</key>
- <array>
- <dict>
- <key>64bit_kernel_and_kexts</key>
- <string>yes</string>
- <key>_name</key>
- <string>os_overview</string>
- <key>kernel_version</key>
- <string>Darwin 11.4.2</string>
- <key>os_version</key>
- <string>Mac OS X 10.7.5 (11G63)</string>
- <key>uptime</key>
- <string>up 0:6:23:37</string>
- </dict>
- </array>
- <key>_parentDataType</key>
- <string>SPRootDataType</string>
- <key>_properties</key>
- <dict>
- <key>kernel_version</key>
- <dict>
- <key>_order</key>
- <string>20</string>
- </dict>
- <key>os_version</key>
- <dict>
- <key>_order</key>
- <string>10</string>
- </dict>
- <key>volumes_anonymous</key>
- <dict>
- <key>_detailLevel</key>
- <string>-1</string>
- <key>_maxDetailLevel</key>
- <string>-1</string>
- </dict>
- </dict>
- <key>_timeStamp</key>
- <date>2012-12-04T21:30:23Z</date>
- <key>_versionInfo</key>
- <dict>
- <key>com.apple.SystemProfiler.SPOSReporter</key>
- <string>733</string>
- </dict>
- </dict>
- <dict>
- <key>_SPCommandLineArguments</key>
- <array>
- <string>/usr/sbin/system_profiler</string>
- <string>-xml</string>
- <string>-detailLevel</string>
- <string>mini</string>
- <string>SPParallelATADataType</string>
- <string>SPApplicationsDataType</string>
- <string>SPAudioDataType</string>
- <string>SPBluetoothDataType</string>
- <string>SPCardReaderDataType</string>
- <string>SPComponentDataType</string>
- <string>SPDeveloperToolsDataType</string>
- <string>SPDiagnosticsDataType</string>
- <string>SPDiscBurningDataType</string>
- <string>SPEthernetDataType</string>
- <string>SPExtensionsDataType</string>
- <string>SPFibreChannelDataType</string>
- <string>SPFireWireDataType</string>
- <string>SPFirewallDataType</string>
- <string>SPFontsDataType</string>
- <string>SPFrameworksDataType</string>
- <string>SPDisplaysDataType</string>
- <string>SPHardwareRAIDDataType</string>
- <string>SPNetworkLocationDataType</string>
- <string>SPLogsDataType</string>
- <string>SPManagedClientDataType</string>
- <string>SPMemoryDataType</string>
- <string>SPModemDataType</string>
- <string>SPNetworkDataType</string>
- <string>SPPCIDataType</string>
- <string>SPParallelSCSIDataType</string>
- <string>SPPowerDataType</string>
- <string>SPPrefPaneDataType</string>
- <string>SPPrintersSoftwareDataType</string>
- <string>SPPrintersDataType</string>
- <string>SPConfigurationProfileDataType</string>
- <string>SPSASDataType</string>
- <string>SPSerialATADataType</string>
- <string>SPSoftwareDataType</string>
- <string>SPStartupItemDataType</string>
- <string>SPSyncServicesDataType</string>
- <string>SPThunderboltDataType</string>
- <string>SPUSBDataType</string>
- <string>SPUniversalAccessDataType</string>
- <string>SPNetworkVolumeDataType</string>
- <string>SPWWANDataType</string>
- <string>SPAirPortDataType</string>
- </array>
- <key>_SPCompletionInterval</key>
- <real>0.047453999519348145</real>
- <key>_dataType</key>
- <string>SPStartupItemDataType</string>
- <key>_detailLevel</key>
- <integer>1</integer>
- <key>_items</key>
- <array>
- <dict>
- <key>Description</key>
- <string>VirtualBox Support and USB Drivers</string>
- <key>OrderPreference</key>
- <string>None</string>
- <key>Provides</key>
- <array>
- <string>VirtualBox</string>
- </array>
- <key>_name</key>
- <string>VirtualBox</string>
- <key>spstartupitem_enabled</key>
- <string>yes</string>
- <key>spstartupitem_location</key>
- <string>/Library/StartupItems/VirtualBox</string>
- </dict>
- </array>
- <key>_parentDataType</key>
- <string>SPSoftwareDataType</string>
- <key>_properties</key>
- <dict>
- <key>Description</key>
- <dict>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>1</string>
- </dict>
- <key>Provides</key>
- <dict>
- <key>_order</key>
- <string>3</string>
- </dict>
- <key>Requires</key>
- <dict>
- <key>_order</key>
- <string>4</string>
- </dict>
- <key>Uses</key>
- <dict>
- <key>_order</key>
- <string>5</string>
- </dict>
- <key>_name</key>
- <dict>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>0</string>
- </dict>
- <key>spstartupitem_enabled</key>
- <dict>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>3</string>
- </dict>
- <key>spstartupitem_location</key>
- <dict>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>2</string>
- </dict>
- <key>volumes_anonymous</key>
- <dict>
- <key>_detailLevel</key>
- <string>-1</string>
- <key>_maxDetailLevel</key>
- <string>-1</string>
- </dict>
- </dict>
- <key>_timeStamp</key>
- <date>2012-12-04T21:30:23Z</date>
- <key>_versionInfo</key>
- <dict>
- <key>com.apple.SystemProfiler.SPStartupItemReporter</key>
- <string>733</string>
- </dict>
- </dict>
- <dict>
- <key>_SPCommandLineArguments</key>
- <array>
- <string>/usr/sbin/system_profiler</string>
- <string>-xml</string>
- <string>-detailLevel</string>
- <string>mini</string>
- <string>SPParallelATADataType</string>
- <string>SPApplicationsDataType</string>
- <string>SPAudioDataType</string>
- <string>SPBluetoothDataType</string>
- <string>SPCardReaderDataType</string>
- <string>SPComponentDataType</string>
- <string>SPDeveloperToolsDataType</string>
- <string>SPDiagnosticsDataType</string>
- <string>SPDiscBurningDataType</string>
- <string>SPEthernetDataType</string>
- <string>SPExtensionsDataType</string>
- <string>SPFibreChannelDataType</string>
- <string>SPFireWireDataType</string>
- <string>SPFirewallDataType</string>
- <string>SPFontsDataType</string>
- <string>SPFrameworksDataType</string>
- <string>SPDisplaysDataType</string>
- <string>SPHardwareRAIDDataType</string>
- <string>SPNetworkLocationDataType</string>
- <string>SPLogsDataType</string>
- <string>SPManagedClientDataType</string>
- <string>SPMemoryDataType</string>
- <string>SPModemDataType</string>
- <string>SPNetworkDataType</string>
- <string>SPPCIDataType</string>
- <string>SPParallelSCSIDataType</string>
- <string>SPPowerDataType</string>
- <string>SPPrefPaneDataType</string>
- <string>SPPrintersSoftwareDataType</string>
- <string>SPPrintersDataType</string>
- <string>SPConfigurationProfileDataType</string>
- <string>SPSASDataType</string>
- <string>SPSerialATADataType</string>
- <string>SPSoftwareDataType</string>
- <string>SPStartupItemDataType</string>
- <string>SPSyncServicesDataType</string>
- <string>SPThunderboltDataType</string>
- <string>SPUSBDataType</string>
- <string>SPUniversalAccessDataType</string>
- <string>SPNetworkVolumeDataType</string>
- <string>SPWWANDataType</string>
- <string>SPAirPortDataType</string>
- </array>
- <key>_SPCompletionInterval</key>
- <real>0.11537402868270874</real>
- <key>_dataType</key>
- <string>SPSyncServicesDataType</string>
- <key>_detailLevel</key>
- <string>1</string>
- <key>_items</key>
- <array>
- <dict>
- <key>_items</key>
- <array>
- <dict>
- <key>_name</key>
- <string>syncservices.log</string>
- <key>summary_of_sync_log</key>
- <string></string>
- </dict>
- <dict>
- <key>_name</key>
- <string>system.log</string>
- <key>summary_of_sync_log</key>
- <string></string>
- </dict>
- </array>
- <key>_name</key>
- <string>summary_tree_name</string>
- <key>summary_os_version</key>
- <string>10.6</string>
- </dict>
- <dict>
- <key>_items</key>
- <array>
- <dict>
- <key>_name</key>
- <string>syncservices.log</string>
- <key>contents</key>
- <string>2012-11-30 10:42:01:539|SyncServer|269|0x7ff7e0416f60|Logging|Info| Logging initialized, engine version 673.4 : log level 3
-2012-11-30 10:42:04:383|AddressBookSync|272|0x7fa570c1b7b0|Stats|Stats| com.apple.AddressBook: refresh sync com.apple.contacts.ImageTransformationInfo, com.apple.contacts.Related Name, com.apple.contacts.Group, com.apple.contacts.SmartGroup, com.apple.contacts.URL, com.apple.contacts.IM, com.apple.contacts.Street Address, com.apple.contacts.Phone Number, com.apple.contacts.Date, com.apple.contacts.CalendarURI, com.apple.contacts.Contact, com.apple.contacts.Email Address
-2012-11-30 10:42:04:383|AddressBookSync|272|0x7fa570c1b7b0|ISyncSession|Info| com.apple.AddressBook: prepare to refresh com.apple.contacts.ImageTransformationInfo,com.apple.contacts.Related Name,com.apple.contacts.Group,com.apple.contacts.SmartGroup,com.apple.contacts.URL,com.apple.contacts.IM,com.apple.contacts.Street Address,com.apple.contacts.Phone Number,com.apple.contacts.Date,com.apple.contacts.CalendarURI,com.apple.contacts.Contact,com.apple.contacts.Email Address
-2012-11-30 10:42:04:763|DockSyncClient|274|0x7f9509c16b70|Stats|Stats| com.apple.Dock: refresh sync com.apple.dock.itemlist, com.apple.dock.item
-2012-11-30 10:42:04:763|DockSyncClient|274|0x7f9509c16b70|ISyncSession|Info| com.apple.Dock: prepare to refresh com.apple.dock.itemlist,com.apple.dock.item
-2012-11-30 10:44:04:891|SyncServer|269|0x7ff7e0416f60|Server|Info| Cancelling all sync plans.
-2012-11-30 10:44:04:945|SyncServer|269|0x7ff7e0416f60|Server|Info| Goodnight, Gracie.
-2012-11-30 10:45:27:590|SyncServer|327|0x7ff541c16fb0|Logging|Info| Logging initialized, engine version 673.4 : log level 3
-2012-11-30 10:45:27:752|SafariSyncClient|326|0x7f8119418ae0|ISyncManager|Info| unregister com.apple.Safari
-2012-11-30 10:45:27:759|SyncServer|327|0x7ff541c16fb0|Server|Info| unregister client com.apple.Safari
-2012-11-30 10:45:27:763|SafariSyncClient|326|0x7f8119418ae0|ISyncManager|Info| register client com.apple.Safari from /Applications/Safari.app/Contents/SafariSyncClient.app/Contents/Resources/SafariClientDescription.plist (bundleId = (null), bundleRelativePath = (null))
-2012-11-30 10:47:27:769|SyncServer|327|0x7ff541c16fb0|Server|Info| Cancelling all sync plans.
-2012-11-30 10:47:27:806|SyncServer|327|0x7ff541c16fb0|Server|Info| Goodnight, Gracie.
-2012-11-30 10:47:34:698|SyncServer|362|0x7fd35bc16fb0|Logging|Info| Logging initialized, engine version 673.4 : log level 3
-2012-11-30 10:47:35:174|DockSyncClient|365|0x7fc3f1c16b50|Stats|Stats| com.apple.Dock: slow sync com.apple.dock.item, com.apple.dock.itemlist
-2012-11-30 10:47:35:174|DockSyncClient|365|0x7fc3f1c16b50|ISyncSession|Info| com.apple.Dock: prepare to slow sync com.apple.dock.item,com.apple.dock.itemlist
-2012-11-30 10:48:01:258|DockSyncClient|389|0x7ff058c16b60|Stats|Stats| com.apple.Dock: slow sync com.apple.dock.item, com.apple.dock.itemlist
-2012-11-30 10:48:01:258|DockSyncClient|389|0x7ff058c16b60|ISyncSession|Info| com.apple.Dock: prepare to slow sync com.apple.dock.item,com.apple.dock.itemlist
-2012-11-30 10:48:20:253|DockSyncClient|401|0x7fda92c16b50|Stats|Stats| com.apple.Dock: slow sync com.apple.dock.item, com.apple.dock.itemlist
-2012-11-30 10:48:20:253|DockSyncClient|401|0x7fda92c16b50|ISyncSession|Info| com.apple.Dock: prepare to slow sync com.apple.dock.item,com.apple.dock.itemlist
-2012-11-30 10:50:20:365|SyncServer|362|0x7fd35bc16fb0|Server|Info| Cancelling all sync plans.
-2012-11-30 10:50:20:368|SyncServer|362|0x7fd35bc16fb0|Server|Info| Goodnight, Gracie.
-2012-11-30 10:54:11:310|SyncServer|508|0x7f85e0416f70|Logging|Info| Logging initialized, engine version 673.4 : log level 3
-2012-11-30 10:54:11:487|DockSyncClient|509|0x7fa521416b80|Stats|Stats| com.apple.Dock: slow sync com.apple.dock.item, com.apple.dock.itemlist
-2012-11-30 10:54:11:487|DockSyncClient|509|0x7fa521416b80|ISyncSession|Info| com.apple.Dock: prepare to slow sync com.apple.dock.item,com.apple.dock.itemlist
-2012-11-30 10:56:11:606|SyncServer|508|0x7f85e0416f70|Server|Info| Cancelling all sync plans.
-2012-11-30 10:56:11:609|SyncServer|508|0x7f85e0416f70|Server|Info| Goodnight, Gracie.
-2012-11-30 11:29:20:072|SyncServer|809|0x7fe94bc16f80|Logging|Info| Logging initialized, engine version 673.4 : log level 3
-2012-11-30 11:29:20:422|DockSyncClient|810|0x7fbde1416b80|Stats|Stats| com.apple.Dock: slow sync com.apple.dock.item, com.apple.dock.itemlist
-2012-11-30 11:29:20:422|DockSyncClient|810|0x7fbde1416b80|ISyncSession|Info| com.apple.Dock: prepare to slow sync com.apple.dock.item,com.apple.dock.itemlist
-2012-11-30 11:29:34:030|DockSyncClient|811|0x7ff4d1416be0|Stats|Stats| com.apple.Dock: slow sync com.apple.dock.item, com.apple.dock.itemlist
-2012-11-30 11:29:34:030|DockSyncClient|811|0x7ff4d1416be0|ISyncSession|Info| com.apple.Dock: prepare to slow sync com.apple.dock.item,com.apple.dock.itemlist
-2012-11-30 11:31:34:208|SyncServer|809|0x7fe94bc16f80|Server|Info| Cancelling all sync plans.
-2012-11-30 11:31:34:246|SyncServer|809|0x7fe94bc16f80|Server|Info| Goodnight, Gracie.
-2012-11-30 11:52:57:984|SyncServer|180|0x10a216f40|Logging|Info| Logging initialized, engine version 673.6 : log level 3
-2012-11-30 11:53:05:087|DockSyncClient|184|0x10ac16b60|Stats|Stats| com.apple.Dock: slow sync com.apple.dock.item, com.apple.dock.itemlist
-2012-11-30 11:53:05:087|DockSyncClient|184|0x10ac16b60|ISyncSession|Info| com.apple.Dock: prepare to slow sync com.apple.dock.item,com.apple.dock.itemlist
-2012-11-30 11:55:07:915|SyncServer|180|0x10a216f40|Server|Info| Cancelling all sync plans.
-2012-11-30 11:55:07:925|SyncServer|180|0x10a216f40|Server|Info| Goodnight, Gracie.
-2012-11-30 12:30:48:914|SyncServer|1298|0x100816f40|Logging|Info| Logging initialized, engine version 673.6 : log level 3
-2012-11-30 12:30:49:514|DockSyncClient|1299|0x10ef16b60|Stats|Stats| com.apple.Dock: slow sync com.apple.dock.item, com.apple.dock.itemlist
-2012-11-30 12:30:49:514|DockSyncClient|1299|0x10ef16b60|ISyncSession|Info| com.apple.Dock: prepare to slow sync com.apple.dock.item,com.apple.dock.itemlist
-2012-11-30 12:32:49:848|SyncServer|1298|0x100816f40|Server|Info| Cancelling all sync plans.
-2012-11-30 12:32:49:896|SyncServer|1298|0x100816f40|Server|Info| Goodnight, Gracie.
-2012-11-30 16:20:17:645|SyncServer|8150|0x109016f20|Logging|Info| Logging initialized, engine version 673.6 : log level 3
-2012-11-30 16:20:17:932|DockSyncClient|8151|0x10e416b40|Stats|Stats| com.apple.Dock: slow sync com.apple.dock.item, com.apple.dock.itemlist
-2012-11-30 16:20:17:932|DockSyncClient|8151|0x10e416b40|ISyncSession|Info| com.apple.Dock: prepare to slow sync com.apple.dock.item,com.apple.dock.itemlist
-2012-11-30 16:22:17:972|SyncServer|8150|0x109016f20|Server|Info| Cancelling all sync plans.
-2012-11-30 16:22:17:974|SyncServer|8150|0x109016f20|Server|Info| Goodnight, Gracie.
-2012-11-30 17:22:42:440|SyncServer|67192|0x101616f20|Logging|Info| Logging initialized, engine version 673.6 : log level 3
-2012-11-30 17:22:42:545|DockSyncClient|67193|0x101d16b40|Stats|Stats| com.apple.Dock: slow sync com.apple.dock.item, com.apple.dock.itemlist
-2012-11-30 17:22:42:545|DockSyncClient|67193|0x101d16b40|ISyncSession|Info| com.apple.Dock: prepare to slow sync com.apple.dock.item,com.apple.dock.itemlist
-2012-11-30 17:24:42:672|SyncServer|67192|0x101616f20|Server|Info| Cancelling all sync plans.
-2012-11-30 17:24:43:023|SyncServer|67192|0x101616f20|Server|Info| Goodnight, Gracie.
-2012-11-30 19:16:32:115|SyncServer|70926|0x107c16f20|Logging|Info| Logging initialized, engine version 673.6 : log level 3
-2012-11-30 19:16:32:814|DockSyncClient|70927|0x102616b40|Stats|Stats| com.apple.Dock: slow sync com.apple.dock.item, com.apple.dock.itemlist
-2012-11-30 19:16:32:814|DockSyncClient|70927|0x102616b40|ISyncSession|Info| com.apple.Dock: prepare to slow sync com.apple.dock.item,com.apple.dock.itemlist
-2012-11-30 19:18:32:863|SyncServer|70926|0x107c16f20|Server|Info| Cancelling all sync plans.
-2012-11-30 19:18:32:898|SyncServer|70926|0x107c16f20|Server|Info| Goodnight, Gracie.
-2012-11-30 23:49:59:804|SyncServer|9339|0x10a716f20|Logging|Info| Logging initialized, engine version 673.6 : log level 3
-2012-11-30 23:50:00:559|DockSyncClient|9340|0x101e16b40|Stats|Stats| com.apple.Dock: slow sync com.apple.dock.item, com.apple.dock.itemlist
-2012-11-30 23:50:00:559|DockSyncClient|9340|0x101e16b40|ISyncSession|Info| com.apple.Dock: prepare to slow sync com.apple.dock.item,com.apple.dock.itemlist
-2012-11-30 23:52:00:712|SyncServer|9339|0x10a716f20|Server|Info| Cancelling all sync plans.
-2012-11-30 23:52:00:761|SyncServer|9339|0x10a716f20|Server|Info| Goodnight, Gracie.
-2012-11-30 23:55:33:824|SyncServer|9423|0x109c16f20|Logging|Info| Logging initialized, engine version 673.6 : log level 3
-2012-11-30 23:55:34:183|DockSyncClient|9424|0x101e16b40|Stats|Stats| com.apple.Dock: slow sync com.apple.dock.item, com.apple.dock.itemlist
-2012-11-30 23:55:34:183|DockSyncClient|9424|0x101e16b40|ISyncSession|Info| com.apple.Dock: prepare to slow sync com.apple.dock.item,com.apple.dock.itemlist
-2012-11-30 23:57:34:292|SyncServer|9423|0x109c16f20|Server|Info| Cancelling all sync plans.
-2012-11-30 23:57:34:297|SyncServer|9423|0x109c16f20|Server|Info| Goodnight, Gracie.
-2012-12-01 09:11:36:288|SyncServer|669|0x106516fa0|Logging|Info| Logging initialized, engine version 673.6 : log level 3
-2012-12-01 09:11:36:843|DockSyncClient|670|0x109416bc0|Stats|Stats| com.apple.Dock: slow sync com.apple.dock.item, com.apple.dock.itemlist
-2012-12-01 09:11:36:843|DockSyncClient|670|0x109416bc0|ISyncSession|Info| com.apple.Dock: prepare to slow sync com.apple.dock.item,com.apple.dock.itemlist
-2012-12-01 09:13:36:966|SyncServer|669|0x106516fa0|Server|Info| Cancelling all sync plans.
-2012-12-01 09:13:37:022|SyncServer|669|0x106516fa0|Server|Info| Goodnight, Gracie.
-2012-12-03 11:48:09:327|SyncServer|27368|0x100f16fa0|Logging|Info| Logging initialized, engine version 673.6 : log level 3
-2012-12-03 11:48:10:170|DockSyncClient|27369|0x10ad16bc0|Stats|Stats| com.apple.Dashboard: refresh sync com.apple.dashboard.widget
-2012-12-03 11:48:10:170|DockSyncClient|27369|0x10ad16bc0|ISyncSession|Info| com.apple.Dashboard: prepare to refresh com.apple.dashboard.widget
-2012-12-03 11:50:10:303|SyncServer|27368|0x100f16fa0|Server|Info| Cancelling all sync plans.
-2012-12-03 11:50:10:446|SyncServer|27368|0x100f16fa0|Server|Info| Goodnight, Gracie.
-2012-12-03 16:13:05:621|SyncServer|29200|0x100a16fa0|Logging|Info| Logging initialized, engine version 673.6 : log level 3
-2012-12-03 16:13:06:212|DockSyncClient|29202|0x105116bc0|Stats|Stats| com.apple.Dock: slow sync com.apple.dock.item, com.apple.dock.itemlist
-2012-12-03 16:13:06:213|DockSyncClient|29202|0x105116bc0|ISyncSession|Info| com.apple.Dock: prepare to slow sync com.apple.dock.item,com.apple.dock.itemlist
-2012-12-03 16:15:06:692|SyncServer|29200|0x100a16fa0|Server|Info| Cancelling all sync plans.
-2012-12-03 16:15:06:742|SyncServer|29200|0x100a16fa0|Server|Info| Goodnight, Gracie.
-2012-12-03 16:17:41:667|SyncServer|29636|0x104216fa0|Logging|Info| Logging initialized, engine version 673.6 : log level 3
-2012-12-03 16:17:41:775|DockSyncClient|29637|0x106f16bc0|Stats|Stats| com.apple.Dock: slow sync com.apple.dock.item, com.apple.dock.itemlist
-2012-12-03 16:17:41:775|DockSyncClient|29637|0x106f16bc0|ISyncSession|Info| com.apple.Dock: prepare to slow sync com.apple.dock.item,com.apple.dock.itemlist
-2012-12-03 16:18:00:908|DockSyncClient|29650|0x109d16bc0|Stats|Stats| com.apple.Dock: slow sync com.apple.dock.item, com.apple.dock.itemlist
-2012-12-03 16:18:00:908|DockSyncClient|29650|0x109d16bc0|ISyncSession|Info| com.apple.Dock: prepare to slow sync com.apple.dock.item,com.apple.dock.itemlist
-2012-12-03 16:18:08:101|DockSyncClient|29652|0x10d816bc0|Stats|Stats| com.apple.Dock: slow sync com.apple.dock.item, com.apple.dock.itemlist
-2012-12-03 16:18:08:101|DockSyncClient|29652|0x10d816bc0|ISyncSession|Info| com.apple.Dock: prepare to slow sync com.apple.dock.item,com.apple.dock.itemlist
-2012-12-03 16:20:08:116|SyncServer|29636|0x104216fa0|Server|Info| Cancelling all sync plans.
-2012-12-03 16:20:08:117|SyncServer|29636|0x104216fa0|Server|Info| Goodnight, Gracie.
-2012-12-03 18:04:28:295|SyncServer|42897|0x10c316fa0|Logging|Info| Logging initialized, engine version 673.6 : log level 3
-2012-12-03 18:04:29:314|DockSyncClient|42898|0x10c016bc0|Stats|Stats| com.apple.Dock: slow sync com.apple.dock.item, com.apple.dock.itemlist
-2012-12-03 18:04:29:314|DockSyncClient|42898|0x10c016bc0|ISyncSession|Info| com.apple.Dock: prepare to slow sync com.apple.dock.item,com.apple.dock.itemlist
-2012-12-03 18:06:29:603|SyncServer|42897|0x10c316fa0|Server|Info| Cancelling all sync plans.
-2012-12-03 18:06:29:647|SyncServer|42897|0x10c316fa0|Server|Info| Goodnight, Gracie.
-2012-12-03 18:06:57:168|SyncServer|43075|0x109a16fa0|Logging|Info| Logging initialized, engine version 673.6 : log level 3
-2012-12-03 18:06:57:462|DockSyncClient|43077|0x10a116bc0|Stats|Stats| com.apple.Dock: slow sync com.apple.dock.item, com.apple.dock.itemlist
-2012-12-03 18:06:57:462|DockSyncClient|43077|0x10a116bc0|ISyncSession|Info| com.apple.Dock: prepare to slow sync com.apple.dock.item,com.apple.dock.itemlist
-</string>
- <key>description</key>
- <string>syncservices_log_description</string>
- <key>lastModified</key>
- <date>2012-12-04T01:06:58Z</date>
- <key>size</key>
- <string>13 KB</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>system.log</string>
- <key>contents</key>
- <string>...
-
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp loginwindow[46]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp loginwindow[46]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp loginwindow[46]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp loginwindow[46]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp loginwindow[46]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp loginwindow[46]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp loginwindow[46]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp loginwindow[46]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp loginwindow[46]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp loginwindow[46]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp loginwindow[46]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp loginwindow[46]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp loginwindow[46]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp loginwindow[46]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp loginwindow[46]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp loginwindow[46]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:14 paul-mbp Cisco AnyConnect VPN Client[1287]: *** process 1287 exceeded 500 log message per second limit - remaining messages this second discarded ***
-Dec 4 14:27:15 paul-mbp loginwindow[46]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:15 paul-mbp loginwindow[46]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:15 paul-mbp loginwindow[46]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:15 paul-mbp loginwindow[46]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:15 paul-mbp loginwindow[46]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:15 paul-mbp loginwindow[46]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:15 paul-mbp HipChat[269]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:15 paul-mbp HipChat[269]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:16 paul-mbp Adium[302]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:16 paul-mbp Adium[302]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:16 paul-mbp Adium[302]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:16 paul-mbp Adium[302]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:16 paul-mbp Adium[302]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:16 paul-mbp Adium[302]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:16 paul-mbp Adium[302]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:16 paul-mbp Adium[302]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:16 paul-mbp Adium[302]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:16 paul-mbp Adium[302]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:16 paul-mbp Adium[302]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:16 paul-mbp Adium[302]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:16 paul-mbp Adium[302]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:16 paul-mbp Adium[302]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:16 paul-mbp Adium[302]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:16 paul-mbp Adium[302]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:16 paul-mbp Adium[302]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:16 paul-mbp Adium[302]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:16 paul-mbp Adium[302]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:16 paul-mbp Adium[302]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:16 paul-mbp Adium[302]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:16 paul-mbp Adium[302]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:16 paul-mbp Adium[302]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:16 paul-mbp Adium[302]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:16 paul-mbp HipChat[269]: kCGErrorIllegalArgument: CGSGetDisplayBounds: Invalid display 0x2b285d8d
-Dec 4 14:27:16 paul-mbp HipChat[269]: _NXGetScreenRect: error getting display bounds (1001)
-Dec 4 14:27:17 paul-mbp mDNSResponder[44]: DeregisterInterface: Frequent transitions for interface en1 (192.168.111.50)
-Dec 4 14:27:18 paul-mbp SystemUIServer[239]: -[MDMenuWindow _checkTopRight] the window is off the screen topRight point is {2550, 1028}
-Dec 4 14:27:18 paul-mbp vpnagent[59]: AlwaysOn preferences for client system configuration without a VPN session (after successful VPN connection): AlwaysOn: disabled ConnectFailurePolicy: closed ApplyLastVPNLocalResourceRules: disabled
-Dec 4 14:27:18 paul-mbp vpnagent[59]: getting ipv4 route table.
-Dec 4 14:27:18 paul-mbp vpnagent[59]: getting default gateway.
-Dec 4 14:27:19: --- last message repeated 1 time ---
-Dec 4 14:27:19 paul-mbp rpcsvchost[20684]: sandbox_init: com.apple.msrpc.netlogon.sb succeeded
-Dec 4 14:27:19 paul-mbp vpnagent[59]: Function: logProbeFailure File: NetEnvironment.cpp Line: 1055 The HTTPS probe to 74.3.100.30 resulted in a redirect.
-Dec 4 14:27:19 paul-mbp vpnagent[59]: Function: analyzeHttpResponse File: NetEnvironment.cpp Line: 1249 SG (74.3.100.30) contacted
-Dec 4 14:27:19 paul-mbp vpnagent[59]: Function: disableHostMgr File: TunTapMgr.cpp Line: 2391 Invoked Function: ioctl (SIOCDIFADDR) Return Code: 49 (0x00000031) Description: Can't assign requested address
-Dec 4 14:27:19 paul-mbp vpnagent[59]: Function: ~CTunTapMgr File: TunTapMgr.cpp Line: 432 Invoked Function: CTunTapMgr::disableHostMgr Return Code: -32964588 (0xFE090014) Description: TUNTAPMGR_ERROR_INTERFACE_CONFIG_FAILED
-</string>
- <key>description</key>
- <string>system_log_description</string>
- <key>lastModified</key>
- <date>2012-12-04T21:27:24Z</date>
- <key>size</key>
- <string>1.1 MB</string>
- </dict>
- </array>
- <key>_name</key>
- <string>log_tree_name</string>
- </dict>
- </array>
- <key>_parentDataType</key>
- <string>SPSoftwareDataType</string>
- <key>_properties</key>
- <dict>
- <key>_name</key>
- <dict>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_isOutlineColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>10</string>
- </dict>
- <key>contents</key>
- <dict>
- <key>_order</key>
- <string>40</string>
- </dict>
- <key>description</key>
- <dict>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>10</string>
- </dict>
- <key>engine_version_string</key>
- <dict>
- <key>_order</key>
- <string>30</string>
- </dict>
- <key>lastModified</key>
- <dict>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>20</string>
- </dict>
- <key>size</key>
- <dict>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>30</string>
- </dict>
- <key>summary</key>
- <dict>
- <key>_order</key>
- <string>20</string>
- </dict>
- <key>volumes_anonymous</key>
- <dict>
- <key>_detailLevel</key>
- <string>-1</string>
- <key>_maxDetailLevel</key>
- <string>-1</string>
- </dict>
- </dict>
- <key>_timeStamp</key>
- <date>2012-12-04T21:30:23Z</date>
- <key>_versionInfo</key>
- <dict>
- <key>com.apple.syncservices.diagnostics</key>
- <string>673.6</string>
- </dict>
- </dict>
- <dict>
- <key>_SPCommandLineArguments</key>
- <array>
- <string>/usr/sbin/system_profiler</string>
- <string>-xml</string>
- <string>-detailLevel</string>
- <string>mini</string>
- <string>SPParallelATADataType</string>
- <string>SPApplicationsDataType</string>
- <string>SPAudioDataType</string>
- <string>SPBluetoothDataType</string>
- <string>SPCardReaderDataType</string>
- <string>SPComponentDataType</string>
- <string>SPDeveloperToolsDataType</string>
- <string>SPDiagnosticsDataType</string>
- <string>SPDiscBurningDataType</string>
- <string>SPEthernetDataType</string>
- <string>SPExtensionsDataType</string>
- <string>SPFibreChannelDataType</string>
- <string>SPFireWireDataType</string>
- <string>SPFirewallDataType</string>
- <string>SPFontsDataType</string>
- <string>SPFrameworksDataType</string>
- <string>SPDisplaysDataType</string>
- <string>SPHardwareRAIDDataType</string>
- <string>SPNetworkLocationDataType</string>
- <string>SPLogsDataType</string>
- <string>SPManagedClientDataType</string>
- <string>SPMemoryDataType</string>
- <string>SPModemDataType</string>
- <string>SPNetworkDataType</string>
- <string>SPPCIDataType</string>
- <string>SPParallelSCSIDataType</string>
- <string>SPPowerDataType</string>
- <string>SPPrefPaneDataType</string>
- <string>SPPrintersSoftwareDataType</string>
- <string>SPPrintersDataType</string>
- <string>SPConfigurationProfileDataType</string>
- <string>SPSASDataType</string>
- <string>SPSerialATADataType</string>
- <string>SPSoftwareDataType</string>
- <string>SPStartupItemDataType</string>
- <string>SPSyncServicesDataType</string>
- <string>SPThunderboltDataType</string>
- <string>SPUSBDataType</string>
- <string>SPUniversalAccessDataType</string>
- <string>SPNetworkVolumeDataType</string>
- <string>SPWWANDataType</string>
- <string>SPAirPortDataType</string>
- </array>
- <key>_SPCompletionInterval</key>
- <real>2.2383260130882263</real>
- <key>_dataType</key>
- <string>SPThunderboltDataType</string>
- <key>_detailLevel</key>
- <integer>-1</integer>
- <key>_items</key>
- <array>
- <dict>
- <key>_name</key>
- <string>MacBook Pro</string>
- <key>device_name_key</key>
- <string>MacBook Pro</string>
- <key>receptacle_A</key>
- <dict>
- <key>link_status_key</key>
- <string>7</string>
- <key>pm_version_key</key>
- <string>2.1.1</string>
- <key>receptacle_status_key</key>
- <string>receptacle_no_devices_connected</string>
- </dict>
- <key>switch_uid_key</key>
- <string>0x0001000A1B1434C0</string>
- <key>switch_version_key</key>
- <string>25.1</string>
- <key>vendor_name_key</key>
- <string>Apple, Inc.</string>
- </dict>
- </array>
- <key>_parentDataType</key>
- <string>SPHardwareDataType</string>
- <key>_properties</key>
- <dict>
- <key>_name</key>
- <dict>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_isOutlineColumn</key>
- <string>YES</string>
- <key>_order</key>
- <integer>10</integer>
- </dict>
- <key>aapl_serial_number_key</key>
- <dict>
- <key>_order</key>
- <integer>350</integer>
- </dict>
- <key>bsd_name</key>
- <dict>
- <key>_order</key>
- <string>505</string>
- </dict>
- <key>cm_version_key</key>
- <dict>
- <key>_order</key>
- <integer>790</integer>
- </dict>
- <key>detachable_drive</key>
- <dict>
- <key>_order</key>
- <string>535</string>
- </dict>
- <key>device_id_key</key>
- <dict>
- <key>_order</key>
- <integer>130</integer>
- </dict>
- <key>device_manufacturer</key>
- <dict>
- <key>_order</key>
- <string>525</string>
- </dict>
- <key>device_name_key</key>
- <dict>
- <key>_order</key>
- <integer>110</integer>
- </dict>
- <key>device_revision_key</key>
- <dict>
- <key>_order</key>
- <integer>140</integer>
- </dict>
- <key>disc_burning</key>
- <dict>
- <key>_order</key>
- <string>550</string>
- </dict>
- <key>dm_version_key</key>
- <dict>
- <key>_order</key>
- <integer>710</integer>
- </dict>
- <key>far_cm_version_key</key>
- <dict>
- <key>_order</key>
- <integer>792</integer>
- </dict>
- <key>file_system</key>
- <dict>
- <key>_order</key>
- <string>510</string>
- </dict>
- <key>free_space</key>
- <dict>
- <key>_deprecated</key>
- <true/>
- <key>_order</key>
- <string>520</string>
- </dict>
- <key>free_space_in_bytes</key>
- <dict>
- <key>_isByteSize</key>
- <true/>
- <key>_order</key>
- <string>520</string>
- </dict>
- <key>link_status_key</key>
- <dict>
- <key>_order</key>
- <integer>500</integer>
- </dict>
- <key>lr_version_key</key>
- <dict>
- <key>_order</key>
- <integer>700</integer>
- </dict>
- <key>mount_point</key>
- <dict>
- <key>_order</key>
- <string>500</string>
- </dict>
- <key>near_cm_version_key</key>
- <dict>
- <key>_order</key>
- <integer>791</integer>
- </dict>
- <key>optical_drive_type</key>
- <dict>
- <key>_order</key>
- <string>540</string>
- </dict>
- <key>optical_media_type</key>
- <dict>
- <key>_order</key>
- <string>545</string>
- </dict>
- <key>partition_map_type</key>
- <dict>
- <key>_order</key>
- <string>512</string>
- </dict>
- <key>pm_version_key</key>
- <dict>
- <key>_order</key>
- <integer>730</integer>
- </dict>
- <key>receptacle_A</key>
- <dict>
- <key>_order</key>
- <integer>10000</integer>
- </dict>
- <key>receptacle_B</key>
- <dict>
- <key>_order</key>
- <integer>10010</integer>
- </dict>
- <key>receptacle_C</key>
- <dict>
- <key>_order</key>
- <integer>10020</integer>
- </dict>
- <key>receptacle_D</key>
- <dict>
- <key>_order</key>
- <integer>10030</integer>
- </dict>
- <key>receptacle_E</key>
- <dict>
- <key>_order</key>
- <integer>10040</integer>
- </dict>
- <key>receptacle_F</key>
- <dict>
- <key>_order</key>
- <integer>10050</integer>
- </dict>
- <key>receptacle_status_key</key>
- <dict>
- <key>_order</key>
- <integer>490</integer>
- </dict>
- <key>receptacle_unknown</key>
- <dict>
- <key>_order</key>
- <integer>10060</integer>
- </dict>
- <key>removable_media</key>
- <dict>
- <key>_order</key>
- <string>525</string>
- </dict>
- <key>route_string_key</key>
- <dict>
- <key>_order</key>
- <integer>400</integer>
- </dict>
- <key>size</key>
- <dict>
- <key>_deprecated</key>
- <true/>
- <key>_order</key>
- <string>515</string>
- </dict>
- <key>size_in_bytes</key>
- <dict>
- <key>_isByteSize</key>
- <true/>
- <key>_order</key>
- <string>515</string>
- </dict>
- <key>smart_status</key>
- <dict>
- <key>_order</key>
- <string>530</string>
- </dict>
- <key>spm_version_key</key>
- <dict>
- <key>_order</key>
- <integer>720</integer>
- </dict>
- <key>switch_four</key>
- <dict>
- <key>_order</key>
- <integer>9030</integer>
- </dict>
- <key>switch_one</key>
- <dict>
- <key>_order</key>
- <integer>9000</integer>
- </dict>
- <key>switch_three</key>
- <dict>
- <key>_order</key>
- <integer>9020</integer>
- </dict>
- <key>switch_two</key>
- <dict>
- <key>_order</key>
- <integer>9010</integer>
- </dict>
- <key>switch_uid_key</key>
- <dict>
- <key>_order</key>
- <integer>300</integer>
- </dict>
- <key>switch_unknown</key>
- <dict>
- <key>_order</key>
- <integer>9040</integer>
- </dict>
- <key>switch_version_key</key>
- <dict>
- <key>_order</key>
- <integer>700</integer>
- </dict>
- <key>vendor_id_key</key>
- <dict>
- <key>_order</key>
- <integer>120</integer>
- </dict>
- <key>vendor_name_key</key>
- <dict>
- <key>_order</key>
- <integer>100</integer>
- </dict>
- <key>volumes_anonymous</key>
- <dict>
- <key>_detailLevel</key>
- <string>-1</string>
- <key>_maxDetailLevel</key>
- <string>-1</string>
- </dict>
- </dict>
- <key>_timeStamp</key>
- <date>2012-12-04T21:30:23Z</date>
- <key>_versionInfo</key>
- <dict>
- <key>com.apple.SystemProfiler.SPThunderboltReporter</key>
- <string>1.2.5</string>
- </dict>
- </dict>
- <dict>
- <key>_SPCommandLineArguments</key>
- <array>
- <string>/usr/sbin/system_profiler</string>
- <string>-xml</string>
- <string>-detailLevel</string>
- <string>mini</string>
- <string>SPParallelATADataType</string>
- <string>SPApplicationsDataType</string>
- <string>SPAudioDataType</string>
- <string>SPBluetoothDataType</string>
- <string>SPCardReaderDataType</string>
- <string>SPComponentDataType</string>
- <string>SPDeveloperToolsDataType</string>
- <string>SPDiagnosticsDataType</string>
- <string>SPDiscBurningDataType</string>
- <string>SPEthernetDataType</string>
- <string>SPExtensionsDataType</string>
- <string>SPFibreChannelDataType</string>
- <string>SPFireWireDataType</string>
- <string>SPFirewallDataType</string>
- <string>SPFontsDataType</string>
- <string>SPFrameworksDataType</string>
- <string>SPDisplaysDataType</string>
- <string>SPHardwareRAIDDataType</string>
- <string>SPNetworkLocationDataType</string>
- <string>SPLogsDataType</string>
- <string>SPManagedClientDataType</string>
- <string>SPMemoryDataType</string>
- <string>SPModemDataType</string>
- <string>SPNetworkDataType</string>
- <string>SPPCIDataType</string>
- <string>SPParallelSCSIDataType</string>
- <string>SPPowerDataType</string>
- <string>SPPrefPaneDataType</string>
- <string>SPPrintersSoftwareDataType</string>
- <string>SPPrintersDataType</string>
- <string>SPConfigurationProfileDataType</string>
- <string>SPSASDataType</string>
- <string>SPSerialATADataType</string>
- <string>SPSoftwareDataType</string>
- <string>SPStartupItemDataType</string>
- <string>SPSyncServicesDataType</string>
- <string>SPThunderboltDataType</string>
- <string>SPUSBDataType</string>
- <string>SPUniversalAccessDataType</string>
- <string>SPNetworkVolumeDataType</string>
- <string>SPWWANDataType</string>
- <string>SPAirPortDataType</string>
- </array>
- <key>_SPCompletionInterval</key>
- <real>0.013162970542907715</real>
- <key>_dataType</key>
- <string>SPUSBDataType</string>
- <key>_detailLevel</key>
- <integer>-1</integer>
- <key>_items</key>
- <array>
- <dict>
- <key>_items</key>
- <array>
- <dict>
- <key>_name</key>
- <string>FaceTime HD Camera (Built-in)</string>
- <key>a_product_id</key>
- <string>0x8509</string>
- <key>b_vendor_id</key>
- <string>apple_vendor_id</string>
- <key>c_bcd_device</key>
- <string> 5.16</string>
- <key>d_serial_num</key>
- <string>CC2BCR00A0DG6ML0</string>
- <key>e_device_speed</key>
- <string>high_speed</string>
- <key>f_manufacturer</key>
- <string>Apple Inc.</string>
- <key>g_location_id</key>
- <string>0xfa200000 / 3</string>
- <key>h_bus_power</key>
- <string>500</string>
- <key>j_bus_power_used</key>
- <string>500</string>
- </dict>
- <dict>
- <key>_items</key>
- <array>
- <dict>
- <key>_items</key>
- <array>
- <dict>
- <key>_name</key>
- <string>Bluetooth USB Host Controller</string>
- <key>a_product_id</key>
- <string>0x821a</string>
- <key>b_vendor_id</key>
- <string>apple_vendor_id</string>
- <key>c_bcd_device</key>
- <string> 0.41</string>
- <key>e_device_speed</key>
- <string>full_speed</string>
- <key>f_manufacturer</key>
- <string>Apple Inc.</string>
- <key>g_location_id</key>
- <string>0xfa113000 / 8</string>
- <key>h_bus_power</key>
- <string>500</string>
- <key>j_bus_power_used</key>
- <string>0</string>
- </dict>
- </array>
- <key>_name</key>
- <string>BRCM2070 Hub</string>
- <key>a_product_id</key>
- <string>0x4500</string>
- <key>b_vendor_id</key>
- <string>0x0a5c (Broadcom Corp.)</string>
- <key>c_bcd_device</key>
- <string> 1.00</string>
- <key>e_device_speed</key>
- <string>full_speed</string>
- <key>f_manufacturer</key>
- <string>Apple Inc.</string>
- <key>g_location_id</key>
- <string>0xfa110000 / 5</string>
- <key>h_bus_power</key>
- <string>500</string>
- <key>j_bus_power_used</key>
- <string>94</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>Apple Internal Keyboard / Trackpad</string>
- <key>a_product_id</key>
- <string>0x0252</string>
- <key>b_vendor_id</key>
- <string>apple_vendor_id</string>
- <key>c_bcd_device</key>
- <string> 1.18</string>
- <key>e_device_speed</key>
- <string>full_speed</string>
- <key>f_manufacturer</key>
- <string>Apple Inc.</string>
- <key>g_location_id</key>
- <string>0xfa120000 / 4</string>
- <key>h_bus_power</key>
- <string>500</string>
- <key>j_bus_power_used</key>
- <string>40</string>
- </dict>
- </array>
- <key>_name</key>
- <string>hub_device</string>
- <key>a_product_id</key>
- <string>0x2513</string>
- <key>b_vendor_id</key>
- <string>0x0424 (SMSC)</string>
- <key>c_bcd_device</key>
- <string> b.b3</string>
- <key>e_device_speed</key>
- <string>high_speed</string>
- <key>g_location_id</key>
- <string>0xfa100000 / 2</string>
- <key>h_bus_power</key>
- <string>500</string>
- <key>j_bus_power_used</key>
- <string>2</string>
- </dict>
- </array>
- <key>_name</key>
- <string>EHCI Root Hub Simulation</string>
- <key>controller_location</key>
- <string>Built-in</string>
- <key>host_controller</key>
- <string>AppleUSBEHCI</string>
- <key>pci_device</key>
- <string>0x1c2d </string>
- <key>pci_revision</key>
- <string>0x0005 </string>
- <key>pci_vendor</key>
- <string>0x8086 </string>
- <key>usb_bus_number</key>
- <string>0xfa </string>
- </dict>
- <dict>
- <key>_items</key>
- <array>
- <dict>
- <key>_items</key>
- <array>
- <dict>
- <key>_name</key>
- <string>IR Receiver</string>
- <key>a_product_id</key>
- <string>0x8242</string>
- <key>b_vendor_id</key>
- <string>apple_vendor_id</string>
- <key>c_bcd_device</key>
- <string> 0.16</string>
- <key>e_device_speed</key>
- <string>low_speed</string>
- <key>f_manufacturer</key>
- <string>Apple Computer, Inc.</string>
- <key>g_location_id</key>
- <string>0xfd110000 / 3</string>
- <key>h_bus_power</key>
- <string>500</string>
- <key>j_bus_power_used</key>
- <string>100</string>
- </dict>
- </array>
- <key>_name</key>
- <string>hub_device</string>
- <key>a_product_id</key>
- <string>0x2513</string>
- <key>b_vendor_id</key>
- <string>0x0424 (SMSC)</string>
- <key>c_bcd_device</key>
- <string> b.b3</string>
- <key>e_device_speed</key>
- <string>high_speed</string>
- <key>g_location_id</key>
- <string>0xfd100000 / 2</string>
- <key>h_bus_power</key>
- <string>500</string>
- <key>j_bus_power_used</key>
- <string>2</string>
- </dict>
- </array>
- <key>_name</key>
- <string>EHCI Root Hub Simulation</string>
- <key>controller_location</key>
- <string>Built-in</string>
- <key>host_controller</key>
- <string>AppleUSBEHCI</string>
- <key>pci_device</key>
- <string>0x1c26 </string>
- <key>pci_revision</key>
- <string>0x0005 </string>
- <key>pci_vendor</key>
- <string>0x8086 </string>
- <key>usb_bus_number</key>
- <string>0xfd </string>
- </dict>
- </array>
- <key>_parentDataType</key>
- <string>SPHardwareDataType</string>
- <key>_properties</key>
- <dict>
- <key>_name</key>
- <dict>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_isOutlineColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>0</string>
- </dict>
- <key>bsd_name</key>
- <dict>
- <key>_order</key>
- <string>42</string>
- </dict>
- <key>c_bcd_device</key>
- <dict>
- <key>_suppressLocalization</key>
- <string>YES</string>
- </dict>
- <key>detachable_drive</key>
- <dict>
- <key>_order</key>
- <string>39</string>
- </dict>
- <key>device_manufacturer</key>
- <dict>
- <key>_order</key>
- <string>20</string>
- </dict>
- <key>device_model</key>
- <dict>
- <key>_order</key>
- <string>22</string>
- </dict>
- <key>device_revision</key>
- <dict>
- <key>_order</key>
- <string>24</string>
- </dict>
- <key>device_serial</key>
- <dict>
- <key>_order</key>
- <string>26</string>
- </dict>
- <key>disc_burning</key>
- <dict>
- <key>_order</key>
- <string>32</string>
- </dict>
- <key>file_system</key>
- <dict>
- <key>_order</key>
- <string>40</string>
- </dict>
- <key>free_space</key>
- <dict>
- <key>_deprecated</key>
- <true/>
- <key>_order</key>
- <string>12</string>
- </dict>
- <key>free_space_in_bytes</key>
- <dict>
- <key>_isByteSize</key>
- <true/>
- <key>_order</key>
- <string>12</string>
- </dict>
- <key>mount_point</key>
- <dict>
- <key>_order</key>
- <string>44</string>
- </dict>
- <key>optical_drive_type</key>
- <dict>
- <key>_order</key>
- <string>30</string>
- </dict>
- <key>optical_media_type</key>
- <dict>
- <key>_order</key>
- <string>31</string>
- </dict>
- <key>removable_media</key>
- <dict>
- <key>_order</key>
- <string>34</string>
- </dict>
- <key>size</key>
- <dict>
- <key>_deprecated</key>
- <true/>
- <key>_order</key>
- <string>10</string>
- </dict>
- <key>size_in_bytes</key>
- <dict>
- <key>_isByteSize</key>
- <true/>
- <key>_order</key>
- <string>10</string>
- </dict>
- <key>volumes_anonymous</key>
- <dict>
- <key>_detailLevel</key>
- <string>-1</string>
- <key>_maxDetailLevel</key>
- <string>-1</string>
- </dict>
- <key>writable</key>
- <dict>
- <key>_order</key>
- <string>36</string>
- </dict>
- </dict>
- <key>_timeStamp</key>
- <date>2012-12-04T21:30:25Z</date>
- <key>_versionInfo</key>
- <dict>
- <key>com.apple.SystemProfiler.SPUSBReporter</key>
- <string>74</string>
- </dict>
- </dict>
- <dict>
- <key>_SPCommandLineArguments</key>
- <array>
- <string>/usr/sbin/system_profiler</string>
- <string>-xml</string>
- <string>-detailLevel</string>
- <string>mini</string>
- <string>SPParallelATADataType</string>
- <string>SPApplicationsDataType</string>
- <string>SPAudioDataType</string>
- <string>SPBluetoothDataType</string>
- <string>SPCardReaderDataType</string>
- <string>SPComponentDataType</string>
- <string>SPDeveloperToolsDataType</string>
- <string>SPDiagnosticsDataType</string>
- <string>SPDiscBurningDataType</string>
- <string>SPEthernetDataType</string>
- <string>SPExtensionsDataType</string>
- <string>SPFibreChannelDataType</string>
- <string>SPFireWireDataType</string>
- <string>SPFirewallDataType</string>
- <string>SPFontsDataType</string>
- <string>SPFrameworksDataType</string>
- <string>SPDisplaysDataType</string>
- <string>SPHardwareRAIDDataType</string>
- <string>SPNetworkLocationDataType</string>
- <string>SPLogsDataType</string>
- <string>SPManagedClientDataType</string>
- <string>SPMemoryDataType</string>
- <string>SPModemDataType</string>
- <string>SPNetworkDataType</string>
- <string>SPPCIDataType</string>
- <string>SPParallelSCSIDataType</string>
- <string>SPPowerDataType</string>
- <string>SPPrefPaneDataType</string>
- <string>SPPrintersSoftwareDataType</string>
- <string>SPPrintersDataType</string>
- <string>SPConfigurationProfileDataType</string>
- <string>SPSASDataType</string>
- <string>SPSerialATADataType</string>
- <string>SPSoftwareDataType</string>
- <string>SPStartupItemDataType</string>
- <string>SPSyncServicesDataType</string>
- <string>SPThunderboltDataType</string>
- <string>SPUSBDataType</string>
- <string>SPUniversalAccessDataType</string>
- <string>SPNetworkVolumeDataType</string>
- <string>SPWWANDataType</string>
- <string>SPAirPortDataType</string>
- </array>
- <key>_SPCompletionInterval</key>
- <real>0.037244975566864014</real>
- <key>_dataType</key>
- <string>SPUniversalAccessDataType</string>
- <key>_detailLevel</key>
- <integer>1</integer>
- <key>_items</key>
- <array>
- <dict>
- <key>_name</key>
- <string>ua_info</string>
- <key>cursor_mag</key>
- <string>off</string>
- <key>display</key>
- <string>black_on_white</string>
- <key>flash_screen</key>
- <string>off</string>
- <key>mouse_keys</key>
- <string>off</string>
- <key>slow_keys</key>
- <string>off</string>
- <key>sticky_keys</key>
- <string>off</string>
- <key>voiceover</key>
- <string>off</string>
- <key>zoom</key>
- <string>off</string>
- <key>zoomMode</key>
- <string>zoom_full_screen</string>
- </dict>
- </array>
- <key>_parentDataType</key>
- <string>SPSoftwareDataType</string>
- <key>_properties</key>
- <dict>
- <key>cursor_mag</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>10</string>
- </dict>
- <key>display</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>20</string>
- </dict>
- <key>flash_screen</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>30</string>
- </dict>
- <key>mouse_keys</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>40</string>
- </dict>
- <key>slow_keys</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>50</string>
- </dict>
- <key>sticky_keys</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>60</string>
- </dict>
- <key>voiceover</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>70</string>
- </dict>
- <key>volumes_anonymous</key>
- <dict>
- <key>_detailLevel</key>
- <string>-1</string>
- <key>_maxDetailLevel</key>
- <string>-1</string>
- </dict>
- <key>zoom</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>80</string>
- </dict>
- <key>zoomMode</key>
- <dict>
- <key>_isColumn</key>
- <string>NO</string>
- <key>_order</key>
- <string>90</string>
- </dict>
- </dict>
- <key>_timeStamp</key>
- <date>2012-12-04T21:30:25Z</date>
- <key>_versionInfo</key>
- <dict>
- <key>com.apple.SystemProfiler.SPUAReporter</key>
- <string>2.0</string>
- </dict>
- </dict>
- <dict>
- <key>_SPCommandLineArguments</key>
- <array>
- <string>/usr/sbin/system_profiler</string>
- <string>-xml</string>
- <string>-detailLevel</string>
- <string>mini</string>
- <string>SPParallelATADataType</string>
- <string>SPApplicationsDataType</string>
- <string>SPAudioDataType</string>
- <string>SPBluetoothDataType</string>
- <string>SPCardReaderDataType</string>
- <string>SPComponentDataType</string>
- <string>SPDeveloperToolsDataType</string>
- <string>SPDiagnosticsDataType</string>
- <string>SPDiscBurningDataType</string>
- <string>SPEthernetDataType</string>
- <string>SPExtensionsDataType</string>
- <string>SPFibreChannelDataType</string>
- <string>SPFireWireDataType</string>
- <string>SPFirewallDataType</string>
- <string>SPFontsDataType</string>
- <string>SPFrameworksDataType</string>
- <string>SPDisplaysDataType</string>
- <string>SPHardwareRAIDDataType</string>
- <string>SPNetworkLocationDataType</string>
- <string>SPLogsDataType</string>
- <string>SPManagedClientDataType</string>
- <string>SPMemoryDataType</string>
- <string>SPModemDataType</string>
- <string>SPNetworkDataType</string>
- <string>SPPCIDataType</string>
- <string>SPParallelSCSIDataType</string>
- <string>SPPowerDataType</string>
- <string>SPPrefPaneDataType</string>
- <string>SPPrintersSoftwareDataType</string>
- <string>SPPrintersDataType</string>
- <string>SPConfigurationProfileDataType</string>
- <string>SPSASDataType</string>
- <string>SPSerialATADataType</string>
- <string>SPSoftwareDataType</string>
- <string>SPStartupItemDataType</string>
- <string>SPSyncServicesDataType</string>
- <string>SPThunderboltDataType</string>
- <string>SPUSBDataType</string>
- <string>SPUniversalAccessDataType</string>
- <string>SPNetworkVolumeDataType</string>
- <string>SPWWANDataType</string>
- <string>SPAirPortDataType</string>
- </array>
- <key>_SPCompletionInterval</key>
- <real>0.011069953441619873</real>
- <key>_dataType</key>
- <string>SPNetworkVolumeDataType</string>
- <key>_detailLevel</key>
- <integer>0</integer>
- <key>_items</key>
- <array>
- <dict>
- <key>_name</key>
- <string>net</string>
- <key>spnetworkvolume_automounted</key>
- <string>Yes</string>
- <key>spnetworkvolume_fsmtnonname</key>
- <string>/net</string>
- <key>spnetworkvolume_fstypename</key>
- <string>autofs</string>
- <key>spnetworkvolume_mntfromname</key>
- <string>map -hosts</string>
- </dict>
- <dict>
- <key>_name</key>
- <string>home</string>
- <key>spnetworkvolume_automounted</key>
- <string>Yes</string>
- <key>spnetworkvolume_fsmtnonname</key>
- <string>/home</string>
- <key>spnetworkvolume_fstypename</key>
- <string>autofs</string>
- <key>spnetworkvolume_mntfromname</key>
- <string>map auto_home</string>
- </dict>
- </array>
- <key>_parentDataType</key>
- <string>SPNetworkDataType</string>
- <key>_properties</key>
- <dict>
- <key>_name</key>
- <dict>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>0</string>
- </dict>
- <key>spnetworkvolume_fsmtnonname</key>
- <dict>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>2</string>
- </dict>
- <key>spnetworkvolume_fstypename</key>
- <dict>
- <key>_isColumn</key>
- <string>YES</string>
- <key>_order</key>
- <string>1</string>
- </dict>
- <key>spnetworkvolume_mntfromname</key>
- <dict>
- <key>_order</key>
- <string>3</string>
- </dict>
- <key>volumes_anonymous</key>
- <dict>
- <key>_detailLevel</key>
- <string>-1</string>
- <key>_maxDetailLevel</key>
- <string>-1</string>
- </dict>
- </dict>
- <key>_timeStamp</key>
- <date>2012-12-04T21:30:25Z</date>
- <key>_versionInfo</key>
- <dict>
- <key>com.apple.SystemProfiler.SPNetworkVolumeReporter</key>
- <string>733</string>
- </dict>
- </dict>
- <dict>
- <key>_SPCommandLineArguments</key>
- <array>
- <string>/usr/sbin/system_profiler</string>
- <string>-xml</string>
- <string>-detailLevel</string>
- <string>mini</string>
- <string>SPParallelATADataType</string>
- <string>SPApplicationsDataType</string>
- <string>SPAudioDataType</string>
- <string>SPBluetoothDataType</string>
- <string>SPCardReaderDataType</string>
- <string>SPComponentDataType</string>
- <string>SPDeveloperToolsDataType</string>
- <string>SPDiagnosticsDataType</string>
- <string>SPDiscBurningDataType</string>
- <string>SPEthernetDataType</string>
- <string>SPExtensionsDataType</string>
- <string>SPFibreChannelDataType</string>
- <string>SPFireWireDataType</string>
- <string>SPFirewallDataType</string>
- <string>SPFontsDataType</string>
- <string>SPFrameworksDataType</string>
- <string>SPDisplaysDataType</string>
- <string>SPHardwareRAIDDataType</string>
- <string>SPNetworkLocationDataType</string>
- <string>SPLogsDataType</string>
- <string>SPManagedClientDataType</string>
- <string>SPMemoryDataType</string>
- <string>SPModemDataType</string>
- <string>SPNetworkDataType</string>
- <string>SPPCIDataType</string>
- <string>SPParallelSCSIDataType</string>
- <string>SPPowerDataType</string>
- <string>SPPrefPaneDataType</string>
- <string>SPPrintersSoftwareDataType</string>
- <string>SPPrintersDataType</string>
- <string>SPConfigurationProfileDataType</string>
- <string>SPSASDataType</string>
- <string>SPSerialATADataType</string>
- <string>SPSoftwareDataType</string>
- <string>SPStartupItemDataType</string>
- <string>SPSyncServicesDataType</string>
- <string>SPThunderboltDataType</string>
- <string>SPUSBDataType</string>
- <string>SPUniversalAccessDataType</string>
- <string>SPNetworkVolumeDataType</string>
- <string>SPWWANDataType</string>
- <string>SPAirPortDataType</string>
- </array>
- <key>_SPCompletionInterval</key>
- <real>0.0040509700775146484</real>
- <key>_dataType</key>
- <string>SPWWANDataType</string>
- <key>_detailLevel</key>
- <integer>-1</integer>
- <key>_items</key>
- <array/>
- <key>_parentDataType</key>
- <string>SPNetworkDataType</string>
- <key>_properties</key>
- <dict>
- <key>spwwan_countryinfo</key>
- <dict>
- <key>_order</key>
- <string>80</string>
- </dict>
- <key>spwwan_driverinfo</key>
- <dict>
- <key>_order</key>
- <string>70</string>
- </dict>
- <key>spwwan_fwvers</key>
- <dict>
- <key>_order</key>
- <string>60</string>
- </dict>
- <key>spwwan_hwversion</key>
- <dict>
- <key>_order</key>
- <string>50</string>
- </dict>
- <key>spwwan_interfacetype</key>
- <dict>
- <key>_order</key>
- <string>20</string>
- </dict>
- <key>spwwan_model</key>
- <dict>
- <key>_order</key>
- <string>10</string>
- </dict>
- <key>spwwan_modemInUseBy</key>
- <dict>
- <key>_order</key>
- <string>90</string>
- </dict>
- <key>spwwan_modulation</key>
- <dict>
- <key>_order</key>
- <string>30</string>
- </dict>
- <key>spwwan_skuname</key>
- <dict>
- <key>_order</key>
- <string>40</string>
- </dict>
- <key>volumes_anonymous</key>
- <dict>
- <key>_detailLevel</key>
- <string>-1</string>
- <key>_maxDetailLevel</key>
- <string>-1</string>
- </dict>
- </dict>
- <key>_timeStamp</key>
- <date>2012-12-04T21:30:25Z</date>
- <key>_versionInfo</key>
- <dict>
- <key>com.apple.SystemProfiler.SPWWANReporter</key>
- <string>2.5.4</string>
- </dict>
- </dict>
- <dict>
- <key>_SPCommandLineArguments</key>
- <array>
- <string>/usr/sbin/system_profiler</string>
- <string>-xml</string>
- <string>-detailLevel</string>
- <string>mini</string>
- <string>SPParallelATADataType</string>
- <string>SPApplicationsDataType</string>
- <string>SPAudioDataType</string>
- <string>SPBluetoothDataType</string>
- <string>SPCardReaderDataType</string>
- <string>SPComponentDataType</string>
- <string>SPDeveloperToolsDataType</string>
- <string>SPDiagnosticsDataType</string>
- <string>SPDiscBurningDataType</string>
- <string>SPEthernetDataType</string>
- <string>SPExtensionsDataType</string>
- <string>SPFibreChannelDataType</string>
- <string>SPFireWireDataType</string>
- <string>SPFirewallDataType</string>
- <string>SPFontsDataType</string>
- <string>SPFrameworksDataType</string>
- <string>SPDisplaysDataType</string>
- <string>SPHardwareRAIDDataType</string>
- <string>SPNetworkLocationDataType</string>
- <string>SPLogsDataType</string>
- <string>SPManagedClientDataType</string>
- <string>SPMemoryDataType</string>
- <string>SPModemDataType</string>
- <string>SPNetworkDataType</string>
- <string>SPPCIDataType</string>
- <string>SPParallelSCSIDataType</string>
- <string>SPPowerDataType</string>
- <string>SPPrefPaneDataType</string>
- <string>SPPrintersSoftwareDataType</string>
- <string>SPPrintersDataType</string>
- <string>SPConfigurationProfileDataType</string>
- <string>SPSASDataType</string>
- <string>SPSerialATADataType</string>
- <string>SPSoftwareDataType</string>
- <string>SPStartupItemDataType</string>
- <string>SPSyncServicesDataType</string>
- <string>SPThunderboltDataType</string>
- <string>SPUSBDataType</string>
- <string>SPUniversalAccessDataType</string>
- <string>SPNetworkVolumeDataType</string>
- <string>SPWWANDataType</string>
- <string>SPAirPortDataType</string>
- </array>
- <key>_SPCompletionInterval</key>
- <real>3.2533250451087952</real>
- <key>_dataType</key>
- <string>SPAirPortDataType</string>
- <key>_detailLevel</key>
- <integer>-1</integer>
- <key>_items</key>
- <array>
- <dict>
- <key>spairport_airport_interfaces</key>
- <array>
- <dict>
- <key>_name</key>
- <string>en1</string>
- <key>spairport_caps_wow</key>
- <string>spairport_caps_supported</string>
- <key>spairport_status_information</key>
- <string>spairport_status_connected</string>
- <key>spairport_supported_channels</key>
- <array>
- <integer>1</integer>
- <integer>2</integer>
- <integer>3</integer>
- <integer>4</integer>
- <integer>5</integer>
- <integer>6</integer>
- <integer>7</integer>
- <integer>8</integer>
- <integer>9</integer>
- <integer>10</integer>
- <integer>11</integer>
- <integer>36</integer>
- <integer>40</integer>
- <integer>44</integer>
- <integer>48</integer>
- <integer>52</integer>
- <integer>56</integer>
- <integer>60</integer>
- <integer>64</integer>
- <integer>100</integer>
- <integer>104</integer>
- <integer>108</integer>
- <integer>112</integer>
- <integer>116</integer>
- <integer>120</integer>
- <integer>124</integer>
- <integer>128</integer>
- <integer>132</integer>
- <integer>136</integer>
- <integer>140</integer>
- <integer>149</integer>
- <integer>153</integer>
- <integer>157</integer>
- <integer>161</integer>
- <integer>165</integer>
- </array>
- <key>spairport_supported_phymodes</key>
- <string>802.11 a/b/g/n</string>
- <key>spairport_wireless_card_type</key>
- <string>spairport_wireless_card_type_airport_extreme (0x14E4, 0xD6)</string>
- <key>spairport_wireless_country_code</key>
- <string>US</string>
- <key>spairport_wireless_firmware_version</key>
- <string>Broadcom BCM43xx 1.0 (5.106.198.19.22)</string>
- <key>spairport_wireless_locale</key>
- <string>FCC</string>
- <key>spairport_wireless_mac_address</key>
- <string>68:a8:6d:50:89:64</string>
- </dict>
- </array>
- <key>spairport_software_information</key>
- <dict>
- <key>spairport_configd_version</key>
- <string>7.4.1 (741.1)</string>
- <key>spairport_corewlan_version</key>
- <string>2.1.3 (213.1)</string>
- <key>spairport_corewlankit_version</key>
- <string>1.0.3 (103.2)</string>
- <key>spairport_diagnostics_version</key>
- <string>1.0.2 (102)</string>
- <key>spairport_extra_version</key>
- <string>7.2 (720.1)</string>
- <key>spairport_family_version</key>
- <string>4.2 (420.3)</string>
- <key>spairport_profiler_version</key>
- <string>7.0 (700.3)</string>
- <key>spairport_utility_version</key>
- <string>6.1 (610.31)</string>
- </dict>
- </dict>
- </array>
- <key>_name</key>
- <string>_name</string>
- <key>_parentDataType</key>
- <string>SPNetworkDataType</string>
- <key>_properties</key>
- <dict>
- <key>spairport_caps_airdrop</key>
- <dict>
- <key>_order</key>
- <string>141</string>
- </dict>
- <key>spairport_caps_wow</key>
- <dict>
- <key>_order</key>
- <string>140</string>
- </dict>
- <key>spairport_configd_version</key>
- <dict>
- <key>_order</key>
- <string>30</string>
- </dict>
- <key>spairport_corewlan_version</key>
- <dict>
- <key>_order</key>
- <string>15</string>
- </dict>
- <key>spairport_corewlankit_version</key>
- <dict>
- <key>_order</key>
- <string>16</string>
- </dict>
- <key>spairport_diagnostics_version</key>
- <dict>
- <key>_order</key>
- <string>75</string>
- </dict>
- <key>spairport_extra_version</key>
- <dict>
- <key>_order</key>
- <string>20</string>
- </dict>
- <key>spairport_family_version</key>
- <dict>
- <key>_order</key>
- <string>70</string>
- </dict>
- <key>spairport_net_prefs_version</key>
- <dict>
- <key>_order</key>
- <string>50</string>
- </dict>
- <key>spairport_network_bssid</key>
- <dict>
- <key>_order</key>
- <string>180</string>
- </dict>
- <key>spairport_network_channel</key>
- <dict>
- <key>_order</key>
- <string>190</string>
- </dict>
- <key>spairport_network_country_code</key>
- <dict>
- <key>_order</key>
- <string>195</string>
- </dict>
- <key>spairport_network_mcs</key>
- <dict>
- <key>_order</key>
- <string>240</string>
- </dict>
- <key>spairport_network_phymode</key>
- <dict>
- <key>_order</key>
- <string>170</string>
- </dict>
- <key>spairport_network_rate</key>
- <dict>
- <key>_order</key>
- <string>230</string>
- </dict>
- <key>spairport_network_type</key>
- <dict>
- <key>_order</key>
- <string>200</string>
- </dict>
- <key>spairport_profiler_version</key>
- <dict>
- <key>_order</key>
- <string>40</string>
- </dict>
- <key>spairport_security_mode</key>
- <dict>
- <key>_order</key>
- <string>210</string>
- </dict>
- <key>spairport_signal_noise</key>
- <dict>
- <key>_order</key>
- <string>220</string>
- </dict>
- <key>spairport_software_information</key>
- <dict>
- <key>_order</key>
- <string>10</string>
- </dict>
- <key>spairport_status_information</key>
- <dict>
- <key>_order</key>
- <string>150</string>
- </dict>
- <key>spairport_supported_channels</key>
- <dict>
- <key>_order</key>
- <string>130</string>
- </dict>
- <key>spairport_supported_phymodes</key>
- <dict>
- <key>_order</key>
- <string>120</string>
- </dict>
- <key>spairport_utility_version</key>
- <dict>
- <key>_order</key>
- <string>79</string>
- </dict>
- <key>spairport_wireless_card_type</key>
- <dict>
- <key>_order</key>
- <string>80</string>
- </dict>
- <key>spairport_wireless_country_code</key>
- <dict>
- <key>_order</key>
- <string>110</string>
- </dict>
- <key>spairport_wireless_firmware_version</key>
- <dict>
- <key>_order</key>
- <string>90</string>
- </dict>
- <key>spairport_wireless_locale</key>
- <dict>
- <key>_order</key>
- <string>100</string>
- </dict>
- <key>spairport_wireless_mac_address</key>
- <dict>
- <key>_order</key>
- <string>95</string>
- </dict>
- <key>volumes_anonymous</key>
- <dict>
- <key>_detailLevel</key>
- <string>-1</string>
- <key>_maxDetailLevel</key>
- <string>-1</string>
- </dict>
- </dict>
- <key>_timeStamp</key>
- <date>2012-12-04T21:30:25Z</date>
- <key>_versionInfo</key>
- <dict>
- <key>com.apple.SystemProfiler.SPAirPortReporter</key>
- <string>700.3</string>
- </dict>
- </dict>
-</array>
-</plist>
-end_output
-
-Full = <<full_output
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
-<plist version="1.0">
-<array>
- <dict>
- <key>_SPCommandLineArguments</key>
- <array>
- <string>/usr/sbin/system_profiler</string>
- <string>-xml</string>
- <string>-detailLevel</string>
- <string>full</string>
- <string>SPHardwareDataType</string>
- </array>
- <key>_SPCompletionInterval</key>
- <real>0.0198250412940979</real>
- <key>_dataType</key>
- <string>SPHardwareDataType</string>
- <key>_detailLevel</key>
- <string>-2</string>
- <key>_items</key>
- <array>
- <dict>
- <key>MMM_entry</key>
- <dict>
- <key>MMM_state</key>
- <string>MMM_enabled</string>
- </dict>
- <key>SMC_version_system</key>
- <string>1.69f3</string>
- <key>_name</key>
- <string>hardware_overview</string>
- <key>boot_rom_version</key>
- <string>MBP81.0047.B27</string>
- <key>cpu_type</key>
- <string>Intel Core i7</string>
- <key>current_processor_speed</key>
- <string>2.2 GHz</string>
- <key>l2_cache_core</key>
- <string>256 KB</string>
- <key>l3_cache</key>
- <string>6 MB</string>
- <key>machine_model</key>
- <string>MacBookPro8,2</string>
- <key>machine_name</key>
- <string>MacBook Pro</string>
- <key>number_processors</key>
- <integer>4</integer>
- <key>packages</key>
- <integer>1</integer>
- <key>physical_memory</key>
- <string>8 GB</string>
- <key>platform_UUID</key>
- <string>DAB12AB34-1234-2222-12FE-1CA6A8F2CB91</string>
- <key>serial_number</key>
- <string>ABCDEFG12345</string>
- </dict>
- </array>
- <key>_parentDataType</key>
- <string>SPRootDataType</string>
- <key>_properties</key>
- <dict>
- <key>LOM_revision</key>
- <dict>
- <key>_order</key>
- <string>85</string>
- </dict>
- <key>MMM_state</key>
- <dict>
- <key>_order</key>
- <string>70</string>
- </dict>
- <key>SMC_version_other</key>
- <dict>
- <key>_order</key>
- <string>82</string>
- </dict>
- <key>SMC_version_riser</key>
- <dict>
- <key>_order</key>
- <string>81</string>
- </dict>
- <key>SMC_version_system</key>
- <dict>
- <key>_order</key>
- <string>80</string>
- <key>_suppressLocalization</key>
- <string>YES</string>
- </dict>
- <key>apple_rom_info</key>
- <dict>
- <key>_order</key>
- <string>53</string>
- </dict>
- <key>boot_rom_release_date</key>
- <dict>
- <key>_order</key>
- <string>52</string>
- </dict>
- <key>boot_rom_vendor</key>
- <dict>
- <key>_order</key>
- <string>50</string>
- </dict>
- <key>boot_rom_version</key>
- <dict>
- <key>_order</key>
- <string>51</string>
- </dict>
- <key>bus_speed</key>
- <dict>
- <key>_order</key>
- <string>45</string>
- </dict>
- <key>cores_per_package</key>
- <dict>
- <key>_order</key>
- <string>24</string>
- </dict>
- <key>cpu_interconnect_speed</key>
- <dict>
- <key>_order</key>
- <string>46</string>
- </dict>
- <key>cpu_type</key>
- <dict>
- <key>_order</key>
- <string>15</string>
- </dict>
- <key>current_processor_speed</key>
- <dict>
- <key>_order</key>
- <string>17</string>
- </dict>
- <key>l2_cache</key>
- <dict>
- <key>_order</key>
- <string>26</string>
- </dict>
- <key>l2_cache_core</key>
- <dict>
- <key>_order</key>
- <string>26</string>
- </dict>
- <key>l2_cache_share</key>
- <dict>
- <key>_order</key>
- <string>26</string>
- </dict>
- <key>l2_cache_size</key>
- <dict>
- <key>_order</key>
- <string>26</string>
- </dict>
- <key>l3_cache</key>
- <dict>
- <key>_order</key>
- <string>27</string>
- </dict>
- <key>l3_cache_processor</key>
- <dict>
- <key>_order</key>
- <string>27</string>
- </dict>
- <key>l3_cache_size</key>
- <dict>
- <key>_order</key>
- <string>27</string>
- </dict>
- <key>machine_model</key>
- <dict>
- <key>_order</key>
- <string>11</string>
- </dict>
- <key>machine_name</key>
- <dict>
- <key>_order</key>
- <string>10</string>
- </dict>
- <key>maximum_processor_speed</key>
- <dict>
- <key>_order</key>
- <string>19</string>
- </dict>
- <key>minimum_processor_speed</key>
- <dict>
- <key>_order</key>
- <string>18</string>
- </dict>
- <key>number_cpus</key>
- <dict>
- <key>_order</key>
- <string>20</string>
- </dict>
- <key>number_processors</key>
- <dict>
- <key>_order</key>
- <string>22</string>
- </dict>
- <key>packages</key>
- <dict>
- <key>_order</key>
- <string>20</string>
- </dict>
- <key>physical_memory</key>
- <dict>
- <key>_order</key>
- <string>40</string>
- </dict>
- <key>platform_UUID</key>
- <dict>
- <key>_detailLevel</key>
- <string>0</string>
- <key>_order</key>
- <string>98</string>
- </dict>
- <key>platform_cpu_features</key>
- <dict>
- <key>_order</key>
- <string>30</string>
- </dict>
- <key>platform_cpu_htt</key>
- <dict>
- <key>_order</key>
- <string>28</string>
- </dict>
- <key>platform_cpu_vendor</key>
- <dict>
- <key>_order</key>
- <string>12</string>
- </dict>
- <key>platform_manufacturer</key>
- <dict>
- <key>_order</key>
- <string>4</string>
- </dict>
- <key>platform_product_name</key>
- <dict>
- <key>_order</key>
- <string>2</string>
- </dict>
- <key>platform_version</key>
- <dict>
- <key>_order</key>
- <string>6</string>
- </dict>
- <key>riser_serial_number</key>
- <dict>
- <key>_detailLevel</key>
- <string>0</string>
- <key>_order</key>
- <string>92</string>
- </dict>
- <key>sales_order_number</key>
- <dict>
- <key>_detailLevel</key>
- <string>0</string>
- <key>_order</key>
- <string>95</string>
- </dict>
- <key>serial_number</key>
- <dict>
- <key>_detailLevel</key>
- <string>0</string>
- <key>_order</key>
- <string>90</string>
- </dict>
- <key>volumes</key>
- <dict>
- <key>_detailLevel</key>
- <string>0</string>
- </dict>
- </dict>
- <key>_timeStamp</key>
- <date>2012-12-04T21:37:16Z</date>
- <key>_versionInfo</key>
- <dict>
- <key>com.apple.SystemProfiler.SPPlatformReporter</key>
- <string>1440</string>
- </dict>
- </dict>
-</array>
-</plist>
-full_output
-
-end
diff --git a/spec/unit/plugins/darwin/system_profiler_spec.rb b/spec/unit/plugins/darwin/system_profiler_spec.rb
deleted file mode 100644
index 366d2ec7..00000000
--- a/spec/unit/plugins/darwin/system_profiler_spec.rb
+++ /dev/null
@@ -1,40 +0,0 @@
-#
-# Author:: Paul Mooring (<paul@chef.io>)
-# Copyright:: Copyright (c) 2012-2016 Chef Software, Inc.
-# License:: Apache License, Version 2.0
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-
-require_relative "../../../spec_helper.rb"
-require_relative "system_profiler_output.rb"
-
-describe Ohai::System, "Darwin system_profiler plugin", :unix_only do
- before(:each) do
- @plugin = get_plugin("darwin/system_profiler")
- allow(@plugin).to receive(:collect_os).and_return(:darwin)
- end
-
- it "should return the right serial number" do
- mini_cmd = "system_profiler -xml -detailLevel mini SPParallelATAData SPAudioData SPBluetoothData"
- mini_cmd += " SPCardReaderData SPDiagnosticsData SPDiscBurningData SPEthernetData SPFibreChannelData"
- mini_cmd += " SPFireWireData SPDisplaysData SPHardwareRAIDData SPMemoryData SPModemData SPNetworkData"
- mini_cmd += " SPPCIData SPParallelSCSIData SPPrintersSoftwareData SPPrintersData SPSASData SPSerialATAData"
- mini_cmd += " SPSoftwareData SPThunderboltData SPUSBData SPWWANData SPAirPortData"
- full_cmd = "system_profiler -xml -detailLevel full SPHardwareDataType"
- allow(@plugin).to receive(:shell_out).with(full_cmd).and_return(mock_shell_out(0, SystemProfilerOutput::Full, ""))
- allow(@plugin).to receive(:shell_out).with(mini_cmd).and_return(mock_shell_out(0, SystemProfilerOutput::Mini, ""))
- @plugin.run
- expect(@plugin["system_profile"][18]["_items"][0]["serial_number"]).to eq("ABCDEFG12345")
- end
-end