Working with Binary.

I need to check if there is an easier way of doing this than the one I'm thinking.
If I have an input of 8 binary bits (i.e. 10111001), I need to check if each individual bits are high "1" or low "0". My initial thought was to start masking individual bits but its becomming messy to start masking individual bits (i'm ending up with 8 "AND's") and a rather big Case Structure.
Would anyone have a better (CLEANER) idea?
Thanks
Kas
Solved!
Go to Solution.

Do you want to take a diiferent action for each bit is true? If so, you can simply wire a U8 numeric to a Number to Boolean Array. Wire that to a for loop with a case statement inside. If not, there would be a second case statement inside both the true and false cases and these would be wired to the iteration terminal. You would create cases 0-7. Wiring the outermost case structure to the iteration termial with a true/false inside each of those will do the same thing.
Attachments:
check bits.vi ‏7 KB

Similar Messages

  • Proper work with binary data

    I know that usually all manipulations with CF data are
    processed NOT in binary mode.
    However, how to make the following then:
    I create merger component, that would merge several files
    together and unmerge specific file from binary field. Client asked
    NOT to use zip, but make things simpler and faster and just merge
    several files together.
    So i've decided to use such format inside binary field
    [file_1_name, 256bytes][file_1_size, 4 bytes][file_1_body,
    <= 2^32 bytes]
    [file_N_name, 256bytes][file_N_size, 4 bytes][file_N_body,
    <= 2^32 bytes]
    So - i need to be able to write EXACTLY N bytes into some
    field. How do I accomplish this in CF? Indeed internally it seems
    to work with strings and makes binary conversion only in the end,
    with something like ToBinary() function...
    P.S. As 'savour' variant, I could try zip compression with
    level=0 :) Hope it's VERY fast.
    I will try to persuade client NOT to use something like this,
    but zip. However, I'd really like to hear the answer to my question
    - for understanding.

    Hi
    Not sure you can modify the server names but u can remove non used entries in p986115

  • Problem working with binary file

    Hi,
    I have two seperate programs.
    The first one:
    *Reads a  PDF file from disk via InputStreamReader.read(char[])
    *converts it to s String [String.valueOf(char[])]
    connects to other program using Socket and writes the string's bytes to the OutputStream of the Socket (socket.getOutputStream().write(string.getBytes);)
    Second one:
    *Reads the file from socket via BufferedReader.read(char[])
    *converts it to a string via String.valueOf()
    *writes it to a file using FileOutputStream.write(content.getBytes())
    The problem is:
    If the secong program is running on Win2K,the PDF file is opened with no errors but the pages are all blank.But everything is OK if it is running on Unix(IBM AIX java ver 1.3.1)
    First program is always on Win2K.
    I compared the win2k and unix PDF files,some nonprintable chars are displayed as ? in the win2K one,
    what can be the reason? why does the same problem not occur on Unix?
    Some problems are mentioned on web/forums but these are related with browsers or servlets which I am not using in this case.
    Thanks in advance,

    PDF is a binary file.
    You're doing 1 of 2 possible things wrong....
    1) trying to read a binary file as a text file ( string )
    You can't "just read" a binary file as a text file to extra the strings.
    You need to get the binary format, and parse it's format properly to extract the
    string data.
    2) trying to send a binary file across a socket as a string
    You need to read the PDF file as an array of bytes and send them across
    the socket as such. Trying to convert binary data to characters / strings
    is wrong. characters get converted to and from native encoding schemes to
    unicode.... among other problems.
    regards,
    Owen

  • Working with Binary data from the Gpib Read Function

    I m using the gpib read command to recieve data from a gpib instrument. I already know the form of the binary data being sent back. I have programmed it in matlab before. I am haveing trouble parseing out the binary data I recieve. the basic form of the data is
    #I immediately followed by 401 64 bit ieee floating point numbers. When I programmed this in matlab the code I used was of the form:
    [a,count,msg]=fread(g2,2,'int8');
    [a,count,msg]=fread(g2,401,'float64');
    for those that don't know matlab code the command reads data from the instrument pointed to by the g2 handle. the number after the g2 above speicifies the number of values to read. And the last part the string in qoute specifies the way the binary data
    is to be interepeted. the output arguments a count and msg are
    a-your data
    count-number of items succesfully read in
    msg-error message
    In the above two lines I use the variable a twice to capture the data. The first time a is set equal to '#I' everything inside the qoutes. The second time a is set equal to the actual data, in this case 401 64bit floating point numbers. I m convince that the flatten to string and unflatten from string function are the set meant to accomplish this task. But I haven't been able to find a good example of how to use these functions. Especially with an array.
    Can some one please help me?
    Thanks
    Scourched

    I'm pretty sure what you're describing is a simple typecast in LabVIEW. You will want to strip off the #I first, using string manipulation functions. Then, you can wire the string into a "typecast" VI, and wire a double precision float constant to the top connector of the typecast (this tells the VI that you expect a 64 bit float output) and then you can read your resulting array of double precision floats on the output of the typecast. The typecast VI is found in All Functions >> Advanced >> Data Manipulation.
    I've attached an example in LabVIEW 7.0 and also 7.1 format.
    Scott B.
    Applications Engineer
    National Instruments
    Attachments:
    typecast.vi ‏11 KB
    typecast.vi ‏13 KB

  • Working with binary files

    I want to save in the MIME Repository an image, I already did it using this code:
    DATA: lr_mime_rep TYPE REF TO if_mr_api.
    DATA: lv_filename TYPE string.
    DATA: lv_path TYPE string.
    DATA: lv_fullpath TYPE string.
    DATA: lv_content TYPE xstring.
    DATA: lv_length TYPE i.
    DATA: lv_rc TYPE sy-subrc.
    DATA: lt_file TYPE filetable.
    DATA: ls_file LIKE LINE OF lt_file.
    DATA: lt_data TYPE STANDARD TABLE OF x255.
    PARAMETERS: p_path TYPE string
    DEFAULT 'SAP/PUBLIC/Test.jpg'. "<<-- Mime path, save to path
    cl_gui_frontend_services=>file_open_dialog(
    CHANGING
    file_table = lt_file " Table Holding Selected Files
    rc = lv_rc ). " Return Code, Number of Files or -1 If Error Occurred
    READ TABLE lt_file INTO ls_file INDEX 1.
    IF sy-subrc = 0.
    lv_filename = ls_file-filename.
    ENDIF.
    cl_gui_frontend_services=>gui_upload(
    EXPORTING
    filename = lv_filename " Name of file
    filetype = 'BIN'
    IMPORTING
    filelength = lv_length " File length
    CHANGING
    data_tab = lt_data " Transfer table for file contents
    EXCEPTIONS
    OTHERS = 19 ).
    CALL FUNCTION 'SCMS_BINARY_TO_XSTRING'
    EXPORTING
    input_length = lv_length
    * first_line = 0
    * last_line = 0
    IMPORTING
    buffer = lv_content
    TABLES
    binary_tab = lt_data
    EXCEPTIONS
    failed = 1
    OTHERS = 2.
    lr_mime_rep = cl_mime_repository_api=>if_mr_api~get_api( ).
    lr_mime_rep->put(
    EXPORTING
    i_url = p_path
    i_content = lv_content
    EXCEPTIONS
    parameter_missing = 1
    error_occured = 2
    cancelled = 3
    permission_failure = 4
    data_inconsistency = 5
    new_loio_already_exists = 6
    is_folder = 7
    OTHERS = 8 ).
    But I want to directly fill the  lt_data with a string that holds the binary code of the image, I mean
    I don't have the image, only the binary code, I try to do it uploading the .bin file also in .txt format, and
    I don't get it :S ,   how can I achieve this?
    Thanks in advance!

    I´m not sure if Im understanding what you´re saying... If you dont describe the path, then the file will be created in the project folder, right?
    check this program out
    it doesnt specifies a path but if you try run it the file will be created in the project folder. ¨
    import java.io.*;
    import java.util.*;
    /**  Write a primitive type data array to a binary file.**/
    public class BinOutputFileApp
      public static void main (String arg[]) {
        Random ran = new Random ();
        // Create an integer array and a double array.
        int    [] i_data = new int[15];
        double [] d_data = new double[15];
        // and fill them
        for  (int i=0; i < i_data.length; i++) {
          i_data[i] = i;
          d_data[i] = ran.nextDouble () * 10.0;
        File file = null;
        // Get the output file name from the argument line.
        if (arg.length > 0) file = new File (arg[0]);
        // or use a default file name
        if (file == null) {
            System.out.println ("Default: numerical.dat");
            file = new File ("numerical.dat");
        // Now write the data array to the file.
        try {
          // Create an output stream to the file.
          FileOutputStream file_output = new FileOutputStream (file);
          // Wrap the FileOutputStream with a DataOutputStream
          DataOutputStream data_out = new DataOutputStream (file_output);
          // Write the data to the file in an integer/double pair
          for (int i=0; i < i_data.length; i++) {
              data_out.writeInt (i_data);
    data_out.writeDouble (d_data[i]);
    // Close file when finished with it..
    file_output.close ();
    catch (IOException e) {
    System.out.println ("IO exception = " + e );
    } // main
    } // class BinOutputFileApp

  • Does the new command 2 binary format work with Apple Push Notification Service? I receive an invalid response status code of 128.

    Does the new command 2 binary format work with Apple Push Notification Service? I am sending 2 messages with the same payload to 2 different devices. None of the messages display on either of the devices. It seems that at least 3 should have been displayed. For my first device, I received a response with an invalid status code of 128 and the message identifier is 2 indicating that the first message was OK. However no message was displayed on the phone. For the second device, I did not receive any error response, but no message was displayed on the device.
    Does ANS perform any validation on the message identifier? The Local and Push Notification Programmin Guide says the message identifier is:
    An arbitrary, opaque value that identifies this notification. This identifier is used for reporting errors to your server.
    I know that the device tokens are valid because the same tokens work when I use the legacy basic or enhanced formats. The phones display the messages correctly when I send to ANS using the old ANS message format.
    Here is the data and the response:
    Sent to ANS: 2 0 0 0 158 1 0 32 120 107 166 143 171 157 143 169 70 135 12 135 246 142 64 224 244 44 116 4 154 65 115 192 206 28 189 56 174 0 172 16 2 0 23 123 34 97 112 115 34 58 123 34 97 108 101 114 116 34 58 34 65 66 67 34 125 125 3 0 4 0 0 0 2 4 0 4 83 7 119 141 5 0 1 5 1 0 32 120 107 166 143 171 157 143 169 70 135 12 135 246 142 64 224 244 44 116 4 154 65 115 192 206 28 189 56 174 0 172 16 2 0 23 123 34 97 112 115 34 58 123 34 97 108 101 114 116 34 58 34 65 66 67 34 125 125 3 0 4 0 0 0 3 4 0 4 83 7 119 141 5 0 1 5
    ANS returned an error: 8 128 0 0 0 2
    Sent to ANS: 2 0 0 0 158 1 0 32 4 239 182 26 13 237 170 136 41 243 181 57 120 208 135 19 101 102 212 70 55 244 251 255 160 125 82 9 10 143 72 17 2 0 23 123 34 97 112 115 34 58 123 34 97 108 101 114 116 34 58 34 65 66 67 34 125 125 3 0 4 0 0 0 5 4 0 4 83 7 119 147 5 0 1 5 1 0 32 4 239 182 26 13 237 170 136 41 243 181 57 120 208 135 19 101 102 212 70 55 244 251 255 160 125 82 9 10 143 72 17 2 0 23 123 34 97 112 115 34 58 123 34 97 108 101 114 116 34 58 34 65 66 67 34 125 125 3 0 4 0 0 0 6 4 0 4 83 7 119 147 5 0 1 5
    ANS did not return a response.

    Hello, can you please help me ?
    You specified sample payload here:
    TerrellFromLockhart wrote:
    I finally got this to work. The picture in the Programming Guide is very confusing. The solution was to prefix every message's frame data with command 2 and that messsage's frame data length. Here is a sample:
    ANS frame: 2 0 0 0 77 1 0 32 120 107 166 143 171 157 143 169 70 135 12 135 246 142 64 224 244 44 116 4 154 65 115 192 206 28 189 56 174 0 172 16 2 0 21 123 34 97 112 115 34 58 123 34 97 108 101 114 116 34 58 34 63 34 125 125 3 0 4 0 0 0 2 4 0 4 83 7 199 195 5 0 1 10 2 0 0 0 77 1 0 32 120 107 166 143 171 157 143 169 70 135 12 135 246 142 64 224 244 44 116 4 154 65 115 192 206 28 189 56 174 0 172 16 2 0 21 123 34 97 112 115 34 58 123 34 97 108 101 114 116 34 58 34 63 34 125 125 3 0 4 0 0 0 3 4 0 4 83 7 199 195 5 0 1 10 2 0 0 0 77 1 0 32 120 107 166 143 171 157 143 169 70 135 12 135 246 142 64 224 244 44 116 4 154 65 115 192 206 28 189 56 174 0 172 16 2 0 21 123 34 97 112 115 34 58 123 34 97 108 101 114 116 34 58 34 63 34 125 125 3 0 4 0 0 0 4 4 0 4 83 7 199 195 5 0 1 10
    About to read response at Thu Feb 20 15:40:20 CST 2014
    SocketTimeoutException
    2 - is clearly command
    0 0 0 77 - frame length
    1 - item Id
    what's 0 32 ? According to this page https://developer.apple.com/library/ios/documentation/NetworkingInternet/Concept ual/RemoteNotificationsPG/Chapters/Commu…
    Item id  should be followed by item length. But item length is obviously greater than 32 because device token's length is 32. Can you please explain why 0 32 were used? and do you have any insight on item id meaning ?

  • [SOLVED] SQLite not working with PHP

    For reasons unknown, I cannot get PHP to work properly with SQLite. I have uncommented the "extension=sqlite.so" in /etc/php/php.ini, ensured that PHP's configuration was being loaded from said file, and made sure PHP was working fine with my server of choice (lighttpd). Unfortunately, it doesn't seem to work, as evidenced by
    Fatal error: Call to undefined function sqlite_open() in test.php on line x
    Which is what PHP spits at me. I've checked lighty's logs and nothing's wrong. PHP's set to send to syslog, so I'm not sure where I could check on that. Here is a quick look at PHP's setup.
    My /etc/php/php.ini:
    [PHP]
    ; About php.ini ;
    ; This file controls many aspects of PHP's behavior. In order for PHP to
    ; read it, it must be named 'php.ini'. PHP looks for it in the current
    ; working directory, in the path designated by the environment variable
    ; PHPRC, and in the path that was defined in compile time (in that order).
    ; The path in which the php.ini file is looked for can be overridden using
    ; the -c argument in command line mode.
    ; The syntax of the file is extremely simple. Whitespace and Lines
    ; beginning with a semicolon are silently ignored (as you probably guessed).
    ; Section headers (e.g. [Foo]) are also silently ignored, even though
    ; they might mean something in the future.
    ; Directives are specified using the following syntax:
    ; directive = value
    ; Directive names are *case sensitive* - foo=bar is different from FOO=bar.
    ; The value can be a string, a number, a PHP constant (e.g. E_ALL or M_PI), one
    ; of the INI constants (On, Off, True, False, Yes, No and None) or an expression
    ; (e.g. E_ALL & ~E_NOTICE), or a quoted string ("foo").
    ; Expressions in the INI file are limited to bitwise operators and parentheses:
    ; | bitwise OR
    ; & bitwise AND
    ; ~ bitwise NOT
    ; ! boolean NOT
    ; Boolean flags can be turned on using the values 1, On, True or Yes.
    ; They can be turned off using the values 0, Off, False or No.
    ; An empty string can be denoted by simply not writing anything after the equal
    ; sign, or by using the None keyword:
    ; foo = ; sets foo to an empty string
    ; foo = none ; sets foo to an empty string
    ; foo = "none" ; sets foo to the string 'none'
    ; If you use constants in your value, and these constants belong to a
    ; dynamically loaded extension (either a PHP extension or a Zend extension),
    ; you may only use these constants *after* the line that loads the extension.
    ; About this file ;
    ; This is the recommended, PHP 5-style version of the php.ini-dist file. It
    ; sets some non standard settings, that make PHP more efficient, more secure,
    ; and encourage cleaner coding.
    ; The price is that with these settings, PHP may be incompatible with some
    ; applications, and sometimes, more difficult to develop with. Using this
    ; file is warmly recommended for production sites. As all of the changes from
    ; the standard settings are thoroughly documented, you can go over each one,
    ; and decide whether you want to use it or not.
    ; For general information about the php.ini file, please consult the php.ini-dist
    ; file, included in your PHP distribution.
    ; This file is different from the php.ini-dist file in the fact that it features
    ; different values for several directives, in order to improve performance, while
    ; possibly breaking compatibility with the standard out-of-the-box behavior of
    ; PHP. Please make sure you read what's different, and modify your scripts
    ; accordingly, if you decide to use this file instead.
    ; - register_long_arrays = Off [Performance]
    ; Disables registration of the older (and deprecated) long predefined array
    ; variables ($HTTP_*_VARS). Instead, use the superglobals that were
    ; introduced in PHP 4.1.0
    ; - display_errors = Off [Security]
    ; With this directive set to off, errors that occur during the execution of
    ; scripts will no longer be displayed as a part of the script output, and thus,
    ; will no longer be exposed to remote users. With some errors, the error message
    ; content may expose information about your script, web server, or database
    ; server that may be exploitable for hacking. Production sites should have this
    ; directive set to off.
    ; - log_errors = On [Security]
    ; This directive complements the above one. Any errors that occur during the
    ; execution of your script will be logged (typically, to your server's error log,
    ; but can be configured in several ways). Along with setting display_errors to off,
    ; this setup gives you the ability to fully understand what may have gone wrong,
    ; without exposing any sensitive information to remote users.
    ; - output_buffering = 4096 [Performance]
    ; Set a 4KB output buffer. Enabling output buffering typically results in less
    ; writes, and sometimes less packets sent on the wire, which can often lead to
    ; better performance. The gain this directive actually yields greatly depends
    ; on which Web server you're working with, and what kind of scripts you're using.
    ; - register_argc_argv = Off [Performance]
    ; Disables registration of the somewhat redundant $argv and $argc global
    ; variables.
    ; - magic_quotes_gpc = Off [Performance]
    ; Input data is no longer escaped with slashes so that it can be sent into
    ; SQL databases without further manipulation. Instead, you should use the
    ; database vendor specific escape string function on each input element you
    ; wish to send to a database.
    ; - variables_order = "GPCS" [Performance]
    ; The environment variables are not hashed into the $_ENV. To access
    ; environment variables, you can use getenv() instead.
    ; - error_reporting = E_ALL [Code Cleanliness, Security(?)]
    ; By default, PHP suppresses errors of type E_NOTICE. These error messages
    ; are emitted for non-critical errors, but that could be a symptom of a bigger
    ; problem. Most notably, this will cause error messages about the use
    ; of uninitialized variables to be displayed.
    ; - allow_call_time_pass_reference = Off [Code cleanliness]
    ; It's not possible to decide to force a variable to be passed by reference
    ; when calling a function. The PHP 4 style to do this is by making the
    ; function require the relevant argument by reference.
    ; - short_open_tag = Off [Portability]
    ; Using short tags is discouraged when developing code meant for redistribution
    ; since short tags may not be supported on the target server.
    ; Language Options ;
    ; Enable the PHP scripting language engine under Apache.
    engine = On
    ; Enable compatibility mode with Zend Engine 1 (PHP 4.x)
    zend.ze1_compatibility_mode = Off
    ; Allow the <? tag. Otherwise, only <?php and <script> tags are recognized.
    ; NOTE: Using short tags should be avoided when developing applications or
    ; libraries that are meant for redistribution, or deployment on PHP
    ; servers which are not under your control, because short tags may not
    ; be supported on the target server. For portable, redistributable code,
    ; be sure not to use short tags.
    short_open_tag = Off
    ; Allow ASP-style <% %> tags.
    asp_tags = Off
    ; The number of significant digits displayed in floating point numbers.
    precision = 14
    ; Enforce year 2000 compliance (will cause problems with non-compliant browsers)
    y2k_compliance = On
    ; Output buffering allows you to send header lines (including cookies) even
    ; after you send body content, at the price of slowing PHP's output layer a
    ; bit. You can enable output buffering during runtime by calling the output
    ; buffering functions. You can also enable output buffering for all files by
    ; setting this directive to On. If you wish to limit the size of the buffer
    ; to a certain size - you can use a maximum number of bytes instead of 'On', as
    ; a value for this directive (e.g., output_buffering=4096).
    output_buffering = 4096
    ; You can redirect all of the output of your scripts to a function. For
    ; example, if you set output_handler to "mb_output_handler", character
    ; encoding will be transparently converted to the specified encoding.
    ; Setting any output handler automatically turns on output buffering.
    ; Note: People who wrote portable scripts should not depend on this ini
    ; directive. Instead, explicitly set the output handler using ob_start().
    ; Using this ini directive may cause problems unless you know what script
    ; is doing.
    ; Note: You cannot use both "mb_output_handler" with "ob_iconv_handler"
    ; and you cannot use both "ob_gzhandler" and "zlib.output_compression".
    ; Note: output_handler must be empty if this is set 'On' !!!!
    ; Instead you must use zlib.output_handler.
    ;output_handler =
    ; Transparent output compression using the zlib library
    ; Valid values for this option are 'off', 'on', or a specific buffer size
    ; to be used for compression (default is 4KB)
    ; Note: Resulting chunk size may vary due to nature of compression. PHP
    ; outputs chunks that are few hundreds bytes each as a result of
    ; compression. If you prefer a larger chunk size for better
    ; performance, enable output_buffering in addition.
    ; Note: You need to use zlib.output_handler instead of the standard
    ; output_handler, or otherwise the output will be corrupted.
    zlib.output_compression = Off
    ;zlib.output_compression_level = -1
    ; You cannot specify additional output handlers if zlib.output_compression
    ; is activated here. This setting does the same as output_handler but in
    ; a different order.
    ;zlib.output_handler =
    ; Implicit flush tells PHP to tell the output layer to flush itself
    ; automatically after every output block. This is equivalent to calling the
    ; PHP function flush() after each and every call to print() or echo() and each
    ; and every HTML block. Turning this option on has serious performance
    ; implications and is generally recommended for debugging purposes only.
    implicit_flush = Off
    ; The unserialize callback function will be called (with the undefined class'
    ; name as parameter), if the unserializer finds an undefined class
    ; which should be instantiated.
    ; A warning appears if the specified function is not defined, or if the
    ; function doesn't include/implement the missing class.
    ; So only set this entry, if you really want to implement such a
    ; callback-function.
    unserialize_callback_func=
    ; When floats & doubles are serialized store serialize_precision significant
    ; digits after the floating point. The default value ensures that when floats
    ; are decoded with unserialize, the data will remain the same.
    serialize_precision = 100
    ; Whether to enable the ability to force arguments to be passed by reference
    ; at function call time. This method is deprecated and is likely to be
    ; unsupported in future versions of PHP/Zend. The encouraged method of
    ; specifying which arguments should be passed by reference is in the function
    ; declaration. You're encouraged to try and turn this option Off and make
    ; sure your scripts work properly with it in order to ensure they will work
    ; with future versions of the language (you will receive a warning each time
    ; you use this feature, and the argument will be passed by value instead of by
    ; reference).
    allow_call_time_pass_reference = Off
    ; Safe Mode
    safe_mode = Off
    ; By default, Safe Mode does a UID compare check when
    ; opening files. If you want to relax this to a GID compare,
    ; then turn on safe_mode_gid.
    safe_mode_gid = Off
    ; When safe_mode is on, UID/GID checks are bypassed when
    ; including files from this directory and its subdirectories.
    ; (directory must also be in include_path or full path must
    ; be used when including)
    safe_mode_include_dir =
    ; When safe_mode is on, only executables located in the safe_mode_exec_dir
    ; will be allowed to be executed via the exec family of functions.
    safe_mode_exec_dir =
    ; Setting certain environment variables may be a potential security breach.
    ; This directive contains a comma-delimited list of prefixes. In Safe Mode,
    ; the user may only alter environment variables whose names begin with the
    ; prefixes supplied here. By default, users will only be able to set
    ; environment variables that begin with PHP_ (e.g. PHP_FOO=BAR).
    ; Note: If this directive is empty, PHP will let the user modify ANY
    ; environment variable!
    safe_mode_allowed_env_vars = PHP_
    ; This directive contains a comma-delimited list of environment variables that
    ; the end user won't be able to change using putenv(). These variables will be
    ; protected even if safe_mode_allowed_env_vars is set to allow to change them.
    safe_mode_protected_env_vars = LD_LIBRARY_PATH
    ; open_basedir, if set, limits all file operations to the defined directory
    ; and below. This directive makes most sense if used in a per-directory
    ; or per-virtualhost web server configuration file. This directive is
    ; *NOT* affected by whether Safe Mode is turned On or Off.
    open_basedir = /srv/http/:/home/:/tmp/:/usr/share/pear/
    ; This directive allows you to disable certain functions for security reasons.
    ; It receives a comma-delimited list of function names. This directive is
    ; *NOT* affected by whether Safe Mode is turned On or Off.
    disable_functions =
    ; This directive allows you to disable certain classes for security reasons.
    ; It receives a comma-delimited list of class names. This directive is
    ; *NOT* affected by whether Safe Mode is turned On or Off.
    disable_classes =
    ; Colors for Syntax Highlighting mode. Anything that's acceptable in
    ; <span style="color: ???????"> would work.
    ;highlight.string = #DD0000
    ;highlight.comment = #FF9900
    ;highlight.keyword = #007700
    ;highlight.bg = #FFFFFF
    ;highlight.default = #0000BB
    ;highlight.html = #000000
    ; If enabled, the request will be allowed to complete even if the user aborts
    ; the request. Consider enabling it if executing long request, which may end up
    ; being interrupted by the user or a browser timing out.
    ; ignore_user_abort = On
    ; Determines the size of the realpath cache to be used by PHP. This value should
    ; be increased on systems where PHP opens many files to reflect the quantity of
    ; the file operations performed.
    ; realpath_cache_size=16k
    ; Duration of time, in seconds for which to cache realpath information for a given
    ; file or directory. For systems with rarely changing files, consider increasing this
    ; value.
    ; realpath_cache_ttl=120
    ; Misc
    ; Decides whether PHP may expose the fact that it is installed on the server
    ; (e.g. by adding its signature to the Web server header). It is no security
    ; threat in any way, but it makes it possible to determine whether you use PHP
    ; on your server or not.
    expose_php = Off
    ; Resource Limits ;
    max_execution_time = 30 ; Maximum execution time of each script, in seconds
    max_input_time = 60 ; Maximum amount of time each script may spend parsing request data
    ;max_input_nesting_level = 64 ; Maximum input variable nesting level
    memory_limit = 32M ; Maximum amount of memory a script may consume (32MB)
    ; Error handling and logging ;
    ; error_reporting is a bit-field. Or each number up to get desired error
    ; reporting level
    ; E_ALL - All errors and warnings (doesn't include E_STRICT)
    ; E_ERROR - fatal run-time errors
    ; E_RECOVERABLE_ERROR - almost fatal run-time errors
    ; E_WARNING - run-time warnings (non-fatal errors)
    ; E_PARSE - compile-time parse errors
    ; E_NOTICE - run-time notices (these are warnings which often result
    ; from a bug in your code, but it's possible that it was
    ; intentional (e.g., using an uninitialized variable and
    ; relying on the fact it's automatically initialized to an
    ; empty string)
    ; E_STRICT - run-time notices, enable to have PHP suggest changes
    ; to your code which will ensure the best interoperability
    ; and forward compatibility of your code
    ; E_CORE_ERROR - fatal errors that occur during PHP's initial startup
    ; E_CORE_WARNING - warnings (non-fatal errors) that occur during PHP's
    ; initial startup
    ; E_COMPILE_ERROR - fatal compile-time errors
    ; E_COMPILE_WARNING - compile-time warnings (non-fatal errors)
    ; E_USER_ERROR - user-generated error message
    ; E_USER_WARNING - user-generated warning message
    ; E_USER_NOTICE - user-generated notice message
    ; Examples:
    ; - Show all errors, except for notices and coding standards warnings
    ;error_reporting = E_ALL & ~E_NOTICE
    ; - Show all errors, except for notices
    ;error_reporting = E_ALL & ~E_NOTICE | E_STRICT
    ; - Show only errors
    ;error_reporting = E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR
    ; - Show all errors, except coding standards warnings
    error_reporting = E_ALL
    ; Print out errors (as a part of the output). For production web sites,
    ; you're strongly encouraged to turn this feature off, and use error logging
    ; instead (see below). Keeping display_errors enabled on a production web site
    ; may reveal security information to end users, such as file paths on your Web
    ; server, your database schema or other information.
    ; possible values for display_errors:
    ; Off - Do not display any errors
    ; stderr - Display errors to STDERR (affects only CGI/CLI binaries!)
    ; On or stdout - Display errors to STDOUT (default)
    ; To output errors to STDERR with CGI/CLI:
    ;display_errors = "stderr"
    ; Default
    display_errors = On
    ; Even when display_errors is on, errors that occur during PHP's startup
    ; sequence are not displayed. It's strongly recommended to keep
    ; display_startup_errors off, except for when debugging.
    display_startup_errors = Off
    ; Log errors into a log file (server-specific log, stderr, or error_log (below))
    ; As stated above, you're strongly advised to use error logging in place of
    ; error displaying on production web sites.
    log_errors = On
    ; Set maximum length of log_errors. In error_log information about the source is
    ; added. The default is 1024 and 0 allows to not apply any maximum length at all.
    log_errors_max_len = 1024
    ; Do not log repeated messages. Repeated errors must occur in same file on same
    ; line unless ignore_repeated_source is set true.
    ignore_repeated_errors = Off
    ; Ignore source of message when ignoring repeated messages. When this setting
    ; is On you will not log errors with repeated messages from different files or
    ; source lines.
    ignore_repeated_source = Off
    ; If this parameter is set to Off, then memory leaks will not be shown (on
    ; stdout or in the log). This has only effect in a debug compile, and if
    ; error reporting includes E_WARNING in the allowed list
    report_memleaks = Off
    ;report_zend_debug = 0
    ; Store the last error/warning message in $php_errormsg (boolean).
    track_errors = Off
    ; Turn off normal error reporting and emit XML-RPC error XML
    ;xmlrpc_errors = 0
    ; An XML-RPC faultCode
    ;xmlrpc_error_number = 0
    ; Disable the inclusion of HTML tags in error messages.
    ; Note: Never use this feature for production boxes.
    ;html_errors = Off
    ; If html_errors is set On PHP produces clickable error messages that direct
    ; to a page describing the error or function causing the error in detail.
    ; You can download a copy of the PHP manual from http://www.php.net/docs.php
    ; and change docref_root to the base URL of your local copy including the
    ; leading '/'. You must also specify the file extension being used including
    ; the dot.
    ; Note: Never use this feature for production boxes.
    ;docref_root = "/phpmanual/"
    ;docref_ext = .html
    ; String to output before an error message.
    ;error_prepend_string = "<font color=#ff0000>"
    ; String to output after an error message.
    ;error_append_string = "</font>"
    ; Log errors to specified file.
    ;error_log = filename
    ; Log errors to syslog.
    error_log = syslog
    ; Data Handling ;
    ; Note - track_vars is ALWAYS enabled as of PHP 4.0.3
    ; The separator used in PHP generated URLs to separate arguments.
    ; Default is "&".
    ;arg_separator.output = "&"
    ; List of separator(s) used by PHP to parse input URLs into variables.
    ; Default is "&".
    ; NOTE: Every character in this directive is considered as separator!
    ;arg_separator.input = ";&"
    ; This directive describes the order in which PHP registers GET, POST, Cookie,
    ; Environment and Built-in variables (G, P, C, E & S respectively, often
    ; referred to as EGPCS or GPC). Registration is done from left to right, newer
    ; values override older values.
    variables_order = "GPCS"
    ; Whether or not to register the EGPCS variables as global variables. You may
    ; want to turn this off if you don't want to clutter your scripts' global scope
    ; with user data. This makes most sense when coupled with track_vars - in which
    ; case you can access all of the GPC variables through the $HTTP_*_VARS[],
    ; variables.
    ; You should do your best to write your scripts so that they do not require
    ; register_globals to be on; Using form variables as globals can easily lead
    ; to possible security problems, if the code is not very well thought of.
    register_globals = Off
    ; Whether or not to register the old-style input arrays, HTTP_GET_VARS
    ; and friends. If you're not using them, it's recommended to turn them off,
    ; for performance reasons.
    register_long_arrays = Off
    ; This directive tells PHP whether to declare the argv&argc variables (that
    ; would contain the GET information). If you don't use these variables, you
    ; should turn it off for increased performance.
    register_argc_argv = Off
    ; When enabled, the SERVER and ENV variables are created when they're first
    ; used (Just In Time) instead of when the script starts. If these variables
    ; are not used within a script, having this directive on will result in a
    ; performance gain. The PHP directives register_globals, register_long_arrays,
    ; and register_argc_argv must be disabled for this directive to have any affect.
    auto_globals_jit = On
    ; Maximum size of POST data that PHP will accept.
    post_max_size = 8M
    ; Magic quotes
    ; Magic quotes for incoming GET/POST/Cookie data.
    magic_quotes_gpc = Off
    ; Magic quotes for runtime-generated data, e.g. data from SQL, from exec(), etc.
    magic_quotes_runtime = Off
    ; Use Sybase-style magic quotes (escape ' with '' instead of \').
    magic_quotes_sybase = Off
    ; Automatically add files before or after any PHP document.
    auto_prepend_file =
    auto_append_file =
    ; As of 4.0b4, PHP always outputs a character encoding by default in
    ; the Content-type: header. To disable sending of the charset, simply
    ; set it to be empty.
    ; PHP's built-in default is text/html
    default_mimetype = "text/html"
    default_charset = "utf-8"
    ; Always populate the $HTTP_RAW_POST_DATA variable.
    ;always_populate_raw_post_data = On
    ; Paths and Directories ;
    ; UNIX: "/path1:/path2"
    include_path = ".:/usr/share/pear"
    ; The root of the PHP pages, used only if nonempty.
    ; if PHP was not compiled with FORCE_REDIRECT, you SHOULD set doc_root
    ; if you are running php as a CGI under any web server (other than IIS)
    ; see documentation for security issues. The alternate is to use the
    ; cgi.force_redirect configuration below
    doc_root =
    ; The directory under which PHP opens the script using /~username used only
    ; if nonempty.
    user_dir =
    ; Directory in which the loadable extensions (modules) reside.
    extension_dir = "/usr/lib/php/20060613/"
    ; Whether or not to enable the dl() function. The dl() function does NOT work
    ; properly in multithreaded servers, such as IIS or Zeus, and is automatically
    ; disabled on them.
    enable_dl = Off
    ; cgi.force_redirect is necessary to provide security running PHP as a CGI under
    ; most web servers. Left undefined, PHP turns this on by default. You can
    ; turn it off here AT YOUR OWN RISK
    ; **You CAN safely turn this off for IIS, in fact, you MUST.**
    ; cgi.force_redirect = 1
    ; if cgi.nph is enabled it will force cgi to always sent Status: 200 with
    ; every request.
    ; cgi.nph = 1
    ; if cgi.force_redirect is turned on, and you are not running under Apache or Netscape
    ; (iPlanet) web servers, you MAY need to set an environment variable name that PHP
    ; will look for to know it is OK to continue execution. Setting this variable MAY
    ; cause security issues, KNOW WHAT YOU ARE DOING FIRST.
    ; cgi.redirect_status_env = ;
    ; cgi.fix_pathinfo provides *real* PATH_INFO/PATH_TRANSLATED support for CGI. PHP's
    ; previous behaviour was to set PATH_TRANSLATED to SCRIPT_FILENAME, and to not grok
    ; what PATH_INFO is. For more information on PATH_INFO, see the cgi specs. Setting
    ; this to 1 will cause PHP CGI to fix it's paths to conform to the spec. A setting
    ; of zero causes PHP to behave as before. Default is 1. You should fix your scripts
    ; to use SCRIPT_FILENAME rather than PATH_TRANSLATED.
    cgi.fix_pathinfo=1
    ; FastCGI under IIS (on WINNT based OS) supports the ability to impersonate
    ; security tokens of the calling client. This allows IIS to define the
    ; security context that the request runs under. mod_fastcgi under Apache
    ; does not currently support this feature (03/17/2002)
    ; Set to 1 if running under IIS. Default is zero.
    ; fastcgi.impersonate = 1;
    ; Disable logging through FastCGI connection
    ; fastcgi.logging = 0
    ; cgi.rfc2616_headers configuration option tells PHP what type of headers to
    ; use when sending HTTP response code. If it's set 0 PHP sends Status: header that
    ; is supported by Apache. When this option is set to 1 PHP will send
    ; RFC2616 compliant header.
    ; Default is zero.
    ;cgi.rfc2616_headers = 0
    ; File Uploads ;
    ; Whether to allow HTTP file uploads.
    file_uploads = On
    ; Temporary directory for HTTP uploaded files (will use system default if not
    ; specified).
    ;upload_tmp_dir =
    ; Maximum allowed size for uploaded files.
    upload_max_filesize = 2M
    ; Fopen wrappers ;
    ; Whether to allow the treatment of URLs (like http:// or ftp://) as files.
    allow_url_fopen = Off
    ; Whether to allow include/require to open URLs (like http:// or ftp://) as files.
    allow_url_include = Off
    ; Define the anonymous ftp password (your email address)
    ;from="[email protected]"
    ; Define the User-Agent string
    ; user_agent="PHP"
    ; Default timeout for socket based streams (seconds)
    default_socket_timeout = 60
    ; Dynamic Extensions ;
    ; If you wish to have an extension loaded automatically, use the following
    ; syntax:
    ; extension=modulename.extension
    ; For example, under UNIX:
    ; extension=msql.so
    ; Note that it should be the name of the module only; no directory information
    ; needs to go here. Specify the location of the extension with the
    ; extension_dir directive above.
    ; Module Settings ;
    [Date]
    ; Defines the default timezone used by the date functions
    ;date.timezone =
    ;date.default_latitude = 31.7667
    ;date.default_longitude = 35.2333
    ;date.sunrise_zenith = 90.583333
    ;date.sunset_zenith = 90.583333
    [filter]
    ;filter.default = unsafe_raw
    ;filter.default_flags =
    [iconv]
    ;iconv.input_encoding = ISO-8859-1
    ;iconv.internal_encoding = ISO-8859-1
    ;iconv.output_encoding = ISO-8859-1
    [sqlite]
    sqlite.assoc_case = 1
    [Pcre]
    ;PCRE library backtracking limit.
    ;pcre.backtrack_limit=100000
    ;PCRE library recursion limit.
    ;Please note that if you set this value to a high number you may consume all
    ;the available process stack and eventually crash PHP (due to reaching the
    ;stack size limit imposed by the Operating System).
    ;pcre.recursion_limit=100000
    [Syslog]
    ; Whether or not to define the various syslog variables (e.g. $LOG_PID,
    ; $LOG_CRON, etc.). Turning it off is a good idea performance-wise. In
    ; runtime, you can define these variables by calling define_syslog_variables().
    define_syslog_variables = Off
    [mail function]
    ; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
    ;sendmail_path =
    ; Force the addition of the specified parameters to be passed as extra parameters
    ; to the sendmail binary. These parameters will always replace the value of
    ; the 5th parameter to mail(), even in safe mode.
    ;mail.force_extra_parameters =
    [SQL]
    sql.safe_mode = Off
    [ODBC]
    ;odbc.default_db = Not yet implemented
    ;odbc.default_user = Not yet implemented
    ;odbc.default_pw = Not yet implemented
    ; Allow or prevent persistent links.
    odbc.allow_persistent = On
    ; Check that a connection is still valid before reuse.
    odbc.check_persistent = On
    ; Maximum number of persistent links. -1 means no limit.
    odbc.max_persistent = -1
    ; Maximum number of links (persistent + non-persistent). -1 means no limit.
    odbc.max_links = -1
    ; Handling of LONG fields. Returns number of bytes to variables. 0 means
    ; passthru.
    odbc.defaultlrl = 4096
    ; Handling of binary data. 0 means passthru, 1 return as is, 2 convert to char.
    ; See the documentation on odbc_binmode and odbc_longreadlen for an explanation
    ; of uodbc.defaultlrl and uodbc.defaultbinmode
    odbc.defaultbinmode = 1
    [MySQL]
    ; Allow or prevent persistent links.
    mysql.allow_persistent = On
    ; Maximum number of persistent links. -1 means no limit.
    mysql.max_persistent = -1
    ; Maximum number of links (persistent + non-persistent). -1 means no limit.
    mysql.max_links = -1
    ; Default port number for mysql_connect(). If unset, mysql_connect() will use
    ; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
    ; compile-time value defined MYSQL_PORT (in that order).
    mysql.default_port =
    ; Default socket name for local MySQL connects. If empty, uses the built-in
    ; MySQL defaults.
    mysql.default_socket =
    ; Default host for mysql_connect() (doesn't apply in safe mode).
    mysql.default_host =
    ; Default user for mysql_connect() (doesn't apply in safe mode).
    mysql.default_user =
    ; Default password for mysql_connect() (doesn't apply in safe mode).
    ; Note that this is generally a *bad* idea to store passwords in this file.
    ; *Any* user with PHP access can run 'echo get_cfg_var("mysql.default_password")
    ; and reveal this password! And of course, any users with read access to this
    ; file will be able to reveal the password as well.
    mysql.default_password =
    ; Maximum time (in seconds) for connect timeout. -1 means no limit
    mysql.connect_timeout = 60
    ; Trace mode. When trace_mode is active (=On), warnings for table/index scans and
    ; SQL-Errors will be displayed.
    mysql.trace_mode = Off
    [MySQLi]
    ; Maximum number of links. -1 means no limit.
    mysqli.max_links = -1
    ; Default port number for mysqli_connect(). If unset, mysqli_connect() will use
    ; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
    ; compile-time value defined MYSQL_PORT (in that order).
    mysqli.default_port = 3306
    ; Default socket name for local MySQL connects. If empty, uses the built-in
    ; MySQL defaults.
    mysqli.default_socket =
    ; Default host for mysql_connect() (doesn't apply in safe mode).
    mysqli.default_host =
    ; Default user for mysql_connect() (doesn't apply in safe mode).
    mysqli.default_user =
    ; Default password for mysqli_connect() (doesn't apply in safe mode).
    ; Note that this is generally a *bad* idea to store passwords in this file.
    ; *Any* user with PHP access can run 'echo get_cfg_var("mysqli.default_pw")
    ; and reveal this password! And of course, any users with read access to this
    ; file will be able to reveal the password as well.
    mysqli.default_pw =
    ; Allow or prevent reconnect
    mysqli.reconnect = Off
    [mSQL]
    ; Allow or prevent persistent links.
    msql.allow_persistent = On
    ; Maximum number of persistent links. -1 means no limit.
    msql.max_persistent = -1
    ; Maximum number of links (persistent+non persistent). -1 means no limit.
    msql.max_links = -1
    [OCI8]
    ; enables privileged connections using external credentials (OCI_SYSOPER, OCI_SYSDBA)
    ;oci8.privileged_connect = Off
    ; Connection: The maximum number of persistent OCI8 connections per
    ; process. Using -1 means no limit.
    ;oci8.max_persistent = -1
    ; Connection: The maximum number of seconds a process is allowed to
    ; maintain an idle persistent connection. Using -1 means idle
    ; persistent connections will be maintained forever.
    ;oci8.persistent_timeout = -1
    ; Connection: The number of seconds that must pass before issuing a
    ; ping during oci_pconnect() to check the connection validity. When
    ; set to 0, each oci_pconnect() will cause a ping. Using -1 disables
    ; pings completely.
    ;oci8.ping_interval = 60
    ; Tuning: This option enables statement caching, and specifies how
    ; many statements to cache. Using 0 disables statement caching.
    ;oci8.statement_cache_size = 20
    ; Tuning: Enables statement prefetching and sets the default number of
    ; rows that will be fetched automatically after statement execution.
    ;oci8.default_prefetch = 10
    ; Compatibility. Using On means oci_close() will not close
    ; oci_connect() and oci_new_connect() connections.
    ;oci8.old_oci_close_semantics = Off
    [PostgresSQL]
    ; Allow or prevent persistent links.
    pgsql.allow_persistent = On
    ; Detect broken persistent links always with pg_pconnect().
    ; Auto reset feature requires a little overheads.
    pgsql.auto_reset_persistent = Off
    ; Maximum number of persistent links. -1 means no limit.
    pgsql.max_persistent = -1
    ; Maximum number of links (persistent+non persistent). -1 means no limit.
    pgsql.max_links = -1
    ; Ignore PostgreSQL backends Notice message or not.
    ; Notice message logging require a little overheads.
    pgsql.ignore_notice = 0
    ; Log PostgreSQL backends Notice message or not.
    ; Unless pgsql.ignore_notice=0, module cannot log notice message.
    pgsql.log_notice = 0
    [Sybase]
    ; Allow or prevent persistent links.
    sybase.allow_persistent = On
    ; Maximum number of persistent links. -1 means no limit.
    sybase.max_persistent = -1
    ; Maximum number of links (persistent + non-persistent). -1 means no limit.
    sybase.max_links = -1
    ;sybase.interface_file = "/usr/sybase/interfaces"
    ; Minimum error severity to display.
    sybase.min_error_severity = 10
    ; Minimum message severity to display.
    sybase.min_message_severity = 10
    ; Compatibility mode with old versions of PHP 3.0.
    ; If on, this will cause PHP to automatically assign types to results according
    ; to their Sybase type, instead of treating them all as strings. This
    ; compatibility mode will probably not stay around forever, so try applying
    ; whatever necessary changes to your code, and turn it off.
    sybase.compatability_mode = Off
    [Sybase-CT]
    ; Allow or prevent persistent links.
    sybct.allow_persistent = On
    ; Maximum number of persistent links. -1 means no limit.
    sybct.max_persistent = -1
    ; Maximum number of links (persistent + non-persistent). -1 means no limit.
    sybct.max_links = -1
    ; Minimum server message severity to display.
    sybct.min_server_severity = 10
    ; Minimum client message severity to display.
    sybct.min_client_severity = 10
    [bcmath]
    ; Number of decimal digits for all bcmath functions.
    bcmath.scale = 0
    [browscap]
    ;browscap = extra/browscap.ini
    [Informix]
    ; Default host for ifx_connect() (doesn't apply in safe mode).
    ifx.default_host =
    ; Default user for ifx_connect() (doesn't apply in safe mode).
    ifx.default_user =
    ; Default password for ifx_connect() (doesn't apply in safe mode).
    ifx.default_password =
    ; Allow or prevent persistent links.
    ifx.allow_persistent = On
    ; Maximum number of persistent links. -1 means no limit.
    ifx.max_persistent = -1
    ; Maximum number of links (persistent + non-persistent). -1 means no limit.
    ifx.max_links = -1
    ; If on, select statements return the contents of a text blob instead of its id.
    ifx.textasvarchar = 0
    ; If on, select statements return the contents of a byte blob instead of its id.
    ifx.byteasvarchar = 0
    ; Trailing blanks are stripped from fixed-length char columns. May help the
    ; life of Informix SE users.
    ifx.charasvarchar = 0
    ; If on, the contents of text and byte blobs are dumped to a file instead of
    ; keeping them in memory.
    ifx.blobinfile = 0
    ; NULL's are returned as empty strings, unless this is set to 1. In that case,
    ; NULL's are returned as string 'NULL'.
    ifx.nullformat = 0
    [Session]
    ; Handler used to store/retrieve data.
    session.save_handler = files
    ; Argument passed to save_handler. In the case of files, this is the path
    ; where data files are stored.
    ; As of PHP 4.0.1, you can define the path as:
    ; session.save_path = "N;/path"
    ; where N is an integer. Instead of storing all the session files in
    ; /path, what this will do is use subdirectories N-levels deep, and
    ; store the session data in those directories. This is useful if you
    ; or your OS have problems with lots of files in one directory, and is
    ; a more efficient layout for servers that handle lots of sessions.
    ; NOTE 1: PHP will not create this directory structure automatically.
    ; You can use the script in the ext/session dir for that purpose.
    ; NOTE 2: See the section on garbage collection below if you choose to
    ; use subdirectories for session storage
    ; The file storage module creates files using mode 600 by default.
    ; You can change that by using
    ; session.save_path = "N;MODE;/path"
    ; where MODE is the octal representation of the mode. Note that this
    ; does not overwrite the process's umask.
    session.save_path = "/tmp"
    ; Whether to use cookies.
    session.use_cookies = 1
    ;session.cookie_secure =
    ; This option enables administrators to make their users invulnerable to
    ; attacks which involve passing session ids in URLs; defaults to 0.
    ; session.use_only_cookies = 1
    ; Name of the session (used as cookie name).
    session.name = PHPSESSID
    ; Initialize session on request startup.
    session.auto_start = 0
    ; Lifetime in seconds of cookie or, if 0, until browser is restarted.
    session.cookie_lifetime = 0
    ; The path for which the cookie is valid.
    session.cookie_path = /
    ; The domain for which the cookie is valid.
    session.cookie_domain =
    ; Whether or not to add the httpOnly flag to the cookie, which makes it inaccessible to browser scripting languages such as JavaScript.
    session.cookie_httponly =
    ; Handler used to serialize data. php is the standard serializer of PHP.
    session.serialize_handler = php
    ; Define the probability that the 'garbage collection' process is started
    ; on every session initialization.
    ; The probability is calculated by using gc_probability/gc_divisor,
    ; e.g. 1/100 means there is a 1% chance that the GC process starts
    ; on each request.
    session.gc_probability = 1
    session.gc_divisor = 1000
    ; After this number of seconds, stored data will be seen as 'garbage' and
    ; cleaned up by the garbage collection process.
    session.gc_maxlifetime = 1440
    ; NOTE: If you are using the subdirectory option for storing session files
    ; (see session.save_path above), then garbage collection does *not*
    ; happen automatically. You will need to do your own garbage
    ; collection through a shell script, cron entry, or some other method.
    ; For example, the following script would is the equivalent of
    ; setting session.gc_maxlifetime to 1440 (1440 seconds = 24 minutes):
    ; cd /path/to/sessions; find -cmin +24 | xargs rm
    ; PHP 4.2 and less have an undocumented feature/bug that allows you to
    ; to initialize a session variable in the global scope, albeit register_globals
    ; is disabled. PHP 4.3 and later will warn you, if this feature is used.
    ; You can disable the feature and the warning separately. At this time,
    ; the warning is only displayed, if bug_compat_42 is enabled.
    session.bug_compat_42 = 0
    session.bug_compat_warn = 1
    ; Check HTTP Referer to invalidate externally stored URLs containing ids.
    ; HTTP_REFERER has to contain this substring for the session to be
    ; considered as valid.
    session.referer_check =
    ; How many bytes to read from the file.
    session.entropy_length = 0
    ; Specified here to create the session id.
    session.entropy_file =
    ;session.entropy_length = 16
    ;session.entropy_file = /dev/urandom
    ; Set to {nocache,private,public,} to determine HTTP caching aspects
    ; or leave this empty to avoid sending anti-caching headers.
    session.cache_limiter = nocache
    ; Document expires after n minutes.
    session.cache_expire = 180
    ; trans sid support is disabled by default.
    ; Use of trans sid may risk your users security.
    ; Use this option with caution.
    ; - User may send URL contains active session ID
    ; to other person via. email/irc/etc.
    ; - URL that contains active session ID may be stored
    ; in publically accessible computer.
    ; - User may access your site with the same session ID
    ; always using URL stored in browser's history or bookmarks.
    session.use_trans_sid = 0
    ; Select a hash function
    ; 0: MD5 (128 bits)
    ; 1: SHA-1 (160 bits)
    session.hash_function = 0
    ; Define how many bits are stored in each character when converting
    ; the binary hash data to something readable.
    ; 4 bits: 0-9, a-f
    ; 5 bits: 0-9, a-v
    ; 6 bits: 0-9, a-z, A-Z, "-", ","
    session.hash_bits_per_character = 5
    ; The URL rewriter will look for URLs in a defined set of HTML tags.
    ; form/fieldset are special; if you include them here, the rewriter will
    ; add a hidden <input> field with the info which is otherwise appended
    ; to URLs. If you want XHTML conformity, remove the form entry.
    ; Note that all valid entries require a "=", even if no value follows.
    url_rewriter.tags = "a=href,area=href,frame=src,input=src,form=fakeentry"
    [MSSQL]
    ; Allow or prevent persistent links.
    mssql.allow_persistent = On
    ; Maximum number of persistent links. -1 means no limit.
    mssql.max_persistent = -1
    ; Maximum number of links (persistent+non persistent). -1 means no limit.
    mssql.max_links = -1
    ; Minimum error severity to display.
    mssql.min_error_severity = 10
    ; Minimum message severity to display.
    mssql.min_message_severity = 10
    ; Compatibility mode with old versions of PHP 3.0.
    mssql.compatability_mode = Off
    ; Connect timeout
    ;mssql.connect_timeout = 5
    ; Query timeout
    ;mssql.timeout = 60
    ; Valid range 0 - 2147483647. Default = 4096.
    ;mssql.textlimit = 4096
    ; Valid range 0 - 2147483647. Default = 4096.
    ;mssql.textsize = 4096
    ; Limits the number of records in each batch. 0 = all records in one batch.
    ;mssql.batchsize = 0
    ; Specify how datetime and datetim4 columns are returned
    ; On => Returns data converted to SQL server settings
    ; Off => Returns values as YYYY-MM-DD hh:mm:ss
    ;mssql.datetimeconvert = On
    ; Use NT authentication when connecting to the server
    mssql.secure_connection = Off
    ; Specify max number of processes. -1 = library default
    ; msdlib defaults to 25
    ; FreeTDS defaults to 4096
    ;mssql.max_procs = -1
    ; Specify client character set.
    ; If empty or not set the client charset from freetds.comf is used
    ; This is only used when compiled with FreeTDS
    ;mssql.charset = "ISO-8859-1"
    [Assertion]
    ; Assert(expr); active by default.
    ;assert.active = On
    ; Issue a PHP warning for each failed assertion.
    ;assert.warning = On
    ; Don't bail out by default.
    ;assert.bail = Off
    ; User-function to be called if an assertion fails.
    ;assert.callback = 0
    ; Eval the expression with current error_reporting(). Set to true if you want
    ; error_reporting(0) around the eval().
    ;assert.quiet_eval = 0
    [COM]
    ; path to a file containing GUIDs, IIDs or filenames of files with TypeLibs
    ;com.typelib_file =
    ; allow Distributed-COM calls
    ;com.allow_dcom = true
    ; autoregister constants of a components typlib on com_load()
    ;com.autoregister_typelib = true
    ; register constants casesensitive
    ;com.autoregister_casesensitive = false
    ; show warnings on duplicate constant registrations
    ;com.autoregister_verbose = true
    [mbstring]
    ; language for internal character representation.
    ;mbstring.language = Japanese
    ; internal/script encoding.
    ; Some encoding cannot work as internal encoding.
    ; (e.g. SJIS, BIG5, ISO-2022-*)
    ;mbstring.internal_encoding = EUC-JP
    ; http input encoding.
    ;mbstring.http_input = auto
    ; http output encoding. mb_output_handler must be
    ; registered as output buffer to function
    ;mbstring.http_output = SJIS
    ; enable automatic encoding translation according to
    ; mbstring.internal_encoding setting. Input chars are
    ; converted to internal encoding by setting this to On.
    ; Note: Do _not_ use automatic encoding translation for
    ; portable libs/applications.
    ;mbstring.encoding_translation = Off
    ; automatic encoding detection order.
    ; auto means
    ;mbstring.detect_order = auto
    ; substitute_character used when character cannot be converted
    ; one from another
    ;mbstring.substitute_character = none;
    ; overload(replace) single byte functions by mbstring functions.
    ; mail(), ereg(), etc are overloaded by mb_send_mail(), mb_ereg(),
    ; etc. Possible values are 0,1,2,4 or combination of them.
    ; For example, 7 for overload everything.
    ; 0: No overload
    ; 1: Overload mail() function
    ; 2: Overload str*() functions
    ; 4: Overload ereg*() functions
    ;mbstring.func_overload = 0
    ; enable strict encoding detection.
    ;mbstring.strict_encoding = Off
    [FrontBase]
    ;fbsql.allow_persistent = On
    ;fbsql.autocommit = On
    ;fbsql.show_timestamp_decimals = Off
    ;fbsql.default_database =
    ;fbsql.default_database_password =
    ;fbsql.default_host =
    ;fbsql.default_password =
    ;fbsql.default_user = "_SYSTEM"
    ;fbsql.generate_warnings = Off
    ;fbsql.max_connections = 128
    ;fbsql.max_links = 128
    ;fbsql.max_persistent = -1
    ;fbsql.max_results = 128
    [gd]
    ; Tell the jpeg decode to libjpeg warnings and try to create
    ; a gd image. The warning will then be displayed as notices
    ; disabled by default
    ;gd.jpeg_ignore_warning = 0
    [exif]
    ; Exif UNICODE user comments are handled as UCS-2BE/UCS-2LE and JIS as JIS.
    ; With mbstring support this will automatically be converted into the encoding
    ; given by corresponding encode setting. When empty mbstring.internal_encoding
    ; is used. For the decode settings you can distinguish between motorola and
    ; intel byte order. A decode setting cannot be empty.
    ;exif.encode_unicode = ISO-8859-15
    ;exif.decode_unicode_motorola = UCS-2BE
    ;exif.decode_unicode_intel = UCS-2LE
    ;exif.encode_jis =
    ;exif.decode_jis_motorola = JIS
    ;exif.decode_jis_intel = JIS
    [Tidy]
    ; The path to a default tidy configuration file to use when using tidy
    ;tidy.default_config = /usr/local/lib/php/default.tcfg
    ; Should tidy clean and repair output automatically?
    ; WARNING: Do not use this option if you are generating non-html content
    ; such as dynamic images
    tidy.clean_output = Off
    [soap]
    ; Enables or disables WSDL caching feature.
    soap.wsdl_cache_enabled=1
    ; Sets the directory name where SOAP extension will put cache files.
    soap.wsdl_cache_dir="/tmp"
    ; (time to live) Sets the number of second while cached file will be used
    ; instead of original one.
    soap.wsdl_cache_ttl=86400
    ; available extensions
    ;extension=bcmath.so
    ;extension=bz2.so
    ;extension=calendar.so
    ;extension=curl.so
    ;extension=dba.so
    ;extension=dbase.so
    ;extension=exif.so
    ;extension=ftp.so
    ;extension=gd.so
    extension=gettext.so
    ;extension=gmp.so
    ;extension=iconv.so
    ;extension=imap.so
    ;extension=json.so
    ;extension=ldap.so
    ;extension=mcrypt.so
    ;extension=mhash.so
    ;extension=mime_magic.so
    ;extension=mysql.so
    ;extension=mysqli.so
    ;extension=ncurses.so
    ;extension=odbc.so
    ;extension=openssl.so
    ;extension=pdo.so
    ;extension=pdo_mysql.so
    ;extension=pdo_odbc.so
    ;extension=pdo_pgsql.so
    ;extension=pdo_sqlite.so
    ;extension=pgsql.so
    ;extension=posix.so
    ;extension=pspell.so
    extension=session.so
    ;extension=shmop.so
    ;extension=snmp.so
    ;extension=soap.so
    extension=sockets.so
    extension=sqlite.so
    ;extension=sysvmsg.so
    ;extension=sysvsem.so
    ;extension=sysvshm.so
    ;extension=tidy.so
    ;extension=xmlrpc.so
    ;extension=xsl.so
    ;extension=zip.so
    extension=zlib.so
    ; Local Variables:
    ; tab-width: 4
    ; End:
    I've attempted enabling pdo.so and pdo_sqlite.so as well, with no results, making sure to stop lighty and flush all of its processes before checking again.
    `php-cgi -m | grep sqlite` does not return anything, either.
    The extensions directory (/usr/lib/php/20060613) exists on my system and contains sqlite.so, as expected.
    I have no clue what's going on here and would greatly appreciate any help offered.
    Last edited by xelados (2009-09-23 04:02:22)

    After the last update which installed PHP 5.3.0, I'm having a similar problem. PHP fails to recognize any extensions which I've defined in php.ini. PHP itself works just fine, so I'm sure this problem is related to the update of PHP.
    Here's my php.ini:
    [PHP]
    ; About php.ini ;
    ; This file controls many aspects of PHP's behavior. In order for PHP to
    ; read it, it must be named 'php.ini'. PHP looks for it in the current
    ; working directory, in the path designated by the environment variable
    ; PHPRC, and in the path that was defined in compile time (in that order).
    ; The path in which the php.ini file is looked for can be overridden using
    ; the -c argument in command line mode.
    ; The syntax of the file is extremely simple. Whitespace and Lines
    ; beginning with a semicolon are silently ignored (as you probably guessed).
    ; Section headers (e.g. [Foo]) are also silently ignored, even though
    ; they might mean something in the future.
    ; Directives are specified using the following syntax:
    ; directive = value
    ; Directive names are *case sensitive* - foo=bar is different from FOO=bar.
    ; The value can be a string, a number, a PHP constant (e.g. E_ALL or M_PI), one
    ; of the INI constants (On, Off, True, False, Yes, No and None) or an expression
    ; (e.g. E_ALL & ~E_NOTICE), or a quoted string ("foo").
    ; Expressions in the INI file are limited to bitwise operators and parentheses:
    ; | bitwise OR
    ; & bitwise AND
    ; ~ bitwise NOT
    ; ! boolean NOT
    ; Boolean flags can be turned on using the values 1, On, True or Yes.
    ; They can be turned off using the values 0, Off, False or No.
    ; An empty string can be denoted by simply not writing anything after the equal
    ; sign, or by using the None keyword:
    ; foo = ; sets foo to an empty string
    ; foo = none ; sets foo to an empty string
    ; foo = "none" ; sets foo to the string 'none'
    ; If you use constants in your value, and these constants belong to a
    ; dynamically loaded extension (either a PHP extension or a Zend extension),
    ; you may only use these constants *after* the line that loads the extension.
    ; About this file ;
    ; This is the recommended, PHP 5-style version of the php.ini-dist file. It
    ; sets some non standard settings, that make PHP more efficient, more secure,
    ; and encourage cleaner coding.
    ; The price is that with these settings, PHP may be incompatible with some
    ; applications, and sometimes, more difficult to develop with. Using this
    ; file is warmly recommended for production sites. As all of the changes from
    ; the standard settings are thoroughly documented, you can go over each one,
    ; and decide whether you want to use it or not.
    ; For general information about the php.ini file, please consult the php.ini-dist
    ; file, included in your PHP distribution.
    ; This file is different from the php.ini-dist file in the fact that it features
    ; different values for several directives, in order to improve performance, while
    ; possibly breaking compatibility with the standard out-of-the-box behavior of
    ; PHP. Please make sure you read what's different, and modify your scripts
    ; accordingly, if you decide to use this file instead.
    ; - register_long_arrays = Off [Performance]
    ; Disables registration of the older (and deprecated) long predefined array
    ; variables ($HTTP_*_VARS). Instead, use the superglobals that were
    ; introduced in PHP 4.1.0
    ; - display_errors = Off [Security]
    ; With this directive set to off, errors that occur during the execution of
    ; scripts will no longer be displayed as a part of the script output, and thus,
    ; will no longer be exposed to remote users. With some errors, the error message
    ; content may expose information about your script, web server, or database
    ; server that may be exploitable for hacking. Production sites should have this
    ; directive set to off.
    ; - log_errors = On [Security]
    ; This directive complements the above one. Any errors that occur during the
    ; execution of your script will be logged (typically, to your server's error log,
    ; but can be configured in several ways). Along with setting display_errors to off,
    ; this setup gives you the ability to fully understand what may have gone wrong,
    ; without exposing any sensitive information to remote users.
    ; - output_buffering = 4096 [Performance]
    ; Set a 4KB output buffer. Enabling output buffering typically results in less
    ; writes, and sometimes less packets sent on the wire, which can often lead to
    ; better performance. The gain this directive actually yields greatly depends
    ; on which Web server you're working with, and what kind of scripts you're using.
    ; - register_argc_argv = Off [Performance]
    ; Disables registration of the somewhat redundant $argv and $argc global
    ; variables.
    ; - magic_quotes_gpc = Off [Performance]
    ; Input data is no longer escaped with slashes so that it can be sent into
    ; SQL databases without further manipulation. Instead, you should use the
    ; function addslashes() on each input element you wish to send to a database.
    ; - variables_order = "GPCS" [Performance]
    ; The environment variables are not hashed into the $_ENV. To access
    ; environment variables, you can use getenv() instead.
    ; - error_reporting = E_ALL [Code Cleanliness, Security(?)]
    ; By default, PHP suppresses errors of type E_NOTICE. These error messages
    ; are emitted for non-critical errors, but that could be a symptom of a bigger
    ; problem. Most notably, this will cause error messages about the use
    ; of uninitialized variables to be displayed.
    ; - allow_call_time_pass_reference = Off [Code cleanliness]
    ; It's not possible to decide to force a variable to be passed by reference
    ; when calling a function. The PHP 4 style to do this is by making the
    ; function require the relevant argument by reference.
    ; - short_open_tag = Off [Portability]
    ; Using short tags is discouraged when developing code meant for redistribution
    ; since short tags may not be supported on the target server.
    ; Language Options ;
    ; Enable the PHP scripting language engine under Apache.
    engine = On
    ; Enable compatibility mode with Zend Engine 1 (PHP 4.x)
    zend.ze1_compatibility_mode = Off
    ; Allow the <? tag. Otherwise, only <?php and <script> tags are recognized.
    ; NOTE: Using short tags should be avoided when developing applications or
    ; libraries that are meant for redistribution, or deployment on PHP
    ; servers which are not under your control, because short tags may not
    ; be supported on the target server. For portable, redistributable code,
    ; be sure not to use short tags.
    short_open_tag = Off
    ; Allow ASP-style <% %> tags.
    asp_tags = Off
    ; The number of significant digits displayed in floating point numbers.
    precision = 14
    ; Enforce year 2000 compliance (will cause problems with non-compliant browsers)
    y2k_compliance = On
    ; Output buffering allows you to send header lines (including cookies) even
    ; after you send body content, at the price of slowing PHP's output layer a
    ; bit. You can enable output buffering during runtime by calling the output
    ; buffering functions. You can also enable output buffering for all files by
    ; setting this directive to On. If you wish to limit the size of the buffer
    ; to a certain size - you can use a maximum number of bytes instead of 'On', as
    ; a value for this directive (e.g., output_buffering=4096).
    output_buffering = Off
    ; You can redirect all of the output of your scripts to a function. For
    ; example, if you set output_handler to "mb_output_handler", character
    ; encoding will be transparently converted to the specified encoding.
    ; Setting any output handler automatically turns on output buffering.
    ; Note: People who wrote portable scripts should not depend on this ini
    ; directive. Instead, explicitly set the output handler using ob_start().
    ; Using this ini directive may cause problems unless you know what script
    ; is doing.
    ; Note: You cannot use both "mb_output_handler" with "ob_iconv_handler"
    ; and you cannot use both "ob_gzhandler" and "zlib.output_compression".
    ; Note: output_handler must be empty if this is set 'On' !!!!
    ; Instead you must use zlib.output_handler.
    ;output_handler =
    ; Transparent output compression using the zlib library
    ; Valid values for this option are 'off', 'on', or a specific buffer size
    ; to be used for compression (default is 4KB)
    ; Note: Resulting chunk size may vary due to nature of compression. PHP
    ; outputs chunks that are few hundreds bytes each as a result of
    ; compression. If you prefer a larger chunk size for better
    ; performance, enable output_buffering in addition.
    ; Note: You need to use zlib.output_handler instead of the standard
    ; output_handler, or otherwise the output will be corrupted.
    zlib.output_compression = Off
    ;zlib.output_compression_level = -1
    ; You cannot specify additional output handlers if zlib.output_compression
    ; is activated here. This setting does the same as output_handler but in
    ; a different order.
    ;zlib.output_handler =
    ; Implicit flush tells PHP to tell the output layer to flush itself
    ; automatically after every output block. This is equivalent to calling the
    ; PHP function flush() after each and every call to print() or echo() and each
    ; and every HTML block. Turning this option on has serious performance
    ; implications and is generally recommended for debugging purposes only.
    implicit_flush = Off
    ; The unserialize callback function will be called (with the undefined class'
    ; name as parameter), if the unserializer finds an undefined class
    ; which should be instantiated.
    ; A warning appears if the specified function is not defined, or if the
    ; function doesn't include/implement the missing class.
    ; So only set this entry, if you really want to implement such a
    ; callback-function.
    unserialize_callback_func=
    ; When floats & doubles are serialized store serialize_precision significant
    ; digits after the floating point. The default value ensures that when floats
    ; are decoded with unserialize, the data will remain the same.
    serialize_precision = 100
    ; Whether to enable the ability to force arguments to be passed by reference
    ; at function call time. This method is deprecated and is likely to be
    ; unsupported in future versions of PHP/Zend. The encouraged method of
    ; specifying which arguments should be passed by reference is in the function
    ; declaration. You're encouraged to try and turn this option Off and make
    ; sure your scripts work properly with it in order to ensure they will work
    ; with future versions of the language (you will receive a warning each time
    ; you use this feature, and the argument will be passed by value instead of by
    ; reference).
    allow_call_time_pass_reference = Off
    ; Safe Mode
    safe_mode = Off
    ; By default, Safe Mode does a UID compare check when
    ; opening files. If you want to relax this to a GID compare,
    ; then turn on safe_mode_gid.
    safe_mode_gid = Off
    ; When safe_mode is on, UID/GID checks are bypassed when
    ; including files from this directory and its subdirectories.
    ; (directory must also be in include_path or full path must
    ; be used when including)
    safe_mode_include_dir =
    ; When safe_mode is on, only executables located in the safe_mode_exec_dir
    ; will be allowed to be executed via the exec family of functions.
    safe_mode_exec_dir =
    ; Setting certain environment variables may be a potential security breach.
    ; This directive contains a comma-delimited list of prefixes. In Safe Mode,
    ; the user may only alter environment variables whose names begin with the
    ; prefixes supplied here. By default, users will only be able to set
    ; environment variables that begin with PHP_ (e.g. PHP_FOO=BAR).
    ; Note: If this directive is empty, PHP will let the user modify ANY
    ; environment variable!
    safe_mode_allowed_env_vars = PHP_
    ; This directive contains a comma-delimited list of environment variables that
    ; the end user won't be able to change using putenv(). These variables will be
    ; protected even if safe_mode_allowed_env_vars is set to allow to change them.
    safe_mode_protected_env_vars = LD_LIBRARY_PATH
    ; open_basedir, if set, limits all file operations to the defined directory
    ; and below. This directive makes most sense if used in a per-directory
    ; or per-virtualhost web server configuration file. This directive is
    ; *NOT* affected by whether Safe Mode is turned On or Off.
    ; open_basedir = /srv/http/:/home/:/tmp/:/usr/share/pear/
    ; This directive allows you to disable certain functions for security reasons.
    ; It receives a comma-delimited list of function names. This directive is
    ; *NOT* affected by whether Safe Mode is turned On or Off.
    disable_functions =
    ; This directive allows you to disable certain classes for security reasons.
    ; It receives a comma-delimited list of class names. This directive is
    ; *NOT* affected by whether Safe Mode is turned On or Off.
    disable_classes =
    ; Colors for Syntax Highlighting mode. Anything that's acceptable in
    ; <span style="color: ???????"> would work.
    ;highlight.string = #DD0000
    ;highlight.comment = #FF9900
    ;highlight.keyword = #007700
    ;highlight.bg = #FFFFFF
    ;highlight.default = #0000BB
    ;highlight.html = #000000
    ; If enabled, the request will be allowed to complete even if the user aborts
    ; the request. Consider enabling it if executing long request, which may end up
    ; being interrupted by the user or a browser timing out.
    ; ignore_user_abort = On
    ; Determines the size of the realpath cache to be used by PHP. This value should
    ; be increased on systems where PHP opens many files to reflect the quantity of
    ; the file operations performed.
    ; realpath_cache_size=16k
    ; Duration of time, in seconds for which to cache realpath information for a given
    ; file or directory. For systems with rarely changing files, consider increasing this
    ; value.
    ; realpath_cache_ttl=120
    ; Misc
    ; Decides whether PHP may expose the fact that it is installed on the server
    ; (e.g. by adding its signature to the Web server header). It is no security
    ; threat in any way, but it makes it possible to determine whether you use PHP
    ; on your server or not.
    expose_php = Off
    ; Resource Limits ;
    max_execution_time = 120 ; Maximum execution time of each script, in seconds
    max_input_time = 120 ; Maximum amount of time each script may spend parsing request data
    ;max_input_nesting_level = 64 ; Maximum input variable nesting level
    memory_limit = 128M ; Maximum amount of memory a script may consume (32MB)
    ; Error handling and logging ;
    ; error_reporting is a bit-field. Or each number up to get desired error
    ; reporting level
    ; E_ALL - All errors and warnings (doesn't include E_STRICT)
    ; E_ERROR - fatal run-time errors
    ; E_RECOVERABLE_ERROR - almost fatal run-time errors
    ; E_WARNING - run-time warnings (non-fatal errors)
    ; E_PARSE - compile-time parse errors
    ; E_NOTICE - run-time notices (these are warnings which often result
    ; from a bug in your code, but it's possible that it was
    ; intentional (e.g., using an uninitialized variable and
    ; relying on the fact it's automatically initialized to an
    ; empty string)
    ; E_STRICT - run-time notices, enable to have PHP suggest changes
    ; to your code which will ensure the best interoperability
    ; and forward compatibility of your code
    ; E_CORE_ERROR - fatal errors that occur during PHP's initial startup
    ; E_CORE_WARNING - warnings (non-fatal errors) that occur during PHP's
    ; initial startup
    ; E_COMPILE_ERROR - fatal compile-time errors
    ; E_COMPILE_WARNING - compile-time warnings (non-fatal errors)
    ; E_USER_ERROR - user-generated error message
    ; E_USER_WARNING - user-generated warning message
    ; E_USER_NOTICE - user-generated notice message
    ; Examples:
    ; - Show all errors, except for notices and coding standards warnings
    ;error_reporting = E_ALL & ~E_NOTICE
    ; - Show all errors, except for notices
    ;error_reporting = E_ALL & ~E_NOTICE | E_STRICT
    ; - Show only errors
    ;error_reporting = E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR
    ; - Show all errors, except coding standards warnings
    error_reporting = E_ALL
    ; Print out errors (as a part of the output). For production web sites,
    ; you're strongly encouraged to turn this feature off, and use error logging
    ; instead (see below). Keeping display_errors enabled on a production web site
    ; may reveal security information to end users, such as file paths on your Web
    ; server, your database schema or other information.
    ; possible values for display_errors:
    ; Off - Do not display any errors
    ; stderr - Display errors to STDERR (affects only CGI/CLI binaries!)
    ; On or stdout - Display errors to STDOUT (default)
    ; To output errors to STDERR with CGI/CLI:
    ;display_errors = "stderr"
    ; Default
    display_errors = On
    ; Even when display_errors is on, errors that occur during PHP's startup
    ; sequence are not displayed. It's strongly recommended to keep
    ; display_startup_errors off, except for when debugging.
    display_startup_errors = Off
    ; Log errors into a log file (server-specific log, stderr, or error_log (below))
    ; As stated above, you're strongly advised to use error logging in place of
    ; error displaying on production web sites.
    log_errors = Off
    ; Set maximum length of log_errors. In error_log information about the source is
    ; added. The default is 1024 and 0 allows to not apply any maximum length at all.
    log_errors_max_len = 1024
    ; Do not log repeated messages. Repeated errors must occur in same file on same
    ; line until ignore_repeated_source is set true.
    ignore_repeated_errors = Off
    ; Ignore source of message when ignoring repeated messages. When this setting
    ; is On you will not log errors with repeated messages from different files or
    ; source lines.
    ignore_repeated_source = Off
    ; If this parameter is set to Off, then memory leaks will not be shown (on
    ; stdout or in the log). This has only effect in a debug compile, and if
    ; error reporting includes E_WARNING in the allowed list
    report_memleaks = Off
    ;report_zend_debug = 0
    ; Store the last error/warning message in $php_errormsg (boolean).
    track_errors = Off
    ; Disable the inclusion of HTML tags in error messages.
    ; Note: Never use this feature for production boxes.
    ;html_errors = Off
    ; If html_errors is set On PHP produces clickable error messages that direct
    ; to a page describing the error or function causing the error in detail.
    ; You can download a copy of the PHP manual from http://www.php.net/docs.php
    ; and change docref_root to the base URL of your local copy including the
    ; leading '/'. You must also specify the file extension being used including
    ; the dot.
    ; Note: Never use this feature for production boxes.
    ;docref_root = "/phpmanual/"
    ;docref_ext = .html
    ; String to output before an error message.
    ;error_prepend_string = "<font color=ff0000>"
    ; String to output after an error message.
    ;error_append_string = "</font>"
    ; Log errors to specified file.
    ;error_log = filename
    ; Log errors to syslog.
    error_log = syslog
    ; Data Handling ;
    ; Note - track_vars is ALWAYS enabled as of PHP 4.0.3
    ; The separator used in PHP generated URLs to separate arguments.
    ; Default is "&".
    ;arg_separator.output = "&"
    ; List of separator(s) used by PHP to parse input URLs into variables.
    ; Default is "&".
    ; NOTE: Every character in this directive is considered as separator!
    ;arg_separator.input = ";&"
    ; This directive describes the order in which PHP registers GET, POST, Cookie,
    ; Environment and Built-in variables (G, P, C, E & S respectively, often
    ; referred to as EGPCS or GPC). Registration is done from left to right, newer
    ; values override older values.
    variables_order = "GPCS"
    ; Whether or not to register the EGPCS variables as global variables. You may
    ; want to turn this off if you don't want to clutter your scripts' global scope
    ; with user data. This makes most sense when coupled with track_vars - in which
    ; case you can access all of the GPC variables through the $HTTP_*_VARS[],
    ; variables.
    ; You should do your best to write your scripts so that they do not require
    ; register_globals to be on; Using form variables as globals can easily lead
    ; to possible security problems, if the code is not very well thought of.
    register_globals = Off
    ; Whether or not to register the old-style input arrays, HTTP_GET_VARS
    ; and friends. If you're not using them, it's recommended to turn them off,
    ; for performance reasons.
    register_long_arrays = Off
    ; This directive tells PHP whether to declare the argv&argc variables (that
    ; would contain the GET information). If you don't use these variables, you
    ; should turn it off for increased performance.
    register_argc_argv = Off
    ; When enabled, the SERVER and ENV variables are created when they're first
    ; used (Just In Time) instead of when the script starts. If these variables
    ; are not used within a script, having this directive on will result in a
    ; performance gain. The PHP directives register_globals, register_long_arrays,
    ; and register_argc_argv must be disabled for this directive to have any affect.
    auto_globals_jit = On
    ; Maximum size of POST data that PHP will accept.
    post_max_size = 128M
    ; Magic quotes
    ; Magic quotes for incoming GET/POST/Cookie data.
    magic_quotes_gpc = Off
    ; Magic quotes for runtime-generated data, e.g. data from SQL, from exec(), etc.
    magic_quotes_runtime = Off
    ; Use Sybase-style magic quotes (escape ' with '' instead of \').
    magic_quotes_sybase = Off
    ; Automatically add files before or after any PHP document.
    auto_prepend_file =
    auto_append_file =
    ; As of 4.0b4, PHP always outputs a character encoding by default in
    ; the Content-type: header. To disable sending of the charset, simply
    ; set it to be empty.
    ; PHP's built-in default is text/html
    default_mimetype = "text/html"
    ;default_charset = "iso-8859-1"
    ; Always populate the $HTTP_RAW_POST_DATA variable.
    ;always_populate_raw_post_data = On
    ; Paths and Directories ;
    ; UNIX: "/path1:/path2"
    ;include_path = ".:/usr/share/pear"
    ; The root of the PHP pages, used only if nonempty.
    ; if PHP was not compiled with FORCE_REDIRECT, you SHOULD set doc_root
    ; if you are running php as a CGI under any web server (other than IIS)
    ; see documentation for security issues. The alternate is to use the
    ; cgi.force_redirect configuration below
    doc_root =
    ; The directory under which PHP opens the script using /~username used only
    ; if nonempty.
    user_dir =
    ; Directory in which the loadable extensions (modules) reside.
    extension_dir = "/usr/lib/php/modules/"
    ; Whether or not to enable the dl() function. The dl() function does NOT work
    ; properly in multithreaded servers, such as IIS or Zeus, and is automatically
    ; disabled on them.
    enable_dl = Off
    ; cgi.force_redirect is necessary to provide security running PHP as a CGI under
    ; most web servers. Left undefined, PHP turns this on by default. You can
    ; turn it off here AT YOUR OWN RISK
    ; **You CAN safely turn this off for IIS, in fact, you MUST.**
    ; cgi.force_redirect = 1
    ; if cgi.nph is enabled it will force cgi to always sent Status: 200 with
    ; every request.
    ; cgi.nph = 1
    ; if cgi.force_redirect is turned on, and you are not running under Apache or Netscape
    ; (iPlanet) web servers, you MAY need to set an environment variable name that PHP
    ; will look for to know it is OK to continue execution. Setting this variable MAY
    ; cause security issues, KNOW WHAT YOU ARE DOING FIRST.
    ; cgi.redirect_status_env = ;
    ; cgi.fix_pathinfo provides *real* PATH_INFO/PATH_TRANSLATED support for CGI. PHP's
    ; previous behaviour was to set PATH_TRANSLATED to SCRIPT_FILENAME, and to not grok
    ; what PATH_INFO is. For more information on PATH_INFO, see the cgi specs. Setting
    ; this to 1 will cause PHP CGI to fix it's paths to conform to the spec. A setting
    ; of zero causes PHP to behave as before. Default is 1. You should fix your scripts
    ; to use SCRIPT_FILENAME rather than PATH_TRANSLATED.
    ; cgi.fix_pathinfo=1
    ; FastCGI under IIS (on WINNT based OS) supports the ability to impersonate
    ; security tokens of the calling client. This allows IIS to define the
    ; security context that the request runs under. mod_fastcgi under Apache
    ; does not currently support this feature (03/17/2002)
    ; Set to 1 if running under IIS. Default is zero.
    ; fastcgi.impersonate = 1;
    ; Disable logging through FastCGI connection
    ; fastcgi.logging = 0
    ; cgi.rfc2616_headers configuration option tells PHP what type of headers to
    ; use when sending HTTP response code. If it's set 0 PHP sends Status: header that
    ; is supported by Apache. When this option is set to 1 PHP will send
    ; RFC2616 compliant header.
    ; Default is zero.
    ;cgi.rfc2616_headers = 0
    ; File Uploads ;
    ; Whether to allow HTTP file uploads.
    file_uploads = On
    ; Temporary directory for HTTP uploaded files (will use system default if not
    ; specified).
    ;upload_tmp_dir =
    ; Maximum allowed size for uploaded files.
    upload_max_filesize = 128M
    ; Fopen wrappers ;
    ; Whether to allow the treatment of URLs (like http:// or ftp://) as files.
    allow_url_fopen = On
    ; Whether to allow include/require to open URLs (like http:// or ftp://) as files.
    allow_url_include = Off
    ; Define the anonymous ftp password (your email address)
    ;from="[email protected]"
    ; Define the User-Agent string
    ; user_agent="PHP"
    ; Default timeout for socket based streams (seconds)
    default_socket_timeout = 10
    ; Dynamic Extensions ;
    ; If you wish to have an extension loaded automatically, use the following
    ; syntax:
    ; extension=modulename.extension
    ; For example, under UNIX:
    ; extension=msql.so
    ; Note that it should be the name of the module only; no directory information
    ; needs to go here. Specify the location of the extension with the
    ; extension_dir directive above.
    ; Module Settings ;
    [Date]
    ; Defines the default timezone used by the date functions
    ;date.timezone =
    ;date.default_latitude = 31.7667
    ;date.default_longitude = 35.2333
    ;date.sunrise_zenith = 90.583333
    ;date.sunset_zenith = 90.583333
    [filter]
    ;filter.default = unsafe_raw
    ;filter.default_flags =
    [iconv]
    ;iconv.input_encoding = ISO-8859-1
    ;iconv.internal_encoding = ISO-8859-1
    ;iconv.output_encoding = ISO-8859-1
    [sqlite]
    ;sqlite.assoc_case = 0
    [xmlrpc]
    ;xmlrpc_error_number = 0
    ;xmlrpc_errors = 0
    [Pcre]
    ;PCRE library backtracking limit.
    ;pcre.backtrack_limit=100000
    ;PCRE library recursion limit.
    ;Please note that if you set this value to a high number you may consume all
    ;the available process stack and eventually crash PHP (due to reaching the
    ;stack size limit imposed by the Operating System).
    ;pcre.recursion_limit=100000
    [Syslog]
    ; Whether or not to define the various syslog variables (e.g. $LOG_PID,
    ; $LOG_CRON, etc.). Turning it off is a good idea performance-wise. In
    ; runtime, you can define these variables by calling define_syslog_variables().
    define_syslog_variables = Off
    [mail function]
    ; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
    ;sendmail_path =
    ; Force the addition of the specified parameters to be passed as extra parameters
    ; to the sendmail binary. These parameters will always replace the value of
    ; the 5th parameter to mail(), even in safe mode.
    ;mail.force_extra_parameters =
    [SQL]
    sql.safe_mode = Off
    [ODBC]
    ;odbc.default_db = Not yet implemented
    ;odbc.default_user = Not yet implemented
    ;odbc.default_pw = Not yet implemented
    ; Allow or prevent persistent links.
    odbc.allow_persistent = On
    ; Check that a connection is still valid before reuse.
    odbc.check_persistent = On
    ; Maximum number of persistent links. -1 means no limit.
    odbc.max_persistent = -1
    ; Maximum number of links (persistent + non-persistent). -1 means no limit.
    odbc.max_links = -1
    ; Handling of LONG fields. Returns number of bytes to variables. 0 means
    ; passthru.
    odbc.defaultlrl = 4096
    ; Handling of binary data. 0 means passthru, 1 return as is, 2 convert to char.
    ; See the documentation on odbc_binmode and odbc_longreadlen for an explanation
    ; of uodbc.defaultlrl and uodbc.defaultbinmode
    odbc.defaultbinmode = 1
    [MySQL]
    ; Allow or prevent persistent links.
    mysql.allow_persistent = On
    ; Maximum number of persistent links. -1 means no limit.
    mysql.max_persistent = -1
    ; Maximum number of links (persistent + non-persistent). -1 means no limit.
    mysql.max_links = -1
    ; Default port number for mysql_connect(). If unset, mysql_connect() will use
    ; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
    ; compile-time value defined MYSQL_PORT (in that order).
    mysql.default_port =
    ; Default socket name for local MySQL connects. If empty, uses the built-in
    ; MySQL defaults.
    mysql.default_socket =
    ; Default host for mysql_connect() (doesn't apply in safe mode).
    mysql.default_host =
    ; Default user for mysql_connect() (doesn't apply in safe mode).
    mysql.default_user =
    ; Default password for mysql_connect() (doesn't apply in safe mode).
    ; Note that this is generally a *bad* idea to store passwords in this file.
    ; *Any* user with PHP access can run 'echo get_cfg_var("mysql.default_password")
    ; and reveal this password! And of course, any users with read access to this
    ; file will be able to reveal the password as well.
    mysql.default_password =
    ; Maximum time (in seconds) for connect timeout. -1 means no limit
    mysql.connect_timeout = 60
    ; Trace mode. When trace_mode is active (=On), warnings for table/index scans and
    ; SQL-Errors will be displayed.
    mysql.trace_mode = Off
    [MySQLi]
    ; Maximum number of links. -1 means no limit.
    mysqli.max_links = -1
    ; Default port number for mysqli_connect(). If unset, mysqli_connect() will use
    ; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
    ; compile-time value defined MYSQL_PORT (in that order).
    mysqli.default_port = 3306
    ; Default socket name for local MySQL connects. If empty, uses the built-in
    ; MySQL defaults.
    mysqli.default_socket =
    ; Default host for mysql_connect() (doesn't apply in safe mode).
    mysqli.default_host =
    ; Default user for mysql_connect() (doesn't apply in safe mode).
    mysqli.default_user =
    ; Default password for mysqli_connect() (doesn't apply in safe mode).
    ; Note that this is generally a *bad* idea to store passwords in this file.
    ; *Any* user with PHP access can run 'echo get_cfg_var("mysqli.default_pw")
    ; and reveal this password! And of course, any users with read access to this
    ; file will be able to reveal the password as well.
    mysqli.default_pw =
    ; Allow or prevent reconnect
    mysqli.reconnect = Off
    [mSQL]
    ; Allow or prevent persistent links.
    msql.allow_persistent = On
    ; Maximum number of persistent links. -1 means no limit.
    msql.max_persistent = -1
    ; Maximum number of links (persistent+non persistent). -1 means no limit.
    msql.max_links = -1
    [OCI8]
    ; enables privileged connections using external credentials (OCI_SYSOPER, OCI_SYSDBA)
    ;oci8.privileged_connect = Off
    ; Connection: The maximum number of persistent OCI8 connections per
    ; process. Using -1 means no limit.
    ;oci8.max_persistent = -1
    ; Connection: The maximum number of seconds a process is allowed to
    ; maintain an idle persistent connection. Using -1 means idle
    ; persistent connections will be maintained forever.
    ;oci8.persistent_timeout = -1
    ; Connection: The number of seconds that must pass before issuing a
    ; ping during oci_pconnect() to check the connection validity. When
    ; set to 0, each oci_pconnect() will cause a ping. Using -1 disables
    ; pings completely.
    ;oci8.ping_interval = 60
    ; Tuning: This option enables statement caching, and specifies how
    ; many statements to cache. Using 0 disables statement caching.
    ;oci8.statement_cache_size = 20
    ; Tuning: Enables statement prefetching and sets the default number of
    ; rows that will be fetched automatically after statement execution.
    ;oci8.default_prefetch = 10
    ; Compatibility. Using On means oci_close() will not close
    ; oci_connect() and oci_new_connect() connections.
    ;oci8.old_oci_close_semantics = Off
    [PostgresSQL]
    ; Allow or prevent persistent links.
    pgsql.allow_persistent = On
    ; Detect broken persistent links always with pg_pconnect().
    ; Auto reset feature requires a little overheads.
    pgsql.auto_reset_persistent = Off
    ; Maximum number of persistent links. -1 means no limit.
    pgsql.max_persistent = -1
    ; Maximum number of links (persistent+non persistent). -1 means no limit.
    pgsql.max_links = -1
    ; Ignore PostgreSQL backends Notice message or not.
    ; Notice message logging require a little overheads.
    pgsql.ignore_notice = 0
    ; Log PostgreSQL backends Noitce message or not.
    ; Unless pgsql.ignore_notice=0, module cannot log notice message.
    pgsql.log_notice = 0
    [Sybase]
    ; Allow or prevent persistent links.
    sybase.allow_persistent = On
    ; Maximum number of persistent links. -1 means no limit.
    sybase.max_persistent = -1
    ; Maximum number of links (persistent + non-persistent). -1 means no limit.
    sybase.max_links = -1
    ;sybase.interface_file = "/usr/sybase/interfaces"
    ; Minimum error severity to display.
    sybase.min_error_severity = 10
    ; Minimum message severity to display.
    sybase.min_message_severity = 10
    ; Compatibility mode with old versions of PHP 3.0.
    ; If on, this will cause PHP to automatically assign types to results according
    ; to their Sybase type, instead of treating them all as strings. This
    ; compatibility mode will probably not stay around forever, so try applying
    ; whatever necessary changes to your code, and turn it off.
    sybase.compatability_mode = Off
    [Sybase-CT]
    ; Allow or prevent persistent links.
    sybct.allow_persistent = On
    ; Maximum number of persistent links. -1 means no limit.
    sybct.max_persistent = -1
    ; Maximum number of links (persistent + non-persistent). -1 means no limit.
    sybct.max_links = -1
    ; Minimum server message severity to display.
    sybct.min_server_severity = 10
    ; Minimum client message severity to display.
    sybct.min_client_severity = 10
    [bcmath]
    ; Number of decimal digits for all bcmath functions.
    bcmath.scale = 0
    [browscap]
    ;browscap = extra/browscap.ini
    [Informix]
    ; Default host for ifx_connect() (doesn't apply in safe mode).
    ifx.default_host =
    ; Default user for ifx_connect() (doesn't apply in safe mode).
    ifx.default_user =
    ; Default password for ifx_connect() (doesn't apply in safe mode).
    ifx.default_password =
    ; Allow or prevent persistent links.
    ifx.allow_persistent = On
    ; Maximum number of persistent links. -1 means no limit.
    ifx.max_persistent = -1
    ; Maximum number of links (persistent + non-persistent). -1 means no limit.
    ifx.max_links = -1
    ; If on, select statements return the contents of a text blob instead of its id.
    ifx.textasvarchar = 0
    ; If on, select statements return the contents of a byte blob instead of its id.
    ifx.byteasvarchar = 0
    ; Trailing blanks are stripped from fixed-length char columns. May help the
    ; life of Informix SE users.
    ifx.charasvarchar = 0
    ; If on, the contents of text and byte blobs are dumped to a file instead of
    ; keeping them in memory.
    ifx.blobinfile = 0
    ; NULL's are returned as empty strings, unless this is set to 1. In that case,
    ; NULL's are returned as string 'NULL'.
    ifx.nullformat = 0
    [Session]
    ; Handler used to store/retrieve data.
    session.save_handler = files
    ; Argument passed to save_handler. In the case of files, this is the path
    ; where data files are stored.
    ; As of PHP 4.0.1, you can define the path as:
    ; session.save_path = "N;/path"
    ; where N is an integer. Instead of storing all the session files in
    ; /path, what this will do is use subdirectories N-levels deep, and
    ; store the session data in those directories. This is useful if you
    ; or your OS have problems with lots of files in one directory, and is
    ; a more efficient layout for servers that handle lots of sessions.
    ; NOTE 1: PHP will not create this directory structure automatically.
    ; You can use the script in the ext/session dir for that purpose.
    ; NOTE 2: See the section on garbage collection below if you choose to
    ; use subdirectories for session storage
    ; The file storage module creates files using mode 600 by default.
    ; You can change that by using
    ; session.save_path = "N;MODE;/path"
    ; where MODE is the octal representation of the mode. Note that this
    ; does not overwrite the process's umask.
    session.save_path = "/www/sessions"
    ; Whether to use cookies.
    session.use_cookies = 1
    ;session.cookie_secure =
    ; This option enables administrators to make their users invulnerable to
    ; attacks which involve passing session ids in URLs; defaults to 0.
    session.use_only_cookies = 1
    ; Name of the session (used as cookie name).
    session.name = ServerSessionIdentifier
    ; Initialize session on request startup.
    session.auto_start = 0
    ; Lifetime in seconds of cookie or, if 0, until browser is restarted.
    session.cookie_lifetime = 0
    ; The path for which the cookie is valid.
    session.cookie_path = /
    ; The domain for which the cookie is valid.
    session.cookie_domain =
    ; Whether or not to add the httpOnly flag to the cookie, which makes it inaccessible to browser scripting languages such as JavaScript.
    session.cookie_httponly = 1
    ; Handler used to serialize data. php is the standard serializer of PHP.
    session.serialize_handler = php
    ; Define the probability that the 'garbage collection' process is started
    ; on every session initialization.
    ; The probability is calculated by using gc_probability/gc_divisor,
    ; e.g. 1/100 means there is a 1% chance that the GC process starts
    ; on each request.
    session.gc_probability = 1
    session.gc_divisor = 30
    ; After this number of seconds, stored data will be seen as 'garbage' and
    ; cleaned up by the garbage collection process.
    session.gc_maxlifetime = 3600
    ; NOTE: If you are using the subdirectory option for storing session files
    ; (see session.save_path above), then garbage collection does *not*
    ; happen automatically. You will need to do your own garbage
    ; collection through a shell script, cron entry, or some other method.
    ; For example, the following script would is the equivalent of
    ; setting session.gc_maxlifetime to 1440 (1440 seconds = 24 minutes):
    ; cd /path/to/sessions; find -cmin +24 | xargs rm
    ; PHP 4.2 and less have an undocumented feature/bug that allows you to
    ; to initialize a session variable in the global scope, albeit register_globals
    ; is disabled. PHP 4.3 and later will warn you, if this feature is used.
    ; You can disable the feature and the warning separately. At this time,
    ; the warning is only displayed, if bug_compat_42 is enabled.
    session.bug_compat_42 = 0
    session.bug_compat_warn = 1
    ; Check HTTP Referer to invalidate externally stored URLs containing ids.
    ; HTTP_REFERER has to contain this substring for the session to be
    ; considered as valid.
    session.referer_check =
    ; How many bytes to read from the file.
    session.entropy_length = 0
    ; Specified here to create the session id.
    session.entropy_file =
    ;session.entropy_length = 16
    ;session.entropy_file = /dev/urandom
    ; Set to {nocache,private,public,} to determine HTTP caching aspects
    ; or leave this empty to avoid sending anti-caching headers.
    session.cache_limiter = none
    ; Document expires after n minutes.
    session.cache_expire = 0
    ; trans sid support is disabled by default.
    ; Use of trans sid may risk your users security.
    ; Use this option with caution.
    ; - User may send URL contains active session ID
    ; to other person via. email/irc/etc.
    ; - URL that contains active session ID may be stored
    ; in publically accessible computer.
    ; - User may access your site with the same session ID
    ; always using URL stored in browser's history or bookmarks.
    session.use_trans_sid = 0
    ; Select a hash function
    ; 0: MD5 (128 bits)
    ; 1: SHA-1 (160 bits)
    session.hash_function = 1
    ; Define how many bits are stored in each character when converting
    ; the binary hash data to something readable.
    ; 4 bits: 0-9, a-f
    ; 5 bits: 0-9, a-v
    ; 6 bits: 0-9, a-z, A-Z, "-", ","
    session.hash_bits_per_character = 6
    ; The URL rewriter will look for URLs in a defined set of HTML tags.
    ; form/fieldset are special; if you include them here, the rewriter will
    ; add a hidden <input> field with the info which is otherwise appended
    ; to URLs. If you want XHTML conformity, remove the form entry.
    ; Note that all valid entries require a "=", even if no value follows.
    ;url_rewriter.tags = "a=href,area=href,frame=src,input=src,form=fakeentry"
    [MSSQL]
    ; Allow or prevent persistent links.
    mssql.allow_persistent = On
    ; Maximum number of persistent links. -1 means no limit.
    mssql.max_persistent = -1
    ; Maximum number of links (persistent+non persistent). -1 means no limit.
    mssql.max_links = -1
    ; Minimum error severity to display.
    mssql.min_error_severity = 10
    ; Minimum message severity to display.
    mssql.min_message_severity = 10
    ; Compatibility mode with old versions of PHP 3.0.
    mssql.compatability_mode = Off
    ; Connect timeout
    ;mssql.connect_timeout = 5
    ; Query timeout
    ;mssql.timeout = 60
    ; Valid range 0 - 2147483647. Default = 4096.
    ;mssql.textlimit = 4096
    ; Valid range 0 - 2147483647. Default = 4096.
    ;mssql.textsize = 4096
    ; Limits the number of records in each batch. 0 = all records in one batch.
    ;mssql.batchsize = 0
    ; Specify how datetime and datetim4 columns are returned
    ; On => Returns data converted to SQL server settings
    ; Off => Returns values as YYYY-MM-DD hh:mm:ss
    ;mssql.datetimeconvert = On
    ; Use NT authentication when connecting to the server
    mssql.secure_connection = Off
    ; Specify max number of processes. -1 = library default
    ; msdlib defaults to 25
    ; FreeTDS defaults to 4096
    ;mssql.max_procs = -1
    ; Specify client character set.
    ; If empty or not set the client charset from freetds.comf is used
    ; This is only used when compiled with FreeTDS
    ;mssql.charset = "ISO-8859-1"
    [Assertion]
    ; Assert(expr); active by default.
    ;assert.active = On
    ; Issue a PHP warning for each failed assertion.
    ;assert.warning = On
    ; Don't bail out by default.
    ;assert.bail = Off
    ; User-function to be called if an assertion fails.
    ;assert.callback = 0
    ; Eval the expression with current error_reporting(). Set to true if you want
    ; error_reporting(0) around the eval().
    ;assert.quiet_eval = 0
    [COM]
    ; path to a file containing GUIDs, IIDs or filenames of files with TypeLibs
    ;com.typelib_file =
    ; allow Distributed-COM calls
    ;com.allow_dcom = true
    ; autoregister constants of a components typlib on com_load()
    ;com.autoregister_typelib = true
    ; register constants casesensitive
    ;com.autoregister_casesensitive = false
    ; show warnings on duplicate constant registrations
    ;com.autoregister_verbose = true
    [mbstring]
    ; language for internal character representation.
    ;mbstring.language = Japanese
    ; internal/script encoding.
    ; Some encoding cannot work as internal encoding.
    ; (e.g. SJIS, BIG5, ISO-2022-*)
    ;mbstring.internal_encoding = EUC-JP
    ; http input encoding.
    ;mbstring.http_input = auto
    ; http output encoding. mb_output_handler must be
    ; registered as output buffer to function
    ;mbstring.http_output = SJIS
    ; enable automatic encoding translation according to
    ; mbstring.internal_encoding setting. Input chars are
    ; converted to internal encoding by setting this to On.
    ; Note: Do _not_ use automatic encoding translation for
    ; portable libs/applications.
    ;mbstring.encoding_translation = Off
    ; automatic encoding detection order.
    ; auto means
    ;mbstring.detect_order = auto
    ; substitute_character used when character cannot be converted
    ; one from another
    ;mbstring.substitute_character = none;
    ; overload(replace) single byte functions by mbstring functions.
    ; mail(), ereg(), etc are overloaded by mb_send_mail(), mb_ereg(),
    ; etc. Possible values are 0,1,2,4 or combination of them.
    ; For example, 7 for overload everything.
    ; 0: No overload
    ; 1: Overload mail() function
    ; 2: Overload str*() functions
    ; 4: Overload ereg*() functions
    ;mbstring.func_overload = 0
    ; enable strict encoding detection.
    ;mbstring.strict_encoding = Off
    [FrontBase]
    ;fbsql.allow_persistent = On
    ;fbsql.autocommit = On
    ;fbsql.show_timestamp_decimals = Off
    ;fbsql.default_database =
    ;fbsql.default_database_password =
    ;fbsql.default_host =
    ;fbsql.default_password =
    ;fbsql.default_user = "_SYSTEM"
    ;fbsql.generate_warnings = Off
    ;fbsql.max_connections = 128
    ;fbsql.max_links = 128
    ;fbsql.max_persistent = -1
    ;fbsql.max_results = 128
    [gd]
    ; Tell the jpeg decode to libjpeg warnings and try to create
    ; a gd image. The warning will then be displayed as notices
    ; disabled by default
    ;gd.jpeg_ignore_warning = 0
    [exif]
    ; Exif UNICODE user comments are handled as UCS-2BE/UCS-2LE and JIS as JIS.
    ; With mbstring support this will automatically be converted into the encoding
    ; given by corresponding encode setting. When empty mbstring.internal_encoding
    ; is used. For the decode settings you can distinguish between motorola and
    ; intel byte order. A decode setting cannot be empty.
    ;exif.encode_unicode = ISO-8859-15
    ;exif.decode_unicode_motorola = UCS-2BE
    ;exif.decode_unicode_intel = UCS-2LE
    ;exif.encode_jis =
    ;exif.decode_jis_motorola = JIS
    ;exif.decode_jis_intel = JIS
    [Tidy]
    ; The path to a default tidy configuration file to use when using tidy
    ;tidy.default_config = /usr/local/lib/php/default.tcfg
    ; Should tidy clean and repair output automatically?
    ; WARNING: Do not use this option if you are generating non-html content
    ; such as dynamic images
    tidy.clean_output = Off
    [soap]
    ; Enables or disables WSDL caching feature.
    soap.wsdl_cache_enabled=1
    ; Sets the directory name where SOAP extension will put cache files.
    soap.wsdl_cache_dir="/tmp"
    ; (time to live) Sets the number of second while cached file will be used
    ; instead of original one.
    soap.wsdl_cache_ttl=86400
    ; available extensions
    ;extension=bcmath.so
    ;extension=bz2.so
    ;extension=calendar.so
    ;extension=curl.so
    ;extension=dba.so
    ;extension=dbase.so
    ;extension=exif.so
    ;extension=ftp.so
    extension=gd.so
    extension=gettext.so
    ;extension=iconv.so
    ;extension=imap.so
    ;extension=json.so
    ;extension=ldap.so
    extension=mcrypt.so
    ;extension=mime_magic.so
    extension=mysql.so
    ;extension=mysqli.so
    ;extension=ncurses.so
    ;extension=odbc.so
    extension=openssl.so
    extension=pdo.so
    extension=pdo_mysql.so
    ;extension=pdo_odbc.so
    ;extension=pdo_pgsql.so
    ;extension=pdo_sqlite.so
    ;extension=pgsql.so
    ;extension=posix.so
    ;extension=pspell.so
    extension=session.so
    ;extension=shmop.so
    ;extension=snmp.so
    ;extension=soap.so
    extension=sockets.so
    ;extension=sqlite.so
    ;extension=sysvmsg.so
    ;extension=sysvsem.so
    ;extension=sysvshm.so
    ;extension=tidy.so
    ;extension=xmlrpc.so
    ;extension=xsl.so
    ;extension=zip.so
    extension=zlib.so
    ; Local Variables:
    ; tab-width: 4
    ; End:
    Some more info:
    [root@Taurine etc]# php-cgi -m
    [PHP Modules]
    cgi-fcgi
    Core
    ctype
    date
    dom
    ereg
    fileinfo
    filter
    gettext
    hash
    libxml
    mbstring
    mysql
    mysqlnd
    openssl
    pcre
    PDO
    pdo_mysql
    Reflection
    session
    SimpleXML
    sockets
    SPL
    standard
    tokenizer
    xml
    xmlreader
    xmlwriter
    zlib
    [Zend Modules]
    [root@Taurine etc]# php-cgi -v
    PHP 5.3.0 with Suhosin-Patch (cgi-fcgi) (built: Sep 16 2009 13:55:34)
    Copyright (c) 1997-2009 The PHP Group
    Zend Engine v2.3.0, Copyright (c) 1998-2009 Zend Technologies
    [root@Taurine etc]# cd /usr/lib/php/modules/
    [root@Taurine modules]# ls -alh
    totalt 3,2M
    drwxr-xr-x 2 root root 4,0K 16 sep 13.57 .
    drwxr-xr-x 4 root root 4,0K 16 sep 13.57 ..
    -rwxr-xr-x 1 root root 27K 16 sep 13.57 bcmath.so
    -rwxr-xr-x 1 root root 21K 16 sep 13.57 bz2.so
    -rwxr-xr-x 1 root root 25K 16 sep 13.57 calendar.so
    -rwxr-xr-x 1 root root 51K 16 sep 13.57 dba.so
    -rwxr-xr-x 1 root root 52K 16 sep 13.57 exif.so
    -rwxr-xr-x 1 root root 46K 16 sep 13.57 ftp.so
    -rwxr-xr-x 1 root root 11K 16 sep 13.57 gettext.so
    -rwxr-xr-x 1 root root 37K 16 sep 13.57 iconv.so
    -rwxr-xr-x 1 root root 1,2M 16 sep 13.57 imap.so
    -rwxr-xr-x 1 root root 35K 16 sep 13.57 json.so
    -rwxr-xr-x 1 root root 43K 16 sep 13.57 mysql.so
    -rwxr-xr-x 1 root root 109K 16 sep 13.57 mysqli.so
    -rwxr-xr-x 1 root root 110K 16 sep 13.57 openssl.so
    -rwxr-xr-x 1 root root 98K 16 sep 13.57 pdo.so
    -rwxr-xr-x 1 root root 24K 16 sep 13.57 pdo_mysql.so
    -rwxr-xr-x 1 root root 286K 16 sep 13.57 phar.so
    -rwxr-xr-x 1 root root 26K 16 sep 13.57 posix.so
    -rwxr-xr-x 1 root root 9,8K 16 sep 13.57 shmop.so
    -rwxr-xr-x 1 root root 356K 16 sep 13.57 soap.so
    -rwxr-xr-x 1 root root 46K 16 sep 13.57 sockets.so
    -rwxr-xr-x 1 root root 355K 16 sep 13.57 sqlite.so
    -rwxr-xr-x 1 root root 15K 16 sep 13.57 sysvmsg.so
    -rwxr-xr-x 1 root root 8,3K 16 sep 13.57 sysvsem.so
    -rwxr-xr-x 1 root root 11K 16 sep 13.57 sysvshm.so
    -rwxr-xr-x 1 root root 79K 16 sep 13.57 xmlrpc.so
    -rwxr-xr-x 1 root root 79K 16 sep 13.57 zip.so
    Last edited by nullvoid (2009-09-22 17:39:47)

  • Whenever I try to open a document pages gives me this message. I cannot work with this extremely important document now. What should I do? Process:         Pages [818] Path:            /Applications/Pages.app/Contents/MacOS/Pages Identifier:      com.appl

    Whenever I try to open a document pages gives me this message. I cannot work with this extremely important document now. What should I do? Please help me... 
    Process:         Pages [818]
    Path:            /Applications/Pages.app/Contents/MacOS/Pages
    Identifier:      com.apple.iWork.Pages
    Version:         5.1 (1769)
    Build Info:      Pages-1769000000000000~1
    App Item ID:     409201541
    App External ID: 289042884
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [144]
    Responsible:     Pages [818]
    User ID:         501
    Date/Time:       2014-02-09 22:13:54.209 +0200
    OS Version:      Mac OS X 10.9.1 (13B42)
    Report Version:  11
    Anonymous UUID:  399064A7-9AC8-6A66-8B11-37036F60D7A6
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    *** Terminating app due to uncaught exception 'NSRangeException', reason: 'character index out of bounds'
    terminating with uncaught exception of type NSException
    abort() called
    Application Specific Backtrace 1:
    0   CoreFoundation                      0x00007fff90ec741c __exceptionPreprocess + 172
    1   libobjc.A.dylib                     0x00007fff9806be75 objc_exception_throw + 43
    2   CoreFoundation                      0x00007fff90ec72cc +[NSException raise:format:] + 204
    3   Pages                               0x000000010dfe95d3 PagesConvertSandboxDocument + 4123996
    4   Pages                               0x000000010f1a27f0 PagesConvertSandboxDocument + 22708089
    5   Pages                               0x000000010f330239 PagesConvertSandboxDocument + 24336834
    6   Pages                               0x000000010f315b92 PagesConvertSandboxDocument + 24228635
    7   Pages                               0x000000010f1db522 PagesConvertSandboxDocument + 22940843
    8   Pages                               0x000000010f296157 PagesConvertSandboxDocument + 23705824
    9   Pages                               0x000000010f296c95 PagesConvertSandboxDocument + 23708702
    10  Pages                               0x000000010f2976d7 PagesConvertSandboxDocument + 23711328
    11  Pages                               0x000000010f28f7af PagesConvertSandboxDocument + 23678776
    12  Pages                               0x000000010ed88882 PagesConvertSandboxDocument + 18407435
    13  Pages                               0x000000010ed88905 PagesConvertSandboxDocument + 18407566
    14  Pages                               0x000000010eea41cb PagesConvertSandboxDocument + 19568980
    15  Pages                               0x000000010eea3910 PagesConvertSandboxDocument + 19566745
    16  Pages                               0x000000010eea18dd PagesConvertSandboxDocument + 19558502
    17  Pages                               0x000000010db9fabf Pages + 592575
    18  Pages                               0x000000010db13417 Pages + 17431
    19  Pages                               0x000000010db12b75 Pages + 15221
    20  AppKit                              0x00007fff9562b35c -[NSWindowController _windowDidLoad] + 450
    21  AppKit                              0x00007fff95612076 -[NSWindowController window] + 110
    22  Pages                               0x000000010e27d543 PagesConvertSandboxDocument + 6827212
    23  Pages                               0x000000010e273901 PagesConvertSandboxDocument + 6787210
    24  AppKit                              0x00007fff9566e567 -[NSDocument addWindowController:] + 228
    25  Pages                               0x000000010e25aee2 PagesConvertSandboxDocument + 6686315
    26  AppKit                              0x00007fff95844af0 __80-[NSDocumentController openDocumentWithContentsOfURL:display:completionHandler:]_block_invoke855 + 185
    27  AppKit                              0x00007fff958447e7 __80-[NSDocumentController openDocumentWithContentsOfURL:display:completionHandler:]_block_invoke_3841 + 24
    28  libdispatch.dylib                   0x00007fff936a51d7 _dispatch_call_block_and_release + 12
    29  libdispatch.dylib                   0x00007fff936a22ad _dispatch_client_callout + 8
    30  libdispatch.dylib                   0x00007fff936a9f03 _dispatch_main_queue_callback_4CF + 333
    31  CoreFoundation                      0x00007fff90e2e839 __CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE__ + 9
    32  CoreFoundation                      0x00007fff90de9b14 __CFRunLoopRun + 1636
    33  CoreFoundation                      0x00007fff90de9275 CFRunLoopRunSpecific + 309
    34  HIToolbox                           0x00007fff8cfc9f0d RunCurrentEventLoopInMode + 226
    35  HIToolbox                           0x00007fff8cfc9cb7 ReceiveNextEventCommon + 479
    36  HIToolbox                           0x00007fff8cfc9abc _BlockUntilNextEventMatchingListInModeWithFilter + 65
    37  AppKit                              0x00007fff9539628e _DPSNextEvent + 1434
    38  AppKit                              0x00007fff953958db -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    39  AppKit                              0x00007fff953899cc -[NSApplication run] + 553
    40  AppKit                              0x00007fff95374803 NSApplicationMain + 940
    41  Pages                               0x000000010db1b811 Pages + 51217
    42  libdyld.dylib                       0x00007fff93e305fd start + 1
    43  ???                                 0x0000000000000001 0x0 + 1
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x00007fff93e25866 __pthread_kill + 10
    1   libsystem_pthread.dylib                 0x00007fff9805835c pthread_kill + 92
    2   libsystem_c.dylib                       0x00007fff9107ebba abort + 125
    3   libc++abi.dylib                         0x00007fff96d4b141 abort_message + 257
    4   libc++abi.dylib                         0x00007fff96d70abc default_terminate_handler() + 264
    5   libobjc.A.dylib                         0x00007fff9806c30d _objc_terminate() + 103
    6   libc++abi.dylib                         0x00007fff96d6e3e1 std::__terminate(void (*)()) + 8
    7   libc++abi.dylib                         0x00007fff96d6e456 std::terminate() + 54
    8   libobjc.A.dylib                         0x00007fff9806c0b0 objc_terminate + 9
    9   libdispatch.dylib                       0x00007fff936a22c1 _dispatch_client_callout + 28
    10  libdispatch.dylib                       0x00007fff936a9f03 _dispatch_main_queue_callback_4CF + 333
    11  com.apple.CoreFoundation                0x00007fff90e2e839 __CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE__ + 9
    12  com.apple.CoreFoundation                0x00007fff90de9b14 __CFRunLoopRun + 1636
    13  com.apple.CoreFoundation                0x00007fff90de9275 CFRunLoopRunSpecific + 309
    14  com.apple.HIToolbox                     0x00007fff8cfc9f0d RunCurrentEventLoopInMode + 226
    15  com.apple.HIToolbox                     0x00007fff8cfc9cb7 ReceiveNextEventCommon + 479
    16  com.apple.HIToolbox                     0x00007fff8cfc9abc _BlockUntilNextEventMatchingListInModeWithFilter + 65
    17  com.apple.AppKit                        0x00007fff9539628e _DPSNextEvent + 1434
    18  com.apple.AppKit                        0x00007fff953958db -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    19  com.apple.AppKit                        0x00007fff953899cc -[NSApplication run] + 553
    20  com.apple.AppKit                        0x00007fff95374803 NSApplicationMain + 940
    21  com.apple.iWork.Pages                   0x000000010db1b811 0x10db0f000 + 51217
    22  libdyld.dylib                           0x00007fff93e305fd start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff93e26662 kevent64 + 10
    1   libdispatch.dylib                       0x00007fff936a443d _dispatch_mgr_invoke + 239
    2   libdispatch.dylib                       0x00007fff936a4152 _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib                  0x00007fff93e21a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff93e20d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff90dea315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff90de9939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff90de9275 CFRunLoopRunSpecific + 309
    5   com.apple.AppKit                        0x00007fff955361ce _NSEventThread + 144
    6   libsystem_pthread.dylib                 0x00007fff98057899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff9805772a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff9805bfc9 thread_start + 13
    Thread 3:: Recalculation control thread
    0   libsystem_kernel.dylib                  0x00007fff93e25716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff98059c3b _pthread_cond_wait + 727
    2   com.apple.iWork.Pages                   0x000000010e7b7555 0x10db0f000 + 13272405
    3   com.apple.iWork.Pages                   0x000000010e7bcfb8 0x10db0f000 + 13295544
    4   libsystem_pthread.dylib                 0x00007fff98057899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff9805772a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff9805bfc9 thread_start + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00007fff93e25e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff98058f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff9805bfb9 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff93e25e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff98058f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff9805bfb9 start_wqthread + 13
    Thread 6:
    0   libsystem_kernel.dylib                  0x00007fff93e25e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff98058f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff9805bfb9 start_wqthread + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff93e25e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff98058f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff9805bfb9 start_wqthread + 13
    Thread 8:
    0   libsystem_kernel.dylib                  0x00007fff93e25e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff98058f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff9805bfb9 start_wqthread + 13
    Thread 9:
    0   libsystem_kernel.dylib                  0x00007fff93e25e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff98058f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff9805bfb9 start_wqthread + 13
    Thread 10:
    0   libsystem_kernel.dylib                  0x00007fff93e25e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff98058f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff9805bfb9 start_wqthread + 13
    Thread 11:: Recalculation control thread
    0   libsystem_kernel.dylib                  0x00007fff93e25716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff98059c3b _pthread_cond_wait + 727
    2   com.apple.iWork.Pages                   0x000000010e7b7555 0x10db0f000 + 13272405
    3   com.apple.iWork.Pages                   0x000000010e7bcfb8 0x10db0f000 + 13295544
    4   libsystem_pthread.dylib                 0x00007fff98057899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff9805772a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff9805bfc9 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x00007fff7e954310  rcx: 0x00007fff520eee78  rdx: 0x0000000000000000
      rdi: 0x0000000000000707  rsi: 0x0000000000000006  rbp: 0x00007fff520eeea0  rsp: 0x00007fff520eee78
       r8: 0x00007fff96d71ab4   r9: 0x00007fff910a6900  r10: 0x0000000008000000  r11: 0x0000000000000206
      r12: 0x00007fff520ef000  r13: 0x00007fff520ef4d0  r14: 0x0000000000000006  r15: 0x00007fff520eeee0
      rip: 0x00007fff93e25866  rfl: 0x0000000000000206  cr2: 0x0000000111bf3000
    Logical CPU:     0
    Error Code:      0x02000148
    Trap Number:     133
    Binary Images:
           0x10db0f000 -        0x10f9c2ff7  com.apple.iWork.Pages (5.1 - 1769) <4743D904-40A6-3A6F-ABC9-008952252477> /Applications/Pages.app/Contents/MacOS/Pages
           0x1101ce000 -        0x1101e1fff  com.apple.MediaLibrary (1.0 - 637) <CB99F701-D188-34A1-A53B-0331A352C8A3> /System/Library/Frameworks/MediaLibrary.framework/Versions/A/MediaLibrary
           0x113b05000 -        0x113b06ff4 +cl_kernels (???) <DC4D97AD-4D50-48A9-8AF9-75534DE75E3B> cl_kernels
           0x113b13000 -        0x113b13ff9 +cl_kernels (???) <A530A685-47AC-4FAD-82DC-17D3CF278059> cl_kernels
           0x11caf5000 -        0x11cbdbfef  unorm8_bgra.dylib (2.3.58) <9FF943D1-4EF7-36CA-852D-B61C2E554713> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
           0x11d81c000 -        0x11d81cfff +cl_kernels (???) <94345083-F3E4-4934-B1E0-3ED4D8933A2A> cl_kernels
           0x11d936000 -        0x11da16ff7  unorm8_rgba.dylib (2.3.58) <DDD1AFEB-FD30-34D2-958A-823C3EFD649A> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_rgba.dylib
           0x11dbe4000 -        0x11dbe4ffd +cl_kernels (???) <51071888-F028-4743-97D5-866EE6A11D94> cl_kernels
        0x7fff606c7000 -     0x7fff606fa817  dyld (239.3) <D1DFCF3F-0B0C-332A-BCC0-87A851B570FF> /usr/lib/dyld
        0x7fff8c4d8000 -     0x7fff8c4dbffa  libCGXType.A.dylib (599.7) <2FC9C2BC-B5C5-3C27-93F9-51C6C4512E9D> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXTy pe.A.dylib
        0x7fff8c4dc000 -     0x7fff8c4ddff7  com.apple.print.framework.Print (9.0 - 260) <EE00FAE1-DA03-3EC2-8571-562518C46994> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff8c4de000 -     0x7fff8c4defff  com.apple.Cocoa (6.8 - 20) <E90E99D7-A425-3301-A025-D9E0CD11918E> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff8c4df000 -     0x7fff8c4e1fff  com.apple.marco (10.0 - 1000) <FC7EF8C7-5EDF-3720-BAEC-281F12A7A3F8> /System/Library/PrivateFrameworks/Marco.framework/Versions/A/Marco
        0x7fff8c4e2000 -     0x7fff8c4e4fff  libRadiance.dylib (1038) <55F99274-5074-3C73-BAC5-AF234E71CF38> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff8c4e5000 -     0x7fff8c4effff  com.apple.AppSandbox (3.0 - 1) <55717299-8164-3D79-918F-BD64706735CF> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
        0x7fff8c503000 -     0x7fff8c504ff7  libDiagnosticMessagesClient.dylib (100) <4CDB0F7B-C0AF-3424-BC39-495696F0DB1E> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff8c505000 -     0x7fff8c58dff7  com.apple.CorePDF (4.0 - 4) <92D15ED1-D2E1-3ECB-93FF-42888219A99F> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff8cf3b000 -     0x7fff8cf9afff  com.apple.framework.CoreWLAN (4.0 - 400.45.1) <775F9444-8059-30A2-8058-7F7ACD68CCF1> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff8cf9b000 -     0x7fff8d245ffd  com.apple.HIToolbox (2.1 - 696) <1CFFF37B-C392-3088-B0A4-C08C55B2AF8F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff8d2cd000 -     0x7fff8d30fff7  libauto.dylib (185.5) <F45C36E8-B606-3886-B5B1-B6745E757CA8> /usr/lib/libauto.dylib
        0x7fff8d310000 -     0x7fff8d355ff7  libcurl.4.dylib (78) <A722B4F0-1F6C-3E16-9CB1-4C6ADC15221E> /usr/lib/libcurl.4.dylib
        0x7fff8d427000 -     0x7fff8d48bff3  com.apple.datadetectorscore (5.0 - 354.0) <9ACF24B8-3268-3134-A5BC-D72C9371A195> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff8d499000 -     0x7fff8d59efff  com.apple.ImageIO.framework (3.3.0 - 1038) <2C058216-C6D8-3380-A7EA-92A3F04520C1> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff8d59f000 -     0x7fff8d5c9ff7  libsandbox.1.dylib (278.10) <B4183FA8-F7E2-3301-8BF9-0EEFB793A5D5> /usr/lib/libsandbox.1.dylib
        0x7fff8d7bb000 -     0x7fff8d92bff6  com.apple.CFNetwork (673.0.3 - 673.0.3) <42CFC3DB-35C8-3652-AF37-4BCC73D8BDEF> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff8d92c000 -     0x7fff8d984ff7  com.apple.Symbolication (1.4 - 129) <16D42516-7B5E-357C-898A-FAA9EE7642B3> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff8d9a4000 -     0x7fff8d9a8fff  com.apple.CommonPanels (1.2.6 - 96) <6B434AFD-50F8-37C7-9A56-162C17E375B3> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff8d9ac000 -     0x7fff8d9e6ff3  com.apple.bom (12.0 - 192) <989690DB-B9CC-3DB5-89AE-B5D33EDC474E> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff8d9e7000 -     0x7fff8d9eefff  com.apple.NetFS (6.0 - 4.0) <8E26C099-CE9D-3819-91A2-64EA929C6137> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff8da35000 -     0x7fff8da35fff  com.apple.Carbon (154 - 157) <45A9A40A-78FF-3EA0-8FAB-A4F81052FA55> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff8da74000 -     0x7fff8da7cffc  libGFXShared.dylib (9.0.83) <11A621C3-37A0-39CE-A69B-8739021BD79D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff8da7d000 -     0x7fff8dbb3ffa  com.apple.WebKit (9537 - 9537.73.11) <5F583526-8D71-30AD-B97C-56EC51E94E85> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff8dbb7000 -     0x7fff8dc52ff7  com.apple.PDFKit (2.9 - 2.9) <AD968A31-6567-30A7-A699-154C88DB56D0> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff8dc56000 -     0x7fff8dc6dfff  com.apple.CFOpenDirectory (10.9 - 173.1.1) <3FB4D5FE-860B-3BDE-BAE2-3531D919EF10> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff8dc6e000 -     0x7fff8dc95ffb  libsystem_info.dylib (449.1.3) <7D41A156-D285-3849-A2C3-C04ADE797D98> /usr/lib/system/libsystem_info.dylib
        0x7fff8dcec000 -     0x7fff8dceffff  com.apple.help (1.3.3 - 46) <AE763646-D07A-3F9A-ACD4-F5CBD734EE36> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff8dd86000 -     0x7fff8de77ff9  libiconv.2.dylib (41) <BB44B115-AC32-3877-A0ED-AEC6232A4563> /usr/lib/libiconv.2.dylib
        0x7fff8dece000 -     0x7fff8df1bfff  com.apple.AppleVAFramework (5.0.27 - 5.0.27) <D01B7D87-4BDC-3E48-A79B-951D05075F9D> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff8df9a000 -     0x7fff8e0dafff  com.apple.QTKit (7.7.3 - 2826.0.1) <44109489-09C2-34C4-AB66-E52A505D7887> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff8e194000 -     0x7fff8e1a5ff7  libsystem_asl.dylib (217.1.4) <655FB343-52CF-3E2F-B14D-BEBF5AAEF94D> /usr/lib/system/libsystem_asl.dylib
        0x7fff8e1a6000 -     0x7fff8e204ff7  com.apple.corelocation (1486.17 - 1486.24) <9FBB29F0-E000-3190-A96C-9EAA5CCCA2A0> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
        0x7fff8eac9000 -     0x7fff8edc8fff  com.apple.Foundation (6.9 - 1056) <D608EDFD-9634-3573-9B7E-081C7D085F7A> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff8ee21000 -     0x7fff8ee5aff7  com.apple.QD (3.50 - 298) <C1F20764-DEF0-34CF-B3AB-AB5480D64E66> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff8ee5b000 -     0x7fff8ee71fff  com.apple.CoreMediaAuthoring (2.2 - 947) <B01FBACC-DDD5-30A8-BCCF-57CE24ABA329> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
        0x7fff8eed5000 -     0x7fff8ef72fff  com.apple.imcore (10.0 - 1000) <027E09B4-B4B6-3710-8806-B4CE41DF3242> /System/Library/PrivateFrameworks/IMCore.framework/Versions/A/IMCore
        0x7fff8ef73000 -     0x7fff8efb4fff  com.apple.PerformanceAnalysis (1.47 - 47) <784ED7B8-FAE4-36CE-8C76-B7D300316C9F> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff8efb5000 -     0x7fff8f289fc7  com.apple.vImage (7.0 - 7.0) <D241DBFA-AC49-31E2-893D-EAAC31890C90> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff8f28a000 -     0x7fff8f6bdffb  com.apple.vision.FaceCore (3.0.0 - 3.0.0) <F42BFC9C-0B16-35EF-9A07-91B7FDAB7FC5> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
        0x7fff8fd64000 -     0x7fff8fd93fd2  libsystem_m.dylib (3047.16) <B7F0E2E4-2777-33FC-A787-D6430B630D54> /usr/lib/system/libsystem_m.dylib
        0x7fff8fd94000 -     0x7fff8fd95ff7  libSystem.B.dylib (1197.1.1) <BFC0DC97-46C6-3BE0-9983-54A98734897A> /usr/lib/libSystem.B.dylib
        0x7fff8fd96000 -     0x7fff901e4fff  com.apple.VideoToolbox (1.0 - 1273.29) <6E38291D-7A81-3033-AFB9-61ABD38B6371> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
        0x7fff90cff000 -     0x7fff90d5fff2  com.apple.CoreUtils (1.9 - 190.4) <CBB5B4DC-2801-32B3-A31C-8811CCF99873> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
        0x7fff90d79000 -     0x7fff90f5eff7  com.apple.CoreFoundation (6.9 - 855.11) <E22C6A1F-8996-349C-905E-96C3BBE07C2F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff90f5f000 -     0x7fff90f68ffb  libCGInterfaces.dylib (271) <68EFBEFE-7506-3235-99A2-5B69EDBFD7B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/Resources/libCGInterfaces.dylib
        0x7fff90f69000 -     0x7fff91021ff7  com.apple.DiscRecording (8.0 - 8000.4.6) <CDAAAD04-A1D0-3C67-ABCC-EFC9E8D44E7E> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff91022000 -     0x7fff910abff7  libsystem_c.dylib (997.1.1) <61833FAA-7281-3FF9-937F-686B6F20427C> /usr/lib/system/libsystem_c.dylib
        0x7fff910ac000 -     0x7fff910acffd  com.apple.audio.units.AudioUnit (1.9 - 1.9) <6E89F3CB-CC41-3728-9F9A-FDFC151E8261> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff910ad000 -     0x7fff911cfff1  com.apple.avfoundation (2.0 - 651.12) <03E595B7-A559-3D4D-90E9-BCA603E3A39E> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
        0x7fff9126c000 -     0x7fff9126eff7  com.apple.securityhi (9.0 - 55005) <405E2BC6-2B6F-3B6B-B48E-2FD39214F052> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff9126f000 -     0x7fff91280ff7  com.apple.idsfoundation (10.0 - 1000) <0BC25100-092B-3C5A-8245-F7C963380785> /System/Library/PrivateFrameworks/IDSFoundation.framework/Versions/A/IDSFoundat ion
        0x7fff912a5000 -     0x7fff91367ff1  com.apple.CoreText (352.0 - 367.15) <E5C70FC8-C861-39B8-A491-595E5B55CFC8> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff91368000 -     0x7fff9138fff7  libsystem_network.dylib (241.3) <8B1E1F1D-A5CC-3BAE-8B1E-ABC84337A364> /usr/lib/system/libsystem_network.dylib
        0x7fff91390000 -     0x7fff916aaff7  com.apple.MediaToolbox (1.0 - 1273.29) <6260E68B-7E50-3D49-8C0A-7145614C13D8> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff916c4000 -     0x7fff91724fff  com.apple.ISSupport (1.9.9 - 57) <E1E343D7-222C-3458-9D1F-FC600B7F1C50> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
        0x7fff91729000 -     0x7fff9173bfff  com.apple.ImageCapture (9.0 - 9.0) <BE0B65DA-3031-359B-8BBA-B9803D4ADBF4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff91749000 -     0x7fff9179aff3  com.apple.audio.CoreAudio (4.2.0 - 4.2.0) <BF4C2FE3-8BC8-30D1-8347-2A7221268794> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff9179b000 -     0x7fff9179bfff  com.apple.quartzframework (1.5 - 1.5) <3B2A72DB-39FC-3C5B-98BE-605F37777F37> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff9179c000 -     0x7fff918ccff7  com.apple.desktopservices (1.8 - 1.8) <09DC9BB8-432F-3C7A-BB08-956A2DDFC2DE> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff918e0000 -     0x7fff918efff8  com.apple.LangAnalysis (1.7.0 - 1.7.0) <8FE131B6-1180-3892-98F5-C9C9B79072D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff91908000 -     0x7fff91e2cfff  com.apple.QuartzComposer (5.1 - 316) <B20E93C3-8517-3E5C-83B6-C312C839C5D0> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff91e2d000 -     0x7fff9208eff7  com.apple.imageKit (2.5 - 770) <33BCF627-EB1A-3CC1-98AB-2324B6DFB329> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff9208f000 -     0x7fff92edcffb  com.apple.WebCore (9537 - 9537.73.13) <A468175D-078A-3377-A883-0BC5C8A4339F> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff92edd000 -     0x7fff92edfff3  libsystem_configuration.dylib (596.12) <C4F633D9-94C8-35D9-BB2D-84C5122533C7> /usr/lib/system/libsystem_configuration.dylib
        0x7fff92ee0000 -     0x7fff93138ff1  com.apple.security (7.0 - 55471) <233831C5-C457-3AD5-AFE7-E3E2DE6929C9> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff93139000 -     0x7fff9313bff7  com.apple.diagnosticlogcollection (10.0 - 1000) <5CA6D8A2-DEA6-33C3-91BC-F3B076C0500B> /System/Library/PrivateFrameworks/DiagnosticLogCollection.framework/Versions/A/ DiagnosticLogCollection
        0x7fff9313c000 -     0x7fff93146ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <2D27B498-BB9C-3D88-B05A-76908A8A26F3> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff93147000 -     0x7fff93147ffd  libOpenScriptingUtil.dylib (157) <19F0E769-0989-3062-9AFB-8976E90E9759> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff93148000 -     0x7fff93177fff  com.apple.DebugSymbols (106 - 106) <E1BDED08-523A-36F4-B2DA-9D5C712F0AC7> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff93178000 -     0x7fff93179ffb  libremovefile.dylib (33) <3543F917-928E-3DB2-A2F4-7AB73B4970EF> /usr/lib/system/libremovefile.dylib
        0x7fff9317a000 -     0x7fff9317bfff  liblangid.dylib (117) <9546E641-F730-3AB0-B3CD-E0E2FDD173D9> /usr/lib/liblangid.dylib
        0x7fff9317c000 -     0x7fff93183ff7  liblaunch.dylib (842.1.4) <FCBF0A02-0B06-3F97-9248-5062A9DEB32C> /usr/lib/system/liblaunch.dylib
        0x7fff93184000 -     0x7fff931b5ff7  libTrueTypeScaler.dylib (111.1) <697E72D0-8D79-3BB7-8AF5-46875AC9A4BC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
        0x7fff931b6000 -     0x7fff93209fff  com.apple.ScalableUserInterface (1.0 - 1) <CF745298-7373-38D2-B3B1-727D5A569E48> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
        0x7fff9320a000 -     0x7fff9320bfff  com.apple.AddressBook.ContactsData (8.0 - 1365) <61090508-4CC3-3F57-9B0C-D8527947D35D> /System/Library/PrivateFrameworks/ContactsData.framework/Versions/A/ContactsDat a
        0x7fff93226000 -     0x7fff93234fff  com.apple.opengl (9.0.83 - 9.0.83) <AF467644-7B1D-327A-AC47-CECFCAF61990> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff9339c000 -     0x7fff933a0fff  libpam.2.dylib (20) <B93CE8F5-DAA8-30A1-B1F6-F890509513CB> /usr/lib/libpam.2.dylib
        0x7fff933a1000 -     0x7fff933a3ffb  libutil.dylib (34) <DAC4A6CF-A1BB-3874-9569-A919316D30E8> /usr/lib/libutil.dylib
        0x7fff933a4000 -     0x7fff933aeff7  com.apple.ProtocolBuffer (1 - 182.1.3) <82E68598-A8AA-3AF1-843E-2A64F19472D4> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
        0x7fff933dc000 -     0x7fff9366dff7  com.apple.RawCamera.bundle (5.03 - 729) <DBA059CC-E78F-356F-B435-DA62A746F4D4> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff9366e000 -     0x7fff93676fff  libsystem_dnssd.dylib (522.1.11) <270DCF6C-502D-389A-AA9F-DE4624A36FF7> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff93677000 -     0x7fff93684ff0  libbz2.1.0.dylib (29) <0B98AC35-B138-349C-8063-2B987A75D24C> /usr/lib/libbz2.1.0.dylib
        0x7fff93685000 -     0x7fff936a0ff7  libPng.dylib (1038) <EF781AF8-C2E6-3179-B8A1-A584783070F1> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff936a1000 -     0x7fff936bbfff  libdispatch.dylib (339.1.9) <46878A5B-4248-3057-962C-6D4A235EEF31> /usr/lib/system/libdispatch.dylib
        0x7fff936bc000 -     0x7fff93a32ffa  com.apple.JavaScriptCore (9537 - 9537.73.10) <4A4AE781-6F76-3412-B0E5-67E0BAEE22A2> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff93a59000 -     0x7fff93a5eff7  libunwind.dylib (35.3) <78DCC358-2FC1-302E-B395-0155B47CB547> /usr/lib/system/libunwind.dylib
        0x7fff93a5f000 -     0x7fff93a60fff  com.apple.TrustEvaluationAgent (2.0 - 25) <334A82F4-4AE4-3719-A511-86D0B0723E2B> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff93a61000 -     0x7fff93a62fff  libunc.dylib (28) <62682455-1862-36FE-8A04-7A6B91256438> /usr/lib/system/libunc.dylib
        0x7fff93aae000 -     0x7fff93ab1fff  libCoreVMClient.dylib (58.1) <EBC36C69-C896-3C3D-8589-3E9023E7E56F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff93ab2000 -     0x7fff93c4eff7  com.apple.QuartzCore (1.8 - 332.0) <994D1E0A-64B6-398C-B9A2-C362F02DE943> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff93c4f000 -     0x7fff93c9bffe  com.apple.CoreMediaIO (401.0 - 4544) <44EBC0FE-DAD5-3711-96CB-05250F350A16> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff93c9d000 -     0x7fff93cebfff  libcorecrypto.dylib (161.1) <F3973C28-14B6-3006-BB2B-00DD7F09ABC7> /usr/lib/system/libcorecrypto.dylib
        0x7fff93e10000 -     0x7fff93e2cff7  libsystem_kernel.dylib (2422.1.72) <D14913DB-47F1-3591-8DAF-D4B4EF5F8818> /usr/lib/system/libsystem_kernel.dylib
        0x7fff93e2d000 -     0x7fff93e30ff7  libdyld.dylib (239.3) <62F4D752-4089-31A8-8B73-B95A68893B3C> /usr/lib/system/libdyld.dylib
        0x7fff940cc000 -     0x7fff940d5ff3  libsystem_notify.dylib (121) <52571EC3-6894-37E4-946E-064B021ED44E> /usr/lib/system/libsystem_notify.dylib
        0x7fff940dc000 -     0x7fff940dcfff  com.apple.AOSMigrate (1.0 - 1) <ABA8F3F2-BC96-3F89-AAF4-1AA459A0BCBD> /System/Library/PrivateFrameworks/AOSMigrate.framework/Versions/A/AOSMigrate
        0x7fff940df000 -     0x7fff94128fff  com.apple.CoreMedia (1.0 - 1273.29) <4ACD30BA-E9FE-3842-A8B7-E3BD63747867> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff94164000 -     0x7fff94193ff7  com.apple.CoreAVCHD (5.7.0 - 5700.4.3) <404369C0-ED9F-3010-8D2F-BC55285F7808> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
        0x7fff94194000 -     0x7fff94194fff  com.apple.Accelerate.vecLib (3.9 - vecLib 3.9) <F8D0CC77-98AC-3B58-9FE6-0C25421827B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff943da000 -     0x7fff943defff  libsystem_stats.dylib (93.1.26) <B9E26A9E-FBBC-3938-B8B7-6CF7CA8C99AD> /usr/lib/system/libsystem_stats.dylib
        0x7fff943df000 -     0x7fff9446efff  com.apple.Metadata (10.7.0 - 800.12.2) <A9F5D471-8732-3F95-A4A2-33864B92A181> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff9446f000 -     0x7fff944a3fff  libssl.0.9.8.dylib (50) <B15F967C-B002-36C2-9621-3456D8509F50> /usr/lib/libssl.0.9.8.dylib
        0x7fff944c0000 -     0x7fff944d8ff7  com.apple.openscripting (1.4 - 157) <B3B037D7-1019-31E6-9D17-08E699AF3701> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff944df000 -     0x7fff9451efff  libGLU.dylib (9.0.83) <8B457205-513B-3477-AE9C-3AD979D5FE11> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff9451f000 -     0x7fff94521fff  com.apple.Mangrove (1.0 - 1) <72F5CBC7-4E78-374E-98EA-C3700136904E> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
        0x7fff94522000 -     0x7fff9452fff4  com.apple.Librarian (1.2 - 1) <F1A2744D-8536-32C7-8218-9972C6300DAE> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
        0x7fff9454c000 -     0x7fff94559fff  com.apple.Sharing (132.2 - 132.2) <F983394A-226D-3244-B511-FA51FDB6ADDA> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
        0x7fff9455a000 -     0x7fff945a1ff7  libcups.2.dylib (372) <348EED62-6C20-35D6-8EFB-E80943965100> /usr/lib/libcups.2.dylib
        0x7fff945c9000 -     0x7fff945d3fff  libcommonCrypto.dylib (60049) <8C4F0CA0-389C-3EDC-B155-E62DD2187E1D> /usr/lib/system/libcommonCrypto.dylib
        0x7fff945d4000 -     0x7fff945e5ff7  libz.1.dylib (53) <42E0C8C6-CA38-3CA4-8619-D24ED5DD492E> /usr/lib/libz.1.dylib
        0x7fff945e6000 -     0x7fff945e7ffb  libScreenReader.dylib (333.2) <0172E6E2-9D4B-36BF-81DC-428FF0668E78> /usr/lib/libScreenReader.dylib
        0x7fff945e8000 -     0x7fff94698ff7  libvMisc.dylib (423.32) <049C0735-1808-39B9-943F-76CB8021744F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff94827000 -     0x7fff9488dfff  com.apple.framework.CoreWiFi (2.0 - 200.21.1) <5491896D-78C5-30B6-96E9-D8DDECF3BE73> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
        0x7fff948b1000 -     0x7fff94982ff7  com.apple.QuickLookUIFramework (5.0 - 622.3) <9741E66B-3978-35F6-8846-B6C528945611> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff94983000 -     0x7fff9529f05f  com.apple.CoreGraphics (1.600.0 - 599.7) <7D0FD5A7-A061-39BA-8E00-723825D2C4DD> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff952a0000 -     0x7fff952a2fff  com.apple.EFILogin (2.0 - 2) <C360E8AF-E9BB-3BBA-9DF0-57A92CEF00D4> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
        0x7fff952a3000 -     0x7fff952a3fff  com.apple.Accelerate (1.9 - Accelerate 1.9) <509BB27A-AE62-366D-86D8-0B06D217CF56> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff952a4000 -     0x7fff95308ff9  com.apple.Heimdal (4.0 - 2.0) <E7D20A4D-4674-37E1-A949-635FFF7C439A> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff9535e000 -     0x7fff95371ff7  com.apple.AppContainer (3.0 - 1) <A90C058D-46E8-3BAB-AF17-AF9C7C273069> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContaine r
        0x7fff95372000 -     0x7fff95ee6ff7  com.apple.AppKit (6.9 - 1265) <0E9FC8BF-DA3C-34C5-91CC-12BC922B5F01> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff95f71000 -     0x7fff95f7afff  com.apple.DisplayServicesFW (2.8 - 360.8.14) <816A9CED-1BC0-3C76-8103-1B9BE0F723BB> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff95f8b000 -     0x7fff95fd9fff  com.apple.opencl (2.3.57 - 2.3.57) <FC03A80D-543A-3448-83FF-D399C3A240D9> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff95fda000 -     0x7fff95feafff  libbsm.0.dylib (33) <2CAC00A2-1352-302A-88FA-C567D4D69179> /usr/lib/libbsm.0.dylib
        0x7fff95ffa000 -     0x7fff962c8ff4  com.apple.CoreImage (9.0.54) <74BB8685-69A9-3A45-8DED-EA26BD39D710> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff962c9000 -     0x7fff96394fff  libvDSP.dylib (423.32) <3BF732BE-DDE0-38EB-8C54-E4E3C64F77A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff96397000 -     0x7fff96907fff  com.apple.CoreAUC (6.22.08 - 6.22.08) <F306D552-2220-3160-88EA-C916193C5EFD> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff96908000 -     0x7fff9690cff7  libheimdal-asn1.dylib (323.12) <063A01C2-E547-39D9-BB42-4CC8E64ADE70> /usr/lib/libheimdal-asn1.dylib
        0x7fff9690d000 -     0x7fff96918ff7  com.apple.NetAuth (5.0 - 5.0) <C811E662-9EC3-3B74-808A-A75D624F326B> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff96919000 -     0x7fff96934ff7  libCRFSuite.dylib (34) <FFAE75FA-C54E-398B-AA97-18164CD9789D> /usr/lib/libCRFSuite.dylib
        0x7fff96944000 -     0x7fff9697cff7  com.apple.RemoteViewServices (2.0 - 94) <3F34D630-3DDB-3411-BC28-A56A9B55EBDA> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff9697d000 -     0x7fff969a2ff7  com.apple.CoreVideo (1.8 - 117.2) <4674339E-26D0-35FA-9958-422832B39B12> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff969a3000 -     0x7fff969cffff  com.apple.CoreServicesInternal (184.8 - 184.8) <707E05AE-DDA8-36FD-B0FF-7F15A061B46A> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff969d0000 -     0x7fff969ecfff  com.apple.frameworks.preferencepanes (16.0 - 16.0) <059E99D8-67C2-3B59-B5E7-850DD7A92D75> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
        0x7fff969ed000 -     0x7fff96a04ffa  libAVFAudio.dylib (32.2) <52DA516B-DE79-322C-9E1B-2658019289D7> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAu dio.dylib
        0x7fff96a24000 -     0x7fff96a24fff  com.apple.ApplicationServices (48 - 48) <3E3F01A8-314D-378F-835E-9CC4F8820031> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff96a25000 -     0x7fff96a28fff  com.apple.TCC (1.0 - 1) <32A075D9-47FD-3E71-95BC-BFB0D583F41C> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff96a29000 -     0x7fff96a34fff  libGL.dylib (9.0.83) <984A960A-C159-3AE5-8B40-E2B451F6C712> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff96a35000 -     0x7fff96c7dfff  com.apple.CoreData (107 - 481) <E5AFBA07-F73E-3B3F-9099-F51224EE8EAD> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff96c85000 -     0x7fff96c8fff7  com.apple.CrashReporterSupport (10.9 - 538) <B487466B-3AA1-3854-A808-A61F049FA794> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff96d4a000 -     0x7fff96d73ff7  libc++abi.dylib (48) <8C16158F-CBF8-3BD7-BEF4-022704B2A326> /usr/lib/libc++abi.dylib
        0x7fff96d74000 -     0x7fff96db9ff6  com.apple.HIServices (1.22 - 466) <21807AF8-3BC7-32BB-AB96-7C35CB59D7F6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff96dba000 -     0x7fff96e46ff7  com.apple.ink.framework (10.9 - 207) <8A50B893-AD03-3826-8555-A54FEAF08F47> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff96efc000 -     0x7fff96fe0fff  com.apple.coreui (2.1 - 231) <432DB40C-6B7E-39C8-9FB5-B95917930056> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff96fe1000 -     0x7fff97009ffb  libxslt.1.dylib (13) <C9794936-633C-3F0C-9E71-30190B9B41C1> /usr/lib/libxslt.1.dylib
        0x7fff9700a000 -     0x7fff9700cff7  libquarantine.dylib (71) <7A1A2BCB-C03D-3A25-BFA4-3E569B2D2C38> /usr/lib/system/libquarantine.dylib
        0x7fff9700d000 -     0x7fff97016fff  com.apple.speech.synthesis.framework (4.6.2 - 4.6.2) <0AAE45F0-FC6E-36B6-A6A7-73E6950A74AC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff97017000 -     0x7fff97017ff7  libkeymgr.dylib (28) <3AA8D85D-CF00-3BD3-A5A0-E28E1A32A6D8> /usr/lib/system/libkeymgr.dylib
        0x7fff97071000 -     0x7fff972b4fff  com.apple.AddressBook.framework (8.0 - 1365) <816242B1-D45E-3B5D-BC98-BB23458D5367> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
        0x7fff972b5000 -     0x7fff972d9fff  com.apple.quartzfilters (1.8.0 - 1.7.0) <39C08086-9866-372F-9420-81F5689149DF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff972da000 -     0x7fff97492ff3  libicucore.A.dylib (511.27) <003B6C21-CBD1-3486-9A1D-030ADF5FA061> /usr/lib/libicucore.A.dylib
        0x7fff97493000 -     0x7fff974e0ff2  com.apple.print.framework.PrintCore (9.0 - 428) <8D8253E3-302F-3DB2-9C5C-572CB974E8B3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff974e1000 -     0x7fff978c2ffe  libLAPACK.dylib (1094.5) <7E7A9B8D-1638-3914-BAE0-663B69865986> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff978c3000 -     0x7fff978f3fff  com.apple.IconServices (25 - 25.17) <4751127E-FBD5-3ED5-8510-08D4E4166EFE> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
        0x7fff978f4000 -     0x7fff978f9fff  libmacho.dylib (845) <1D2910DF-C036-3A82-A3FD-44FF73B5FF9B> /usr/lib/system/libmacho.dylib
        0x7fff978fa000 -     0x7fff97903fff  com.apple.CommonAuth (4.0 - 2.0) <1D263127-5F27-3128-996D-7397660D0C6E> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff97904000 -     0x7fff97956fff  libc++.1.dylib (120) <4F68DFC5-2077-39A8-A449-CAC5FDEE7BDE> /usr/lib/libc++.1.dylib
        0x7fff97960000 -     0x7fff9799eff7  libGLImage.dylib (9.0.83) <C08048A7-03CC-3E40-BCDC-7791D87AC8E4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff979e4000 -     0x7fff979eeff7  libcsfde.dylib (380) <3A54B430-EC05-3DE9-86C3-00C1BEAC7F9B> /usr/lib/libcsfde.dylib
        0x7fff97a45000 -     0x7fff97b34fff  libFontParser.dylib (111.1) <835A8253-6AB9-3AAB-9CBF-171440DEC486> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff97b35000 -     0x7fff97b37ff7  com.apple.SecCodeWrapper (3.0 - 1) <F5107AD0-20CD-328C-8B2E-74CB6F3169F6> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
        0x7fff97b38000 -     0x7fff97b53ff7  libsystem_malloc.dylib (23.1.10) <FFE5C472-B23A-318A-85BF-77CDE61900D1> /usr/lib/system/libsystem_malloc.dylib
        0x7fff97b61000 -     0x7fff97b69ff3  libCGCMS.A.dylib (599.7) <92AA4E85-7633-36E2-BAD0-7B1A2E48E75C> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
        0x7fff97b6a000 -     0x7fff97b77ff7  libxar.1.dylib (202) <5572AA71-E98D-3FE1-9402-BB4A84E0E71E> /usr/lib/libxar.1.dylib
        0x7fff97b78000 -     0x7fff97bd5fff  com.apple.imfoundation (10.0 - 1000) <122D84B9-871D-3885-9D8D-840CD529028F> /System/Library/PrivateFrameworks/IMFoundation.framework/Versions/A/IMFoundatio n
        0x7fff97bd6000 -     0x7fff97bdcfff  com.apple.AddressBook.ContactsFoundation (8.0 - 1365) <CFB1A744-8096-3FAB-B55E-2E6C410A0376> /System/Library/PrivateFrameworks/ContactsFoundation.framework/Versions/A/Conta ctsFoundation
        0x7fff97bdd000 -     0x7fff97bf5ff7  com.apple.GenerationalStorage (2.0 - 160.2) <79629AC7-896F-3302-8AC1-4939020F08C3> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff97bf6000 -     0x7fff97bfbfff  com.apple.DiskArbitration (2.6 - 2.6) <F8A47F61-83D1-3F92-B7A8-A169E0D187C0> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff97bfc000 -     0x7fff97c04ff7  com.apple.speech.recognition.framework (4.2.4 - 4.2.4) <98BBB3E4-6239-3EF1-90B2-84EA0D3B8D61> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff97c14000 -     0x7fff97c41ff2  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <43A137C4-3E72-37DC-945F-92569C12AAD4> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
        0x7fff97c42000 -     0x7fff97c4dff7  com.apple.DirectoryService.Framework (10.9 - 173.1.1) <F8566D1F-450F-3571-911F-75C68E45919F> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff97c4e000 -     0x7fff97c6bfff  com.apple.facetimeservices (10.0 - 1000) <9B4815BA-4305-381D-A178-F79E10B2C6E9> /System/Library/PrivateFrameworks/FTServices.framework/Versions/A/FTServices
        0x7fff97c6c000 -     0x7fff97d5afff  libJP2.dylib (1038) <6C8179F5-8063-3ED6-A7C2-D5603DECDF28> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff97d64000 -     0x7fff97d95ff7  libtidy.A.dylib (15.12) <BF757E3C-733A-3B6B-809A-A3949D46466E> /usr/lib/libtidy.A.dylib
        0x7fff97d96000 -     0x7fff97dafff7  com.apple.Ubiquity (1.3 - 289) <C7F1B734-CE81-334D-BE41-8B20D95A1F9B> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff97e4d000 -     0x7fff97e50ffc  com.apple.IOSurface (91 - 91) <07CA8A59-1E32-3FB6-B506-18DAF58A8CE0> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff97e51000 -     0x7fff97ec8fff  com.apple.CoreServices.OSServices (600.4 - 600.4) <36B2B009-C35E-3F21-824E-E0D00E7808C7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff97ec9000 -     0x7fff97ecbfff  libCVMSPluginSupport.dylib (9.0.83) <E2AED858-6EEB-36C6-8C06-C3CF649A3CD5> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff97ecc000 -     0x7fff97f3fffb  com.apple.securityfoundation (6.0 - 55122) <119D1C53-B292-3378-AEE1-A3B1FB02F43F> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff97fb2000 -     0x7fff97fb9fff  libcompiler_rt.dylib (35) <4CD916B2-1B17-362A-B403-EF24A1DAC141> /usr/lib/system/libcompiler_rt.dylib
        0x7fff97fba000 -     0x7fff97fc2fff  libMatch.1.dylib (19) <021293AB-407D-309A-87F5-8E782F46753E> /usr/lib/libMatch.1.dylib
        0x7fff97fc3000 -     0x7fff97fd3ffb  libsasl2.2.dylib (170) <C8E25710-68B6-368A-BF3E-48EC7273177B> /usr/lib/libsasl2.2.dylib
        0x7fff97fd4000 -     0x7fff9801ffff  com.apple.ImageCaptureCore (5.0 - 5.0) <F529EDDC-E2F5-30CA-9938-AF23296B5C5B> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff98020000 -     0x7fff98055ffc  com.apple.LDAPFramework (2.4.28 - 194.5) <7E31A674-C6AB-33BE-BD5E-F5E3C6E22894> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff98056000 -     0x7fff9805dff7  libsystem_pthread.dylib (53.1.4) <AB498556-B555-310E-9041-F67EC9E00E2C> /usr/lib/system/libsystem_pthread.dylib
        0x7fff9805e000 -     0x7fff9820bf27  libobjc.A.dylib (551.1) <AD7FD984-271E-30F4-A361-6B20319EC73B> /usr/lib/libobjc.A.dylib
        0x7fff982a0000 -     0x7fff98369fff  com.apple.LaunchServices (572.23 - 572.23) <8D955BDE-2C4C-3DD4-B4D7-2D916174FE1D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff9836a000 -     0x7fff98375fff  libkxld.dylib (2422.1.72) <C88EF3E6-B31F-3E12-BE9B-562D912BA733> /usr/lib/system/libkxld.dylib
        0x7fff98376000 -     0x7fff983cffff  libTIFF.dylib (1038) <5CBFE0C2-9DD8-340B-BA63-A94CE2E476F2> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff983d0000 -     0x7fff984b7ff7  libxml2.2.dylib (26) <A1DADD11-89E5-3DE4-8802-07186225967F> /usr/lib/libxml2.2.dylib
        0x7fff984c2000 -     0x7fff984e6ff7  libJPEG.dylib (1038) <86F349A8-882D-3326-A0B0-63257F68B1A7> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff984e7000 -     0x7fff98500ff7  com.apple.Kerberos (3.0 - 1) <F108AFEB-198A-3BAF-BCA5-9DFCE55EFF92> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff98501000 -     0x7fff98525fff  libxpc.dylib (300.1.17) <4554927A-9467-365C-91F1-5A116989DD7F> /usr/lib/system/libxpc.dylib
        0x7fff98526000 -     0x7fff98550ff7  libpcap.A.dylib (42) <91D3FF51-D6FE-3C05-98C9-1182E0EC3D58> /usr/lib/libpcap.A.dylib
        0x7fff9856b000 -     0x7fff98577ff7  com.apple.OpenDirectory (10.9 - 173.1.1) <6B78BD7B-5622-38E6-8FC6-86A117E3ACCA> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff98578000 -     0x7fff98581ff7  libcldcpuengine.dylib (2.3.58) <A2E1ED7B-FC7E-31F6-830A-FF917689766B> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
        0x7fff98582000 -     0x7fff9858aff7  com.apple.AppleSRP (5.0 - 1) <ABC7F088-1FD5-3768-B9F3-847F355E90B3> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
        0x7fff9858b000 -     0x7fff9881cff7  com.apple.AOSKit (1.06 - 176) <35525B2F-B02F-31FD-A3B2-FD6AE6D32C11> /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/AOSKit
        0x7fff98822000 -     0x7fff989ddff6  com.apple.GeoServices (1.0 - 702.14.9) <A3A4D6AC-72B2-39F3-AAE0-9AF3B88C5C8E> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
        0x7fff989de000 -     0x7fff98a2dff7  com.apple.framework.internetaccounts (2.1 - 210) <C77069C7-928C-315C-AA61-D90543901F20> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
        0x7fff98a42000 -     0x7fff98a49ff3  libcopyfile.dylib (103) <5A881779-D0D6-3029-B371-E3021C2DDA5E> /usr/lib/system/libcopyfile.dylib
        0x7fff98a4a000 -     0x7fff98a4eff7  libcache.dylib (62) <BDC1E65B-72A1-3DA3-A57C-B23159CAAD0B> /usr/lib/system/libcache.dylib
        0x7fff98a4f000 -     0x7fff98b12ff7  com.apple.backup.framework (1.5.1 - 1.5.1) <FC4E949B-B41A-3F21-8AF8-AEDB13146FEA> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff98b13000 -     0x7fff98b41ff7  com.apple.securityinterface (9.0 - 55047) <0346D8A9-2CAA-38F3-A741-5FBA5E9F1E7C> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff98b42000 -     0x7fff98b56fff  com.apple.aps.framework (4.0 - 4.0) <F529A05B-FB03-397E-B06A-3A60B808FA11> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
        0x7fff98b57000 -     0x7fff98b86ff5  com.apple.GSS (4.0 - 2.0) <ED98D992-CC14-39F3-9ABC-8D7F986487CC> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff98b87000 -     0x7fff98b8bff7  libGIF.dylib (1038) <C29B4323-1B9E-36B9-96C2-7CEDBAA124F0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff98b8d000 -     0x7fff98b92ff7  com.apple.MediaAccessibility (1.0 - 43) <D309D83D-5FAE-37A4-85ED-FFBDA8B66B82> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessi bility
        0x7fff98b93000 -     0x7fff98c72fff  libcrypto.0.9.8.dylib (50) <B95B9DBA-39D3-3EEF-AF43-44608B28894E> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff98c75000 -     0x7fff98cd8ff7  com.apple.SystemConfiguration (1.13 - 1.13) <F05F4149-981B-380B-8F50-51CE804BBB89> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff98cd9000 -     0x7fff98dc3fff  libsqlite3.dylib (158) <00269BF9-43BE-39E0-9C85-24585B9923C8> /usr/lib/libsqlite3.dylib
        0x7fff98dc4000 -     0x7fff98dc5ff7  libsystem_blocks.dylib (63) <FB856CD1-2AEA-3907-8E9B-1E54B6827F82> /usr/lib/system/libsystem_blocks.dylib
        0x7fff98dc6000 -     0x7fff98dc6fff  com.apple.CoreServices (59 - 59) <7A697B5E-F179-30DF-93F2-8B503CEEEFD5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff98dc7000 -     0x7fff98defffb  libRIP.A.dylib (599.7) <6F528EE3-99F8-3871-BD60-1306495C27D5> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A .dylib
        0x7fff98df0000 -     0x7fff98e21fff  com.apple.MediaKit (15 - 709) <23E33409-5C39-3F93-9E73-2B0E9EE8883E> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
        0x7fff98e22000 -     0x7fff98e23ff7  libsystem_sandbox.dylib (278.10) <A47E7E11-3C76-318E-B67D-98972B86F094> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff98e24000 -     0x7fff98ef5ff1  com.apple.DiskImagesFramework (10.9 - 371.1) <D456ED08-4C1D-341F-BAB8-85E34A7275C5> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
        0x7fff98ef6000 -     0x7fff991e0fff  com.apple.CoreServices.CarbonCore (1077.14 - 1077.14) <B00BEB34-A9F5-381F-99FD-11E405768A9A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff991e1000 -     0x7fff99206ff7  com.apple.ChunkingLibrary (2.0 - 155.1) <B845DC7A-D1EA-31E2-967C-D1FE0C628036> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
        0x7fff99207000 -     0x7fff99271ff7  com.apple.framework.IOKit (2.0.1 - 907.1.13) <C1E95F5C-B79B-31BE-9F2A-1B25163C1F16> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff99272000 -     0x7fff992aefff  com.apple.ids (10.0 - 1000) <22502AAF-CC59-33EC-9ACF-106315206701> /System/Library/PrivateFrameworks/IDS.framework/Versions/A/IDS
        0x7fff992af000 -     0x7fff992edfff  com.apple.ShareKit (1.0 - 185) <14FDC8CD-2F7B-3A66-B220-051670FA0289> /System/Library/PrivateFra

    It is saying;
    "I am Pages 5.1 and I am a buggy PiTA, with over 95 features removed, and best avoided"
    If you had Pages '08/'09 previously it should be in your Applications/iWork folder.
    Use that instead.
    Peter

  • Making iSight work with Windows Vista on VirtualBox

    I have a MacBook Pro with Windows Vista installed on the VirtualBox platform. The only problem I have is that it will not work with the iSight camera. I need the cam for video conferencing on a webring, and I do have to run the ring in Windows. When I start the ring, the camera comes on but I never get an image. The image screen just says "Initializing" and shows a counter showing the seconds elapsed. Is there a driver I can install, or some sort of workaround?
    Thank you,
    Leah

    Hi,
    Then you need to get at least the Snow Leopard Install Disk at the $29 price.
    The Original Disks will be grey and are Model Specific.
    That is to say that any Grey disks for an iMac for example are only useful to Reinstall the OS on another iMac from the same Production range - say Early 2008
    7:27 PM Thursday; November 11, 2010
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"

  • Wintergame does not work with 10.8 and no assistence from apple or the seller

    I have bought in the official Apple Ap Store the game Wintergames. But it does not work with mit OSX 10.8.3
    Every i try to load this programm it brakes down. I have contacted the seller. He is not interested in the problem and gave only the hint to re-intall the programm. This i have done 3 times. It does not work. I have get in contact with the Apple Support. They answered me they were not responsible for that.
    And i ask me.... why do Apple sell programms in their own stores, that do not work.
    This is the remark it get, if i start this programm:
    Process:         wintergames [3566]
    Path:            /Applications/WinterGames.app/Contents/MacOS/wintergames
    Identifier:      com.rune-soft.wintergames
    Version:         1.2.0 (1.2)
    App Item ID:     427639548
    App External ID: 10667633
    Code Type:       X86 (Native)
    Parent Process:  launchd [211]
    User ID:         501
    Date/Time:       2013-04-10 13:31:54.394 +0200
    OS Version:      Mac OS X 10.8.3 (12D78)
    Report Version:  10
    Interval Since Last Report:          29498 sec
    Crashes Since Last Report:           2
    Per-App Interval Since Last Report:  38 sec
    Per-App Crashes Since Last Report:   2
    Anonymous UUID:                      D1D3A31E-9A15-BB5E-1704-71380FD0FE3E
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000014
    VM Regions Near 0x14:
    --> __PAGEZERO             0000000000000000-0000000000001000 [    4K]
    ---/--- SM=NUL  /Applications/WinterGames.app/Contents/MacOS/wintergames
        __TEXT                 0000000000001000-0000000000197000 [ 1624K]
    r-x/rwx SM=COW  /Applications/WinterGames.app/Contents/MacOS/wintergames
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.rune-soft.wintergames         0x00088619 MainMenu::createMenues() +
    393
    1   com.rune-soft.wintergames         0x000a7db4 MainMenu::init() + 4804
    2   com.rune-soft.wintergames         0x00070dfa
    WinMain(Windows::HINSTANCE__*, Windows::HINSTANCE__*, char*, int) + 394
    3   com.rune-soft.wintergames         0x000042ff -[GameAppDelegate
    mainWinThreadProc:] + 303
    4   com.rune-soft.wintergames         0x00003c46 -[GameAppDelegate
    applicationDidFinishLaunching:] + 342
    5   com.apple.Foundation              0x997f9152 __57-[NSNotificationCenter
    addObserver:selector:name:object:]_block_invoke_0 + 49
    6   com.apple.CoreFoundation          0x91e6c861
    ___CFXNotificationPost_block_invoke_0 + 257
    7   com.apple.CoreFoundation          0x91db7e9a _CFXNotificationPost + 2794
    8   com.apple.Foundation              0x997e1c88 -[NSNotificationCenter
    postNotificationName:object:userInfo:] + 92
    9   com.apple.AppKit                  0x934750fe -[NSApplication
    _postDidFinishNotification] + 367
    10  com.apple.AppKit                  0x93474db8 -[NSApplication
    _sendFinishLaunchingNotification] + 249
    11  com.apple.AppKit                  0x93471d0f
    -[NSApplication(NSAppleEventHandling) _handleAEOpenEvent:] + 751
    12  com.apple.AppKit                  0x93471824
    -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] +
    378
    13  libobjc.A.dylib                   0x96383628 -[NSObject
    performSelector:withObject:withObject:] + 77
    14  com.apple.Foundation              0x997fc73a __76-[NSAppleEventManager
    setEventHandler:andSelector:forEventClass:andEventID:]_block_invoke_0 +
    121
    15  com.apple.Foundation              0x997fc291 -[NSAppleEventManager
    dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 430
    16  com.apple.Foundation              0x997fc08e
    _NSAppleEventManagerGenericHandler + 173
    17  com.apple.AE                      0x94d5aa35 aeDispatchAppleEvent(AEDesc
    const*, AEDesc*, unsigned long, unsigned char*) + 331
    18  com.apple.AE                      0x94d2ffbe
    dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 44
    19  com.apple.AE                      0x94d2fe7d aeProcessAppleEvent + 318
    20  com.apple.HIToolbox               0x99bd4c58 AEProcessAppleEvent + 100
    21  com.apple.AppKit                  0x9346dd4d _DPSNextEvent + 1655
    22  com.apple.AppKit                  0x9346d1dc -[NSApplication
    nextEventMatchingMask:untilDate:inMode:dequeue:] + 119
    23  com.apple.AppKit                  0x9346363c -[NSApplication run] + 855
    24  com.apple.AppKit                  0x93406666 NSApplicationMain + 1053
    25  com.rune-soft.wintergames         0x0000383a start + 54
    Thread 1:
    0   libsystem_kernel.dylib            0x99ad50ee __workq_kernreturn + 10
    1   libsystem_c.dylib                 0x94fd80ac _pthread_workq_return + 45
    2   libsystem_c.dylib                 0x94fd7e79 _pthread_wqthread + 448
    3   libsystem_c.dylib                 0x94fbfd2a start_wqthread + 30
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib            0x99ad59ae kevent + 10
    1   libdispatch.dylib                 0x975bbc71 _dispatch_mgr_invoke + 993
    2   libdispatch.dylib                 0x975bb7a9 _dispatch_mgr_thread + 53
    Thread 3:
    0   libsystem_kernel.dylib            0x99ad50ee __workq_kernreturn + 10
    1   libsystem_c.dylib                 0x94fd80ac _pthread_workq_return + 45
    2   libsystem_c.dylib                 0x94fd7e79 _pthread_wqthread + 448
    3   libsystem_c.dylib                 0x94fbfd2a start_wqthread + 30
    Thread 4:
    0   libsystem_kernel.dylib            0x99ad50ee __workq_kernreturn + 10
    1   libsystem_c.dylib                 0x94fd80ac _pthread_workq_return + 45
    2   libsystem_c.dylib                 0x94fd7e79 _pthread_wqthread + 448
    3   libsystem_c.dylib                 0x94fbfd2a start_wqthread + 30
    Thread 5:
    0   libsystem_kernel.dylib            0x99ad48e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                 0x94fda2e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                 0x94fda572
    pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore    0x9070c6ad
    TSWaitOnConditionTimedRelative + 177
    4   com.apple.CoreServices.CarbonCore    0x9070c184 TSWaitOnSemaphoreCommon
    + 272
    5   com.apple.CoreServices.CarbonCore    0x9070c40d
    TSWaitOnSemaphoreRelative + 24
    6   com.apple.QuickTimeComponents.component    0x9255f5ac 0x91f69000 +
    6251948
    7   libsystem_c.dylib                 0x94fd55b7 _pthread_start + 344
    8   libsystem_c.dylib                 0x94fbfd4e thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib            0x99ad48e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                 0x94fda2e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                 0x94fda572
    pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore    0x9070c6ad
    TSWaitOnConditionTimedRelative + 177
    4   com.apple.CoreServices.CarbonCore    0x9070c184 TSWaitOnSemaphoreCommon
    + 272
    5   com.apple.CoreServices.CarbonCore    0x9070c40d
    TSWaitOnSemaphoreRelative + 24
    6   com.apple.CoreServices.CarbonCore    0x906ad7da AIOFileThread(void*) +
    892
    7   libsystem_c.dylib                 0x94fd55b7 _pthread_start + 344
    8   libsystem_c.dylib                 0x94fbfd4e thread_start + 34
    Thread 7:: com.apple.audio.IOThread.client
    0   libsystem_kernel.dylib            0x99ad27d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib            0x99ad1cb0 mach_msg + 68
    2   com.apple.audio.CoreAudio         0x901e5310
    HALB_MachPort::SendMessageWithReply(unsigned int, unsigned int, unsigned
    long, unsigned long, mach_msg_header_t*, bool, unsigned int) + 138
    3   com.apple.audio.CoreAudio         0x901dfe3e
    HALB_MachPort::SendSimpleMessageWithSimpleReply(unsigned int, unsigned
    int, int, int&, bool, unsigned int) + 70
    4   com.apple.audio.CoreAudio         0x901de67d
    HALC_ProxyIOContext::IOWorkLoop() + 1389
    5   com.apple.audio.CoreAudio         0x901de061
    HALC_ProxyIOContext::IOThreadEntry(void*) + 145
    6   com.apple.audio.CoreAudio         0x901e804a
    ___ZN19HALC_ProxyIOContextC2Emj_block_invoke_0 + 20
    7   com.apple.audio.CoreAudio         0x901ddf85 HALB_IOThread::Entry(void*)
    + 69
    8   libsystem_c.dylib                 0x94fd55b7 _pthread_start + 344
    9   libsystem_c.dylib                 0x94fbfd4e thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x0008849b  ecx: 0xbfffdfcc  edx: 0x02aa7200
      edi: 0x00000000  esi: 0x00000000  ebp: 0xbfffea58  esp: 0xbfffb5f0
       ss: 0x00000023  efl: 0x00010282  eip: 0x00088619   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x00000014
    Logical CPU: 2
    Binary Images:
        0x1000 -   0x196fff +com.rune-soft.wintergames (1.2.0 - 1.2)
    <A73F630B-CA42-6B3F-60C8-DA7B3E2676A3>
    /Applications/WinterGames.app/Contents/MacOS/wintergames
      0x2f2000 -   0x31dff7  com.apple.audio.OpenAL (1.6 - 1.6)
    <CDE1BC7D-871D-3BE7-A6DE-96F6806BB7E1>
    /System/Library/Frameworks/OpenAL.framework/Versions/A/OpenAL
      0x32d000 -   0x3befee +libfreetype.dylib (1)
    <AAF09BB8-8463-7133-C835-7B11945D39CB>
    /Applications/WinterGames.app/Contents/Frameworks/libfreetype.dylib
      0x3d3000 -   0x962fe3 +Cg.dylib (0)
    /Applications/WinterGames.app/Contents/Frameworks/Cg.dylib
    0x1093000 -  0x10a0ff3  com.apple.Librarian (1.1 - 1)
    <68F8F983-5F16-3BA5-BDA7-1A5451CC02BB>
    /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
    0x1728000 -  0x1732ff7 +com.unsanity.smartcrashreports (Smart Crash
    Reports version 1.5 - 1.5) /Library/InputManagers/*/Smart Crash
    Reports.bundle/Contents/MacOS/Smart Crash Reports
    0x173f000 -  0x179cfff +com.cocoamug.CosmoPod (3.1)
    <DF7EFF0D-F74B-D0FC-3712-4E36D75D0043>
    /Library/InputManagers/*/CosmoPod.bundle/Contents/MacOS/CosmoPod
    0x17fa000 -  0x17fbffc +com.CASIO.EXLIM.component (1.1 - 1.1)
    /Library/QuickTime/CASIO AVI Importer.component/Contents/MacOS/CASIO AVI
    Importer
    0x4d25000 -  0x4dd0fff  libcrypto.0.9.7.dylib (106)
    <B96063DD-DBFC-320E-97C7-9ED5099051AC> /usr/lib/libcrypto.0.9.7.dylib
    0x4e14000 -  0x4f33ffb  com.apple.WebKit (8536 - 8536.28.10)
    <C181C3FB-91E3-38AB-A709-6B61935B3AD8>
    /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x5268000 -  0x526bfef  com.apple.LiveType.component (2.1.3 - 2.1.3)
    /Library/QuickTime/LiveType.component/Contents/MacOS/LiveType
    0x60ad000 -  0x6d40ffb  com.apple.WebCore (8536 - 8536.28.10)
    <AA738A8C-808D-302A-B58D-404C58075C45>
    /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.
    framework/Versions/A/WebCore
    0x90d9000 -  0x913efde  com.apple.LiveType.framework (2.1.3 - 2.1.3)
    /System/Library/PrivateFrameworks/LiveType.framework/Versions/A/LiveType
    0x915e000 -  0x91d0fff +com.DivXInc.DivXDecoder (6.4.0 - 6.4.0)
    /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x91de000 -  0x9224fc3  com.apple.motion.component (1.0 - 1.0)
    <77973A13-4E79-426F-853F-2318E52A2207>
    /Library/QuickTime/Motion.component/Contents/MacOS/Motion
    0x922a000 -  0x922d02f  Motion (1)
    <B5E862EE-E0FF-4F86-A789-98E3E601A18C>
    /Library/Frameworks/Motion.framework/Versions/A/Motion
    0xb1b2000 -  0xb346ffb  GLEngine (8.7.25)
    <37CEB6BA-0A46-3A34-BE81-7A0ED7DE1830>
    /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEn
    gine
    0xb37d000 -  0xb4fefff  libGLProgrammability.dylib (8.7.25)
    <CE1A4DFC-EEB2-37C1-B574-0338666C4017>
    /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProg
    rammability.dylib
    0xb530000 -  0xb53bfff  libGPUSupport.dylib (8.7.25)
    <08BED1B3-FD0C-3137-BC0C-39EED6029D84>
    /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Librarie
    s/libGPUSupport.dylib
    0xb542000 -  0xb56dff7  GLRendererFloat (8.7.25)
    <2173CC9F-3A9A-37EB-BB50-3E60ABF7F5A3>
    /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bund
    le/GLRendererFloat
    0xb576000 -  0xb57effd  libcldcpuengine.dylib (2.2.16)
    <0BE2D018-66CC-3F69-B8F1-7A81EEEE09F4>
    /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpu
    engine.dylib
    0xef8c000 -  0xef8effd  com.apple.PDFImporter (2.2 - 22)
    <29C10CDB-1E25-39CE-AF37-69DC3DE4BB51>
    /System/Library/Components/PDFImporter.component/Contents/MacOS/PDFImporte
    r
    0xf394000 -  0xf452ff3  ColorSyncDeprecated.dylib (400)
    <A959DD25-E448-3563-B74E-E58C69961C76>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/ColorSync.framework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0xfc00000 -  0xfc05ff7  com.apple.DesktopVideoOut (1.2.4 - 1.2.4)
    /Library/QuickTime/DesktopVideoOut.component/Contents/MacOS/DesktopVideoOu
    t
    0xfc94000 -  0xfc99fff  com.apple.audio.AppleHDAHALPlugIn (2.3.7 -
    2.3.7fc4) <081467DA-1F55-3C0C-8081-062A985F36B7>
    /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugI
    n.bundle/Contents/MacOS/AppleHDAHALPlugIn
    0xfca0000 -  0xff90feb +org.perian.Perian (1.2.3 - 1.2.3)
    <722FFF4F-46EF-E5BE-70A6-42B5873D2B37>
    /Library/QuickTime/Perian.component/Contents/MacOS/Perian
    0x1040b000 - 0x105d9ff3 +com.MyCometG3.mp4vDecoder (0.7.7 - 2008.06.01)
    /Library/QuickTime/mp4vDecoder.component/Contents/MacOS/mp4vDecoder
    0x106a9000 - 0x106bbfd9  com.apple.FCP Uncompressed 422.component (1.5 -
    1.5) /Library/QuickTime/FCP Uncompressed 422.component/Contents/MacOS/FCP
    Uncompressed 422
    0x106c1000 - 0x10729feb  com.apple.AppleProResDecoder (3.0.2 - 5718)
    <3F859389-0434-372E-842F-F15A76B4A8B6>
    /System/Library/QuickTime/AppleProResDecoder.component/Contents/MacOS/Appl
    eProResDecoder
    0x1075a000 - 0x107a3fff  com.apple.AppleVAH264HW.component (3.0 - 3.0)
    <FDF1C720-ED0E-323E-BA44-21423DE18D61>
    /System/Library/QuickTime/AppleVAH264HW.component/Contents/MacOS/AppleVAH2
    64HW
    0x10867000 - 0x1086effc  com.apple.AppleGVAHW.component (1.1 - 1)
    <5DB91F15-3FD3-308F-8FC5-662562F3EA78>
    /System/Library/QuickTime/AppleGVAHW.component/Contents/MacOS/AppleGVAHW
    0x10875000 - 0x109c0fff  com.apple.AppleGVAFramework (5.0.6 - 5.0.6)
    <103CBDDD-E0C2-3B62-923B-AA46F2AB3CD7>
    /System/Library/PrivateFrameworks/AppleGVA.framework/Versions/A/AppleGVA
    0x109dc000 - 0x10a16fff  com.apple.QuickTimeFireWireDV.component (7.7.1 -
    2599.24) <1E9A8E7C-A9FD-34FD-AB7C-C3784BAB821F>
    /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/Qui
    ckTimeFireWireDV
    0x10a22000 - 0x10a66fe7  com.apple.DVCPROHDCodec (1.4 - 231)
    /Library/QuickTime/DVCPROHDCodec.component/Contents/MacOS/DVCPROHDCodec
    0x10a7b000 - 0x10b1efd3  com.apple.AppleHDVCodec (1.4.1 - 222)
    <68ABD695-E990-4F5F-9074-D2C4AE440637>
    /Library/QuickTime/AppleHDVCodec.component/Contents/MacOS/AppleHDVCodec
    0x10b3c000 - 0x10b5dfff  com.apple.AppleIntermediateCodec (2.0.1 - 5718)
    <D4B0F083-2E31-3508-BE1D-71F8BA917702>
    /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleIn
    termediateCodec
    0x10b6c000 - 0x10b70ff7  com.apple.AppleMPEG2Codec (1.0.2 - 220.1)
    <AD3A3083-F5A3-3ED1-8086-10A977DE9118>
    /Library/QuickTime/AppleMPEG2Codec.component/Contents/MacOS/AppleMPEG2Code
    c
    0x10b75000 - 0x10b95ff3  com.apple.IMXCodec (1.3.1 - 147)
    /Library/QuickTime/IMXCodec.component/Contents/MacOS/IMXCodec
    0x10bad000 - 0x10bc5ff2  com.apple.applepixletvideo (1.2.31 - 1.2d31)
    <6093BFF1-355E-3F02-903F-FDB466324F99>
    /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/AppleP
    ixletVideo
    0x1255e000 - 0x125b0fff  com.apple.QuickTimeMPEG.component (7.7.1 -
    2599.24) <16DFA65D-83BF-3EC1-B904-C2088AF8CCD1>
    /System/Library/QuickTime/QuickTimeMPEG.component/Contents/MacOS/QuickTime
    MPEG
    0x70000000 - 0x7015eff7  com.apple.audio.units.Components (1.8 - 1.8)
    <F1EA4AF9-517E-3288-9AA4-F20546791B77>
    /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8e2fb000 - 0x8ec49ff3  com.apple.GeForceGLDriver (8.10.44 - 8.1.0)
    <4B231127-7885-33A3-9FC7-7EF42A066FD7>
    /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGL
    Driver
    0x8fe5d000 - 0x8fe8fe57  dyld (210.2.3)
    <23DBDBB1-1D21-342C-AC2A-0E55F27E6A1F> /usr/lib/dyld
    0x90007000 - 0x9000bffc  libGIF.dylib (849)
    <2F1DE1C6-4779-35A6-8ED5-BBF8ADD5962A>
    /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.d
    ylib
    0x9000c000 - 0x901c8ffd  libicucore.A.dylib (491.11.2)
    <59A23F06-16AD-35F8-BA58-D17305232402> /usr/lib/libicucore.A.dylib
    0x901c9000 - 0x90227ff7  com.apple.audio.CoreAudio (4.1.1 - 4.1.1)
    <953DD669-8C6E-387D-AB3F-D8C8965347DF>
    /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x90228000 - 0x9022affb  libRadiance.dylib (849)
    <EAF7C74F-2A71-3A07-82E1-4FADEAFCF201>
    /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadia
    nce.dylib
    0x90245000 - 0x90278ffb  com.apple.GSS (3.0 - 2.0)
    <9566A96D-C296-3ABD-A12A-E274C81C0B25>
    /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x9033c000 - 0x905dfff3  com.apple.CoreImage (8.2.4 - 1.0.1)
    <BA4EE8D7-FE72-3CC3-801F-B69D8A8B426F>
    /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/Core
    Image.framework/Versions/A/CoreImage
    0x905e0000 - 0x90648fe7  libvDSP.dylib (380.6)
    <55780308-4DCA-3B10-9703-EAFC3E13A3FA>
    /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecL
    ib.framework/Versions/A/libvDSP.dylib
    0x90649000 - 0x9094eff7  com.apple.CoreServices.CarbonCore (1037.5 -
    1037.5) <356AE2DF-ABB0-319C-8B5B-2F33D693889F>
    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Ca
    rbonCore.framework/Versions/A/CarbonCore
    0x9094f000 - 0x90d4bfeb  com.apple.VideoToolbox (1.0 - 926.87)
    <D6460276-E1CF-317D-B32F-80EAE916168C>
    /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x90d4c000 - 0x90d6efff  libc++abi.dylib (26)
    <3AAA8D55-F5F6-362B-BA3C-CCAF0D3C8E27> /usr/lib/libc++abi.dylib
    0x90d6f000 - 0x90e7aff7  libJP2.dylib (849)
    <B2D0E844-C390-376C-91D9-F3501B5C7A83>
    /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.d
    ylib
    0x90e7d000 - 0x90e85fff  libcopyfile.dylib (89)
    <4963541B-0254-371B-B29A-B6806888949B> /usr/lib/system/libcopyfile.dylib
    0x90e86000 - 0x90f83ff7  com.apple.DiskImagesFramework (10.8.3 - 345)
    <26D0C7F8-E87E-3511-8388-8EE616A39D6D>
    /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImag
    es
    0x90f84000 - 0x90f8efff  libCSync.A.dylib (331.0.4)
    <71A7B331-C8A2-322C-AFB0-062EE9C3B848>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x90f8f000 - 0x90fafffd  com.apple.ChunkingLibrary (2.0 - 133.3)
    <FA45EAE8-BB10-3AEE-9FDC-C0C3A533FF48>
    /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chu
    nkingLibrary
    0x90fb0000 - 0x90fb6fff  libGFXShared.dylib (8.7.25)
    <4268BFAF-4529-3B40-A8B9-66F176AC20CF>
    /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXSha
    red.dylib
    0x90fb7000 - 0x90fc6fff  libGL.dylib (8.7.25)
    <818E3E6B-9B00-3117-8157-9E95CB59A47B>
    /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dyl
    ib
    0x90fc7000 - 0x90fc8fff  libdnsinfo.dylib (453.19)
    <3B523729-84A8-3D0B-B58C-3FC185060E67> /usr/lib/system/libdnsinfo.dylib
    0x90fc9000 - 0x90fccff9  libCGXType.A.dylib (331.0.4)
    <981B13D6-4E8B-3468-92D3-FE436B48C0DA>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x90fcd000 - 0x9108bff3  com.apple.ColorSync (4.8.0 - 4.8.0)
    <B534DE6A-3AF0-307C-B274-A4FCFC5BC696>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/ColorSync.framework/Versions/A/ColorSync
    0x9108c000 - 0x9108dffd  com.apple.TrustEvaluationAgent (2.0 - 23)
    <E42347C0-2D3C-36A4-9200-757FFA61B388>
    /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/
    A/TrustEvaluationAgent
    0x9108e000 - 0x910a5fff  com.apple.GenerationalStorage (1.1 - 132.3)
    <DD0AA3DB-376D-37F3-AC5B-17AC9B9E0A63>
    /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A
    /GenerationalStorage
    0x910a6000 - 0x9117cfff  com.apple.DiscRecording (7.0 - 7000.2.4)
    <528052A0-FCFB-3867-BCDF-EE0F8A998C1C>
    /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecordin
    g
    0x911ba000 - 0x91343ff7  com.apple.vImage (6.0 - 6.0)
    <1D1F67FE-4F75-3689-BEF6-4A46C8039E70>
    /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vIma
    ge.framework/Versions/A/vImage
    0x91344000 - 0x919d0ff3  com.apple.CoreAUC (6.16.13 - 6.16.13)
    <3DCF4456-AF8D-3E87-B00C-C56055AF9B8E>
    /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x919d1000 - 0x919dffff  libxar.1.dylib (105)
    <6498A359-2DBA-3EDA-8F00-EEB989DD0A93> /usr/lib/libxar.1.dylib
    0x919e0000 - 0x91a4fffb  com.apple.Heimdal (3.0 - 2.0)
    <964D9952-B0F2-34F6-8265-1823C0D5EAB8>
    /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x91a50000 - 0x91a95ff7  com.apple.NavigationServices (3.7 - 200)
    <6AB1A00C-BC94-3889-BA95-40A454B720CE>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Navigati
    onServices.framework/Versions/A/NavigationServices
    0x91a96000 - 0x91aa4ff7  libz.1.dylib (43)
    <245F1B61-2276-3BBB-9891-99934116D833> /usr/lib/libz.1.dylib
    0x91aa5000 - 0x91ab1ff7  com.apple.NetAuth (4.0 - 4.0)
    <52D23F12-0718-341D-B9DF-16C814022250>
    /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x91ab2000 - 0x91b4dfff  com.apple.CoreSymbolication (3.0 - 117)
    <F705A8CD-A04A-3A84-970A-7B04BC05DA97>
    /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/C
    oreSymbolication
    0x91b4e000 - 0x91b4ffff  liblangid.dylib (116)
    <E13CC8C5-5034-320A-A210-41A2BDE4F846> /usr/lib/liblangid.dylib
    0x91b50000 - 0x91cadffb  com.apple.QTKit (7.7.1 - 2599.24)
    <39CC892D-2874-33FE-BE30-87FE07D875BD>
    /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x91cae000 - 0x91cdbffb  com.apple.CoreServicesInternal (154.2 - 154.2)
    <DCCF604B-1DB8-3F09-8122-545E2E7F466D>
    /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/
    A/CoreServicesInternal
    0x91cdc000 - 0x91d6effb  libvMisc.dylib (380.6)
    <6DA3A03F-20BE-300D-A664-B50A7B4E4B1A>
    /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecL
    ib.framework/Versions/A/libvMisc.dylib
    0x91d6f000 - 0x91f57ffb  com.apple.CoreFoundation (6.8 - 744.18)
    <68AFEE40-0078-347E-9DEE-32CFE0062A10>
    /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundat
    ion
    0x91f58000 - 0x91f59fff  libquarantine.dylib (52)
    <D526310F-DC77-37EA-8F5F-83928EFA3262> /usr/lib/system/libquarantine.dylib
    0x91f66000 - 0x91f68fff  com.apple.securityhi (4.0 - 55002)
    <79E3B880-3AB7-3BF3-9CDF-117A45599545>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Security
    HI.framework/Versions/A/SecurityHI
    0x91f69000 - 0x92ca1fff  com.apple.QuickTimeComponents.component (7.7.1 -
    2599.24) <51BE2DF8-7B3B-36F5-8860-50071A8702E4>
    /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/Qui
    ckTimeComponents
    0x92ca2000 - 0x92d89ff7  libxml2.2.dylib (22.3)
    <56E973D6-6B55-3E67-8282-6BC982816488> /usr/lib/libxml2.2.dylib
    0x92d8a000 - 0x92da8ff3  com.apple.openscripting (1.3.6 - 148.3)
    <F3422C02-5ACB-343A-987B-A2D58EA2F5A8>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScri
    pting.framework/Versions/A/OpenScripting
    0x92da9000 - 0x92edcff3  com.apple.MediaControlSender (1.7 - 170.20)
    <7B1AC317-AFDB-394F-8026-9561930E696B>
    /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/
    MediaControlSender
    0x92edd000 - 0x92f0efff  com.apple.DictionaryServices (1.2 - 184.4)
    <CCB46C81-57C6-3F45-B77C-4D29E4CD6BA6>
    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Di
    ctionaryServices.framework/Versions/A/DictionaryServices
    0x92f0f000 - 0x93126fff  com.apple.CoreData (106.1 - 407.7)
    <17FD06D6-AD7C-345A-8FA4-1F0FBFF4DAE1>
    /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x93127000 - 0x9313cfff  com.apple.ImageCapture (8.0 - 8.0)
    <F681CA5B-2871-32CF-8E9F-9220EB387407>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCap
    ture.framework/Versions/A/ImageCapture
    0x9313d000 - 0x9313efff  libsystem_sandbox.dylib (220.2)
    <61A79095-1978-3AAA-B0E0-658BC8E5F045>
    /usr/lib/system/libsystem_sandbox.dylib
    0x9313f000 - 0x93297ffb  com.apple.audio.toolbox.AudioToolbox (1.8 - 1.8)
    <0D36953C-9897-3E9B-8C70-847E90B203A2>
    /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x93298000 - 0x932b1fff  com.apple.Kerberos (2.0 - 1)
    <8413EDD3-7E01-3D47-83FD-C14A5235DCD2>
    /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x932b2000 - 0x93309ff7  com.apple.ScalableUserInterface (1.0 - 1)
    <4B538E02-4F41-37FF-81F6-ED43DE0E78CC>
    /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/Scal
    ableUserInterface.framework/Versions/A/ScalableUserInterface
    0x9330a000 - 0x93ec6ff7  com.apple.AppKit (6.8 - 1187.37)
    <6FBB3467-04F9-395F-8EA8-C84347C5BE43>
    /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x93ec7000 - 0x93eceffe  com.apple.agl (3.2.1 - AGL-3.2.1)
    <48407521-A4A3-3D28-8784-29E36AA04804>
    /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x93ecf000 - 0x93ed8fff  com.apple.DiskArbitration (2.5.2 - 2.5.2)
    <89822A83-B450-3363-8E9C-9B80CB4450B1>
    /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitr
    ation
    0x93ed9000 - 0x93f20ff3  com.apple.CoreMedia (1.0 - 926.87)
    <713B7213-D695-3162-9852-DBC114C26178>
    /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x93f21000 - 0x93f45fff  com.apple.PerformanceAnalysis (1.16 - 16)
    <7B7EAA0B-5208-32DB-B083-D4B62F37EC46>
    /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A
    /PerformanceAnalysis
    0x93f46000 - 0x946e1ff3  libclh.dylib (4.0.3 - 4.0.3)
    <CF4CE94B-D0CE-3E84-9640-5ABFC54378A5>
    /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dy
    lib
    0x946ee000 - 0x946fbff7  com.apple.AppleFSCompression (49 - 1.0)
    <9A066D13-6E85-36FC-8B58-FD46E51751CE>
    /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/
    AppleFSCompression
    0x946fc000 - 0x9473efff  libcurl.4.dylib (69.2)
    <8CC566A0-0B25-37E8-A6EC-30074C3CDB8C> /usr/lib/libcurl.4.dylib
    0x9473f000 - 0x94ad2ff3  com.apple.MediaToolbox (1.0 - 926.87)
    <F3623474-03AD-3A7F-8BD1-46A44A12E74E>
    /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x94ad3000 - 0x94be3ff3  com.apple.QuickTimeImporters.component (7.7.1 -
    2599.24) <3DBEE5E4-4C40-3390-8405-0D9E271084B2>
    /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/Quic
    kTimeImporters
    0x94be4000 - 0x94c25ff7  com.apple.framework.CoreWiFi (1.2.2 - 122.12)
    <D9479FFE-2D79-373C-9F73-E746664ACD5C>
    /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x94d1b000 - 0x94d1ffff  com.apple.IOSurface (86.0.4 - 86.0.4)
    <6431ACB6-561B-314F-9A2A-FAC1578FCC86>
    /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x94d22000 - 0x94d25fff  com.apple.help (1.3.2 - 42)
    <2B727B38-0E18-3108-9735-F65958924A91>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.fra
    mework/Versions/A/Help
    0x94d26000 - 0x94d26fff  com.apple.Carbon (154 - 155)
    <C0A26E7B-28F1-3C7E-879E-A3CF3ED5111C>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x94d27000 - 0x94d27fff  libSystem.B.dylib (169.3)
    <B81FAD7E-8808-3F49-807F-0AD68D0D7359> /usr/lib/libSystem.B.dylib
    0x94d28000 - 0x94d82ffb  com.apple.AE (645.6 - 645.6)
    <44556FF7-A869-399A-AEBB-F4E9263D9152>
    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE
    .framework/Versions/A/AE
    0x94d83000 - 0x94dfcffb  libType1Scaler.dylib (101.1)
    <C12C5169-4E91-3148-934F-8A9CAB8546C6>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/ATS.framework/Versions/A/Resources/libType1Scaler.dylib
    0x94dfd000 - 0x94e3dfff  com.apple.MediaKit (14 - 687)
    <8735A76E-7766-33F5-B3D2-86630070A1BA>
    /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x94e3e000 - 0x94e44fff  com.apple.print.framework.Print (8.0 - 258)
    <3E10C488-C390-33BD-8A4F-568E3021811D>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.fr
    amework/Versions/A/Print
    0x94e45000 - 0x94fbdff5  com.apple.QuartzCore (1.8 - 304.2)
    <FB737C74-C460-32A3-9107-D2112BAE6EBC>
    /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94fbe000 - 0x94fbefff  com.apple.vecLib (3.8 - vecLib 3.8)
    <83160DD1-5614-3E34-80EB-97041016EF1F>
    /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x94fbf000 - 0x9507cfeb  libsystem_c.dylib (825.26)
    <6E35A83F-1A5B-3AF9-8C6D-D7B57B25FB63> /usr/lib/system/libsystem_c.dylib
    0x9507d000 - 0x950d7fff  com.apple.Symbolication (1.3 - 93)
    <4A794D1C-DE02-3183-87BF-0008A602E4D3>
    /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbo
    lication
    0x950d8000 - 0x95364ffb  com.apple.RawCamera.bundle (4.04 - 680)
    <DD1D3CFC-1710-3186-A6C4-89B42F100117>
    /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x95365000 - 0x95366ffd  libunc.dylib (25)
    <5E1EEE9E-3423-33D7-95B2-E4D17DD08C18> /usr/lib/system/libunc.dylib
    0x95367000 - 0x9537cfff  com.apple.speech.synthesis.framework (4.1.12 -
    4.1.12) <DE68CEB5-4959-3652-83B8-D2B00D3B932D>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x9537d000 - 0x953aaffe  libsystem_m.dylib (3022.6)
    <93CEEC8C-FAB5-313C-B0BB-0F4E91E6B878> /usr/lib/system/libsystem_m.dylib
    0x95412000 - 0x95424fff  libbsm.0.dylib (32)
    <DADD385E-FE53-3458-94FB-E316A6345108> /usr/lib/libbsm.0.dylib
    0x954c3000 - 0x9550dff7  com.apple.framework.CoreWLAN (3.0.2 - 302.12)
    <1D7CB11D-C28C-3A25-865A-4AD6EE40D493>
    /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x9550e000 - 0x9550efff  com.apple.CoreServices (57 - 57)
    <83B793A6-720D-31F6-A76A-89EBB2644346>
    /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x95511000 - 0x95513ffc  com.apple.QuickTimeH264.component (7.7.1 -
    2599.24) <54598D54-DBFC-3EA1-9712-05F4052A79E2>
    /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTime
    H264
    0x95514000 - 0x95558ff7  libGLU.dylib (8.7.25)
    <0CC1A4D8-C095-3F2B-B55C-FDEBEA0E9CFE>
    /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dy
    lib
    0x95845000 - 0x95869fff  libJPEG.dylib (849)
    <CD42C17E-6B13-35BE-B585-9AE69CEA534F>
    /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.
    dylib
    0x95904000 - 0x95930ff7  libsystem_info.dylib (406.17)
    <2731CC70-DF2E-3BD1-AE73-A3B83C531756>
    /usr/lib/system/libsystem_info.dylib
    0x95938000 - 0x959adff7  com.apple.ApplicationServices.ATS (332 - 341.1)
    <1D81B09C-98DB-3CDB-990B-459FAE3D8D7A>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/ATS.framework/Versions/A/ATS
    0x959ae000 - 0x959b0fff  libdyld.dylib (210.2.3)
    <05D6FF2A-F09B-309D-95F7-7AF10259C707> /usr/lib/system/libdyld.dylib
    0x959b5000 - 0x95c75ff3  com.apple.security (7.0 - 55179.11)
    <165A3105-9ADF-329B-93FC-3C8EFAEDDD13>
    /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x95f11000 - 0x95f48ffa  com.apple.LDAPFramework (2.4.28 - 194.5)
    <B7BAC5B9-ABA9-3799-B8B5-D2DED9383C24>
    /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x95f49000 - 0x96084ff7  libBLAS.dylib (1073.4)
    <FF74A147-05E1-37C4-BC10-7DEB57FE5326>
    /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecL
    ib.framework/Versions/A/libBLAS.dylib
    0x96085000 - 0x960aaffb  com.apple.framework.familycontrols (4.1 - 410)
    <B1755756-BEA2-3205-ADAA-68FCC32E60BD>
    /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/Fami
    lyControls
    0x960ab000 - 0x96142ff7  com.apple.ink.framework (10.8.2 - 150)
    <A9C3B735-7D5F-3D7D-AA70-2CC852D09CDE>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.fram
    ework/Versions/A/Ink
    0x96143000 - 0x96291fff  com.apple.CFNetwork (596.3.3 - 596.3.3)
    <EC7EF37B-B00E-374D-9E8F-E4E22D741059>
    /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x962a2000 - 0x962a9ff3  com.apple.NetFS (5.0 - 4.0)
    <FD429432-6DA7-3B41-9889-0E8B4ECB8A4F>
    /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x962aa000 - 0x9632fff7  com.apple.SearchKit (1.4.0 - 1.4.0)
    <4E947DC1-7985-3111-A864-58EDD6D955DC>
    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Se
    archKit.framework/Versions/A/SearchKit
    0x96330000 - 0x96355ff7  com.apple.CoreVideo (1.8 - 99.4)
    <A26DE896-32E0-3D5E-BA89-02AD23FA96B3>
    /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x96359000 - 0x96359fff  com.apple.ApplicationServices (45 - 45)
    <B23FD836-ECA1-3DF8-B043-9CA9779BE9DB>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Applic
    ationServices
    0x9635a000 - 0x9635dff7  com.apple.TCC (1.0 - 1)
    <ABE3CE50-C948-30B1-A343-837D8E7BA9F0>
    /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x96365000 - 0x96472057  libobjc.A.dylib (532.2)
    <FA455371-7395-3D58-A89B-D1520612D1BC> /usr/lib/libobjc.A.dylib
    0x96477000 - 0x9658fff7  com.apple.coreavchd (5.6.0 - 5600.4.16)
    <D871D730-1D5C-34E7-98C7-0FF09964E618>
    /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
    0x96590000 - 0x96948ffa  libLAPACK.dylib (1073.4)
    <9A6E5EAD-F2F2-3D5C-B655-2B536DB477F2>
    /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecL
    ib.framework/Versions/A/libLAPACK.dylib
    0x96949000 - 0x96950fff  libsystem_dnssd.dylib (379.37)
    <49A44FB3-559D-3C7E-AA40-23F5A8E612AC>
    /usr/lib/system/libsystem_dnssd.dylib
    0x96951000 - 0x9696dfff  libPng.dylib (849)
    <BF2CB6F5-A2F1-35A4-93F7-ACA6D7F02084>
    /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.d
    ylib
    0x9696e000 - 0x9696effd  com.apple.audio.units.AudioUnit (1.8 - 1.8)
    <D35BA73D-1E56-3A1D-9F9F-971F3BF8C136>
    /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x9696f000 - 0x96bc8ff8  com.apple.JavaScriptCore (8536 - 8536.28.10)
    <B02A662A-7DE6-3C9D-AB08-AA746D48FF2B>
    /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptC
    ore
    0x96bc9000 - 0x96bfefff  libTrueTypeScaler.dylib (84.6)
    <B7DB746B-7A61-38EF-8CA7-408ED9C14A02>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x96bff000 - 0x96c00fff  libremovefile.dylib (23.2)
    <9813B2DB-2374-3AA2-99B6-AA2E9897B249> /usr/lib/system/libremovefile.dylib
    0x96c01000 - 0x96c3cfef  libGLImage.dylib (8.7.25)
    <6C0B2148-032A-3911-AB21-2E07606E3D9A>
    /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImag
    e.dylib
    0x96c3d000 - 0x96c94ff3  com.apple.HIServices (1.20 - 417)
    <561A770B-8523-3D09-A763-11F872779A4C>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/HIServices.framework/Versions/A/HIServices
    0x96c95000 - 0x96c9fffe  com.apple.bsd.ServiceManagement (2.0 - 2.0)
    <9732BA61-D6F6-3644-82DA-FF0D6FEEFC69>
    /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceM
    anagement
    0x96da2000 - 0x96db5ff9  com.apple.MultitouchSupport.framework (235.29 -
    235.29) <451701B6-03CE-3F26-9FF0-92D8DA1467EE>
    /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/M
    ultitouchSupport
    0x96db6000 - 0x96e1eff7  com.apple.framework.IOKit (2.0.1 - 755.22.5)
    <F9A70D23-1108-3616-9DE3-6C5730CA7AB2>
    /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x96e1f000 - 0x96e35fff  com.apple.CFOpenDirectory (10.8 - 151.10)
    <3640B988-F915-3E0D-897C-CB04C95BA601>
    /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/C
    FOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x96e65000 - 0x96eb3ff3  com.apple.SystemConfiguration (1.12.2 - 1.12.2)
    <6E858B9F-337A-314E-88B7-24A274ACE568>
    /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/System
    Configuration
    0x96eb4000 - 0x96ef6ff7  libauto.dylib (185.1)
    <B2B5B639-6778-352A-828D-FD8B64A3E8B3> /usr/lib/libauto.dylib
    0x96ef7000 - 0x96ff5ff7  libFontParser.dylib (84.6)
    <7D3EB3CC-527E-3A74-816A-59CAFD2260A4>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x96ff6000 - 0x97004fff  com.apple.opengl (1.8.7 - 1.8.7)
    <0631EC1D-833B-39D2-A907-A9F7617E5504>
    /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x97056000 - 0x97473fff  FaceCoreLight (2.4.1)
    <571DE3F8-CA8A-3E71-9AF4-F06FFE721CE6>
    /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceC
    oreLight
    0x97474000 - 0x9747dfff  com.apple.CommerceCore (1.0 - 26.1)
    <8C28115C-6EC1-316D-9237-F4FBCBB778C5>
    /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Framewo
    rks/CommerceCore.framework/Versions/A/CommerceCore
    0x9747e000 - 0x97576ff9  libsqlite3.dylib (138.1)
    <AD7C5914-35F0-37A3-9238-A29D2E26C755> /usr/lib/libsqlite3.dylib
    0x975ad000 - 0x975b6ffd  com.apple.audio.SoundManager (4.0 - 4.0)
    <6A0B4A5D-6320-37E4-A1CA-91189777848C>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSo
    und.framework/Versions/A/CarbonSound
    0x975b7000 - 0x975c9ff7  libdispatch.dylib (228.23)
    <86EF7D45-2D97-3465-A449-95038AE5DABA> /usr/lib/system/libdispatch.dylib
    0x975ca000 - 0x97618ffb  libFontRegistry.dylib (100)
    <97D8F15F-F072-3AF0-8EF8-50C41781951C>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x97619000 - 0x97625ffa  com.apple.CrashReporterSupport (10.8.3 - 417)
    <A4A45B14-8992-3739-82BC-3C5E5C2686F9>
    /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/
    A/CrashReporterSupport
    0x97626000 - 0x976d5ff7  com.apple.CoreText (260.0 - 275.16)
    <7716C57B-E059-3B30-BBA8-AD7FF6EE3D35>
    /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x976d6000 - 0x97776ff7  com.apple.QD (3.42 - 285)
    <1B8307C6-AFA8-312E-BA5B-679070EF2CA1>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/QD.framework/Versions/A/QD
    0x97777000 - 0x977b9ffb  com.apple.RemoteViewServices (2.0 - 80.6)
    <AE962502-4539-3893-A2EB-9D384652AEAC>
    /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/
    RemoteViewServices
    0x977ba000 - 0x9781eff3  libstdc++.6.dylib (56)
    <F8FA490A-8F3C-3645-ABF5-78926CE9C62C> /usr/lib/libstdc++.6.dylib
    0x9781f000 - 0x97829fff  com.apple.speech.recognition.framework (4.1.5 -
    4.1.5) <774CDB2F-34A1-347A-B302-4746D256E921>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRe
    cognition.framework/Versions/A/SpeechRecognition
    0x9782a000 - 0x97841ff4  com.apple.CoreMediaAuthoring (2.1 - 914)
    <8D71DE7D-7F53-3052-9FAF-132CB61BA9F5>
    /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/
    CoreMediaAuthoring
    0x97842000 - 0x978a6fff  com.apple.datadetectorscore (4.1 - 269.2)
    <B4D53047-C613-32F8-9E08-0154EA81B487>
    /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/D
    ataDetectorsCore
    0x978b2000 - 0x978faff5  com.apple.opencl (2.2.18 - 2.2.18)
    <004A1DE4-49C6-3938-8B54-CD1DC23BDBE5>
    /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x978fb000 - 0x979affff  com.apple.coreui (2.0 - 181.1)
    <6BEEE83E-C878-3FE6-B521-8B32B3A35409>
    /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x979b0000 - 0x97a00ff7  com.apple.CoreMediaIO (307.0 - 4155)
    <49D36F54-D414-3745-8194-69FC3B632ED3>
    /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x97a01000 - 0x97a2aff7  libRIP.A.dylib (331.0.4)
    <FE496AFC-420A-3712-BC79-FC8C63ADB73D>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x97a2b000 - 0x97affff3  com.apple.backup.framework (1.4.2 - 1.4.2)
    <0473EB45-E9BF-3C10-B235-A6E2B960A88F>
    /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x97b00000 - 0x97b1dfff  libCRFSuite.dylib (33)
    <8E6E8815-406E-3A89-B96E-908FEFC27F0A> /usr/lib/libCRFSuite.dylib
    0x97b75000 - 0x97b79ffe  libcache.dylib (57)
    <834FDCA7-FE3B-33CC-A12A-E11E202477EC> /usr/lib/system/libcache.dylib
    0x97b7a000 - 0x97c12fff  com.apple.CoreServices.OSServices (557.6 -
    557.6) <E1600639-3EEC-3DF8-BD40-747BB2117988>
    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OS
    Services.framework/Versions/A/OSServices
    0x97c13000 - 0x97d2fffb  com.apple.desktopservices (1.7.3 - 1.7.3)
    <7157C51D-C695-3C9E-B532-F551E7E55B56>
    /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A
    /DesktopServicesPriv
    0x97d61000 - 0x97d61fff  libsystem_blocks.dylib (59)
    <3A743C5D-CFA5-37D8-80A8-B6795A9DB04F>
    /usr/lib/system/libsystem_blocks.dylib
    0x97d62000 - 0x97d69fff  liblaunch.dylib (442.26.2)
    <310C99F8-0811-314D-9BB9-D0ED6DFA024B> /usr/lib/system/liblaunch.dylib
    0x97d6a000 - 0x97d6affd  libOpenScriptingUtil.dylib (148.3)
    <87895E27-88E2-3249-8D0E-B17E76FB00C1> /usr/lib/libOpenScriptingUtil.dylib
    0x97d6b000 - 0x97e78ff3  com.apple.ImageIO.framework (3.2.0 - 849)
    <B34C2380-51F6-38B1-BB6C-C2E5185D90EF>
    /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x97ed1000 - 0x97f7bfff  com.apple.LaunchServices (539.7 - 539.7)
    <AF33EBD3-BC0B-30B5-B7DA-5CCCF12D7EDD>
    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/La
    unchServices.framework/Versions/A/LaunchServices
    0x97f80000 - 0x97f8afff  libsystem_notify.dylib (98.5)
    <7EEE9475-18F8-3099-B0ED-23A3E528ABE0>
    /usr/lib/system/libsystem_notify.dylib
    0x97f9a000 - 0x97f9dffc  libCoreVMClient.dylib (32.3)
    <35B63A60-DF0A-3FB3-ABB8-164B246A43CC>
    /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVM
    Client.dylib
    0x98317000 - 0x98372fff  com.apple.htmlrendering (77 - 1.1.4)
    <CD33B313-7E85-3AC0-9EFF-6B0C05F10135>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRend
    ering.framework/Versions/A/HTMLRendering
    0x983a5000 - 0x98421ff3  com.apple.Metadata (10.7.0 - 707.5)
    <F2BC2AB4-A87A-3D37-A496-AC21EF3E1244>
    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Me
    tadata.framework/Versions/A/Metadata
    0x98422000 - 0x98864ff3  com.apple.CoreGraphics (1.600.0 - 331.0.4)
    <BC041647-FB5A-3D07-A253-F3D34E25BF6C>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x98865000 - 0x98869fff  com.apple.OpenDirectory (10.8 - 151.10)
    <E3D2E1A4-6E55-3C23-BCB4-7B9D31EFD605>
    /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirector
    y
    0x9886a000 - 0x9886afff  com.apple.Accelerate (1.8 - Accelerate 1.8)
    <4EC0548E-3A3F-310D-A366-47B51D5B6398>
    /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x9886b000 - 0x9886bfff  libkeymgr.dylib (25)
    <D5E93F7F-9315-3AD6-92C7-941F7B54C490> /usr/lib/system/libkeymgr.dylib
    0x988d8000 - 0x988e8ff2  com.apple.LangAnalysis (1.7.0 - 1.7.0)
    <C6076983-A02E-389E-BFC6-008EECC4C896>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/LangAnalysis.framework/Versions/A/LangAnalysis
    0x98965000 - 0x98966fff  libDiagnosticMessagesClient.dylib (8)
    <39B3D25A-148A-3936-B800-0D393A00E64F>
    /usr/lib/libDiagnosticMessagesClient.dylib
    0x989f0000 - 0x98a3cfff  libcorecrypto.dylib (106.2)
    <20EBADBA-D6D6-36F0-AE80-168E9AF13DB6> /usr/lib/system/libcorecrypto.dylib
    0x992bb000 - 0x992c7ffe  libkxld.dylib (2050.22.13)
    <ED37AAAA-B1C0-3ADF-A897-3D580A845843> /usr/lib/system/libkxld.dylib
    0x992f8000 - 0x992f8fff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8)
    <908B8D40-3FB5-3047-B482-3DF95025ECFC>
    /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecL
    ib.framework/Versions/A/vecLib
    0x992f9000 - 0x99575ff7  com.apple.QuickTime (7.7.1 - 2599.24)
    <5B1CA228-A6B3-39DF-A5CC-F981E59DAD1D>
    /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x99576000 - 0x995f0ff3  com.apple.securityfoundation (6.0 - 55115.4)
    <8A3DA1FE-1985-3ECB-945A-6B1E853B4BDC>
    /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/Securit
    yFoundation
    0x995f1000 - 0x99640ff6  libTIFF.dylib (849)
    <229EBA67-A2D3-30B7-8177-3CA5503360EC>
    /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.
    dylib
    0x99641000 - 0x99732ffc  libiconv.2.dylib (34)
    <B096A9B7-83A6-31B3-8D2F-87D91910BF4C> /usr/lib/libiconv.2.dylib
    0x9973d000 - 0x99748fff  libcommonCrypto.dylib (60027)
    <8EE30FA5-AA8D-3FA6-AB0F-05DA8B0425D9>
    /usr/lib/system/libcommonCrypto.dylib
    0x99749000 - 0x99757ff3  libsystem_network.dylib (77.10)
    <11CAF6A8-17CF-3178-9348-57C5ED494BA8>
    /usr/lib/system/libsystem_network.dylib
    0x99758000 - 0x99781fff  libxslt.1.dylib (11.3)
    <0DE17DAA-66FF-3195-AADB-347BEB5E2EFA> /usr/lib/libxslt.1.dylib
    0x99782000 - 0x99785ff7  libcompiler_rt.dylib (30)
    <CE5DBDB4-0124-3E2B-9105-989DF98DD108>
    /usr/lib/system/libcompiler_rt.dylib
    0x99786000 - 0x9978fff9  com.apple.CommonAuth (3.0 - 2.0)
    <34C4768C-EF8D-3DBA-AFB7-09148C8672DB>
    /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAu
    th
    0x99790000 - 0x99794ff7  libmacho.dylib (829)
    <5280A013-4F74-3F74-BE0C-7F612C49F1DC> /usr/lib/system/libmacho.dylib
    0x99795000 - 0x99ab3ff3  com.apple.Foundation (6.8 - 945.16)
    <C4D95341-B4FF-30AC-815A-A23C019C57A3>
    /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x99ab4000 - 0x99abbffb  libunwind.dylib (35.1)
    <E1E8D8B3-3C78-3AB1-B398-C180DC6DCF05> /usr/lib/system/libunwind.dylib
    0x99abc000 - 0x99abfffc  libpam.2.dylib (20)
    <FCF74195-A99E-3B07-8E49-688D4A6F1E18> /usr/lib/libpam.2.dylib
    0x99ac0000 - 0x99adaffc  libsystem_kernel.dylib (2050.22.13)
    <70C520E8-0394-3DFB-823B-FE8C251C169A>
    /usr/lib/system/libsystem_kernel.dylib
    0x99adb000 - 0x99af8fff  libxpc.dylib (140.42)
    <1E419D55-C5C1-33FF-B52E-6C7FFBEA5E1F> /usr/lib/system/libxpc.dylib
    0x99af9000 - 0x99b5ffff  com.apple.print.framework.PrintCore (8.3 -
    387.2) <0F7665F5-33F0-3661-9BE2-7DD2890E304B>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/PrintCore.framework/Versions/A/PrintCore
    0x99b60000 - 0x99b70ff7  libsasl2.2.dylib (166)
    <D9080BA2-A365-351E-9FF2-7E0D4E8B1339> /usr/lib/libsasl2.2.dylib
    0x99b71000 - 0x99f54fff  com.apple.HIToolbox (2.0 - 626.1)
    <ECC3F04F-C4B7-35BF-B10E-183B749DAB92>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbo
    x.framework/Versions/A/HIToolbox
    0x99f55000 - 0x99f72ff7  libresolv.9.dylib (51)
    <B9742A2A-DF15-3F6E-8FCE-778A58214B3A> /usr/lib/libresolv.9.dylib
    0x99f73000 - 0x99f7fff8  libbz2.1.0.dylib (29)
    <7031A4C0-784A-3EAA-93DF-EA1F26CC9264> /usr/lib/libbz2.1.0.dylib
    0x99f80000 - 0x99fc2ff7  libcups.2.dylib (327.3)
    <C7A4A315-FA15-354B-8BC9-BE824C4EFF6D> /usr/lib/libcups.2.dylib
    0x9a01e000 - 0x9a080fff  libc++.1.dylib (65.1)
    <35EE57E1-2705-3C76-A75A-75655D720268> /usr/lib/libc++.1.dylib
    0x9a081000 - 0x9a083ffd  libCVMSPluginSupport.dylib (8.7.25)
    <C8FC6227-5209-3138-89CD-03CAD11F3EC3>
    /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPl
    uginSupport.dylib
    0x9a084000 - 0x9a0a3ff3  com.apple.Ubiquity (1.2 - 243.15)
    <E10A2937-D671-3D14-AF8D-BA25E601F458>
    /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x9a312000 - 0x9a3f3fff  libcrypto.0.9.8.dylib (47)
    <219227B4-75D2-3CCC-B241-4BE8F8E1D4AB> /usr/lib/libcrypto.0.9.8.dylib
    0x9a3f4000 - 0x9a427ff5  libssl.0.9.8.dylib (47)
    <84896B24-4941-3149-A4CF-2BAD0F621002> /usr/lib/libssl.0.9.8.dylib
    0x9a659000 - 0x9a683ff9  com.apple.framework.Apple80211 (8.3.2 -
    832.18.1) <69AD5C5E-14A2-3E2B-AE28-2C7A7E4F5D0A>
    /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple802
    11
    0x9a684000 - 0x9a6c3ff7  com.apple.bom (12.0 - 192)
    <D245FA22-3B6C-3872-B485-BE84AD9098B2>
    /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x9a6c4000 - 0x9a6faffb  com.apple.DebugSymbols (98 - 98)
    <D0293694-C381-30DF-8DD9-D1B04CD0E5F0>
    /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugS
    ymbols
    0x9a6fb000 - 0x9a6fbfff  com.apple.Cocoa (6.7 - 19)
    <01AA482A-677A-31CA-9EC9-05C57FDDE427>
    /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x9a6fc000 - 0x9a700fff  com.apple.CommonPanels (1.2.5 - 94)
    <7B3FC9A4-0F71-31E7-88CE-1BD4CBB655B2>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPa
    nels.framework/Versions/A/CommonPanels
    0x9a707000 - 0x9a762ff7  com.apple.AppleVAFramework (5.0.19 - 5.0.19)
    <3C43A555-0A22-3D7C-A3FB-CFADDDA43E9B>
    /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 3
        thread_create: 0
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 5760
        thread_create: 0
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=228.2M resident=144.2M(63%)
    swapped_out_or_unallocated=84.0M(37%)
    Writable regions: Total=603.0M written=205.9M(34%) resident=473.2M(78%)
    swapped_out=0K(0%) unallocated=129.8M(22%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    (null) (reserved)                    40K        reserved VM address space
    (unallocated)
    ATS (font support)                 33.0M
    ATS (font support) (reserved)         4K        reserved VM address space
    (unallocated)
    CG backing stores                  4336K
    CG image                              4K
    CG raster data                      116K
    CG shared images                   1216K
    CoreServices                       5420K
    IOKit                             257.9M
    IOKit (reserved)                      4K        reserved VM address space
    (unallocated)
    MALLOC                            269.4M
    MALLOC guard page                    48K
    Memory tag=240                        4K
    Memory tag=242                       12K
    Memory tag=249                      192K
    Memory tag=35                      3976K
    Stack                              67.6M
    VM_ALLOCATE                        16.5M
    __DATA                             30.5M
    __DATA/__OBJC                       208K
    __IMAGE                             528K
    __IMPORT                             72K
    __LINKEDIT                         44.1M
    __OBJC                             1932K
    __OBJC/__DATA                       256K
    __PAGEZERO                            4K
    __TEXT                            184.1M
    __UNICODE                           544K
    mapped file                        76.4M
    shared memory                       424K
    ===========                      =======
    TOTAL                             998.4M
    TOTAL, minus reserved VM space    998.3M

    Hi,
    here are some more informations about the problem.
    The root CA certificate is imported as trusted in the system keychain of the server and the client. A certificate evaluation returns "valid certificates, trusted ...".
    The client bind fails with this messages, e.g. Kerio Control is able the use LDAPS, so it seams just the problem with the trustability of the certificates. Keychain trusts the certificates, OD client bind not, this is not so consistent.
    Any idee?
    Thanks
    Henri
    2013-03-14 19:39:02.776804 CET - Trigger - notified opendirectoryd:nodes;lastServerChanged;/LDAPv3/ldaps://macpro....:636
    2013-03-14 19:39:02.793467 CET - 71825.330426.330427, Module: AppleODClientLDAP - unable to create connection to LDAP server - ldap_search_ext_s for the ro
    otDSE failed with error 'server connection failed' (-1) error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed (self signed cert
    ificate in certificate chain)
    2013-03-14 19:39:02.793501 CE
    CONNECTED(00000003)
    depth=1 /C=DE/...
    Certificate chain
    0 s:/CN=macpro...
       i:/C=DE//OU=IT/CN=*.office.../emailAddress=admin@...
    verify error:num=19:self signed certificate in certificate chain
    verify return:0

  • Why are tabs that say redirecting open and have nothing to do with the site i am working with and how do i stop this

    Easy example just clicking an email It will open a tab to play a game or to install flp media player I also work with ebay I go to click on an item then a new tab opens saying redirecting and goes to an add. website I tried the ask before installing for the cookies thing but even just getting to this page a window opened for allowing a cookie i assumed it was for firefox so i allowed it now a window opened for a game {Forge of Empires} this is getting to be a pain I'm thinking of going back to IE

    Hello,
    Certain Firefox problems can be solved by performing a ''Clean reinstall''. This means you remove Firefox program files and then reinstall Firefox. Please follow these steps:
    '''Note:''' You might want to print these steps or view them in another browser.
    #Download the latest Desktop version of Firefox from http://www.mozilla.org and save the setup file to your computer.
    #After the download finishes, close all Firefox windows (click Exit from the Firefox or File menu).
    #Delete the Firefox installation folder, which is located in one of these locations, by default:
    #*'''Windows:'''
    #**C:\Program Files\Mozilla Firefox
    #**C:\Program Files (x86)\Mozilla Firefox
    #*'''Mac:''' Delete Firefox from the Applications folder.
    #*'''Linux:''' If you installed Firefox with the distro-based package manager, you should use the same way to uninstall it - see [[Installing Firefox on Linux]]. If you downloaded and installed the binary package from the [http://www.mozilla.org/firefox#desktop Firefox download page], simply remove the folder ''firefox'' in your home directory.
    #Now, go ahead and reinstall Firefox:
    ##Double-click the downloaded installation file and go through the steps of the installation wizard.
    ##Once the wizard is finished, choose to directly open Firefox after clicking the Finish button.
    Please report back to see if this helped you!
    Thank you.

  • ITunes doesn't work with MAC OS X 10.7

    Since I installed MAC OS X 10.7 I can't open iTunes. I already downloaded the final update. This is what it says:
    Process:         iTunes [1537]
    Path:            /Applications/iTunes.app/Contents/MacOS/iTunes
    Identifier:      com.apple.iTunes
    Version:         10.4 (10.4)
    Build Info:      iTunes-10408001~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [129]
    Date/Time:       2011-07-29 20:52:06.822 -0400
    OS Version:      Mac OS X 10.7 (11A390)
    Report Version:  8
    Sleep/Wake UUID: D756ECA5-4D18-4BE0-BF59-43BD0218E2F4
    Interval Since Last Report:          12823 sec
    Crashes Since Last Report:           13
    Per-App Crashes Since Last Report:   12
    Anonymous UUID:                      61349C85-3637-4325-9671-CA8FB59A691C
    Crashed Thread:  0
    Exception Type:  EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Application Specific Information:
    dyld: launch, loading dependent libraries
    @executable_path/../Frameworks/iPodUpdater.framework/Versions/A/iPodUpdater
    Dyld Error Message:
      Library not loaded: @executable_path/../Frameworks/iPodUpdater.framework/Versions/A/iPodUpdater
      Referenced from: /Applications/iTunes.app/Contents/MacOS/iTunes
      Reason: unsafe use of @executable_path in /Applications/iTunes.app/Contents/MacOS/iTunes with restricted binary
    Binary Images:
           0x10c189000 -        0x10d0b9fe7  com.apple.iTunes (10.4 - 10.4) <73B152D5-6088-0047-3C63-0A466B55E7EF> /Applications/iTunes.app/Contents/MacOS/iTunes
        0x7fff6bd89000 -     0x7fff6bdbe1ff  dyld (195 - ???) <71093406-21CF-3DBE-A001-802259ED5300> /usr/lib/dyld
    Model: MacBookPro7,1, BootROM MBP71.0039.B0B, 2 processors, Intel Core 2 Duo, 2.4 GHz, 4 GB, SMC 1.62f6
    Graphics: NVIDIA GeForce 320M, NVIDIA GeForce 320M, PCI, 256 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1067 MHz, 0x80CE, 0x4D34373142353637334648302D4346382020
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1067 MHz, 0x80CE, 0x4D34373142353637334648302D4346382020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8D), Broadcom BCM43xx 1.0 5.100.198.11 )
    Bluetooth: Version 2.5.0b13, 2 service, 12 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: TOSHIBA MK2555GSXF, 250.06 GB
    Serial ATA Device: MATSHITADVD-R   UJ-898
    USB Device: Built-in iSight, apple_vendor_id, 0x8507, 0x24600000 / 2
    USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8403, 0x26100000 / 2
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x06600000 / 4
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8213, 0x06610000 / 6
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0236, 0x06300000 / 3
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0x06500000 / 2

    "Did you install Lion via the official MAS(Mac APP Store) . I'm curious about the OS version and build Number 11A390  in your initial report. That build # seems like a developer build number. That could be the reason the error message says "make sure iTunes works with this version of Mac OS X"."
    "It's not iTunes. If you bought Lion from the MAS, I'm not sure what to do, but if you did not buy Lion from the MAS, you may want to post the same question in the Developer Forum"

  • Working with excel files in C#, in a web farm

    I am creating a excel file uploader that after the upload, searches for specific columns, saves data to SQL Server, then gets rid of the excel file.
    I will be accepting .xls & xlsx file types.  The internal file structure should be all fairly standard because this is an internal company app.  So for example, the sheet with the data I am searching for may not always be the first in the book,
    but it will always have the same name.
    From the research I have done, it seems I can use the Interop library or OpenXML.  I am leaning towards interop.  Because we are on a web farm, I think it would be best to not save the file, just work with it in memory. Would this be a concern
    if the files are only only around 50kb? I am only expecting 100 uploads a month.
    If it is preferred or required I save the file before pulling the data out, should I save it to the application directory on the web server and expect it to be ok because I am saving/processing/deleting in one request? Or is there a better solution?  I
    thought of saving to our file share but that opens a whole new bucket of worms because of having to send credentials with the file when saving.
    Simon.

    Hi Simon,
    Open XML SDK can only manipulate Office 2007 and above versions. Since your web form accepts Excel 2003 file, it's not a good choice. But if you want to use the PIA(Primary Interop Assembly) to automate the excel files, it's also not recommened. Neither
    of these two options are suitable in your case, you need to use some 3rd-party library to help you, as recommened in this Microsoft KB article.
    http://support.microsoft.com/kb/257757/en-au
    If your business requires the server-side creation of the Office 97,   Office 2000, Office XP, and Office
    2003 binary file formats, third-party   vendors offer components that can help you. Microsoft does not provide any   such components, so you will need to either build a solution yourself or   purchase one from a third-party vendor. Many different
    third-party products   are available. You should investigate each solution to best match the vendor   to your business needs.If you want to build your own solution that edits the   Office 97, Office 2000, Office XP, and Office 2003 binary file
    formats   directly, you can obtain the file format specifications for free under the   terms of the Microsoft Open Specification Promise (OSP). No technical support   is available for the documentation or for the products that you create, but
      documentation is available. For more information, visit the following Web   site:
    http://www.microsoft.com/interop/docs/officebinaryformats.mspx
    As far as I know, NPOI is a good choice for you. You can search and try it. But as it's a 3rd-party library, we don't provide support for it. It also provide ability to process the worksheet in the memory.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • What is the best way to work with a large amount of data?

    Assume you have a big text file to work that you need to store and work with, what would be the best way to do that?
    I will be adding / removing a lot of elements so I really want to stay away from array resizing overhead.
    I don't want to step on any toes here, but would binary trees / linked lists in C++ be a better solution?

    Assume you have a big text file to work that you need
    to store and work with, what would be the best way to
    do that?Parse it into a database. Then use SQL to manipulate.

  • Isight works with photo booth but not in ichat or google talk or skype?

    isight works with photo booth but not in ichat or google talk or skype?

    Hi
    Is this an Internal or External iSight ?
    In iChat, in the Video Menu (This is to the right of Buddies and may read Audio) is Camera Enabled Ticked ?
    If it reads Audio open the Connection Doctor from that same menu.
    In the connection Doctor open the Capabilities tab
    Does it say your Internet Connection is too slow ?
    At this point I would need to know which iChat Version.
    However also look in the View Menu.
    Is Show VIdeo Status ticked ?  (this shows green Icons next to your Buddy Pic and those of your Buddies
    Next go to the iChat Menu > Preferences > Video Section
    Do you see a preview here ?
    Re: GoogleTalk
    Have you enabled TALK on your Google Account Settings ?
    You need to have a Google Mail ID (Not any other sort of Google ID)
    Have you downloaded the Intel only Web Browser Plug-in to do Video in a  Web Browser.
    10:48 PM      Tuesday; August 30, 2011
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb( 10.6.8)
     Mac OS X (10.6.8),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

Maybe you are looking for

  • Hooking all my components to surround sound

    ok, i bought a sony home theater system with surround sound. the problem is i can only hook up 2 compnents to the system because there are only 2 inputs, the standard rca type audio input and an s-cable input. doesn't someone make a product to defeat

  • FB01 Recording

    Hi Experts! We need to post documents by recording FB01 in LSMW. In this I have a few doubts. 1. How feasible it is to record FB01? I feel it is mostly not recommended. But for our requirement, we can't go for standard batch input method. 2. Suppose,

  • Can't open "FW" Document

    Received an email attachment "90464FW." That's it. No recognizable file extension.Tried everything to open it. Does anyone know what app will open this thing? In Text Edit just see a lot of code. It crashed Appleworks 6.

  • HT201210 Iphone5 locked in recovery mode

    My iphone went into recovery mode and can't get it out of it. Tried charging it but as soon as i unplug it it goes dead. Tried restoring it but error message appears with the code 11 or 21. Any suggestions what to do next?

  • [svn] 1108: Merge revision 1107 from branches/3.0.x to trunk.

    Revision: 1108 Author: [email protected] Date: 2008-04-04 17:39:35 -0700 (Fri, 04 Apr 2008) Log Message: Merge revision 1107 from branches/3.0.x to trunk. Modified Paths: blazeds/trunk/modules/core/src/java/flex/messaging/config/MessagingConfiguratio