Blog  |  Support  |  Forums

Search Results for 'script'

Viewing 15 results - 31 through 45 (of 2,612 total)
  • Author
    Search Results
  • #50438
    Simon Spiers
    Participant

    Thanks Daniel. That makes sense and it now works!

    Sam didn’t provide the script, I saw some of it in his video. It seems complex and suited to his own particular use. I’m hoping he’ll weigh in here.

    #50431
    Glen Forister
    Participant

    I made an archive of this Form before I started fixing all the problems so I can show them to you. So far I have identified 2 records that when you look at the archive you should be able to see the behavior working.

    Select Advanced Search = Finished=N
    I think you will find the above mentioned behavior discussed previously on the following records.

    Coleoptera, Aderidae, aderus
    Coleoptera, Bruchidae
    Coleoptera, Curculionidae, Anthonomus
    Coleoptera, Melandryidae, Abdera
    Coleoptera, Phlacridae, 1
    Coleoptera, Scirtidae, Deleted

    Please let me know what you find.  I can’t guarantee the behavior will be seen on all records.

    I wish I could verify this archive, but I can’t do that without replacing the data in my Form.  Maybe I could do that in another Document I think, but not sure.  I stay away from other documents and keep everything in the same document.

    That is one thing I would wish for is a way to copy a form with the data in it and the settings like an archive and create another Form with the archive which has all the work done including the scripts, searches, formatting, etc., just with another name but in the same document.  I often want to create a new document similar to one I’m already using, but don’t want to take the hours or days to do all the work and get it running again like the old one but with a slightly new purpose.

    #50429
    Daniel Leu
    Participant

    I was on the correct track that there’s a type issue. The match() method returns an array. So you can just grab the first element or you might want to additionally check that there’s only one element (found.length ==1):

    record.setFieldValue(mc_id, found[0]);

    Do you have the link to Sam’s parser script? Thanks!

    • This reply was modified 3 months ago by Daniel Leu.
    #50423
    Daniel Leu
    Participant

    Maybe it’s a type issue. Usually Javascript is not very type agnostic. Is MC defined as a number? Does a text field work instead?

    #50421
    Simon Spiers
    Participant

    Hi Brendan,

    Thanks for the reply and suggestions. Yes, the if statement is to check if the field already has a value and skip the process if so.

    I’ve updated the script but it’s still not populating the form fields:

    function mc() {
    
    var note_id = 'fld-9adb85030f8a42b3aeea043ea5885d05';
    
    var mc_id = 'fld-77a5e9f11f4947caa6135bf312030965';
    
    var input = record.getFieldValue(note_id);
    
    var mcRegex = /[2-6]{1}[0-9]{9}/;
    
    var found = input.match(mcRegex);
    
    if (record.getFieldValue(mc_id) != undefined) {
    
    return;
    
    }
    
    record.setFieldValue(mc_id, found);
    
    document.saveAllChanges();
    
    }
    
    mc();

     

    It seems that the issue is with the record.setFieldValue(mc_id, found); line. I get the correct value if I return found to the console.

    Thanks for looking at it.

    Simon

    #50414
    Simon Spiers
    Participant
    I’ve been using Tap Forms for a few years as a digital log book of patients. The primary purpose is to capture billing details. Prompted by watching Sam’s excellent video on OCR Receipt Extraction. I’d like to have a script to auto populate fields with the OCR from a scan of the patient’s ID label.
    .
    My current workflow is to scan a patient’s hospital label with my iPhone, transfer it to the photo field in a new TF record before manually entering data from the scanned image. It’s the digital equivalent of sticking a label in a book in order to annotate it with other data like start and finish times, items, etc.
    .
    What I’d like to do is scan the label with my iPhone (I use Scanner Pro which does a pretty reliable OCR), create a new record in TF that contains the image in a photo field and the OCR’d text in a notes field, then use a form script to automatically populate fields in the TF form. Because the data is sensitive I want to keep it encrypted, only on my own devices and synced using near field only.
    .
    Let me show an example.
    .
    The same fictional patient on different hospital labels gives OCR text:
    .
    HEELER, MR Bandit
    MRN: OT000123456
    DOB: 04/09/1978 Age: 44 (M)
    10 CATTLEDOG ROAD
    BETOOTA HEIGHTS 4483
    Home Ph: 0491 577 426
    MC: 2123456791
    S/Net No:
    DVA:
    BETOOTA PRIVATE
    Adm No
    CT04589023
    Adm Date: 12/01/24
    13:48
    Att Dr: Fixem, Ayecan S
    Ref Dr: Payne, Ophelia M
    Fund: HFHHF
    50006000
    MC Exp: 05/2028 MC Ref: 1
    Pen No:
    0038708Y
    AD: 12/01/2024
    Adm No. 4589023
    HEELER, MR Bandit
    10 Cattledog Rd
    Betoota Heights, QLD 4483
    PH: 0491577426 M: 0491577426
    MC: 2123456791/1 Exp:05/2028
    CL: PI HHF/T 50006000
    PC NIL
    AD: 12/01/2024
    FIXEM, DR AYECAN
    UR: 123456
    Adm No. 4589023
    DOB: 04/09/1978 (44Y)
    MAR: M
    Gender: Male
    BET 0038708Y
    .
    The bits of data I need are first name and surname, DOB, MC, MC Ref, fund code and fund number (‘HHF’ and 50006000 in the example).
    .
    These would map to TF fields surname (text), first name (text), DOB (DD/MM/yyyy), MC (number), MC ref (number), fund code (link from form) and fund number (text; sometimes contains letters) in a single TF form called ‘Cases’.
    .
    The stickers are rectangular and in landscape orientation, so they have information in two columns. The lines of OCR text aren’t always in the same order, e.g. sometimes the admission number or MRN appear between the address lines. The identifier snippets are always present and predictable, though. For instance, fund code is always found after ‘Fund:’ or ‘CL: PI’ which will always be on the same line.
    .
    Sam’s script for his fuel receipts is awesome. I want to do something like it, but I also want to know how it works so I can fix it and build on it. I’m new to scripting and I’m trying to get simple things to work before adding more complexity. Not having much success though. Here’s my attempt:
    .
    function mc() {
    var mc_id = ‘fld-abbabb14632f41718ffb4a259cebe63a’;
    var label_text_id = ‘fld-d80875c6c53048c8bcf97b11e190118d’;
    var input = record.getFieldValue(label_text_id);
    var mcRegex = /[2-6]{1}[0-9]{9}/;
    var found = input.match(mcRegex);
    if (record.getFieldValue(mc_id)) {
    return;
    }
    record.setFieldValue(mc_id, found);
    console.log(found);
    document.saveAllChanges
    }
    mc();
    .
    It finds mc in the notes field text but doesn’t populate the MC field.
    .
    Can anyone help me with this?
    .
    I have a couple of related questions after watching Sam’s video:
    .
    1. How can I create a new record in TF on iOS that contains both the scanned image (jpg) and OCR text string of the scan in a notes field? I’m able to get one piece of information in easily using Shortcuts/x-callback, but two?
    2. How can I create a link from form using scripting? I’d like to extract the fund code (‘HHF’ in the example; Fund:\s?HF?(\D{3})|CL: PI\s?(\D{3})) then link from the HHF record in the ‘Funds’ form.
    #50401
    Glen Forister
    Participant

    I was getting the ID numbers from the right spot, but just using the wrong Script.

    At least I got the one I need to work working, the old one doesn’t want to work, but no time for that and it was primarily there as an example anyhow.

    Thank.

    #50400
    Brendan
    Keymaster

    Hi Christine,

    Have you considered using a Link to Form field between your Collector and Inventory forms? That way a Collector can see a list of their Inventory items and if you look at an individual Inventory item, you can see the collector.

    That might be simpler than writing a script to copy data around from record to record and form to form.

    #50388
    Christine Vernon
    Participant

    Hi!

    I’m trying to figure out if what I want to do is even possible. Javascript is not my thing, but before I seek out someone to help me write the script here’s what I want to do.

    I created two forms:

    • Collectors – records for collector info, each assigned an acct#
    • Inventory – records for individual artworks, each assigned an id#

    Both forms have a table with identical fields for info pertaining to the sale of the artwork. The account # of collector is in the first field.

    If I fill out the table in an Inventory form record, I want the data to automatically populate the table in the individual record of the collector. Essentially creating a table over time of their collection.

    Is it even possible to write a script for the Collector form that would identify the Collector Account # any time it was entered into a table in any of the Inventory form records and automatically copy that information to the corresponding Collector record?

    The data in the table is also used in the Collector form to update other fields to track sales, # of paintings, etc. (which I used formulas to achieve) and why I need all of it to populate over.

    Right now I’d have to copy and paste that set of table data from one record to another. Trying to automate as much as possible but this seems like maybe too big of a task.

    I’ve attached a screenshot of the table.

    Thank you!

    Christine

    Attachments:
    You must be logged in to view attached files.
    #50374

    In reply to: Open record as result

    Scott Specker
    Participant

    Hi Brendan, thanks, this explains why form.selectRecord() wasn’t working on iOS.

    The form.selectRecord() function only works on the Mac version right now.

    You could ask the record for its URL with record.getUrl() and then call Utils.openUrl(url); to have the record displayed on iOS.

    I have a script that creates a new record following your mileage entry example. At the end, I want to go to the newly created record. Since select record doesn’t work on iOS, I tried the URL suggestion.

    Unfortunately, the URL solution doesn’t appear to work on iOS, either. It works on the Mac, but on iOS, it doesn’t jump to the new record. I have to exit the current record and then manually select the new one.

    var newRecord = form.addNewRecord();
    form.saveAllChanges();

    // form.selectRecord(newRecord);
    var url = newRecord.getUrl();
    Utils.openUrl(url);

    Any idea what I am doing wrong?

    #50371
    Ray Robillard
    Participant

    With my current script :

    function Update_Last_Viewed_Date() {
    var watched_date_id = ‘fld-0d50c9c744b14f89bcfcaa1295650845’;
    var date_to_log = record.getFieldValue(watched_date_id);
    var viewings_id = ‘fld-edf6c517ee814c059b9abe34846eb65c’;
    var newRecord = record.addNewRecordToField(viewings_id);
    var date_id = ‘fld-da18c2d927f443a3a5cac5b35f705aff’;
    newRecord.setFieldValue(date_id, date_to_log);
    document.saveAllChanges();
    }
    Update_Last_Viewed_Date();

    The update works fine, except when I enter the date manually, the script is fired twice.  See the video.

    To me, this is a bug.

    Attachments:
    You must be logged in to view attached files.
    #50369
    Lane Robinson
    Participant

    In print dialog, fields pane, clicking save preset (maybe also add preset, didn’t retest that) prompts for name with:

    Save the current print settings to this preset?

    Upon hitting the save button, tapforms immediately crashes.

    Here’s a crash report.

    ————————————-
    Translated Report (Full Report Below)
    ————————————-
    Process:               Tap Forms 5 [58805]
    Path:                  /Applications/Tap Forms 5.app/Contents/MacOS/Tap Forms 5
    Identifier:            com.tapzapp.tapforms-mac
    Version:               5.3.37 (1041)
    App Item ID:           1081981112
    App External ID:       862220818
    Code Type:             X86-64 (Translated)
    Parent Process:        launchd [1]
    User ID:               501
    Date/Time:             2024-01-23 16:32:37.4155 -0600
    OS Version:            macOS 14.2 (23C64)
    Report Version:        12
    Anonymous UUID:        5B8E9B93-D573-7630-D39C-668AE07D791B
    Time Awake Since Boot: 3400000 seconds
    System Integrity Protection: enabled
    Notes:
    PC register does not match crashing frame (0x0 vs 0x7FF8125DEBE7)
    Crashed Thread:        0  Dispatch queue: com.apple.main-thread
    Exception Type:        EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes:       KERN_PROTECTION_FAILURE at 0x0000000308718ff8
    Exception Codes:       0x0000000000000002, 0x0000000308718ff8
    Termination Reason:    Namespace SIGNAL, Code 11 Segmentation fault: 11
    Terminating Process:   exc handler [58805]
    VM Region Info: 0x308718ff8 is in 0x304f15000-0x308719000;  bytes after start: 58736632  bytes before end: 7
          REGION TYPE                    START – END         [ VSIZE] PRT/MAX SHRMOD  REGION DETAIL
          unused __TEXT               202c2b000-202c2d000    [    8K] r–/r– SM=NUL  …ed lib __TEXT
          GAP OF 0x1022e8000 BYTES
    —>  Stack Guard                 304f15000-308719000    [ 56.0M] —/rwx SM=NUL
          Stack                       308719000-308f15000    [ 8176K] rw-/rwx SM=SHM
    Error Formulating Crash Report:
    PC register does not match crashing frame (0x0 vs 0x7FF8125DEBE7)
    Thread 0 Crashed::  Dispatch queue: com.apple.main-thread
    0   libsystem_pthread.dylib          0x7ff8125debe7 ___chkstk_darwin + 55
    1   CoreFoundation                    0x7ff812647bf7 __chkstk_darwin + 23
    2   CoreFoundation                    0x7ff8126b4d7c CFNotificationCenterPostNotificationWithOptions + 121
    3   PrintCore                        0x7ff82246c678 OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char) + 196
    4   AppKit                            0x7ff815f345d8 -[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes] + 2182
    5   AppKit                            0x7ff815f33d0d -[NSPrintInfo(NSInternal) _printSettingsForGetting] + 48
    6   PrintingUI                           0x127eb8124 0x127e26000 + 598308
    7   CoreFoundation                    0x7ff8126b4cb6 __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 137
    8   CoreFoundation                    0x7ff812744a9c ___CFXRegistrationPost_block_invoke + 86
    9   CoreFoundation                    0x7ff8127449ed _CFXRegistrationPost + 530
    10  CoreFoundation                    0x7ff812684c09 _CFXNotificationPost + 826
    11  CoreFoundation                    0x7ff8126b4d7c CFNotificationCenterPostNotificationWithOptions + 121
    12  PrintCore                        0x7ff82246c678 OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char) + 196
    13  AppKit                            0x7ff815f345d8 -[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes] + 2182
    14  AppKit                            0x7ff815f33d0d -[NSPrintInfo(NSInternal) _printSettingsForGetting] + 48
    15  PrintingUI                           0x127eb8124 0x127e26000 + 598308
    16  CoreFoundation                    0x7ff8126b4cb6 __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 137
    17  CoreFoundation                    0x7ff812744a9c ___CFXRegistrationPost_block_invoke + 86
    18  CoreFoundation                    0x7ff8127449ed _CFXRegistrationPost + 530
    19  CoreFoundation                    0x7ff812684c09 _CFXNotificationPost + 826
    20  CoreFoundation                    0x7ff8126b4d7c CFNotificationCenterPostNotificationWithOptions + 121
    21  PrintCore                        0x7ff82246c678 OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char) + 196
    22  AppKit                            0x7ff815f345d8 -[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes] + 2182
    23  AppKit                            0x7ff815f33d0d -[NSPrintInfo(NSInternal) _printSettingsForGetting] + 48
    24  PrintingUI                           0x127eb8124 0x127e26000 + 598308
    25  CoreFoundation                    0x7ff8126b4cb6 __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 137
    26  CoreFoundation                    0x7ff812744a9c ___CFXRegistrationPost_block_invoke + 86
    27  CoreFoundation                    0x7ff8127449ed _CFXRegistrationPost + 530
    28  CoreFoundation                    0x7ff812684c09 _CFXNotificationPost + 826
    29  CoreFoundation                    0x7ff8126b4d7c CFNotificationCenterPostNotificationWithOptions + 121
    30  PrintCore                        0x7ff82246c678 OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char) + 196
    31  AppKit                            0x7ff815f345d8 -[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes] + 2182
    32  AppKit                            0x7ff815f33d0d -[NSPrintInfo(NSInternal) _printSettingsForGetting] + 48
    33  PrintingUI                           0x127eb8124 0x127e26000 + 598308
    34  CoreFoundation                    0x7ff8126b4cb6 __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 137
    35  CoreFoundation                    0x7ff812744a9c ___CFXRegistrationPost_block_invoke + 86
    36  CoreFoundation                    0x7ff8127449ed _CFXRegistrationPost + 530
    37  CoreFoundation                    0x7ff812684c09 _CFXNotificationPost + 826
    38  CoreFoundation                    0x7ff8126b4d7c CFNotificationCenterPostNotificationWithOptions + 121
    39  PrintCore                        0x7ff82246c678 OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char) + 196
    40  AppKit                            0x7ff815f345d8 -[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes] + 2182
    41  AppKit                            0x7ff815f33d0d -[NSPrintInfo(NSInternal) _printSettingsForGetting] + 48
    42  PrintingUI                           0x127eb8124 0x127e26000 + 598308
    43  CoreFoundation                    0x7ff8126b4cb6 __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 137
    44  CoreFoundation                    0x7ff812744a9c ___CFXRegistrationPost_block_invoke + 86
    45  CoreFoundation                    0x7ff8127449ed _CFXRegistrationPost + 530
    46  CoreFoundation                    0x7ff812684c09 _CFXNotificationPost + 826
    47  CoreFoundation                    0x7ff8126b4d7c CFNotificationCenterPostNotificationWithOptions + 121
    48  PrintCore                        0x7ff82246c678 OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char) + 196
    49  AppKit                            0x7ff815f345d8 -[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes] + 2182
    50  AppKit                            0x7ff815f33d0d -[NSPrintInfo(NSInternal) _printSettingsForGetting] + 48
    51  PrintingUI                           0x127eb8124 0x127e26000 + 598308
    52  CoreFoundation                    0x7ff8126b4cb6 __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 137
    53  CoreFoundation                    0x7ff812744a9c ___CFXRegistrationPost_block_invoke + 86
    54  CoreFoundation                    0x7ff8127449ed _CFXRegistrationPost + 530
    55  CoreFoundation                    0x7ff812684c09 _CFXNotificationPost + 826
    56  CoreFoundation                    0x7ff8126b4d7c CFNotificationCenterPostNotificationWithOptions + 121
    57  PrintCore                        0x7ff82246c678 OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char) + 196
    58  AppKit                            0x7ff815f345d8 -[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes] + 2182
    59  AppKit                            0x7ff815f33d0d -[NSPrintInfo(NSInternal) _printSettingsForGetting] + 48
    60  PrintingUI                           0x127eb8124 0x127e26000 + 598308
    61  CoreFoundation                    0x7ff8126b4cb6 __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 137
    62  CoreFoundation                    0x7ff812744a9c ___CFXRegistrationPost_block_invoke + 86
    63  CoreFoundation                    0x7ff8127449ed _CFXRegistrationPost + 530
    64  CoreFoundation                    0x7ff812684c09 _CFXNotificationPost + 826
    65  CoreFoundation                    0x7ff8126b4d7c CFNotificationCenterPostNotificationWithOptions + 121
    66  PrintCore                        0x7ff82246c678 OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char) + 196
    67  AppKit                            0x7ff815f345d8 -[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes] + 2182
    68  AppKit                            0x7ff815f33d0d -[NSPrintInfo(NSInternal) _printSettingsForGetting] + 48
    69  PrintingUI                           0x127eb8124 0x127e26000 + 598308
    70  CoreFoundation                    0x7ff8126b4cb6 __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 137
    71  CoreFoundation                    0x7ff812744a9c ___CFXRegistrationPost_block_invoke + 86
    72  CoreFoundation                    0x7ff8127449ed _CFXRegistrationPost + 530
    73  CoreFoundation                    0x7ff812684c09 _CFXNotificationPost + 826
    74  CoreFoundation                    0x7ff8126b4d7c CFNotificationCenterPostNotificationWithOptions + 121
    75  PrintCore                        0x7ff82246c678 OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char) + 196
    76  AppKit                            0x7ff815f345d8 -[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes] + 2182
    77  AppKit                            0x7ff815f33d0d -[NSPrintInfo(NSInternal) _printSettingsForGetting] + 48
    78  PrintingUI                           0x127eb8124 0x127e26000 + 598308
    79  CoreFoundation                    0x7ff8126b4cb6 __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 137
    80  CoreFoundation                    0x7ff812744a9c ___CFXRegistrationPost_block_invoke + 86
    81  CoreFoundation                    0x7ff8127449ed _CFXRegistrationPost + 530
    82  CoreFoundation                    0x7ff812684c09 _CFXNotificationPost + 826
    83  CoreFoundation                    0x7ff8126b4d7c CFNotificationCenterPostNotificationWithOptions + 121
    84  PrintCore                        0x7ff82246c678 OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char) + 196
    85  AppKit                            0x7ff815f345d8 -[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes] + 2182
    86  AppKit                            0x7ff815f33d0d -[NSPrintInfo(NSInternal) _printSettingsForGetting] + 48
    87  PrintingUI                           0x127eb8124 0x127e26000 + 598308
    88  CoreFoundation                    0x7ff8126b4cb6 __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 137
    89  CoreFoundation                    0x7ff812744a9c ___CFXRegistrationPost_block_invoke + 86
    90  CoreFoundation                    0x7ff8127449ed _CFXRegistrationPost + 530
    91  CoreFoundation                    0x7ff812684c09 _CFXNotificationPost + 826
    92  CoreFoundation                    0x7ff8126b4d7c CFNotificationCenterPostNotificationWithOptions + 121
    93  PrintCore                        0x7ff82246c678 OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char) + 196
    94  AppKit                            0x7ff815f345d8 -[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes] + 2182
    95  AppKit                            0x7ff815f33d0d -[NSPrintInfo(NSInternal) _printSettingsForGetting] + 48
    96  PrintingUI                           0x127eb8124 0x127e26000 + 598308
    97  CoreFoundation                    0x7ff8126b4cb6 __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 137
    98  CoreFoundation                    0x7ff812744a9c ___CFXRegistrationPost_block_invoke + 86
    99  CoreFoundation                    0x7ff8127449ed _CFXRegistrationPost + 530
    100 CoreFoundation                    0x7ff812684c09 _CFXNotificationPost + 826
    101 CoreFoundation                    0x7ff8126b4d7c CFNotificationCenterPostNotificationWithOptions + 121
    102 PrintCore                        0x7ff82246c678 OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char) + 196
    103 AppKit                            0x7ff815f345d8 -[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes] + 2182
    104 AppKit                            0x7ff815f33d0d -[NSPrintInfo(NSInternal) _printSettingsForGetting] + 48
    105 PrintingUI                           0x127eb8124 0x127e26000 + 598308
    106 CoreFoundation                    0x7ff8126b4cb6 __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 137
    107 CoreFoundation                    0x7ff812744a9c ___CFXRegistrationPost_block_invoke + 86
    108 CoreFoundation                    0x7ff8127449ed _CFXRegistrationPost + 530
    109 CoreFoundation                    0x7ff812684c09 _CFXNotificationPost + 826
    110 CoreFoundation                    0x7ff8126b4d7c CFNotificationCenterPostNotificationWithOptions + 121
    111 PrintCore                        0x7ff82246c678 OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char) + 196
    112 AppKit                            0x7ff815f345d8 -[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes] + 2182
    113 AppKit                            0x7ff815f33d0d -[NSPrintInfo(NSInternal) _printSettingsForGetting] + 48
    114 PrintingUI                           0x127eb8124 0x127e26000 + 598308
    115 CoreFoundation                    0x7ff8126b4cb6 __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 137
    116 CoreFoundation                    0x7ff812744a9c ___CFXRegistrationPost_block_invoke + 86
    117 CoreFoundation                    0x7ff8127449ed _CFXRegistrationPost + 530
    118 CoreFoundation                    0x7ff812684c09 _CFXNotificationPost + 826
    119 CoreFoundation                    0x7ff8126b4d7c CFNotificationCenterPostNotificationWithOptions + 121
    120 PrintCore                        0x7ff82246c678 OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char) + 196
    121 AppKit                            0x7ff815f345d8 -[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes] + 2182
    122 AppKit                            0x7ff815f33d0d -[NSPrintInfo(NSInternal) _printSettingsForGetting] + 48
    123 PrintingUI                           0x127eb8124 0x127e26000 + 598308
    124 CoreFoundation                    0x7ff8126b4cb6 __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 137
    125 CoreFoundation                    0x7ff812744a9c ___CFXRegistrationPost_block_invoke + 86
    126 CoreFoundation                    0x7ff8127449ed _CFXRegistrationPost + 530
    127 CoreFoundation                    0x7ff812684c09 _CFXNotificationPost + 826
    128 CoreFoundation                    0x7ff8126b4d7c CFNotificationCenterPostNotificationWithOptions + 121
    129 PrintCore                        0x7ff82246c678 OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char) + 196
    130 AppKit                            0x7ff815f345d8 -[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes] + 2182
    131 AppKit                            0x7ff815f33d0d -[NSPrintInfo(NSInternal) _printSettingsForGetting] + 48
    132 PrintingUI                           0x127eb8124 0x127e26000 + 598308
    133 CoreFoundation                    0x7ff8126b4cb6 __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 137
    134 CoreFoundation                    0x7ff812744a9c ___CFXRegistrationPost_block_invoke + 86
    135 CoreFoundation                    0x7ff8127449ed _CFXRegistrationPost + 530
    136 CoreFoundation                    0x7ff812684c09 _CFXNotificationPost + 826
    137 CoreFoundation                    0x7ff8126b4d7c CFNotificationCenterPostNotificationWithOptions + 121
    138 PrintCore                        0x7ff82246c678 OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char) + 196
    139 AppKit                            0x7ff815f345d8 -[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes] + 2182
    140 AppKit                            0x7ff815f33d0d -[NSPrintInfo(NSInternal) _printSettingsForGetting] + 48
    141 PrintingUI                           0x127eb8124 0x127e26000 + 598308
    142 CoreFoundation                    0x7ff8126b4cb6 __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 137
    143 CoreFoundation                    0x7ff812744a9c ___CFXRegistrationPost_block_invoke + 86
    144 CoreFoundation                    0x7ff8127449ed _CFXRegistrationPost + 530
    145 CoreFoundation                    0x7ff812684c09 _CFXNotificationPost + 826
    146 CoreFoundation                    0x7ff8126b4d7c CFNotificationCenterPostNotificationWithOptions + 121
    147 PrintCore                        0x7ff82246c678 OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char) + 196
    148 AppKit                            0x7ff815f345d8 -[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes] + 2182
    149 AppKit                            0x7ff815f33d0d -[NSPrintInfo(NSInternal) _printSettingsForGetting] + 48
    150 PrintingUI                           0x127eb8124 0x127e26000 + 598308
    151 CoreFoundation                    0x7ff8126b4cb6 __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 137
    152 CoreFoundation                    0x7ff812744a9c ___CFXRegistrationPost_block_invoke + 86
    153 CoreFoundation                    0x7ff8127449ed _CFXRegistrationPost + 530
    154 CoreFoundation                    0x7ff812684c09 _CFXNotificationPost + 826
    155 CoreFoundation                    0x7ff8126b4d7c CFNotificationCenterPostNotificationWithOptions + 121
    156 PrintCore                        0x7ff82246c678 OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char) + 196
    157 AppKit                            0x7ff815f345d8 -[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes] + 2182
    158 AppKit                            0x7ff815f33d0d -[NSPrintInfo(NSInternal) _printSettingsForGetting] + 48
    159 PrintingUI                           0x127eb8124 0x127e26000 + 598308
    160 CoreFoundation                    0x7ff8126b4cb6 __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 137
    161 CoreFoundation                    0x7ff812744a9c ___CFXRegistrationPost_block_invoke + 86
    162 CoreFoundation                    0x7ff8127449ed _CFXRegistrationPost + 530
    163 CoreFoundation                    0x7ff812684c09 _CFXNotificationPost + 826
    164 CoreFoundation                    0x7ff8126b4d7c CFNotificationCenterPostNotificationWithOptions + 121
    165 PrintCore                        0x7ff82246c678 OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char) + 196
    166 AppKit                            0x7ff815f345d8 -[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes] + 2182
    167 AppKit                            0x7ff815f33d0d -[NSPrintInfo(NSInternal) _printSettingsForGetting] + 48
    168 PrintingUI                           0x127eb8124 0x127e26000 + 598308
    169 CoreFoundation                    0x7ff8126b4cb6 __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 137
    170 CoreFoundation                    0x7ff812744a9c ___CFXRegistrationPost_block_invoke + 86
    171 CoreFoundation                    0x7ff8127449ed _CFXRegistrationPost + 530
    172 CoreFoundation                    0x7ff812684c09 _CFXNotificationPost + 826
    173 CoreFoundation                    0x7ff8126b4d7c CFNotificationCenterPostNotificationWithOptions + 121
    174 PrintCore                        0x7ff82246c678 OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char) + 196
    175 AppKit                            0x7ff815f345d8 -[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes] + 2182
    176 AppKit                            0x7ff815f33d0d -[NSPrintInfo(NSInternal) _printSettingsForGetting] + 48
    177 PrintingUI                           0x127eb8124 0x127e26000 + 598308
    178 CoreFoundation                    0x7ff8126b4cb6 __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 137
    179 CoreFoundation                    0x7ff812744a9c ___CFXRegistrationPost_block_invoke + 86
    180 CoreFoundation                    0x7ff8127449ed _CFXRegistrationPost + 530
    181 CoreFoundation                    0x7ff812684c09 _CFXNotificationPost + 826
    182 CoreFoundation                    0x7ff8126b4d7c CFNotificationCenterPostNotificationWithOptions + 121
    183 PrintCore                        0x7ff82246c678 OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char) + 196
    184 AppKit                            0x7ff815f345d8 -[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes] + 2182
    185 AppKit                            0x7ff815f33d0d -[NSPrintInfo(NSInternal) _printSettingsForGetting] + 48
    186 PrintingUI                           0x127eb8124 0x127e26000 + 598308
    187 CoreFoundation                    0x7ff8126b4cb6 __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 137
    188 CoreFoundation                    0x7ff812744a9c ___CFXRegistrationPost_block_invoke + 86
    189 CoreFoundation                    0x7ff8127449ed _CFXRegistrationPost + 530
    190 CoreFoundation                    0x7ff812684c09 _CFXNotificationPost + 826
    191 CoreFoundation                    0x7ff8126b4d7c CFNotificationCenterPostNotificationWithOptions + 121
    192 PrintCore                        0x7ff82246c678 OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char) + 196
    193 AppKit                            0x7ff815f345d8 -[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes] + 2182
    194 AppKit                            0x7ff815f33d0d -[NSPrintInfo(NSInternal) _printSettingsForGetting] + 48
    195 PrintingUI                           0x127eb8124 0x127e26000 + 598308
    196 CoreFoundation                    0x7ff8126b4cb6 __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 137
    197 CoreFoundation                    0x7ff812744a9c ___CFXRegistrationPost_block_invoke + 86
    198 CoreFoundation                    0x7ff8127449ed _CFXRegistrationPost + 530
    199 CoreFoundation                    0x7ff812684c09 _CFXNotificationPost + 826
    200 CoreFoundation                    0x7ff8126b4d7c CFNotificationCenterPostNotificationWithOptions + 121
    201 PrintCore                        0x7ff82246c678 OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char) + 196
    202 AppKit                            0x7ff815f345d8 -[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes] + 2182
    203 AppKit                            0x7ff815f33d0d -[NSPrintInfo(NSInternal) _printSettingsForGetting] + 48
    204 PrintingUI                           0x127eb8124 0x127e26000 + 598308
    205 CoreFoundation                    0x7ff8126b4cb6 __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 137
    206 CoreFoundation                    0x7ff812744a9c ___CFXRegistrationPost_block_invoke + 86
    207 CoreFoundation                    0x7ff8127449ed _CFXRegistrationPost + 530
    208 CoreFoundation                    0x7ff812684c09 _CFXNotificationPost + 826
    209 CoreFoundation                    0x7ff8126b4d7c CFNotificationCenterPostNotificationWithOptions + 121
    210 PrintCore                        0x7ff82246c678 OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char) + 196
    211 AppKit                            0x7ff815f345d8 -[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes] + 2182
    212 AppKit                            0x7ff815f33d0d -[NSPrintInfo(NSInternal) _printSettingsForGetting] + 48
    213 PrintingUI                           0x127eb8124 0x127e26000 + 598308
    214 CoreFoundation                    0x7ff8126b4cb6 __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 137
    215 CoreFoundation                    0x7ff812744a9c ___CFXRegistrationPost_block_invoke + 86
    216 CoreFoundation                    0x7ff8127449ed _CFXRegistrationPost + 530
    217 CoreFoundation                    0x7ff812684c09 _CFXNotificationPost + 826
    218 CoreFoundation                    0x7ff8126b4d7c CFNotificationCenterPostNotificationWithOptions + 121
    219 PrintCore                        0x7ff82246c678 OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char) + 196
    220 AppKit                            0x7ff815f345d8 -[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes] + 2182
    221 AppKit                            0x7ff815f33d0d -[NSPrintInfo(NSInternal) _printSettingsForGetting] + 48
    222 PrintingUI                           0x127eb8124 0x127e26000 + 598308
    223 CoreFoundation                    0x7ff8126b4cb6 __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 137
    224 CoreFoundation                    0x7ff812744a9c ___CFXRegistrationPost_block_invoke + 86
    225 CoreFoundation                    0x7ff8127449ed _CFXRegistrationPost + 530
    226 CoreFoundation                    0x7ff812684c09 _CFXNotificationPost + 826
    227 CoreFoundation                    0x7ff8126b4d7c CFNotificationCenterPostNotificationWithOptions + 121
    228 PrintCore                        0x7ff82246c678 OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char) + 196
    229 AppKit                            0x7ff815f345d8 -[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes] + 2182
    230 AppKit                            0x7ff815f33d0d -[NSPrintInfo(NSInternal) _printSettingsForGetting] + 48
    231 PrintingUI                           0x127eb8124 0x127e26000 + 598308
    232 CoreFoundation                    0x7ff8126b4cb6 __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 137
    233 CoreFoundation                    0x7ff812744a9c ___CFXRegistrationPost_block_invoke + 86
    234 CoreFoundation                    0x7ff8127449ed _CFXRegistrationPost + 530
    235 CoreFoundation                    0x7ff812684c09 _CFXNotificationPost + 826
    236 CoreFoundation                    0x7ff8126b4d7c CFNotificationCenterPostNotificationWithOptions + 121
    237 PrintCore                        0x7ff82246c678 OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char) + 196
    238 AppKit                            0x7ff815f345d8 -[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes] + 2182
    239 AppKit                            0x7ff815f33d0d -[NSPrintInfo(NSInternal) _printSettingsForGetting] + 48
    240 PrintingUI                           0x127eb8124 0x127e26000 + 598308
    241 CoreFoundation                    0x7ff8126b4cb6 __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 137
    242 CoreFoundation                    0x7ff812744a9c ___CFXRegistrationPost_block_invoke + 86
    243 CoreFoundation                    0x7ff8127449ed _CFXRegistrationPost + 530
    244 CoreFoundation                    0x7ff812684c09 _CFXNotificationPost + 826
    245 CoreFoundation                    0x7ff8126b4d7c CFNotificationCenterPostNotificationWithOptions + 121
    246 PrintCore                        0x7ff82246c678 OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char) + 196
    247 AppKit                            0x7ff815f345d8 -[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes] + 2182
    248 AppKit                            0x7ff815f33d0d -[NSPrintInfo(NSInternal) _printSettingsForGetting] + 48
    249 PrintingUI                           0x127eb8124 0x127e26000 + 598308
    250 CoreFoundation                    0x7ff8126b4cb6 __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 137
    251 CoreFoundation                    0x7ff812744a9c ___CFXRegistrationPost_block_invoke + 86
    252 CoreFoundation                    0x7ff8127449ed _CFXRegistrationPost + 530
    253 CoreFoundation                    0x7ff812684c09 _CFXNotificationPost + 826
    254 CoreFoundation                    0x7ff8126b4d7c CFNotificationCenterPostNotificationWithOptions + 121
    255 PrintCore                        0x7ff82246c678 OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char) + 196
    256 AppKit                            0x7ff815f345d8 -[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes] + 2182
    257 AppKit                            0x7ff815f33d0d -[NSPrintInfo(NSInternal) _printSettingsForGetting] + 48
    258 PrintingUI                           0x127eb8124 0x127e26000 + 598308
    259 CoreFoundation                    0x7ff8126b4cb6 __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 137
    260 CoreFoundation                    0x7ff812744a9c ___CFXRegistrationPost_block_invoke + 86
    261 CoreFoundation                    0x7ff8127449ed _CFXRegistrationPost + 530
    262 CoreFoundation                    0x7ff812684c09 _CFXNotificationPost + 826
    263 CoreFoundation                    0x7ff8126b4d7c CFNotificationCenterPostNotificationWithOptions + 121
    264 PrintCore                        0x7ff82246c678 OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char) + 196
    265 AppKit                            0x7ff815f345d8 -[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes] + 2182
    266 AppKit                            0x7ff815f33d0d -[NSPrintInfo(NSInternal) _printSettingsForGetting] + 48
    267 PrintingUI                           0x127eb8124 0x127e26000 + 598308
    268 CoreFoundation                    0x7ff8126b4cb6 __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 137
    269 CoreFoundation                    0x7ff812744a9c ___CFXRegistrationPost_block_invoke + 86
    270 CoreFoundation                    0x7ff8127449ed _CFXRegistrationPost + 530
    271 CoreFoundation                    0x7ff812684c09 _CFXNotificationPost + 826
    272 CoreFoundation                    0x7ff8126b4d7c CFNotificationCenterPostNotificationWithOptions + 121
    273 PrintCore                        0x7ff82246c678 OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char) + 196
    274 AppKit                            0x7ff815f345d8 -[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes] + 2182
    275 AppKit                            0x7ff815f33d0d -[NSPrintInfo(NSInternal) _printSettingsForGetting] + 48
    276 PrintingUI                           0x127eb8124 0x127e26000 + 598308
    277 CoreFoundation                    0x7ff8126b4cb6 __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 137
    278 CoreFoundation                    0x7ff812744a9c ___CFXRegistrationPost_block_invoke + 86
    279 CoreFoundation                    0x7ff8127449ed _CFXRegistrationPost + 530
    280 CoreFoundation                    0x7ff812684c09 _CFXNotificationPost + 826
    281 CoreFoundation                    0x7ff8126b4d7c CFNotificationCenterPostNotificationWithOptions + 121
    282 PrintCore                        0x7ff82246c678 OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char) + 196
    283 AppKit                            0x7ff815f345d8 -[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes] + 2182
    284 AppKit                            0x7ff815f33d0d -[NSPrintInfo(NSInternal) _printSettingsForGetting] + 48
    285 PrintingUI                           0x127eb8124 0x127e26000 + 598308
    286 CoreFoundation                    0x7ff8126b4cb6 __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 137
    287 CoreFoundation                    0x7ff812744a9c ___CFXRegistrationPost_block_invoke + 86
    288 CoreFoundation                    0x7ff8127449ed _CFXRegistrationPost + 530
    289 CoreFoundation                    0x7ff812684c09 _CFXNotificationPost + 826
    290 CoreFoundation                    0x7ff8126b4d7c CFNotificationCenterPostNotificationWithOptions + 121
    291 PrintCore                        0x7ff82246c678 OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char) + 196
    292 AppKit                            0x7ff815f345d8 -[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes] + 2182
    293 AppKit                            0x7ff815f33d0d -[NSPrintInfo(NSInternal) _printSettingsForGetting] + 48
    294 PrintingUI                           0x127eb8124 0x127e26000 + 598308
    295 CoreFoundation                    0x7ff8126b4cb6 __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 137
    296 CoreFoundation                    0x7ff812744a9c ___CFXRegistrationPost_block_invoke + 86
    297 CoreFoundation                    0x7ff8127449ed _CFXRegistrationPost + 530
    298 CoreFoundation                    0x7ff812684c09 _CFXNotificationPost + 826
    299 CoreFoundation                    0x7ff8126b4d7c CFNotificationCenterPostNotificationWithOptions + 121
    300 PrintCore                        0x7ff82246c678 OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char) + 196
    301 AppKit                            0x7ff815f345d8 -[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes] + 2182
    302 AppKit                            0x7ff815f33d0d -[NSPrintInfo(NSInternal) _printSettingsForGetting] + 48
    303 PrintingUI                           0x127eb8124 0x127e26000 + 598308
    304 CoreFoundation                    0x7ff8126b4cb6 __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 137
    305 CoreFoundation                    0x7ff812744a9c ___CFXRegistrationPost_block_invoke + 86
    306 CoreFoundation                    0x7ff8127449ed _CFXRegistrationPost + 530
    307 CoreFoundation                    0x7ff812684c09 _CFXNotificationPost + 826
    308 CoreFoundation                    0x7ff8126b4d7c CFNotificationCenterPostNotificationWithOptions + 121
    309 PrintCore                        0x7ff82246c678 OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char) + 196
    310 AppKit                            0x7ff815f345d8 -[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes] + 2182
    311 AppKit                            0x7ff815f33d0d -[NSPrintInfo(NSInternal) _printSettingsForGetting] + 48
    312 PrintingUI                           0x127eb8124 0x127e26000 + 598308
    313 CoreFoundation                    0x7ff8126b4cb6 __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 137
    314 CoreFoundation                    0x7ff812744a9c ___CFXRegistrationPost_block_invoke + 86
    315 CoreFoundation                    0x7ff8127449ed _CFXRegistrationPost + 530
    316 CoreFoundation                    0x7ff812684c09 _CFXNotificationPost + 826
    317 CoreFoundation                    0x7ff8126b4d7c CFNotificationCenterPostNotificationWithOptions + 121
    318 PrintCore                        0x7ff82246c678 OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char) + 196
    319 AppKit                            0x7ff815f345d8 -[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes] + 2182
    320 AppKit                            0x7ff815f33d0d -[NSPrintInfo(NSInternal) _printSettingsForGetting] + 48
    321 PrintingUI                           0x127eb8124 0x127e26000 + 598308
    322 CoreFoundation                    0x7ff8126b4cb6 __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 137
    323 CoreFoundation                    0x7ff812744a9c ___CFXRegistrationPost_block_invoke + 86
    324 CoreFoundation                    0x7ff8127449ed _CFXRegistrationPost + 530
    325 CoreFoundation                    0x7ff812684c09 _CFXNotificationPost + 826
    326 CoreFoundation                    0x7ff8126b4d7c CFNotificationCenterPostNotificationWithOptions + 121
    327 PrintCore                        0x7ff82246c678 OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char) + 196
    328 AppKit                            0x7ff815f345d8 -[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes] + 2182
    329 AppKit                            0x7ff815f33d0d -[NSPrintInfo(NSInternal) _printSettingsForGetting] + 48
    330 PrintingUI                           0x127eb8124 0x127e26000 + 598308
    331 CoreFoundation                    0x7ff8126b4cb6 __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 137
    332 CoreFoundation                    0x7ff812744a9c ___CFXRegistrationPost_block_invoke + 86
    333 CoreFoundation                    0x7ff8127449ed _CFXRegistrationPost + 530
    334 CoreFoundation                    0x7ff812684c09 _CFXNotificationPost + 826
    335 CoreFoundation                    0x7ff8126b4d7c CFNotificationCenterPostNotificationWithOptions + 121
    336 PrintCore                        0x7ff82246c678 OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char) + 196
    337 AppKit                            0x7ff815f345d8 -[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes] + 2182
    338 AppKit                            0x7ff815f33d0d -[NSPrintInfo(NSInternal) _printSettingsForGetting] + 48
    339 PrintingUI                           0x127eb8124 0x127e26000 + 598308
    340 CoreFoundation                    0x7ff8126b4cb6 __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 137
    341 CoreFoundation                    0x7ff812744a9c ___CFXRegistrationPost_block_invoke + 86
    342 CoreFoundation                    0x7ff8127449ed _CFXRegistrationPost + 530
    343 CoreFoundation                    0x7ff812684c09 _CFXNotificationPost + 826
    344 CoreFoundation                    0x7ff8126b4d7c CFNotificationCenterPostNotificationWithOptions + 121
    345 PrintCore                        0x7ff82246c678 OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char) + 196
    346 AppKit                            0x7ff815f345d8 -[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes] + 2182
    347 AppKit                            0x7ff815f33d0d -[NSPrintInfo(NSInternal) _printSettingsForGetting] + 48
    348 PrintingUI                           0x127eb8124 0x127e26000 + 598308
    349 CoreFoundation                    0x7ff8126b4cb6 __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 137
    350 CoreFoundation                    0x7ff812744a9c ___CFXRegistrationPost_block_invoke + 86
    351 CoreFoundation                    0x7ff8127449ed _CFXRegistrationPost + 530
    352 CoreFoundation                    0x7ff812684c09 _CFXNotificationPost + 826
    353 CoreFoundation                    0x7ff8126b4d7c CFNotificationCenterPostNotificationWithOptions + 121
    354 PrintCore                        0x7ff82246c678 OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char) + 196
    355 AppKit                            0x7ff815f345d8 -[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes] + 2182
    356 AppKit                            0x7ff815f33d0d -[NSPrintInfo(NSInternal) _printSettingsForGetting] + 48
    357 PrintingUI                           0x127eb8124 0x127e26000 + 598308
    358 CoreFoundation                    0x7ff8126b4cb6 __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 137
    359 CoreFoundation                    0x7ff812744a9c ___CFXRegistrationPost_block_invoke + 86
    360 CoreFoundation                    0x7ff8127449ed _CFXRegistrationPost + 530
    361 CoreFoundation                    0x7ff812684c09 _CFXNotificationPost + 826
    362 CoreFoundation                    0x7ff8126b4d7c CFNotificationCenterPostNotificationWithOptions + 121
    363 PrintCore                        0x7ff82246c678 OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char) + 196
    364 AppKit                            0x7ff815f345d8 -[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes] + 2182
    365 AppKit                            0x7ff815f33d0d -[NSPrintInfo(NSInternal) _printSettingsForGetting] + 48
    366 PrintingUI                           0x127eb8124 0x127e26000 + 598308
    367 CoreFoundation                    0x7ff8126b4cb6 __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 137
    368 CoreFoundation                    0x7ff812744a9c ___CFXRegistrationPost_block_invoke + 86
    369 CoreFoundation                    0x7ff8127449ed _CFXRegistrationPost + 530
    370 CoreFoundation                    0x7ff812684c09 _CFXNotificationPost + 826
    371 CoreFoundation                    0x7ff8126b4d7c CFNotificationCenterPostNotificationWithOptions + 121
    372 PrintCore                        0x7ff82246c678 OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char) + 196
    373 AppKit                            0x7ff815f345d8 -[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes] + 2182
    374 AppKit                            0x7ff815f33d0d -[NSPrintInfo(NSInternal) _printSettingsForGetting] + 48
    375 PrintingUI                           0x127eb8124 0x127e26000 + 598308
    376 CoreFoundation                    0x7ff8126b4cb6 __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 137
    377 CoreFoundation                    0x7ff812744a9c ___CFXRegistrationPost_block_invoke + 86
    378 CoreFoundation                    0x7ff8127449ed _CFXRegistrationPost + 530
    379 CoreFoundation                    0x7ff812684c09 _CFXNotificationPost + 826
    380 CoreFoundation                    0x7ff8126b4d7c CFNotificationCenterPostNotificationWithOptions + 121
    381 PrintCore                        0x7ff82246c678 OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char) + 196
    382 AppKit                            0x7ff815f345d8 -[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes] + 2182
    383 AppKit                            0x7ff815f33d0d -[NSPrintInfo(NSInternal) _printSettingsForGetting] + 48
    384 PrintingUI                           0x127eb8124 0x127e26000 + 598308
    385 CoreFoundation                    0x7ff8126b4cb6 __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 137
    386 CoreFoundation                    0x7ff812744a9c ___CFXRegistrationPost_block_invoke + 86
    387 CoreFoundation                    0x7ff8127449ed _CFXRegistrationPost + 530
    388 CoreFoundation                    0x7ff812684c09 _CFXNotificationPost + 826
    389 CoreFoundation                    0x7ff8126b4d7c CFNotificationCenterPostNotificationWithOptions + 121
    390 PrintCore                        0x7ff82246c678 OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char) + 196
    391 AppKit                            0x7ff815f345d8 -[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes] + 2182
    392 AppKit                            0x7ff815f33d0d -[NSPrintInfo(NSInternal) _printSettingsForGetting] + 48
    393 PrintingUI                           0x127eb8124 0x127e26000 + 598308
    394 CoreFoundation                    0x7ff8126b4cb6 __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 137
    395 CoreFoundation                    0x7ff812744a9c ___CFXRegistrationPost_block_invoke + 86
    396 CoreFoundation                    0x7ff8127449ed _CFXRegistrationPost + 530
    397 CoreFoundation                    0x7ff812684c09 _CFXNotificationPost + 826
    398 CoreFoundation                    0x7ff8126b4d7c CFNotificationCenterPostNotificationWithOptions + 121
    399 PrintCore                        0x7ff82246c678 OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char) + 196
    400 AppKit                            0x7ff815f345d8 -[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes] + 2182
    401 AppKit                            0x7ff815f33d0d -[NSPrintInfo(NSInternal) _printSettingsForGetting] + 48
    402 PrintingUI                           0x127eb8124 0x127e26000 + 598308
    403 CoreFoundation                    0x7ff8126b4cb6 __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 137
    404 CoreFoundation                    0x7ff812744a9c ___CFXRegistrationPost_block_invoke + 86
    405 CoreFoundation                    0x7ff8127449ed _CFXRegistrationPost + 530
    406 CoreFoundation                    0x7ff812684c09 _CFXNotificationPost + 826
    407 CoreFoundation                    0x7ff8126b4d7c CFNotificationCenterPostNotificationWithOptions + 121
    408 PrintCore                        0x7ff82246c678 OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char) + 196
    409 AppKit                            0x7ff815f345d8 -[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes] + 2182
    410 AppKit                            0x7ff815f33d0d -[NSPrintInfo(NSInternal) _printSettingsForGetting] + 48
    411 PrintingUI                           0x127eb8124 0x127e26000 + 598308
    412 CoreFoundation                    0x7ff8126b4cb6 __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 137
    413 CoreFoundation                    0x7ff812744a9c ___CFXRegistrationPost_block_invoke + 86
    414 CoreFoundation                    0x7ff8127449ed _CFXRegistrationPost + 530
    415 CoreFoundation                    0x7ff812684c09 _CFXNotificationPost + 826
    416 CoreFoundation                    0x7ff8126b4d7c CFNotificationCenterPostNotificationWithOptions + 121
    417 PrintCore                        0x7ff82246c678 OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char) + 196
    418 AppKit                            0x7ff815f345d8 -[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes] + 2182
    419 AppKit                            0x7ff815f33d0d -[NSPrintInfo(NSInternal) _printSettingsForGetting] + 48
    420 PrintingUI                           0x127eb8124 0x127e26000 + 598308
    421 CoreFoundation                    0x7ff8126b4cb6 __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 137
    422 CoreFoundation                    0x7ff812744a9c ___CFXRegistrationPost_block_invoke + 86
    423 CoreFoundation                    0x7ff8127449ed _CFXRegistrationPost + 530
    424 CoreFoundation                    0x7ff812684c09 _CFXNotificationPost + 826
    425 CoreFoundation                    0x7ff8126b4d7c CFNotificationCenterPostNotificationWithOptions + 121
    426 PrintCore                        0x7ff82246c678 OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char) + 196
    427 AppKit                            0x7ff815f345d8 -[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes] + 2182
    428 AppKit                            0x7ff815f33d0d -[NSPrintInfo(NSInternal) _printSettingsForGetting] + 48
    429 PrintingUI                           0x127eb8124 0x127e26000 + 598308
    430 CoreFoundation                    0x7ff8126b4cb6 __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 137
    431 CoreFoundation                    0x7ff812744a9c ___CFXRegistrationPost_block_invoke + 86
    432 CoreFoundation                    0x7ff8127449ed _CFXRegistrationPost + 530
    433 CoreFoundation                    0x7ff812684c09 _CFXNotificationPost + 826
    434 CoreFoundation                    0x7ff8126b4d7c CFNotificationCenterPostNotificationWithOptions + 121
    435 PrintCore                        0x7ff82246c678 OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char) + 196
    436 AppKit                            0x7ff815f345d8 -[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes] + 2182
    437 AppKit                            0x7ff815f33d0d -[NSPrintInfo(NSInternal) _printSettingsForGetting] + 48
    438 PrintingUI                           0x127eb8124 0x127e26000 + 598308
    439 CoreFoundation                    0x7ff8126b4cb6 __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 137
    440 CoreFoundation                    0x7ff812744a9c ___CFXRegistrationPost_block_invoke + 86
    441 CoreFoundation                    0x7ff8127449ed _CFXRegistrationPost + 530
    442 CoreFoundation                    0x7ff812684c09 _CFXNotificationPost + 826
    443 CoreFoundation                    0x7ff8126b4d7c CFNotificationCenterPostNotificationWithOptions + 121
    444 PrintCore                        0x7ff82246c678 OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char) + 196
    445 AppKit                            0x7ff815f345d8 -[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes] + 2182
    446 AppKit                            0x7ff815f33d0d -[NSPrintInfo(NSInternal) _printSettingsForGetting] + 48
    447 PrintingUI                           0x127eb8124 0x127e26000 + 598308
    448 CoreFoundation                    0x7ff8126b4cb6 __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 137
    449 CoreFoundation                    0x7ff812744a9c ___CFXRegistrationPost_block_invoke + 86
    450 CoreFoundation                    0x7ff8127449ed _CFXRegistrationPost + 530
    451 CoreFoundation                    0x7ff812684c09 _CFXNotificationPost + 826
    452 CoreFoundation                    0x7ff8126b4d7c CFNotificationCenterPostNotificationWithOptions + 121
    453 PrintCore                        0x7ff82246c678 OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char) + 196
    454 AppKit                            0x7ff815f345d8 -[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes] + 2182
    455 AppKit                            0x7ff815f33d0d -[NSPrintInfo(NSInternal) _printSettingsForGetting] + 48
    456 PrintingUI                           0x127eb8124 0x127e26000 + 598308
    457 CoreFoundation                    0x7ff8126b4cb6 __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 137
    458 CoreFoundation                    0x7ff812744a9c ___CFXRegistrationPost_block_invoke + 86
    459 CoreFoundation                    0x7ff8127449ed _CFXRegistrationPost + 530
    460 CoreFoundation                    0x7ff812684c09 _CFXNotificationPost + 826
    461 CoreFoundation                    0x7ff8126b4d7c CFNotificationCenterPostNotificationWithOptions + 121
    462 PrintCore                        0x7ff82246c678 OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char) + 196
    463 AppKit                            0x7ff815f345d8 -[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes] + 2182
    464 AppKit                            0x7ff815f33d0d -[NSPrintInfo(NSInternal) _printSettingsForGetting] + 48
    465 PrintingUI                           0x127eb8124 0x127e26000 + 598308
    466 CoreFoundation                    0x7ff8126b4cb6 __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 137
    467 CoreFoundation                    0x7ff812744a9c ___CFXRegistrationPost_block_invoke + 86
    468 CoreFoundation                    0x7ff8127449ed _CFXRegistrationPost + 530
    469 CoreFoundation                    0x7ff812684c09 _CFXNotificationPost + 826
    470 CoreFoundation                    0x7ff8126b4d7c CFNotificationCenterPostNotificationWithOptions + 121
    471 PrintCore                        0x7ff82246c678 OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char) + 196
    472 AppKit                            0x7ff815f345d8 -[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes] + 2182
    473 AppKit                            0x7ff815f33d0d -[NSPrintInfo(NSInternal) _printSettingsForGetting] + 48
    474 PrintingUI                           0x127eb8124 0x127e26000 + 598308
    475 CoreFoundation                    0x7ff8126b4cb6 __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 137
    476 CoreFoundation                    0x7ff812744a9c ___CFXRegistrationPost_block_invoke + 86
    477 CoreFoundation                    0x7ff8127449ed _CFXRegistrationPost + 530
    478 CoreFoundation                    0x7ff812684c09 _CFXNotificationPost + 826
    479 CoreFoundation                    0x7ff8126b4d7c CFNotificationCenterPostNotificationWithOptions + 121
    480 PrintCore                        0x7ff82246c678 OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char) + 196
    481 AppKit                            0x7ff815f345d8 -[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes] + 2182
    482 AppKit                            0x7ff815f33d0d -[NSPrintInfo(NSInternal) _printSettingsForGetting] + 48
    483 PrintingUI                           0x127eb8124 0x127e26000 + 598308
    484 CoreFoundation                    0x7ff8126b4cb6 __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 137
    485 CoreFoundation                    0x7ff812744a9c ___CFXRegistrationPost_block_invoke + 86
    486 CoreFoundation                    0x7ff8127449ed _CFXRegistrationPost + 530
    487 CoreFoundation                    0x7ff812684c09 _CFXNotificationPost + 826
    488 CoreFoundation                    0x7ff8126b4d7c CFNotificationCenterPostNotificationWithOptions + 121
    489 PrintCore                        0x7ff82246c678 OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char) + 196
    490 AppKit                            0x7ff815f345d8 -[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes] + 2182
    491 AppKit                            0x7ff815f33d0d -[NSPrintInfo(NSInternal) _printSettingsForGetting] + 48
    492 PrintingUI                           0x127eb8124 0x127e26000 + 598308
    493 CoreFoundation                    0x7ff8126b4cb6 __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 137
    494 CoreFoundation                    0x7ff812744a9c ___CFXRegistrationPost_block_invoke + 86
    495 CoreFoundation                    0x7ff8127449ed _CFXRegistrationPost + 530
    496 CoreFoundation                    0x7ff812684c09 _CFXNotificationPost + 826
    497 CoreFoundation                    0x7ff8126b4d7c CFNotificationCenterPostNotificationWithOptions + 121
    498 PrintCore                        0x7ff82246c678 OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char) + 196
    499 AppKit                            0x7ff815f345d8 -[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes] + 2182
    500 AppKit                            0x7ff815f33d0d -[NSPrintInfo(NSInternal) _printSettingsForGetting] + 48
    501 PrintingUI                           0x127eb8124 0x127e26000 + 598308
    502 CoreFoundation                    0x7ff8126b4cb6 __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 137
    503 CoreFoundation                    0x7ff812744a9c ___CFXRegistrationPost_block_invoke + 86
    504 CoreFoundation                    0x7ff8127449ed _CFXRegistrationPost + 530
    505 CoreFoundation                    0x7ff812684c09 _CFXNotificationPost + 826
    506 CoreFoundation                    0x7ff8126b4d7c CFNotificationCenterPostNotificationWithOptions + 121
    507 PrintCore                        0x7ff82246c678 OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char) + 196
    508 AppKit                            0x7ff815f345d8 -[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes] + 2182
    509 AppKit                            0x7ff815f33d0d -[NSPrintInfo(NSInternal) _printSettingsForGetting] + 48
    510 PrintingUI                           0x127eb8124 0x127e26000 + 598308
    Thread 1:: com.apple.rosetta.exceptionserver
    0   runtime                          0x7ff7fff03294 0x7ff7ffeff000 + 17044
    Thread 2:
    0   runtime                          0x7ff7fff2194c 0x7ff7ffeff000 + 141644
    Thread 3:
    0   runtime                          0x7ff7fff2194c 0x7ff7ffeff000 + 141644
    Thread 4:
    0   runtime                          0x7ff7fff2194c 0x7ff7ffeff000 + 141644
    Thread 5::  Dispatch queue: com.apple.root.default-qos
    0   ???                              0x7ff8a2b62a78 ???
    1   libsystem_kernel.dylib            0x7ff8125a3a2e mach_msg2_trap + 10
    2   libsystem_kernel.dylib            0x7ff8125b1e3a mach_msg2_internal + 84
    3   libsystem_kernel.dylib            0x7ff8125aab62 mach_msg_overwrite + 653
    4   libsystem_kernel.dylib            0x7ff8125a3d1f mach_msg + 19
    5   libdispatch.dylib                0x7ff812452e27 _dispatch_mach_send_and_wait_for_reply + 521
    6   libdispatch.dylib                0x7ff81245322b dispatch_mach_send_with_result_and_wait_for_reply + 50
    7   libxpc.dylib                      0x7ff8122fe593 xpc_connection_send_message_with_reply_sync + 261
    8   PrintCore                        0x7ff822466fed printToolAgent + 119
    9   PrintCore                        0x7ff8224a63e2 PJCPrinterCopyPrinterInfoDictionary + 134
    10  PrintingUI                           0x127e3bb4f 0x127e26000 + 88911
    11  libdispatch.dylib                0x7ff81243a2e6 _dispatch_call_block_and_release + 12
    12  libdispatch.dylib                0x7ff81243b59a _dispatch_client_callout + 8
    13  libdispatch.dylib                0x7ff81243ddba _dispatch_queue_override_invoke + 977
    14  libdispatch.dylib                0x7ff81244a776 _dispatch_root_queue_drain + 328
    15  libdispatch.dylib                0x7ff81244af22 _dispatch_worker_thread2 + 152
    16  libsystem_pthread.dylib          0x7ff8125dfc06 _pthread_wqthread + 262
    17  libsystem_pthread.dylib          0x7ff8125deb97 start_wqthread + 15
    Thread 6:
    0   runtime                          0x7ff7fff2194c 0x7ff7ffeff000 + 141644
    Thread 7:
    0   runtime                          0x7ff7fff2194c 0x7ff7ffeff000 + 141644
    Thread 8:
    0   runtime                          0x7ff7fff2194c 0x7ff7ffeff000 + 141644
    Thread 9:
    0   runtime                          0x7ff7fff2194c 0x7ff7ffeff000 + 141644
    Thread 10:: com.apple.NSEventThread
    0   ???                              0x7ff8a2b62a78 ???
    1   libsystem_kernel.dylib            0x7ff8125a3a2e mach_msg2_trap + 10
    2   libsystem_kernel.dylib            0x7ff8125b1e3a mach_msg2_internal + 84
    3   libsystem_kernel.dylib            0x7ff8125aab62 mach_msg_overwrite + 653
    4   libsystem_kernel.dylib            0x7ff8125a3d1f mach_msg + 19
    5   CoreFoundation                    0x7ff8126bf909 __CFRunLoopServiceMachPort + 143
    6   CoreFoundation                    0x7ff8126be37c __CFRunLoopRun + 1371
    7   CoreFoundation                    0x7ff8126bd859 CFRunLoopRunSpecific + 557
    8   AppKit                            0x7ff815d8afac _NSEventThread + 122
    9   libsystem_pthread.dylib          0x7ff8125e3202 _pthread_start + 99
    10  libsystem_pthread.dylib          0x7ff8125debab thread_start + 15
    Thread 11:: CouchbaseLite
    0   ???                              0x7ff8a2b62a78 ???
    1   libsystem_kernel.dylib            0x7ff8125a3a2e mach_msg2_trap + 10
    2   libsystem_kernel.dylib            0x7ff8125b1e3a mach_msg2_internal + 84
    3   libsystem_kernel.dylib            0x7ff8125aab62 mach_msg_overwrite + 653
    4   libsystem_kernel.dylib            0x7ff8125a3d1f mach_msg + 19
    5   CoreFoundation                    0x7ff8126bf909 __CFRunLoopServiceMachPort + 143
    6   CoreFoundation                    0x7ff8126be37c __CFRunLoopRun + 1371
    7   CoreFoundation                    0x7ff8126bd859 CFRunLoopRunSpecific + 557
    8   Foundation                        0x7ff8135b9481 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 216
    9   CouchbaseLite                       0x10c2c8430 -[CBL_RunLoopServer runServerThread] + 321
    10  Foundation                        0x7ff8135b278c __NSThread__start__ + 1013
    11  libsystem_pthread.dylib          0x7ff8125e3202 _pthread_start + 99
    12  libsystem_pthread.dylib          0x7ff8125debab thread_start + 15
    Thread 12:
    0   ???                              0x7ff8a2b62a78 ???
    1   libsystem_kernel.dylib            0x7ff8125a3a2e mach_msg2_trap + 10
    2   libsystem_kernel.dylib            0x7ff8125b1e3a mach_msg2_internal + 84
    3   libsystem_kernel.dylib            0x7ff8125aab62 mach_msg_overwrite + 653
    4   libsystem_kernel.dylib            0x7ff8125a3d1f mach_msg + 19
    5   CoreFoundation                    0x7ff8126bf909 __CFRunLoopServiceMachPort + 143
    6   CoreFoundation                    0x7ff8126be37c __CFRunLoopRun + 1371
    7   CoreFoundation                    0x7ff8126bd859 CFRunLoopRunSpecific + 557
    8   Foundation                        0x7ff8135b9481 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 216
    9   Foundation                        0x7ff81363b36b -[NSRunLoop(NSRunLoop) run] + 76
    10  CouchbaseLiteListener               0x10bfb25b2 +[CBL_HTTPServer bonjourThread] + 226
    11  Foundation                        0x7ff8135b278c __NSThread__start__ + 1013
    12  libsystem_pthread.dylib          0x7ff8125e3202 _pthread_start + 99
    13  libsystem_pthread.dylib          0x7ff8125debab thread_start + 15
    Thread 13:: com.apple.CFSocket.private
    0   ???                              0x7ff8a2b62a78 ???
    1   libsystem_kernel.dylib            0x7ff8125ac91e __select + 10
    2   CoreFoundation                    0x7ff8126e746f __CFSocketManager + 637
    3   libsystem_pthread.dylib          0x7ff8125e3202 _pthread_start + 99
    4   libsystem_pthread.dylib          0x7ff8125debab thread_start + 15
    Thread 14:: JavaScriptCore libpas scavenger
    0   ???                              0x7ff8a2b62a78 ???
    1   libsystem_kernel.dylib            0x7ff8125a65ce __psynch_cvwait + 10
    2   libsystem_pthread.dylib          0x7ff8125e376b _pthread_cond_wait + 1211
    3   JavaScriptCore                    0x7ff831106225 scavenger_thread_main + 1541
    4   libsystem_pthread.dylib          0x7ff8125e3202 _pthread_start + 99
    5   libsystem_pthread.dylib          0x7ff8125debab thread_start + 15
    Thread 15:
    0   runtime                          0x7ff7fff2194c 0x7ff7ffeff000 + 141644
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000818  rbx: 0x0000600001868800  rcx: 0x0000000308719000  rdx: 0x0000000000000001
      rdi: 0x00007fe98600c8b8  rsi: 0x00007fe98600c8b8  rbp: 0x0000000308719860  rsp: 0x00000003087196d8
       r8: 0x00006000003bbb00   r9: 0x0000000000000000  r10: 0x00007ff855ac51b0  r11: 0x00007ff8126b4e54
      r12: 0x00007ff8547b1cb0  r13: 0x00007fe98600c8b8  r14: 0x0000000000000001  r15: 0x0000600001969000
      rip: <unavailable>       rfl: 0x0000000000000206
     tmp0: 0xffffffffffffffd8 tmp1: 0x0000000202bd12f8 tmp2: 0x00007ff8a31040bc
    Binary Images:
           0x202b25000 –        0x202bc4fff dyld (*) <ab17bf63-259b-3b48-8d70-863166a2191c> /usr/lib/dyld
           0x1280c2000 –        0x1280d1fff com.apple.print.PrintingCocoaPDEs (19) <ccdd2ba8-0cb1-312f-b749-0c430e17616f> /System/Library/PrivateFrameworks/PrintingPrivate.framework/Versions/A/Plugins/PrintingCocoaPDEs.bundle/Contents/MacOS/PrintingCocoaPDEs
           0x127e26000 –        0x127ee9fff com.apple.printing.private.PrintingUI (1.0) <a0326539-43ee-3971-8c0b-19dcd768ac21> /System/Library/PrivateFrameworks/PrintingPrivate.framework/Versions/A/Plugins/PrintingUI.bundle/Contents/MacOS/PrintingUI
           0x10bcd5000 –        0x10bcd8fff com.apple.icloud.drive.fileprovider.override (1.0) <d8889fe2-0bff-355c-aef5-8029f21da9cd> /System/Library/Frameworks/FileProvider.framework/OverrideBundles/iCloudDriveFileProviderOverride.bundle/Contents/MacOS/iCloudDriveFileProviderOverride
           0x1184f7000 –        0x118512fff com.apple.findersync.fileprovideroverride.FinderSyncCollaborationFileProviderOverride (14.2) <a63c0dca-a9d9-3e8c-9efe-2c4585325f91> /System/Library/Frameworks/FileProvider.framework/OverrideBundles/FinderSyncCollaborationFileProviderOverride.bundle/Contents/MacOS/FinderSyncCollaborationFileProviderOverride
           0x10c1a0000 –        0x10c1a7fff com.apple.FileProviderOverride (1703.61.4) <7505780c-f632-3660-b74f-7b095e716d38> /System/Library/Frameworks/FileProvider.framework/OverrideBundles/FileProviderOverride.bundle/Contents/MacOS/FileProviderOverride
           0x10bf0f000 –        0x10bf26fff com.apple.security.csparser (3.0) <efd1144a-2484-312e-bae6-c7a6d935b14b> /System/Library/Frameworks/Security.framework/Versions/A/PlugIns/csparser.bundle/Contents/MacOS/csparser
           0x10bb53000 –        0x10bb62fff libobjc-trampolines.dylib (*) <c35523ac-5fc8-3185-b4fb-28be5af3f218> /usr/lib/libobjc-trampolines.dylib
           0x10bd6c000 –        0x10bd7bfff org.cocoapods.FMDB (5.3.37) <e0142d06-4f0f-380c-8d39-e1146641604b> /Applications/Tap Forms 5.app/Contents/Frameworks/FMDB.framework/Versions/A/FMDB
           0x10bdba000 –        0x10bdc5fff org.cocoapods.JLRoutes (5.3.37) <3b5ff974-3314-3d82-9a08-1bf50a2e6cf5> /Applications/Tap Forms 5.app/Contents/Frameworks/JLRoutes.framework/Versions/A/JLRoutes
           0x10be8b000 –        0x10be9afff com.kulakov.ShortcutRecorder (5.3.37) <1a8a345d-eafe-32eb-a307-7f45ce9945dc> /Applications/Tap Forms 5.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/A/ShortcutRecorder
           0x10c224000 –        0x10c46bfff com.couchbase.CouchbaseLite (5.3.37) <a9350f38-d483-3902-bb20-7c6a305b87e4> /Applications/Tap Forms 5.app/Contents/Frameworks/CouchbaseLite.framework/Versions/A/CouchbaseLite
           0x10ca25000 –        0x10cb1cfff com.tapzapp.TFCoreMac (5.3.37) <2114417e-8fcc-313a-8db4-bbe56a330b87> /Applications/Tap Forms 5.app/Contents/Frameworks/TFCoreMac.framework/Versions/A/TFCoreMac
           0x10bf7f000 –        0x10bff3fff com.couchbase.CouchbaseLiteListener (5.3.37) <d665b8d9-4c5c-3a89-8aae-83889fb3b402> /Applications/Tap Forms 5.app/Contents/Frameworks/CouchbaseLiteListener.framework/Versions/A/CouchbaseLiteListener
           0x10d265000 –        0x10d3e4fff com.dcg.Charts (5.3.37) <da69913f-336d-3aa3-b6c7-741a34153ead> /Applications/Tap Forms 5.app/Contents/Frameworks/Charts.framework/Versions/A/Charts
           0x10ce07000 –        0x10ce52fff com.downMarkdown.Down (5.3.37) <e45eaa6e-b6cd-3ff6-b30a-bf3232af5e33> /Applications/Tap Forms 5.app/Contents/Frameworks/Down.framework/Versions/A/Down
           0x10c11f000 –        0x10c142fff com.abbey-code.UnzipKit (5.3.37) <1231d1ab-c8ea-348d-851c-d3448c862fcc> /Applications/Tap Forms 5.app/Contents/Frameworks/UnzipKit.framework/Versions/A/UnzipKit
        0x7ff7ffeff000 –     0x7ff7fff2efff runtime (*) <c4c97159-5c72-3e75-ba2d-d6ca98ea626f> /usr/libexec/rosetta/runtime
           0x10b3dc000 –        0x10b42ffff libRosettaRuntime (*) <7af8ba1e-5c4d-393d-99cd-92566f60c450> /Library/Apple/*/libRosettaRuntime
           0x1022e8000 –        0x1027c7fff com.tapzapp.tapforms-mac (5.3.37) <aab25a3b-d21d-3cb4-9caa-452257a3abe8> /Applications/Tap Forms 5.app/Contents/MacOS/Tap Forms 5
        0x7ff8125dd000 –     0x7ff8125e8fff libsystem_pthread.dylib (*) <a9ba8a53-d774-3fe9-8bde-64187bff7ea9> /usr/lib/system/libsystem_pthread.dylib
        0x7ff812643000 –     0x7ff812adcffc com.apple.CoreFoundation (6.9) <fd59424c-be72-3201-b98c-0421b284ffbb> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7ff822463000 –     0x7ff8224d6ffc com.apple.print.framework.PrintCore (19) <885b04be-c0b0-30c8-962d-d2ea5ef030ac> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
        0x7ff815bef000 –     0x7ff816ffbffb com.apple.AppKit (6.9) <20292f0b-3eb2-3566-91e2-ea657457d71d> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
                   0x0 – 0xffffffffffffffff ??? (*) <00000000-0000-0000-0000-000000000000> ???
        0x7ff8125a2000 –     0x7ff8125dcff7 libsystem_kernel.dylib (*) <9927a0a9-dfa8-3ffa-88d8-62055f37a137> /usr/lib/system/libsystem_kernel.dylib
        0x7ff812438000 –     0x7ff81247effd libdispatch.dylib (*) <895cad19-704c-3ff8-b148-23689a163b12> /usr/lib/system/libdispatch.dylib
        0x7ff8122f3000 –     0x7ff812336ff2 libxpc.dylib (*) <6f11e645-db1c-325d-ac28-91740663e4dd> /usr/lib/system/libxpc.dylib
        0x7ff81355d000 –     0x7ff814194ff3 com.apple.Foundation (6.9) <3e371a1d-63d5-3286-a66a-b47b0f8a09a0> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7ff82f73b000 –     0x7ff8312d2f8a com.apple.JavaScriptCore (19617) <2dd789c6-8027-36b4-be9f-9a0c3458c694> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 0
        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: 0
        thread_create: 0
        thread_set_state: 0
    ———–
    Full Report
    ———–
    {“app_name”:”Tap Forms 5″,”timestamp”:”2024-01-23 16:32:40.00 -0600″,”app_version”:”5.3.37″,”slice_uuid”:”aab25a3b-d21d-3cb4-9caa-452257a3abe8″,”adam_id”:”1081981112″,”build_version”:”1041″,”platform”:1,”bundleID”:”com.tapzapp.tapforms-mac”,”share_with_app_devs”:0,”is_first_party”:0,”bug_type”:”309″,”os_version”:”macOS 14.2 (23C64)”,”roots_installed”:0,”name”:”Tap Forms 5″,”incident_id”:”5F26923E-B98E-428A-A612-910343B61B83″}
    {
      “uptime” : 3400000,
      “procRole” : “Foreground”,
      “version” : 2,
      “userID” : 501,
      “deployVersion” : 210,
      “modelCode” : “Macmini9,1”,
      “coalitionID” : 61586,
      “osVersion” : {
        “train” : “macOS 14.2”,
        “build” : “23C64”,
        “releaseType” : “User”
      },
      “captureTime” : “2024-01-23 16:32:37.4155 -0600”,
      “codeSigningMonitor” : 1,
      “incident” : “5F26923E-B98E-428A-A612-910343B61B83”,
      “pid” : 58805,
      “translated” : true,
      “cpuType” : “X86-64”,
      “roots_installed” : 0,
      “bug_type” : “309”,
      “procLaunch” : “2024-01-23 16:32:24.8206 -0600”,
      “procStartAbsTime” : 83036611410072,
      “procExitAbsTime” : 83036912788089,
      “procName” : “Tap Forms 5”,
      “procPath” : “\/Applications\/Tap Forms 5.app\/Contents\/MacOS\/Tap Forms 5”,
      “bundleInfo” : {“CFBundleShortVersionString”:”5.3.37″,”CFBundleVersion”:”1041″,”CFBundleIdentifier”:”com.tapzapp.tapforms-mac”},
      “storeInfo” : {“storeCohortMetadata”:”10|date=1669509000000&sf=143455&pgtp=Software&pgid=1081981112&prpg=Search_osx&ctxt=Search&lngid=6″,”itemID”:”1081981112″,”deviceIdentifierForVendor”:”30DCB591-F8D8-5B2E-B63B-47A870030F8C”,”thirdParty”:true,”softwareVersionExternalIdentifier”:”862220818″},
      “parentProc” : “launchd”,
      “parentPid” : 1,
      “coalitionName” : “com.tapzapp.tapforms-mac”,
      “crashReporterKey” : “5B8E9B93-D573-7630-D39C-668AE07D791B”,
      “codeSigningID” : “com.tapzapp.tapforms-mac”,
      “codeSigningTeamID” : “FXLPHZS84D”,
      “codeSigningFlags” : 570520337,
      “codeSigningValidationCategory” : 4,
      “codeSigningTrustLevel” : 4294967295,
      “sip” : “enabled”,
      “vmRegionInfo” : “0x308718ff8 is in 0x304f15000-0x308719000;  bytes after start: 58736632  bytes before end: 7\n      REGION TYPE                    START – END         [ VSIZE] PRT\/MAX SHRMOD  REGION DETAIL\n      unused __TEXT               202c2b000-202c2d000    [    8K] r–\/r– SM=NUL  …ed lib __TEXT\n      GAP OF 0x1022e8000 BYTES\n—>  Stack Guard                 304f15000-308719000    [ 56.0M] —\/rwx SM=NUL  \n      Stack                       308719000-308f15000    [ 8176K] rw-\/rwx SM=SHM  “,
      “exception” : {“codes”:”0x0000000000000002, 0x0000000308718ff8″,”rawCodes”:[2,13026562040],”type”:”EXC_BAD_ACCESS”,”signal”:”SIGSEGV”,”subtype”:”KERN_PROTECTION_FAILURE at 0x0000000308718ff8″},
      “termination” : {“flags”:0,”code”:11,”namespace”:”SIGNAL”,”indicator”:”Segmentation fault: 11″,”byProc”:”exc handler”,”byPid”:58805},
      “vmregioninfo” : “0x308718ff8 is in 0x304f15000-0x308719000;  bytes after start: 58736632  bytes before end: 7\n      REGION TYPE                    START – END         [ VSIZE] PRT\/MAX SHRMOD  REGION DETAIL\n      unused __TEXT               202c2b000-202c2d000    [    8K] r–\/r– SM=NUL  …ed lib __TEXT\n      GAP OF 0x1022e8000 BYTES\n—>  Stack Guard                 304f15000-308719000    [ 56.0M] —\/rwx SM=NUL  \n      Stack                       308719000-308f15000    [ 8176K] rw-\/rwx SM=SHM  “,
      “extMods” : {“caller”:{“thread_create”:0,”thread_set_state”:0,”task_for_pid”:0},”system”:{“thread_create”:0,”thread_set_state”:0,”task_for_pid”:0},”targeted”:{“thread_create”:0,”thread_set_state”:0,”task_for_pid”:0},”warnings”:0},
      “faultingThread” : 0,
      “threads” : [{“triggered”:true,”id”:21859356,”threadState”:{“flavor”:”x86_THREAD_STATE”,”rbp”:{“value”:13026564192},”r12″:{“value”:140704545971376},”rosetta”:{“tmp2”:{“value”:140705864368316},”tmp1″:{“value”:8635880184},”tmp0″:{“value”:18446744073709551576}},”rbx”:{“value”:105553141860352},”r8″:{“value”:105553120180992},”r15″:{“value”:105553142910976},”r10″:{“value”:140704565973424,”symbolLocation”:0,”symbol”:”OBJC_CLASS_$___CFNotification”},”rdx”:{“value”:1},”rdi”:{“value”:140640952305848},”r9″:{“value”:0},”r13″:{“value”:140640952305848},”rflags”:{“value”:518},”rax”:{“value”:2072},”rsp”:{“value”:13026563800},”r11″:{“value”:140703437639252,”symbolLocation”:0,”symbol”:”-[__CFNotification object]”},”rcx”:{“value”:13026562048},”r14″:{“value”:1},”rsi”:{“value”:140640952305848}},”queue”:”com.apple.main-thread”,”frames”:[{“imageOffset”:7143,”symbol”:”___chkstk_darwin”,”symbolLocation”:55,”imageIndex”:20},{“imageOffset”:19447,”symbol”:”__chkstk_darwin”,”symbolLocation”:23,”imageIndex”:21},{“imageOffset”:466300,”symbol”:”CFNotificationCenterPostNotificationWithOptions”,”symbolLocation”:121,”imageIndex”:21},{“imageOffset”:38520,”symbol”:”OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char)”,”symbolLocation”:196,”imageIndex”:22},{“imageOffset”:3429848,”symbol”:”-[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes]”,”symbolLocation”:2182,”imageIndex”:23},{“imageOffset”:3427597,”symbol”:”-[NSPrintInfo(NSInternal) _printSettingsForGetting]”,”symbolLocation”:48,”imageIndex”:23},{“imageOffset”:598308,”imageIndex”:2},{“imageOffset”:466102,”symbol”:”__CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__”,”symbolLocation”:137,”imageIndex”:21},{“imageOffset”:1055388,”symbol”:”___CFXRegistrationPost_block_invoke”,”symbolLocation”:86,”imageIndex”:21},{“imageOffset”:1055213,”symbol”:”_CFXRegistrationPost”,”symbolLocation”:530,”imageIndex”:21},{“imageOffset”:269321,”symbol”:”_CFXNotificationPost”,”symbolLocation”:826,”imageIndex”:21},{“imageOffset”:466300,”symbol”:”CFNotificationCenterPostNotificationWithOptions”,”symbolLocation”:121,”imageIndex”:21},{“imageOffset”:38520,”symbol”:”OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char)”,”symbolLocation”:196,”imageIndex”:22},{“imageOffset”:3429848,”symbol”:”-[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes]”,”symbolLocation”:2182,”imageIndex”:23},{“imageOffset”:3427597,”symbol”:”-[NSPrintInfo(NSInternal) _printSettingsForGetting]”,”symbolLocation”:48,”imageIndex”:23},{“imageOffset”:598308,”imageIndex”:2},{“imageOffset”:466102,”symbol”:”__CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__”,”symbolLocation”:137,”imageIndex”:21},{“imageOffset”:1055388,”symbol”:”___CFXRegistrationPost_block_invoke”,”symbolLocation”:86,”imageIndex”:21},{“imageOffset”:1055213,”symbol”:”_CFXRegistrationPost”,”symbolLocation”:530,”imageIndex”:21},{“imageOffset”:269321,”symbol”:”_CFXNotificationPost”,”symbolLocation”:826,”imageIndex”:21},{“imageOffset”:466300,”symbol”:”CFNotificationCenterPostNotificationWithOptions”,”symbolLocation”:121,”imageIndex”:21},{“imageOffset”:38520,”symbol”:”OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char)”,”symbolLocation”:196,”imageIndex”:22},{“imageOffset”:3429848,”symbol”:”-[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes]”,”symbolLocation”:2182,”imageIndex”:23},{“imageOffset”:3427597,”symbol”:”-[NSPrintInfo(NSInternal) _printSettingsForGetting]”,”symbolLocation”:48,”imageIndex”:23},{“imageOffset”:598308,”imageIndex”:2},{“imageOffset”:466102,”symbol”:”__CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__”,”symbolLocation”:137,”imageIndex”:21},{“imageOffset”:1055388,”symbol”:”___CFXRegistrationPost_block_invoke”,”symbolLocation”:86,”imageIndex”:21},{“imageOffset”:1055213,”symbol”:”_CFXRegistrationPost”,”symbolLocation”:530,”imageIndex”:21},{“imageOffset”:269321,”symbol”:”_CFXNotificationPost”,”symbolLocation”:826,”imageIndex”:21},{“imageOffset”:466300,”symbol”:”CFNotificationCenterPostNotificationWithOptions”,”symbolLocation”:121,”imageIndex”:21},{“imageOffset”:38520,”symbol”:”OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char)”,”symbolLocation”:196,”imageIndex”:22},{“imageOffset”:3429848,”symbol”:”-[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes]”,”symbolLocation”:2182,”imageIndex”:23},{“imageOffset”:3427597,”symbol”:”-[NSPrintInfo(NSInternal) _printSettingsForGetting]”,”symbolLocation”:48,”imageIndex”:23},{“imageOffset”:598308,”imageIndex”:2},{“imageOffset”:466102,”symbol”:”__CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__”,”symbolLocation”:137,”imageIndex”:21},{“imageOffset”:1055388,”symbol”:”___CFXRegistrationPost_block_invoke”,”symbolLocation”:86,”imageIndex”:21},{“imageOffset”:1055213,”symbol”:”_CFXRegistrationPost”,”symbolLocation”:530,”imageIndex”:21},{“imageOffset”:269321,”symbol”:”_CFXNotificationPost”,”symbolLocation”:826,”imageIndex”:21},{“imageOffset”:466300,”symbol”:”CFNotificationCenterPostNotificationWithOptions”,”symbolLocation”:121,”imageIndex”:21},{“imageOffset”:38520,”symbol”:”OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char)”,”symbolLocation”:196,”imageIndex”:22},{“imageOffset”:3429848,”symbol”:”-[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes]”,”symbolLocation”:2182,”imageIndex”:23},{“imageOffset”:3427597,”symbol”:”-[NSPrintInfo(NSInternal) _printSettingsForGetting]”,”symbolLocation”:48,”imageIndex”:23},{“imageOffset”:598308,”imageIndex”:2},{“imageOffset”:466102,”symbol”:”__CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__”,”symbolLocation”:137,”imageIndex”:21},{“imageOffset”:1055388,”symbol”:”___CFXRegistrationPost_block_invoke”,”symbolLocation”:86,”imageIndex”:21},{“imageOffset”:1055213,”symbol”:”_CFXRegistrationPost”,”symbolLocation”:530,”imageIndex”:21},{“imageOffset”:269321,”symbol”:”_CFXNotificationPost”,”symbolLocation”:826,”imageIndex”:21},{“imageOffset”:466300,”symbol”:”CFNotificationCenterPostNotificationWithOptions”,”symbolLocation”:121,”imageIndex”:21},{“imageOffset”:38520,”symbol”:”OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char)”,”symbolLocation”:196,”imageIndex”:22},{“imageOffset”:3429848,”symbol”:”-[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes]”,”symbolLocation”:2182,”imageIndex”:23},{“imageOffset”:3427597,”symbol”:”-[NSPrintInfo(NSInternal) _printSettingsForGetting]”,”symbolLocation”:48,”imageIndex”:23},{“imageOffset”:598308,”imageIndex”:2},{“imageOffset”:466102,”symbol”:”__CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__”,”symbolLocation”:137,”imageIndex”:21},{“imageOffset”:1055388,”symbol”:”___CFXRegistrationPost_block_invoke”,”symbolLocation”:86,”imageIndex”:21},{“imageOffset”:1055213,”symbol”:”_CFXRegistrationPost”,”symbolLocation”:530,”imageIndex”:21},{“imageOffset”:269321,”symbol”:”_CFXNotificationPost”,”symbolLocation”:826,”imageIndex”:21},{“imageOffset”:466300,”symbol”:”CFNotificationCenterPostNotificationWithOptions”,”symbolLocation”:121,”imageIndex”:21},{“imageOffset”:38520,”symbol”:”OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char)”,”symbolLocation”:196,”imageIndex”:22},{“imageOffset”:3429848,”symbol”:”-[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes]”,”symbolLocation”:2182,”imageIndex”:23},{“imageOffset”:3427597,”symbol”:”-[NSPrintInfo(NSInternal) _printSettingsForGetting]”,”symbolLocation”:48,”imageIndex”:23},{“imageOffset”:598308,”imageIndex”:2},{“imageOffset”:466102,”symbol”:”__CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__”,”symbolLocation”:137,”imageIndex”:21},{“imageOffset”:1055388,”symbol”:”___CFXRegistrationPost_block_invoke”,”symbolLocation”:86,”imageIndex”:21},{“imageOffset”:1055213,”symbol”:”_CFXRegistrationPost”,”symbolLocation”:530,”imageIndex”:21},{“imageOffset”:269321,”symbol”:”_CFXNotificationPost”,”symbolLocation”:826,”imageIndex”:21},{“imageOffset”:466300,”symbol”:”CFNotificationCenterPostNotificationWithOptions”,”symbolLocation”:121,”imageIndex”:21},{“imageOffset”:38520,”symbol”:”OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char)”,”symbolLocation”:196,”imageIndex”:22},{“imageOffset”:3429848,”symbol”:”-[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes]”,”symbolLocation”:2182,”imageIndex”:23},{“imageOffset”:3427597,”symbol”:”-[NSPrintInfo(NSInternal) _printSettingsForGetting]”,”symbolLocation”:48,”imageIndex”:23},{“imageOffset”:598308,”imageIndex”:2},{“imageOffset”:466102,”symbol”:”__CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__”,”symbolLocation”:137,”imageIndex”:21},{“imageOffset”:1055388,”symbol”:”___CFXRegistrationPost_block_invoke”,”symbolLocation”:86,”imageIndex”:21},{“imageOffset”:1055213,”symbol”:”_CFXRegistrationPost”,”symbolLocation”:530,”imageIndex”:21},{“imageOffset”:269321,”symbol”:”_CFXNotificationPost”,”symbolLocation”:826,”imageIndex”:21},{“imageOffset”:466300,”symbol”:”CFNotificationCenterPostNotificationWithOptions”,”symbolLocation”:121,”imageIndex”:21},{“imageOffset”:38520,”symbol”:”OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char)”,”symbolLocation”:196,”imageIndex”:22},{“imageOffset”:3429848,”symbol”:”-[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes]”,”symbolLocation”:2182,”imageIndex”:23},{“imageOffset”:3427597,”symbol”:”-[NSPrintInfo(NSInternal) _printSettingsForGetting]”,”symbolLocation”:48,”imageIndex”:23},{“imageOffset”:598308,”imageIndex”:2},{“imageOffset”:466102,”symbol”:”__CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__”,”symbolLocation”:137,”imageIndex”:21},{“imageOffset”:1055388,”symbol”:”___CFXRegistrationPost_block_invoke”,”symbolLocation”:86,”imageIndex”:21},{“imageOffset”:1055213,”symbol”:”_CFXRegistrationPost”,”symbolLocation”:530,”imageIndex”:21},{“imageOffset”:269321,”symbol”:”_CFXNotificationPost”,”symbolLocation”:826,”imageIndex”:21},{“imageOffset”:466300,”symbol”:”CFNotificationCenterPostNotificationWithOptions”,”symbolLocation”:121,”imageIndex”:21},{“imageOffset”:38520,”symbol”:”OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char)”,”symbolLocation”:196,”imageIndex”:22},{“imageOffset”:3429848,”symbol”:”-[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes]”,”symbolLocation”:2182,”imageIndex”:23},{“imageOffset”:3427597,”symbol”:”-[NSPrintInfo(NSInternal) _printSettingsForGetting]”,”symbolLocation”:48,”imageIndex”:23},{“imageOffset”:598308,”imageIndex”:2},{“imageOffset”:466102,”symbol”:”__CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__”,”symbolLocation”:137,”imageIndex”:21},{“imageOffset”:1055388,”symbol”:”___CFXRegistrationPost_block_invoke”,”symbolLocation”:86,”imageIndex”:21},{“imageOffset”:1055213,”symbol”:”_CFXRegistrationPost”,”symbolLocation”:530,”imageIndex”:21},{“imageOffset”:269321,”symbol”:”_CFXNotificationPost”,”symbolLocation”:826,”imageIndex”:21},{“imageOffset”:466300,”symbol”:”CFNotificationCenterPostNotificationWithOptions”,”symbolLocation”:121,”imageIndex”:21},{“imageOffset”:38520,”symbol”:”OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char)”,”symbolLocation”:196,”imageIndex”:22},{“imageOffset”:3429848,”symbol”:”-[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes]”,”symbolLocation”:2182,”imageIndex”:23},{“imageOffset”:3427597,”symbol”:”-[NSPrintInfo(NSInternal) _printSettingsForGetting]”,”symbolLocation”:48,”imageIndex”:23},{“imageOffset”:598308,”imageIndex”:2},{“imageOffset”:466102,”symbol”:”__CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__”,”symbolLocation”:137,”imageIndex”:21},{“imageOffset”:1055388,”symbol”:”___CFXRegistrationPost_block_invoke”,”symbolLocation”:86,”imageIndex”:21},{“imageOffset”:1055213,”symbol”:”_CFXRegistrationPost”,”symbolLocation”:530,”imageIndex”:21},{“imageOffset”:269321,”symbol”:”_CFXNotificationPost”,”symbolLocation”:826,”imageIndex”:21},{“imageOffset”:466300,”symbol”:”CFNotificationCenterPostNotificationWithOptions”,”symbolLocation”:121,”imageIndex”:21},{“imageOffset”:38520,”symbol”:”OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char)”,”symbolLocation”:196,”imageIndex”:22},{“imageOffset”:3429848,”symbol”:”-[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes]”,”symbolLocation”:2182,”imageIndex”:23},{“imageOffset”:3427597,”symbol”:”-[NSPrintInfo(NSInternal) _printSettingsForGetting]”,”symbolLocation”:48,”imageIndex”:23},{“imageOffset”:598308,”imageIndex”:2},{“imageOffset”:466102,”symbol”:”__CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__”,”symbolLocation”:137,”imageIndex”:21},{“imageOffset”:1055388,”symbol”:”___CFXRegistrationPost_block_invoke”,”symbolLocation”:86,”imageIndex”:21},{“imageOffset”:1055213,”symbol”:”_CFXRegistrationPost”,”symbolLocation”:530,”imageIndex”:21},{“imageOffset”:269321,”symbol”:”_CFXNotificationPost”,”symbolLocation”:826,”imageIndex”:21},{“imageOffset”:466300,”symbol”:”CFNotificationCenterPostNotificationWithOptions”,”symbolLocation”:121,”imageIndex”:21},{“imageOffset”:38520,”symbol”:”OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char)”,”symbolLocation”:196,”imageIndex”:22},{“imageOffset”:3429848,”symbol”:”-[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes]”,”symbolLocation”:2182,”imageIndex”:23},{“imageOffset”:3427597,”symbol”:”-[NSPrintInfo(NSInternal) _printSettingsForGetting]”,”symbolLocation”:48,”imageIndex”:23},{“imageOffset”:598308,”imageIndex”:2},{“imageOffset”:466102,”symbol”:”__CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__”,”symbolLocation”:137,”imageIndex”:21},{“imageOffset”:1055388,”symbol”:”___CFXRegistrationPost_block_invoke”,”symbolLocation”:86,”imageIndex”:21},{“imageOffset”:1055213,”symbol”:”_CFXRegistrationPost”,”symbolLocation”:530,”imageIndex”:21},{“imageOffset”:269321,”symbol”:”_CFXNotificationPost”,”symbolLocation”:826,”imageIndex”:21},{“imageOffset”:466300,”symbol”:”CFNotificationCenterPostNotificationWithOptions”,”symbolLocation”:121,”imageIndex”:21},{“imageOffset”:38520,”symbol”:”OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char)”,”symbolLocation”:196,”imageIndex”:22},{“imageOffset”:3429848,”symbol”:”-[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes]”,”symbolLocation”:2182,”imageIndex”:23},{“imageOffset”:3427597,”symbol”:”-[NSPrintInfo(NSInternal) _printSettingsForGetting]”,”symbolLocation”:48,”imageIndex”:23},{“imageOffset”:598308,”imageIndex”:2},{“imageOffset”:466102,”symbol”:”__CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__”,”symbolLocation”:137,”imageIndex”:21},{“imageOffset”:1055388,”symbol”:”___CFXRegistrationPost_block_invoke”,”symbolLocation”:86,”imageIndex”:21},{“imageOffset”:1055213,”symbol”:”_CFXRegistrationPost”,”symbolLocation”:530,”imageIndex”:21},{“imageOffset”:269321,”symbol”:”_CFXNotificationPost”,”symbolLocation”:826,”imageIndex”:21},{“imageOffset”:466300,”symbol”:”CFNotificationCenterPostNotificationWithOptions”,”symbolLocation”:121,”imageIndex”:21},{“imageOffset”:38520,”symbol”:”OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char)”,”symbolLocation”:196,”imageIndex”:22},{“imageOffset”:3429848,”symbol”:”-[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes]”,”symbolLocation”:2182,”imageIndex”:23},{“imageOffset”:3427597,”symbol”:”-[NSPrintInfo(NSInternal) _printSettingsForGetting]”,”symbolLocation”:48,”imageIndex”:23},{“imageOffset”:598308,”imageIndex”:2},{“imageOffset”:466102,”symbol”:”__CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__”,”symbolLocation”:137,”imageIndex”:21},{“imageOffset”:1055388,”symbol”:”___CFXRegistrationPost_block_invoke”,”symbolLocation”:86,”imageIndex”:21},{“imageOffset”:1055213,”symbol”:”_CFXRegistrationPost”,”symbolLocation”:530,”imageIndex”:21},{“imageOffset”:269321,”symbol”:”_CFXNotificationPost”,”symbolLocation”:826,”imageIndex”:21},{“imageOffset”:466300,”symbol”:”CFNotificationCenterPostNotificationWithOptions”,”symbolLocation”:121,”imageIndex”:21},{“imageOffset”:38520,”symbol”:”OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char)”,”symbolLocation”:196,”imageIndex”:22},{“imageOffset”:3429848,”symbol”:”-[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes]”,”symbolLocation”:2182,”imageIndex”:23},{“imageOffset”:3427597,”symbol”:”-[NSPrintInfo(NSInternal) _printSettingsForGetting]”,”symbolLocation”:48,”imageIndex”:23},{“imageOffset”:598308,”imageIndex”:2},{“imageOffset”:466102,”symbol”:”__CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__”,”symbolLocation”:137,”imageIndex”:21},{“imageOffset”:1055388,”symbol”:”___CFXRegistrationPost_block_invoke”,”symbolLocation”:86,”imageIndex”:21},{“imageOffset”:1055213,”symbol”:”_CFXRegistrationPost”,”symbolLocation”:530,”imageIndex”:21},{“imageOffset”:269321,”symbol”:”_CFXNotificationPost”,”symbolLocation”:826,”imageIndex”:21},{“imageOffset”:466300,”symbol”:”CFNotificationCenterPostNotificationWithOptions”,”symbolLocation”:121,”imageIndex”:21},{“imageOffset”:38520,”symbol”:”OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char)”,”symbolLocation”:196,”imageIndex”:22},{“imageOffset”:3429848,”symbol”:”-[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes]”,”symbolLocation”:2182,”imageIndex”:23},{“imageOffset”:3427597,”symbol”:”-[NSPrintInfo(NSInternal) _printSettingsForGetting]”,”symbolLocation”:48,”imageIndex”:23},{“imageOffset”:598308,”imageIndex”:2},{“imageOffset”:466102,”symbol”:”__CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__”,”symbolLocation”:137,”imageIndex”:21},{“imageOffset”:1055388,”symbol”:”___CFXRegistrationPost_block_invoke”,”symbolLocation”:86,”imageIndex”:21},{“imageOffset”:1055213,”symbol”:”_CFXRegistrationPost”,”symbolLocation”:530,”imageIndex”:21},{“imageOffset”:269321,”symbol”:”_CFXNotificationPost”,”symbolLocation”:826,”imageIndex”:21},{“imageOffset”:466300,”symbol”:”CFNotificationCenterPostNotificationWithOptions”,”symbolLocation”:121,”imageIndex”:21},{“imageOffset”:38520,”symbol”:”OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char)”,”symbolLocation”:196,”imageIndex”:22},{“imageOffset”:3429848,”symbol”:”-[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes]”,”symbolLocation”:2182,”imageIndex”:23},{“imageOffset”:3427597,”symbol”:”-[NSPrintInfo(NSInternal) _printSettingsForGetting]”,”symbolLocation”:48,”imageIndex”:23},{“imageOffset”:598308,”imageIndex”:2},{“imageOffset”:466102,”symbol”:”__CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__”,”symbolLocation”:137,”imageIndex”:21},{“imageOffset”:1055388,”symbol”:”___CFXRegistrationPost_block_invoke”,”symbolLocation”:86,”imageIndex”:21},{“imageOffset”:1055213,”symbol”:”_CFXRegistrationPost”,”symbolLocation”:530,”imageIndex”:21},{“imageOffset”:269321,”symbol”:”_CFXNotificationPost”,”symbolLocation”:826,”imageIndex”:21},{“imageOffset”:466300,”symbol”:”CFNotificationCenterPostNotificationWithOptions”,”symbolLocation”:121,”imageIndex”:21},{“imageOffset”:38520,”symbol”:”OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char)”,”symbolLocation”:196,”imageIndex”:22},{“imageOffset”:3429848,”symbol”:”-[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes]”,”symbolLocation”:2182,”imageIndex”:23},{“imageOffset”:3427597,”symbol”:”-[NSPrintInfo(NSInternal) _printSettingsForGetting]”,”symbolLocation”:48,”imageIndex”:23},{“imageOffset”:598308,”imageIndex”:2},{“imageOffset”:466102,”symbol”:”__CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__”,”symbolLocation”:137,”imageIndex”:21},{“imageOffset”:1055388,”symbol”:”___CFXRegistrationPost_block_invoke”,”symbolLocation”:86,”imageIndex”:21},{“imageOffset”:1055213,”symbol”:”_CFXRegistrationPost”,”symbolLocation”:530,”imageIndex”:21},{“imageOffset”:269321,”symbol”:”_CFXNotificationPost”,”symbolLocation”:826,”imageIndex”:21},{“imageOffset”:466300,”symbol”:”CFNotificationCenterPostNotificationWithOptions”,”symbolLocation”:121,”imageIndex”:21},{“imageOffset”:38520,”symbol”:”OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char)”,”symbolLocation”:196,”imageIndex”:22},{“imageOffset”:3429848,”symbol”:”-[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes]”,”symbolLocation”:2182,”imageIndex”:23},{“imageOffset”:3427597,”symbol”:”-[NSPrintInfo(NSInternal) _printSettingsForGetting]”,”symbolLocation”:48,”imageIndex”:23},{“imageOffset”:598308,”imageIndex”:2},{“imageOffset”:466102,”symbol”:”__CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__”,”symbolLocation”:137,”imageIndex”:21},{“imageOffset”:1055388,”symbol”:”___CFXRegistrationPost_block_invoke”,”symbolLocation”:86,”imageIndex”:21},{“imageOffset”:1055213,”symbol”:”_CFXRegistrationPost”,”symbolLocation”:530,”imageIndex”:21},{“imageOffset”:269321,”symbol”:”_CFXNotificationPost”,”symbolLocation”:826,”imageIndex”:21},{“imageOffset”:466300,”symbol”:”CFNotificationCenterPostNotificationWithOptions”,”symbolLocation”:121,”imageIndex”:21},{“imageOffset”:38520,”symbol”:”OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char)”,”symbolLocation”:196,”imageIndex”:22},{“imageOffset”:3429848,”symbol”:”-[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes]”,”symbolLocation”:2182,”imageIndex”:23},{“imageOffset”:3427597,”symbol”:”-[NSPrintInfo(NSInternal) _printSettingsForGetting]”,”symbolLocation”:48,”imageIndex”:23},{“imageOffset”:598308,”imageIndex”:2},{“imageOffset”:466102,”symbol”:”__CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__”,”symbolLocation”:137,”imageIndex”:21},{“imageOffset”:1055388,”symbol”:”___CFXRegistrationPost_block_invoke”,”symbolLocation”:86,”imageIndex”:21},{“imageOffset”:1055213,”symbol”:”_CFXRegistrationPost”,”symbolLocation”:530,”imageIndex”:21},{“imageOffset”:269321,”symbol”:”_CFXNotificationPost”,”symbolLocation”:826,”imageIndex”:21},{“imageOffset”:466300,”symbol”:”CFNotificationCenterPostNotificationWithOptions”,”symbolLocation”:121,”imageIndex”:21},{“imageOffset”:38520,”symbol”:”OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char)”,”symbolLocation”:196,”imageIndex”:22},{“imageOffset”:3429848,”symbol”:”-[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes]”,”symbolLocation”:2182,”imageIndex”:23},{“imageOffset”:3427597,”symbol”:”-[NSPrintInfo(NSInternal) _printSettingsForGetting]”,”symbolLocation”:48,”imageIndex”:23},{“imageOffset”:598308,”imageIndex”:2},{“imageOffset”:466102,”symbol”:”__CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__”,”symbolLocation”:137,”imageIndex”:21},{“imageOffset”:1055388,”symbol”:”___CFXRegistrationPost_block_invoke”,”symbolLocation”:86,”imageIndex”:21},{“imageOffset”:1055213,”symbol”:”_CFXRegistrationPost”,”symbolLocation”:530,”imageIndex”:21},{“imageOffset”:269321,”symbol”:”_CFXNotificationPost”,”symbolLocation”:826,”imageIndex”:21},{“imageOffset”:466300,”symbol”:”CFNotificationCenterPostNotificationWithOptions”,”symbolLocation”:121,”imageIndex”:21},{“imageOffset”:38520,”symbol”:”OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char)”,”symbolLocation”:196,”imageIndex”:22},{“imageOffset”:3429848,”symbol”:”-[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes]”,”symbolLocation”:2182,”imageIndex”:23},{“imageOffset”:3427597,”symbol”:”-[NSPrintInfo(NSInternal) _printSettingsForGetting]”,”symbolLocation”:48,”imageIndex”:23},{“imageOffset”:598308,”imageIndex”:2},{“imageOffset”:466102,”symbol”:”__CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__”,”symbolLocation”:137,”imageIndex”:21},{“imageOffset”:1055388,”symbol”:”___CFXRegistrationPost_block_invoke”,”symbolLocation”:86,”imageIndex”:21},{“imageOffset”:1055213,”symbol”:”_CFXRegistrationPost”,”symbolLocation”:530,”imageIndex”:21},{“imageOffset”:269321,”symbol”:”_CFXNotificationPost”,”symbolLocation”:826,”imageIndex”:21},{“imageOffset”:466300,”symbol”:”CFNotificationCenterPostNotificationWithOptions”,”symbolLocation”:121,”imageIndex”:21},{“imageOffset”:38520,”symbol”:”OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char)”,”symbolLocation”:196,”imageIndex”:22},{“imageOffset”:3429848,”symbol”:”-[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes]”,”symbolLocation”:2182,”imageIndex”:23},{“imageOffset”:3427597,”symbol”:”-[NSPrintInfo(NSInternal) _printSettingsForGetting]”,”symbolLocation”:48,”imageIndex”:23},{“imageOffset”:598308,”imageIndex”:2},{“imageOffset”:466102,”symbol”:”__CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__”,”symbolLocation”:137,”imageIndex”:21},{“imageOffset”:1055388,”symbol”:”___CFXRegistrationPost_block_invoke”,”symbolLocation”:86,”imageIndex”:21},{“imageOffset”:1055213,”symbol”:”_CFXRegistrationPost”,”symbolLocation”:530,”imageIndex”:21},{“imageOffset”:269321,”symbol”:”_CFXNotificationPost”,”symbolLocation”:826,”imageIndex”:21},{“imageOffset”:466300,”symbol”:”CFNotificationCenterPostNotificationWithOptions”,”symbolLocation”:121,”imageIndex”:21},{“imageOffset”:38520,”symbol”:”OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char)”,”symbolLocation”:196,”imageIndex”:22},{“imageOffset”:3429848,”symbol”:”-[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes]”,”symbolLocation”:2182,”imageIndex”:23},{“imageOffset”:3427597,”symbol”:”-[NSPrintInfo(NSInternal) _printSettingsForGetting]”,”symbolLocation”:48,”imageIndex”:23},{“imageOffset”:598308,”imageIndex”:2},{“imageOffset”:466102,”symbol”:”__CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__”,”symbolLocation”:137,”imageIndex”:21},{“imageOffset”:1055388,”symbol”:”___CFXRegistrationPost_block_invoke”,”symbolLocation”:86,”imageIndex”:21},{“imageOffset”:1055213,”symbol”:”_CFXRegistrationPost”,”symbolLocation”:530,”imageIndex”:21},{“imageOffset”:269321,”symbol”:”_CFXNotificationPost”,”symbolLocation”:826,”imageIndex”:21},{“imageOffset”:466300,”symbol”:”CFNotificationCenterPostNotificationWithOptions”,”symbolLocation”:121,”imageIndex”:21},{“imageOffset”:38520,”symbol”:”OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char)”,”symbolLocation”:196,”imageIndex”:22},{“imageOffset”:3429848,”symbol”:”-[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes]”,”symbolLocation”:2182,”imageIndex”:23},{“imageOffset”:3427597,”symbol”:”-[NSPrintInfo(NSInternal) _printSettingsForGetting]”,”symbolLocation”:48,”imageIndex”:23},{“imageOffset”:598308,”imageIndex”:2},{“imageOffset”:466102,”symbol”:”__CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__”,”symbolLocation”:137,”imageIndex”:21},{“imageOffset”:1055388,”symbol”:”___CFXRegistrationPost_block_invoke”,”symbolLocation”:86,”imageIndex”:21},{“imageOffset”:1055213,”symbol”:”_CFXRegistrationPost”,”symbolLocation”:530,”imageIndex”:21},{“imageOffset”:269321,”symbol”:”_CFXNotificationPost”,”symbolLocation”:826,”imageIndex”:21},{“imageOffset”:466300,”symbol”:”CFNotificationCenterPostNotificationWithOptions”,”symbolLocation”:121,”imageIndex”:21},{“imageOffset”:38520,”symbol”:”OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char)”,”symbolLocation”:196,”imageIndex”:22},{“imageOffset”:3429848,”symbol”:”-[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes]”,”symbolLocation”:2182,”imageIndex”:23},{“imageOffset”:3427597,”symbol”:”-[NSPrintInfo(NSInternal) _printSettingsForGetting]”,”symbolLocation”:48,”imageIndex”:23},{“imageOffset”:598308,”imageIndex”:2},{“imageOffset”:466102,”symbol”:”__CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__”,”symbolLocation”:137,”imageIndex”:21},{“imageOffset”:1055388,”symbol”:”___CFXRegistrationPost_block_invoke”,”symbolLocation”:86,”imageIndex”:21},{“imageOffset”:1055213,”symbol”:”_CFXRegistrationPost”,”symbolLocation”:530,”imageIndex”:21},{“imageOffset”:269321,”symbol”:”_CFXNotificationPost”,”symbolLocation”:826,”imageIndex”:21},{“imageOffset”:466300,”symbol”:”CFNotificationCenterPostNotificationWithOptions”,”symbolLocation”:121,”imageIndex”:21},{“imageOffset”:38520,”symbol”:”OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char)”,”symbolLocation”:196,”imageIndex”:22},{“imageOffset”:3429848,”symbol”:”-[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes]”,”symbolLocation”:2182,”imageIndex”:23},{“imageOffset”:3427597,”symbol”:”-[NSPrintInfo(NSInternal) _printSettingsForGetting]”,”symbolLocation”:48,”imageIndex”:23},{“imageOffset”:598308,”imageIndex”:2},{“imageOffset”:466102,”symbol”:”__CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__”,”symbolLocation”:137,”imageIndex”:21},{“imageOffset”:1055388,”symbol”:”___CFXRegistrationPost_block_invoke”,”symbolLocation”:86,”imageIndex”:21},{“imageOffset”:1055213,”symbol”:”_CFXRegistrationPost”,”symbolLocation”:530,”imageIndex”:21},{“imageOffset”:269321,”symbol”:”_CFXNotificationPost”,”symbolLocation”:826,”imageIndex”:21},{“imageOffset”:466300,”symbol”:”CFNotificationCenterPostNotificationWithOptions”,”symbolLocation”:121,”imageIndex”:21},{“imageOffset”:38520,”symbol”:”OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char)”,”symbolLocation”:196,”imageIndex”:22},{“imageOffset”:3429848,”symbol”:”-[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes]”,”symbolLocation”:2182,”imageIndex”:23},{“imageOffset”:3427597,”symbol”:”-[NSPrintInfo(NSInternal) _printSettingsForGetting]”,”symbolLocation”:48,”imageIndex”:23},{“imageOffset”:598308,”imageIndex”:2},{“imageOffset”:466102,”symbol”:”__CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__”,”symbolLocation”:137,”imageIndex”:21},{“imageOffset”:1055388,”symbol”:”___CFXRegistrationPost_block_invoke”,”symbolLocation”:86,”imageIndex”:21},{“imageOffset”:1055213,”symbol”:”_CFXRegistrationPost”,”symbolLocation”:530,”imageIndex”:21},{“imageOffset”:269321,”symbol”:”_CFXNotificationPost”,”symbolLocation”:826,”imageIndex”:21},{“imageOffset”:466300,”symbol”:”CFNotificationCenterPostNotificationWithOptions”,”symbolLocation”:121,”imageIndex”:21},{“imageOffset”:38520,”symbol”:”OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char)”,”symbolLocation”:196,”imageIndex”:22},{“imageOffset”:3429848,”symbol”:”-[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes]”,”symbolLocation”:2182,”imageIndex”:23},{“imageOffset”:3427597,”symbol”:”-[NSPrintInfo(NSInternal) _printSettingsForGetting]”,”symbolLocation”:48,”imageIndex”:23},{“imageOffset”:598308,”imageIndex”:2},{“imageOffset”:466102,”symbol”:”__CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__”,”symbolLocation”:137,”imageIndex”:21},{“imageOffset”:1055388,”symbol”:”___CFXRegistrationPost_block_invoke”,”symbolLocation”:86,”imageIndex”:21},{“imageOffset”:1055213,”symbol”:”_CFXRegistrationPost”,”symbolLocation”:530,”imageIndex”:21},{“imageOffset”:269321,”symbol”:”_CFXNotificationPost”,”symbolLocation”:826,”imageIndex”:21},{“imageOffset”:466300,”symbol”:”CFNotificationCenterPostNotificationWithOptions”,”symbolLocation”:121,”imageIndex”:21},{“imageOffset”:38520,”symbol”:”OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char)”,”symbolLocation”:196,”imageIndex”:22},{“imageOffset”:3429848,”symbol”:”-[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes]”,”symbolLocation”:2182,”imageIndex”:23},{“imageOffset”:3427597,”symbol”:”-[NSPrintInfo(NSInternal) _printSettingsForGetting]”,”symbolLocation”:48,”imageIndex”:23},{“imageOffset”:598308,”imageIndex”:2},{“imageOffset”:466102,”symbol”:”__CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__”,”symbolLocation”:137,”imageIndex”:21},{“imageOffset”:1055388,”symbol”:”___CFXRegistrationPost_block_invoke”,”symbolLocation”:86,”imageIndex”:21},{“imageOffset”:1055213,”symbol”:”_CFXRegistrationPost”,”symbolLocation”:530,”imageIndex”:21},{“imageOffset”:269321,”symbol”:”_CFXNotificationPost”,”symbolLocation”:826,”imageIndex”:21},{“imageOffset”:466300,”symbol”:”CFNotificationCenterPostNotificationWithOptions”,”symbolLocation”:121,”imageIndex”:21},{“imageOffset”:38520,”symbol”:”OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char)”,”symbolLocation”:196,”imageIndex”:22},{“imageOffset”:3429848,”symbol”:”-[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes]”,”symbolLocation”:2182,”imageIndex”:23},{“imageOffset”:3427597,”symbol”:”-[NSPrintInfo(NSInternal) _printSettingsForGetting]”,”symbolLocation”:48,”imageIndex”:23},{“imageOffset”:598308,”imageIndex”:2},{“imageOffset”:466102,”symbol”:”__CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__”,”symbolLocation”:137,”imageIndex”:21},{“imageOffset”:1055388,”symbol”:”___CFXRegistrationPost_block_invoke”,”symbolLocation”:86,”imageIndex”:21},{“imageOffset”:1055213,”symbol”:”_CFXRegistrationPost”,”symbolLocation”:530,”imageIndex”:21},{“imageOffset”:269321,”symbol”:”_CFXNotificationPost”,”symbolLocation”:826,”imageIndex”:21},{“imageOffset”:466300,”symbol”:”CFNotificationCenterPostNotificationWithOptions”,”symbolLocation”:121,”imageIndex”:21},{“imageOffset”:38520,”symbol”:”OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char)”,”symbolLocation”:196,”imageIndex”:22},{“imageOffset”:3429848,”symbol”:”-[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes]”,”symbolLocation”:2182,”imageIndex”:23},{“imageOffset”:3427597,”symbol”:”-[NSPrintInfo(NSInternal) _printSettingsForGetting]”,”symbolLocation”:48,”imageIndex”:23},{“imageOffset”:598308,”imageIndex”:2},{“imageOffset”:466102,”symbol”:”__CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__”,”symbolLocation”:137,”imageIndex”:21},{“imageOffset”:1055388,”symbol”:”___CFXRegistrationPost_block_invoke”,”symbolLocation”:86,”imageIndex”:21},{“imageOffset”:1055213,”symbol”:”_CFXRegistrationPost”,”symbolLocation”:530,”imageIndex”:21},{“imageOffset”:269321,”symbol”:”_CFXNotificationPost”,”symbolLocation”:826,”imageIndex”:21},{“imageOffset”:466300,”symbol”:”CFNotificationCenterPostNotificationWithOptions”,”symbolLocation”:121,”imageIndex”:21},{“imageOffset”:38520,”symbol”:”OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char)”,”symbolLocation”:196,”imageIndex”:22},{“imageOffset”:3429848,”symbol”:”-[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes]”,”symbolLocation”:2182,”imageIndex”:23},{“imageOffset”:3427597,”symbol”:”-[NSPrintInfo(NSInternal) _printSettingsForGetting]”,”symbolLocation”:48,”imageIndex”:23},{“imageOffset”:598308,”imageIndex”:2},{“imageOffset”:466102,”symbol”:”__CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__”,”symbolLocation”:137,”imageIndex”:21},{“imageOffset”:1055388,”symbol”:”___CFXRegistrationPost_block_invoke”,”symbolLocation”:86,”imageIndex”:21},{“imageOffset”:1055213,”symbol”:”_CFXRegistrationPost”,”symbolLocation”:530,”imageIndex”:21},{“imageOffset”:269321,”symbol”:”_CFXNotificationPost”,”symbolLocation”:826,”imageIndex”:21},{“imageOffset”:466300,”symbol”:”CFNotificationCenterPostNotificationWithOptions”,”symbolLocation”:121,”imageIndex”:21},{“imageOffset”:38520,”symbol”:”OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char)”,”symbolLocation”:196,”imageIndex”:22},{“imageOffset”:3429848,”symbol”:”-[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes]”,”symbolLocation”:2182,”imageIndex”:23},{“imageOffset”:3427597,”symbol”:”-[NSPrintInfo(NSInternal) _printSettingsForGetting]”,”symbolLocation”:48,”imageIndex”:23},{“imageOffset”:598308,”imageIndex”:2},{“imageOffset”:466102,”symbol”:”__CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__”,”symbolLocation”:137,”imageIndex”:21},{“imageOffset”:1055388,”symbol”:”___CFXRegistrationPost_block_invoke”,”symbolLocation”:86,”imageIndex”:21},{“imageOffset”:1055213,”symbol”:”_CFXRegistrationPost”,”symbolLocation”:530,”imageIndex”:21},{“imageOffset”:269321,”symbol”:”_CFXNotificationPost”,”symbolLocation”:826,”imageIndex”:21},{“imageOffset”:466300,”symbol”:”CFNotificationCenterPostNotificationWithOptions”,”symbolLocation”:121,”imageIndex”:21},{“imageOffset”:38520,”symbol”:”OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char)”,”symbolLocation”:196,”imageIndex”:22},{“imageOffset”:3429848,”symbol”:”-[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes]”,”symbolLocation”:2182,”imageIndex”:23},{“imageOffset”:3427597,”symbol”:”-[NSPrintInfo(NSInternal) _printSettingsForGetting]”,”symbolLocation”:48,”imageIndex”:23},{“imageOffset”:598308,”imageIndex”:2},{“imageOffset”:466102,”symbol”:”__CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__”,”symbolLocation”:137,”imageIndex”:21},{“imageOffset”:1055388,”symbol”:”___CFXRegistrationPost_block_invoke”,”symbolLocation”:86,”imageIndex”:21},{“imageOffset”:1055213,”symbol”:”_CFXRegistrationPost”,”symbolLocation”:530,”imageIndex”:21},{“imageOffset”:269321,”symbol”:”_CFXNotificationPost”,”symbolLocation”:826,”imageIndex”:21},{“imageOffset”:466300,”symbol”:”CFNotificationCenterPostNotificationWithOptions”,”symbolLocation”:121,”imageIndex”:21},{“imageOffset”:38520,”symbol”:”OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char)”,”symbolLocation”:196,”imageIndex”:22},{“imageOffset”:3429848,”symbol”:”-[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes]”,”symbolLocation”:2182,”imageIndex”:23},{“imageOffset”:3427597,”symbol”:”-[NSPrintInfo(NSInternal) _printSettingsForGetting]”,”symbolLocation”:48,”imageIndex”:23},{“imageOffset”:598308,”imageIndex”:2},{“imageOffset”:466102,”symbol”:”__CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__”,”symbolLocation”:137,”imageIndex”:21},{“imageOffset”:1055388,”symbol”:”___CFXRegistrationPost_block_invoke”,”symbolLocation”:86,”imageIndex”:21},{“imageOffset”:1055213,”symbol”:”_CFXRegistrationPost”,”symbolLocation”:530,”imageIndex”:21},{“imageOffset”:269321,”symbol”:”_CFXNotificationPost”,”symbolLocation”:826,”imageIndex”:21},{“imageOffset”:466300,”symbol”:”CFNotificationCenterPostNotificationWithOptions”,”symbolLocation”:121,”imageIndex”:21},{“imageOffset”:38520,”symbol”:”OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char)”,”symbolLocation”:196,”imageIndex”:22},{“imageOffset”:3429848,”symbol”:”-[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes]”,”symbolLocation”:2182,”imageIndex”:23},{“imageOffset”:3427597,”symbol”:”-[NSPrintInfo(NSInternal) _printSettingsForGetting]”,”symbolLocation”:48,”imageIndex”:23},{“imageOffset”:598308,”imageIndex”:2},{“imageOffset”:466102,”symbol”:”__CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__”,”symbolLocation”:137,”imageIndex”:21},{“imageOffset”:1055388,”symbol”:”___CFXRegistrationPost_block_invoke”,”symbolLocation”:86,”imageIndex”:21},{“imageOffset”:1055213,”symbol”:”_CFXRegistrationPost”,”symbolLocation”:530,”imageIndex”:21},{“imageOffset”:269321,”symbol”:”_CFXNotificationPost”,”symbolLocation”:826,”imageIndex”:21},{“imageOffset”:466300,”symbol”:”CFNotificationCenterPostNotificationWithOptions”,”symbolLocation”:121,”imageIndex”:21},{“imageOffset”:38520,”symbol”:”OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char)”,”symbolLocation”:196,”imageIndex”:22},{“imageOffset”:3429848,”symbol”:”-[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes]”,”symbolLocation”:2182,”imageIndex”:23},{“imageOffset”:3427597,”symbol”:”-[NSPrintInfo(NSInternal) _printSettingsForGetting]”,”symbolLocation”:48,”imageIndex”:23},{“imageOffset”:598308,”imageIndex”:2},{“imageOffset”:466102,”symbol”:”__CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__”,”symbolLocation”:137,”imageIndex”:21},{“imageOffset”:1055388,”symbol”:”___CFXRegistrationPost_block_invoke”,”symbolLocation”:86,”imageIndex”:21},{“imageOffset”:1055213,”symbol”:”_CFXRegistrationPost”,”symbolLocation”:530,”imageIndex”:21},{“imageOffset”:269321,”symbol”:”_CFXNotificationPost”,”symbolLocation”:826,”imageIndex”:21},{“imageOffset”:466300,”symbol”:”CFNotificationCenterPostNotificationWithOptions”,”symbolLocation”:121,”imageIndex”:21},{“imageOffset”:38520,”symbol”:”OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char)”,”symbolLocation”:196,”imageIndex”:22},{“imageOffset”:3429848,”symbol”:”-[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes]”,”symbolLocation”:2182,”imageIndex”:23},{“imageOffset”:3427597,”symbol”:”-[NSPrintInfo(NSInternal) _printSettingsForGetting]”,”symbolLocation”:48,”imageIndex”:23},{“imageOffset”:598308,”imageIndex”:2},{“imageOffset”:466102,”symbol”:”__CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__”,”symbolLocation”:137,”imageIndex”:21},{“imageOffset”:1055388,”symbol”:”___CFXRegistrationPost_block_invoke”,”symbolLocation”:86,”imageIndex”:21},{“imageOffset”:1055213,”symbol”:”_CFXRegistrationPost”,”symbolLocation”:530,”imageIndex”:21},{“imageOffset”:269321,”symbol”:”_CFXNotificationPost”,”symbolLocation”:826,”imageIndex”:21},{“imageOffset”:466300,”symbol”:”CFNotificationCenterPostNotificationWithOptions”,”symbolLocation”:121,”imageIndex”:21},{“imageOffset”:38520,”symbol”:”OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char)”,”symbolLocation”:196,”imageIndex”:22},{“imageOffset”:3429848,”symbol”:”-[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes]”,”symbolLocation”:2182,”imageIndex”:23},{“imageOffset”:3427597,”symbol”:”-[NSPrintInfo(NSInternal) _printSettingsForGetting]”,”symbolLocation”:48,”imageIndex”:23},{“imageOffset”:598308,”imageIndex”:2},{“imageOffset”:466102,”symbol”:”__CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__”,”symbolLocation”:137,”imageIndex”:21},{“imageOffset”:1055388,”symbol”:”___CFXRegistrationPost_block_invoke”,”symbolLocation”:86,”imageIndex”:21},{“imageOffset”:1055213,”symbol”:”_CFXRegistrationPost”,”symbolLocation”:530,”imageIndex”:21},{“imageOffset”:269321,”symbol”:”_CFXNotificationPost”,”symbolLocation”:826,”imageIndex”:21},{“imageOffset”:466300,”symbol”:”CFNotificationCenterPostNotificationWithOptions”,”symbolLocation”:121,”imageIndex”:21},{“imageOffset”:38520,”symbol”:”OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char)”,”symbolLocation”:196,”imageIndex”:22},{“imageOffset”:3429848,”symbol”:”-[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes]”,”symbolLocation”:2182,”imageIndex”:23},{“imageOffset”:3427597,”symbol”:”-[NSPrintInfo(NSInternal) _printSettingsForGetting]”,”symbolLocation”:48,”imageIndex”:23},{“imageOffset”:598308,”imageIndex”:2},{“imageOffset”:466102,”symbol”:”__CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__”,”symbolLocation”:137,”imageIndex”:21},{“imageOffset”:1055388,”symbol”:”___CFXRegistrationPost_block_invoke”,”symbolLocation”:86,”imageIndex”:21},{“imageOffset”:1055213,”symbol”:”_CFXRegistrationPost”,”symbolLocation”:530,”imageIndex”:21},{“imageOffset”:269321,”symbol”:”_CFXNotificationPost”,”symbolLocation”:826,”imageIndex”:21},{“imageOffset”:466300,”symbol”:”CFNotificationCenterPostNotificationWithOptions”,”symbolLocation”:121,”imageIndex”:21},{“imageOffset”:38520,”symbol”:”OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char)”,”symbolLocation”:196,”imageIndex”:22},{“imageOffset”:3429848,”symbol”:”-[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes]”,”symbolLocation”:2182,”imageIndex”:23},{“imageOffset”:3427597,”symbol”:”-[NSPrintInfo(NSInternal) _printSettingsForGetting]”,”symbolLocation”:48,”imageIndex”:23},{“imageOffset”:598308,”imageIndex”:2},{“imageOffset”:466102,”symbol”:”__CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__”,”symbolLocation”:137,”imageIndex”:21},{“imageOffset”:1055388,”symbol”:”___CFXRegistrationPost_block_invoke”,”symbolLocation”:86,”imageIndex”:21},{“imageOffset”:1055213,”symbol”:”_CFXRegistrationPost”,”symbolLocation”:530,”imageIndex”:21},{“imageOffset”:269321,”symbol”:”_CFXNotificationPost”,”symbolLocation”:826,”imageIndex”:21},{“imageOffset”:466300,”symbol”:”CFNotificationCenterPostNotificationWithOptions”,”symbolLocation”:121,”imageIndex”:21},{“imageOffset”:38520,”symbol”:”OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char)”,”symbolLocation”:196,”imageIndex”:22},{“imageOffset”:3429848,”symbol”:”-[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes]”,”symbolLocation”:2182,”imageIndex”:23},{“imageOffset”:3427597,”symbol”:”-[NSPrintInfo(NSInternal) _printSettingsForGetting]”,”symbolLocation”:48,”imageIndex”:23},{“imageOffset”:598308,”imageIndex”:2},{“imageOffset”:466102,”symbol”:”__CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__”,”symbolLocation”:137,”imageIndex”:21},{“imageOffset”:1055388,”symbol”:”___CFXRegistrationPost_block_invoke”,”symbolLocation”:86,”imageIndex”:21},{“imageOffset”:1055213,”symbol”:”_CFXRegistrationPost”,”symbolLocation”:530,”imageIndex”:21},{“imageOffset”:269321,”symbol”:”_CFXNotificationPost”,”symbolLocation”:826,”imageIndex”:21},{“imageOffset”:466300,”symbol”:”CFNotificationCenterPostNotificationWithOptions”,”symbolLocation”:121,”imageIndex”:21},{“imageOffset”:38520,”symbol”:”OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char)”,”symbolLocation”:196,”imageIndex”:22},{“imageOffset”:3429848,”symbol”:”-[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes]”,”symbolLocation”:2182,”imageIndex”:23},{“imageOffset”:3427597,”symbol”:”-[NSPrintInfo(NSInternal) _printSettingsForGetting]”,”symbolLocation”:48,”imageIndex”:23},{“imageOffset”:598308,”imageIndex”:2},{“imageOffset”:466102,”symbol”:”__CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__”,”symbolLocation”:137,”imageIndex”:21},{“imageOffset”:1055388,”symbol”:”___CFXRegistrationPost_block_invoke”,”symbolLocation”:86,”imageIndex”:21},{“imageOffset”:1055213,”symbol”:”_CFXRegistrationPost”,”symbolLocation”:530,”imageIndex”:21},{“imageOffset”:269321,”symbol”:”_CFXNotificationPost”,”symbolLocation”:826,”imageIndex”:21},{“imageOffset”:466300,”symbol”:”CFNotificationCenterPostNotificationWithOptions”,”symbolLocation”:121,”imageIndex”:21},{“imageOffset”:38520,”symbol”:”OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char)”,”symbolLocation”:196,”imageIndex”:22},{“imageOffset”:3429848,”symbol”:”-[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes]”,”symbolLocation”:2182,”imageIndex”:23},{“imageOffset”:3427597,”symbol”:”-[NSPrintInfo(NSInternal) _printSettingsForGetting]”,”symbolLocation”:48,”imageIndex”:23},{“imageOffset”:598308,”imageIndex”:2},{“imageOffset”:466102,”symbol”:”__CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__”,”symbolLocation”:137,”imageIndex”:21},{“imageOffset”:1055388,”symbol”:”___CFXRegistrationPost_block_invoke”,”symbolLocation”:86,”imageIndex”:21},{“imageOffset”:1055213,”symbol”:”_CFXRegistrationPost”,”symbolLocation”:530,”imageIndex”:21},{“imageOffset”:269321,”symbol”:”_CFXNotificationPost”,”symbolLocation”:826,”imageIndex”:21},{“imageOffset”:466300,”symbol”:”CFNotificationCenterPostNotificationWithOptions”,”symbolLocation”:121,”imageIndex”:21},{“imageOffset”:38520,”symbol”:”OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char)”,”symbolLocation”:196,”imageIndex”:22},{“imageOffset”:3429848,”symbol”:”-[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes]”,”symbolLocation”:2182,”imageIndex”:23},{“imageOffset”:3427597,”symbol”:”-[NSPrintInfo(NSInternal) _printSettingsForGetting]”,”symbolLocation”:48,”imageIndex”:23},{“imageOffset”:598308,”imageIndex”:2},{“imageOffset”:466102,”symbol”:”__CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__”,”symbolLocation”:137,”imageIndex”:21},{“imageOffset”:1055388,”symbol”:”___CFXRegistrationPost_block_invoke”,”symbolLocation”:86,”imageIndex”:21},{“imageOffset”:1055213,”symbol”:”_CFXRegistrationPost”,”symbolLocation”:530,”imageIndex”:21},{“imageOffset”:269321,”symbol”:”_CFXNotificationPost”,”symbolLocation”:826,”imageIndex”:21},{“imageOffset”:466300,”symbol”:”CFNotificationCenterPostNotificationWithOptions”,”symbolLocation”:121,”imageIndex”:21},{“imageOffset”:38520,”symbol”:”OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char)”,”symbolLocation”:196,”imageIndex”:22},{“imageOffset”:3429848,”symbol”:”-[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes]”,”symbolLocation”:2182,”imageIndex”:23},{“imageOffset”:3427597,”symbol”:”-[NSPrintInfo(NSInternal) _printSettingsForGetting]”,”symbolLocation”:48,”imageIndex”:23},{“imageOffset”:598308,”imageIndex”:2},{“imageOffset”:466102,”symbol”:”__CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__”,”symbolLocation”:137,”imageIndex”:21},{“imageOffset”:1055388,”symbol”:”___CFXRegistrationPost_block_invoke”,”symbolLocation”:86,”imageIndex”:21},{“imageOffset”:1055213,”symbol”:”_CFXRegistrationPost”,”symbolLocation”:530,”imageIndex”:21},{“imageOffset”:269321,”symbol”:”_CFXNotificationPost”,”symbolLocation”:826,”imageIndex”:21},{“imageOffset”:466300,”symbol”:”CFNotificationCenterPostNotificationWithOptions”,”symbolLocation”:121,”imageIndex”:21},{“imageOffset”:38520,”symbol”:”OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char)”,”symbolLocation”:196,”imageIndex”:22},{“imageOffset”:3429848,”symbol”:”-[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes]”,”symbolLocation”:2182,”imageIndex”:23},{“imageOffset”:3427597,”symbol”:”-[NSPrintInfo(NSInternal) _printSettingsForGetting]”,”symbolLocation”:48,”imageIndex”:23},{“imageOffset”:598308,”imageIndex”:2},{“imageOffset”:466102,”symbol”:”__CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__”,”symbolLocation”:137,”imageIndex”:21},{“imageOffset”:1055388,”symbol”:”___CFXRegistrationPost_block_invoke”,”symbolLocation”:86,”imageIndex”:21},{“imageOffset”:1055213,”symbol”:”_CFXRegistrationPost”,”symbolLocation”:530,”imageIndex”:21},{“imageOffset”:269321,”symbol”:”_CFXNotificationPost”,”symbolLocation”:826,”imageIndex”:21},{“imageOffset”:466300,”symbol”:”CFNotificationCenterPostNotificationWithOptions”,”symbolLocation”:121,”imageIndex”:21},{“imageOffset”:38520,”symbol”:”OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char)”,”symbolLocation”:196,”imageIndex”:22},{“imageOffset”:3429848,”symbol”:”-[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes]”,”symbolLocation”:2182,”imageIndex”:23},{“imageOffset”:3427597,”symbol”:”-[NSPrintInfo(NSInternal) _printSettingsForGetting]”,”symbolLocation”:48,”imageIndex”:23},{“imageOffset”:598308,”imageIndex”:2},{“imageOffset”:466102,”symbol”:”__CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__”,”symbolLocation”:137,”imageIndex”:21},{“imageOffset”:1055388,”symbol”:”___CFXRegistrationPost_block_invoke”,”symbolLocation”:86,”imageIndex”:21},{“imageOffset”:1055213,”symbol”:”_CFXRegistrationPost”,”symbolLocation”:530,”imageIndex”:21},{“imageOffset”:269321,”symbol”:”_CFXNotificationPost”,”symbolLocation”:826,”imageIndex”:21},{“imageOffset”:466300,”symbol”:”CFNotificationCenterPostNotificationWithOptions”,”symbolLocation”:121,”imageIndex”:21},{“imageOffset”:38520,”symbol”:”OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char)”,”symbolLocation”:196,”imageIndex”:22},{“imageOffset”:3429848,”symbol”:”-[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes]”,”symbolLocation”:2182,”imageIndex”:23},{“imageOffset”:3427597,”symbol”:”-[NSPrintInfo(NSInternal) _printSettingsForGetting]”,”symbolLocation”:48,”imageIndex”:23},{“imageOffset”:598308,”imageIndex”:2},{“imageOffset”:466102,”symbol”:”__CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__”,”symbolLocation”:137,”imageIndex”:21},{“imageOffset”:1055388,”symbol”:”___CFXRegistrationPost_block_invoke”,”symbolLocation”:86,”imageIndex”:21},{“imageOffset”:1055213,”symbol”:”_CFXRegistrationPost”,”symbolLocation”:530,”imageIndex”:21},{“imageOffset”:269321,”symbol”:”_CFXNotificationPost”,”symbolLocation”:826,”imageIndex”:21},{“imageOffset”:466300,”symbol”:”CFNotificationCenterPostNotificationWithOptions”,”symbolLocation”:121,”imageIndex”:21},{“imageOffset”:38520,”symbol”:”OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char)”,”symbolLocation”:196,”imageIndex”:22},{“imageOffset”:3429848,”symbol”:”-[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes]”,”symbolLocation”:2182,”imageIndex”:23},{“imageOffset”:3427597,”symbol”:”-[NSPrintInfo(NSInternal) _printSettingsForGetting]”,”symbolLocation”:48,”imageIndex”:23},{“imageOffset”:598308,”imageIndex”:2},{“imageOffset”:466102,”symbol”:”__CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__”,”symbolLocation”:137,”imageIndex”:21},{“imageOffset”:1055388,”symbol”:”___CFXRegistrationPost_block_invoke”,”symbolLocation”:86,”imageIndex”:21},{“imageOffset”:1055213,”symbol”:”_CFXRegistrationPost”,”symbolLocation”:530,”imageIndex”:21},{“imageOffset”:269321,”symbol”:”_CFXNotificationPost”,”symbolLocation”:826,”imageIndex”:21},{“imageOffset”:466300,”symbol”:”CFNotificationCenterPostNotificationWithOptions”,”symbolLocation”:121,”imageIndex”:21},{“imageOffset”:38520,”symbol”:”OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char)”,”symbolLocation”:196,”imageIndex”:22},{“imageOffset”:3429848,”symbol”:”-[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes]”,”symbolLocation”:2182,”imageIndex”:23},{“imageOffset”:3427597,”symbol”:”-[NSPrintInfo(NSInternal) _printSettingsForGetting]”,”symbolLocation”:48,”imageIndex”:23},{“imageOffset”:598308,”imageIndex”:2},{“imageOffset”:466102,”symbol”:”__CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__”,”symbolLocation”:137,”imageIndex”:21},{“imageOffset”:1055388,”symbol”:”___CFXRegistrationPost_block_invoke”,”symbolLocation”:86,”imageIndex”:21},{“imageOffset”:1055213,”symbol”:”_CFXRegistrationPost”,”symbolLocation”:530,”imageIndex”:21},{“imageOffset”:269321,”symbol”:”_CFXNotificationPost”,”symbolLocation”:826,”imageIndex”:21},{“imageOffset”:466300,”symbol”:”CFNotificationCenterPostNotificationWithOptions”,”symbolLocation”:121,”imageIndex”:21},{“imageOffset”:38520,”symbol”:”OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char)”,”symbolLocation”:196,”imageIndex”:22},{“imageOffset”:3429848,”symbol”:”-[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes]”,”symbolLocation”:2182,”imageIndex”:23},{“imageOffset”:3427597,”symbol”:”-[NSPrintInfo(NSInternal) _printSettingsForGetting]”,”symbolLocation”:48,”imageIndex”:23},{“imageOffset”:598308,”imageIndex”:2},{“imageOffset”:466102,”symbol”:”__CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__”,”symbolLocation”:137,”imageIndex”:21},{“imageOffset”:1055388,”symbol”:”___CFXRegistrationPost_block_invoke”,”symbolLocation”:86,”imageIndex”:21},{“imageOffset”:1055213,”symbol”:”_CFXRegistrationPost”,”symbolLocation”:530,”imageIndex”:21},{“imageOffset”:269321,”symbol”:”_CFXNotificationPost”,”symbolLocation”:826,”imageIndex”:21},{“imageOffset”:466300,”symbol”:”CFNotificationCenterPostNotificationWithOptions”,”symbolLocation”:121,”imageIndex”:21},{“imageOffset”:38520,”symbol”:”OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char)”,”symbolLocation”:196,”imageIndex”:22},{“imageOffset”:3429848,”symbol”:”-[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes]”,”symbolLocation”:2182,”imageIndex”:23},{“imageOffset”:3427597,”symbol”:”-[NSPrintInfo(NSInternal) _printSettingsForGetting]”,”symbolLocation”:48,”imageIndex”:23},{“imageOffset”:598308,”imageIndex”:2},{“imageOffset”:466102,”symbol”:”__CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__”,”symbolLocation”:137,”imageIndex”:21},{“imageOffset”:1055388,”symbol”:”___CFXRegistrationPost_block_invoke”,”symbolLocation”:86,”imageIndex”:21},{“imageOffset”:1055213,”symbol”:”_CFXRegistrationPost”,”symbolLocation”:530,”imageIndex”:21},{“imageOffset”:269321,”symbol”:”_CFXNotificationPost”,”symbolLocation”:826,”imageIndex”:21},{“imageOffset”:466300,”symbol”:”CFNotificationCenterPostNotificationWithOptions”,”symbolLocation”:121,”imageIndex”:21},{“imageOffset”:38520,”symbol”:”OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char)”,”symbolLocation”:196,”imageIndex”:22},{“imageOffset”:3429848,”symbol”:”-[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes]”,”symbolLocation”:2182,”imageIndex”:23},{“imageOffset”:3427597,”symbol”:”-[NSPrintInfo(NSInternal) _printSettingsForGetting]”,”symbolLocation”:48,”imageIndex”:23},{“imageOffset”:598308,”imageIndex”:2},{“imageOffset”:466102,”symbol”:”__CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__”,”symbolLocation”:137,”imageIndex”:21},{“imageOffset”:1055388,”symbol”:”___CFXRegistrationPost_block_invoke”,”symbolLocation”:86,”imageIndex”:21},{“imageOffset”:1055213,”symbol”:”_CFXRegistrationPost”,”symbolLocation”:530,”imageIndex”:21},{“imageOffset”:269321,”symbol”:”_CFXNotificationPost”,”symbolLocation”:826,”imageIndex”:21},{“imageOffset”:466300,”symbol”:”CFNotificationCenterPostNotificationWithOptions”,”symbolLocation”:121,”imageIndex”:21},{“imageOffset”:38520,”symbol”:”OpaquePMPrintSettings::PJCSetValue(__CFString const*, void const*, unsigned char)”,”symbolLocation”:196,”imageIndex”:22},{“imageOffset”:3429848,”symbol”:”-[NSPrintInfo(NSManagedAttributes) _reconcilePrintSettingsAttributes]”,”symbolLocation”:2182,”imageIndex”:23},{“imageOffset”:3427597,”symbol”:”-[NSPrintInfo(NSInternal) _printSettingsForGetting]”,”symbolLocation”:48,”imageIndex”:23},{“imageOffset”:598308,”imageIndex”:2}]},{“id”:21859358,”name”:”com.apple.rosetta.exceptionserver”,”threadState”:{“flavor”:”x86_THREAD_STATE”,”rbp”:{“value”:34097745362944},”r12″:{“value”:140705863720512},”rosetta”:{“tmp2”:{“value”:0},”tmp1″:{“value”:4462471092527},”tmp0″:{“value”:10337986281472}},”rbx”:{“value”:4462471092527},”r8″:{“value”:7939},”r15″:{“value”:4898951168},”r10″:{“value”:15586436317184},”rdx”:{“value”:0},”rdi”:{“value”:0},”r9″:{“value”:0},”r13″:{“value”:4483980160},”rflags”:{“value”:582},”rax”:{“value”:268451845},”rsp”:{“value”:10337986281472},”r11″:{“value”:13026562040},”rcx”:{“value”:17314086914},”r14″:{“value”:140705863720520},”rsi”:{“value”:2616}},”frames”:[{“imageOffset”:17044,”imageIndex”:17}]},{“id”:21859369,”frames”:[{“imageOffset”:141644,”imageIndex”:17}],”threadState”:{“flavor”:”x86_THREAD_STATE”,”rbp”:{“value”:18446744073709551615},”r12″:{“value”:0},”rosetta”:{“tmp2”:{“value”:0},”tmp1″:{“value”:0},”tmp0″:{“value”:0}},”rbx”:{“value”:0},”r8″:{“value”:0},”r15″:{“value”:0},”r10″:{“value”:0},”rdx”:{“value”:13034950656},”rdi”:{“value”:0},”r9″:{“value”:0},”r13″:{“value”:0},”rflags”:{“value”:531},”rax”:{“value”:13035487232},”rsp”:{“value”:409604},”r11″:{“value”:0},”rcx”:{“value”:4355},”r14″:{“value”:0},”rsi”:{“value”:0}}},{“id”:21859370,”frames”:[{“imageOffset”:141644,”imageIndex”:17}],”threadState”:{“flavor”:”x86_THREAD_STATE”,”rbp”:{“value”:18446744073709551615},”r12″:{“value”:0},”rosetta”:{“tmp2”:{“value”:0},”tmp1″:{“value”:0},”tmp0″:{“value”:0}},”rbx”:{“value”:0},”r8″:{“value”:0},”r15″:{“value”:0},”r10″:{“value”:0},”rdx”:{“value”:13035507712},”rdi”:{“value”:0},”r9″:{“value”:0},”r13″:{“value”:0},”rflags”:{“value”:531},”rax”:{“value”:13036044288},”rsp”:{“value”:409604},”r11″:{“value”:0},”rcx”:{“value”:9731},”r14″:{“value”:0},”rsi”:{“value”:0}}},{“id”:21859422,”frames”:[{“imageOffset”:141644,”imageIndex”:17}],”threadState”:{“flavor”:”x86_THREAD_STATE”,”rbp”:{“value”:18446744073709551615},”r12″:{“value”:0},”rosetta”:{“tmp2”:{“value”:0},”tmp1″:{“value”:0},”tmp0″:{“value”:0}},”rbx”:{“value”:0},”r8″:{“value”:0},”r15″:{“value”:0},”r10″:{“value”:0},”rdx”:{“value”:13037178880},”rdi”:{“value”:0},”r9″:{“value”:0},”r13″:{“value”:0},”rflags”:{“value”:531},”rax”:{“value”:13037715456},”rsp”:{“value”:409604},”r11″:{“value”:0},”rcx”:{“value”:59395},”r14″:{“value”:0},”rsi”:{“value”:0}}},{“id”:21859425,”threadState”:{“flavor”:”x86_THREAD_STATE”,”rbp”:{“value”:239706419757056},”r12″:{“value”:0},”rosetta”:{“tmp2”:{“value”:140703436578362},”tmp1″:{“value”:140705858464616},”tmp0″:{“value”:18446744073709551615}},”rbx”:{“value”:140703128759811},”r8″:{“value”:105553179687936},”r15″:{“value”:239706419757056},”r10″:{“value”:140703128759811},”rdx”:{“value”:153910336},”rdi”:{“value”:0},”r9″:{“value”:239706419757056},”r13″:{“value”:17297326606},”rflags”:{“value”:643},”rax”:{“value”:268451845},”rsp”:{“value”:105553179687936},”r11″:{“value”:16384},”rcx”:{“value”:17297326606},”r14″:{“value”:16384},”rsi”:{“value”:16384}},”queue”:”com.apple.root.default-qos”,”frames”:[{“imageOffset”:140705858464376,”imageIndex”:24},{“imageOffset”:6702,”symbol”:”mach_msg2_trap”,”symbolLocation”:10,”imageIndex”:25},{“imageOffset”:65082,”symbol”:”mach_msg2_internal”,”symbolLocation”:84,”imageIndex”:25},{“imageOffset”:35682,”symbol”:”mach_msg_overwrite”,”symbolLocation”:653,”imageIndex”:25},{“imageOffset”:7455,”symbol”:”mach_msg”,”symbolLocation”:19,”imageIndex”:25},{“imageOffset”:110119,”symbol”:”_dispatch_mach_send_and_wait_for_reply”,”symbolLocation”:521,”imageIndex”:26},{“imageOffset”:111147,”symbol”:”dispatch_mach_send_with_result_and_wait_for_reply”,”symbolLocation”:50,”imageIndex”:26},{“imageOffset”:46483,”symbol”:”xpc_connection_send_message_with_reply_sync”,”symbolLocation”:261,”imageIndex”:27},{“imageOffset”:16365,”symbol”:”printToolAgent”,”symbolLocation”:119,”imageIndex”:22},{“imageOffset”:275426,”symbol”:”PJCPrinterCopyPrinterInfoDictionary”,”symbolLocation”:134,”imageIndex”:22},{“imageOffset”:88911,”imageIndex”:2},{“imageOffset”:8934,”symbol”:”_dispatch_call_block_and_release”,”symbolLocation”:12,”imageIndex”:26},{“imageOffset”:13722,”symbol”:”_dispatch_client_callout”,”symbolLocation”:8,”imageIndex”:26},{“imageOffset”:23994,”symbol”:”_dispatch_queue_override_invoke”,”symbolLocation”:977,”imageIndex”:26},{“imageOffset”:75638,”symbol”:”_dispatch_root_queue_drain”,”symbolLocation”:328,”imageIndex”:26},{“imageOffset”:77602,”symbol”:”_dispatch_worker_thread2″,”symbolLocation”:152,”imageIndex”:26},{“imageOffset”:11270,”symbol”:”_pthread_wqthread”,”symbolLocation”:262,”imageIndex”:20},{“imageOffset”:7063,”symbol”:”start_wqthread”,”symbolLocation”:15,”imageIndex”:20}]},{“id”:21859426,”frames”:[{“imageOffset”:141644,”imageIndex”:17}],”threadState”:{“flavor”:”x86_THREAD_STATE”,”rbp”:{“value”:18446744073709551615},”r12″:{“value”:0},”rosetta”:{“tmp2”:{“value”:0},”tmp1″:{“value”:0},”tmp0″:{“value”:0}},”rbx”:{“value”:0},”r8″:{“value”:0},”r15″:{“value”:0},”r10″:{“value”:0},”rdx”:{“value”:13038850048},”rdi”:{“value”:0},”r9″:{“value”:0},”r13″:{“value”:0},”rflags”:{“value”:531},”rax”:{“value”:13039386624},”rsp”:{“value”:409604},”r11″:{“value”:0},”rcx”:{“value”:57603},”r14″:{“value”:0},”rsi”:{“value”:0}}},{“id”:21859428,”frames”:[{“imageOffset”:141644,”imageIndex”:17}],”threadState”:{“flavor”:”x86_THREAD_STATE”,”rbp”:{“value”:18446744073709551615},”r12″:{“value”:0},”rosetta”:{“tmp2”:{“value”:0},”tmp1″:{“value”:0},”tmp0″:{“value”:0}},”rbx”:{“value”:0},”r8″:{“value”:0},”r15″:{“value”:0},”r10″:{“value”:0},”rdx”:{“value”:13039407104},”rdi”:{“value”:0},”r9″:{“value”:0},”r13″:{“value”:0},”rflags”:{“value”:531},”rax”:{“value”:13039943680},”rsp”:{“value”:409604},”r11″:{“value”:0},”rcx”:{“value”:52995},”r14″:{“value”:0},”rsi”:{“value”:0}}},{“id”:21859436,”frames”:[{“imageOffset”:141644,”imageIndex”:17}],”threadState”:{“flavor”:”x86_THREAD_STATE”,”rbp”:{“value”:18446744073709551615},”r12″:{“value”:0},”rosetta”:{“tmp2”:{“value”:0},”tmp1″:{“value”:0},”tmp0″:{“value”:0}},”rbx”:{“value”:0},”r8″:{“value”:0},”r15″:{“value”:0},”r10″:{“value”:0},”rdx”:{“value”:13040521216},”rdi”:{“value”:0},”r9″:{“value”:0},”r13″:{“value”:0},”rflags”:{“value”:531},”rax”:{“value”:13041057792},”rsp”:{“value”:409604},”r11″:{“value”:0},”rcx”:{“value”:86531},”r14″:{“value”:0},”rsi”:{“value”:0}}},{“id”:21859438,”frames”:[{“imageOffset”:141644,”imageIndex”:17}],”threadState”:{“flavor”:”x86_THREAD_STATE”,”rbp”:{“value”:18446744073709551615},”r12″:{“value”:0},”rosetta”:{“tmp2”:{“value”:0},”tmp1″:{“value”:0},”tmp0″:{“value”:0}},”rbx”:{“value”:0},”r8″:{“value”:0},”r15″:{“value”:0},”r10″:{“value”:0},”rdx”:{“value”:13041078272},”rdi”:{“value”:0},”r9″:{“value”:0},”r13″:{“value”:0},”rflags”:{“value”:531},”rax”:{“value”:13041614848},”rsp”:{“value”:409604},”r11″:{“value”:0},”rcx”:{“value”:67075},”r14″:{“value”:0},”rsi”:{“value”:0}}},{“id”:21859478,”name”:”com.apple.NSEventThread”,”threadState”:{“flavor”:”x86_THREAD_STATE”,”rbp”:{“value”:321070280212480},”r12″:{“value”:4294967295},”rosetta”:{“tmp2”:{“value”:140703436578362},”tmp1″:{“value”:140705858464616},”tmp0″:{“value”:18446744073709551615}},”rbx”:{“value”:321070280212480},”r8″:{“value”:0},”r15″:{“value”:321070280212480},”r10″:{“value”:321070280212480},”rdx”:{“value”:8589934592},”rdi”:{“value”:4294967295},”r9″:{“value”:321070280212480},”r13″:{“value”:21592279046},”rflags”:{“value”:643},”rax”:{“value”:268451845},”rsp”:{“value”:0},”r11″:{“value”:0},”rcx”:{“value”:21592279046},”r14″:{“value”:2},”rsi”:{“value”:2}},”frames”:[{“imageOffset”:140705858464376,”imageIndex”:24},{“imageOffset”:6702,”symbol”:”mach_msg2_trap”,”symbolLocation”:10,”imageIndex”:25},{“imageOffset”:65082,”symbol”:”mach_msg2_internal”,”symbolLocation”:84,”imageIndex”:25},{“imageOffset”:35682,”symbol”:”mach_msg_overwrite”,”symbolLocation”:653,”imageIndex”:25},{“imageOffset”:7455,”symbol”:”mach_msg”,”symbolLocation”:19,”imageIndex”:25},{“imageOffset”:510217,”symbol”:”__CFRunLoopServiceMachPort”,”symbolLocation”:143,”imageIndex”:21},{“imageOffset”:504700,”symbol”:”__CFRunLoopRun”,”symbolLocation”:1371,”imageIndex”:21},{“imageOffset”:501849,”symbol”:”CFRunLoopRunSpecific”,”symbolLocation”:557,”imageIndex”:21},{“imageOffset”:1687468,”symbol”:”_NSEventThread”,”symbolLocation”:122,”imageIndex”:23},{“imageOffset”:25090,”symbol”:”_pthread_start”,”symbolLocation”:99,”imageIndex”:20},{“imageOffset”:7083,”symbol”:”thread_start”,”symbolLocation”:15,”imageIndex”:20}]},{“id”:21859518,”name”:”CouchbaseLite”,”threadState”:{“flavor”:”x86_THREAD_STATE”,”rbp”:{“value”:542072117395456},”r12″:{“value”:4294967295},”rosetta”:{“tmp2”:{“value”:140703436578362},”tmp1″:{“value”:140705858464616},”tmp0″:{“value”:18446744073709551615}},”rbx”:{“value”:542072117395456},”r8″:{“value”:0},”r15″:{“value”:542072117395456},”r10″:{“value”:542072117395456},”rdx”:{“value”:8589934592},”rdi”:{“value”:4294967295},”r9″:{“value”:542072117395456},”r13″:{“value”:21592279046},”rflags”:{“value”:643},”rax”:{“value”:268451845},”rsp”:{“value”:0},”r11″:{“value”:0},”rcx”:{“value”:21592279046},”r14″:{“value”:2},”rsi”:{“value”:2}},”frames”:[{“imageOffset”:140705858464376,”imageIndex”:24},{“imageOffset”:6702,”symbol”:”mach_msg2_trap”,”symbolLocation”:10,”imageIndex”:25},{“imageOffset”:65082,”symbol”:”mach_msg2_internal”,”symbolLocation”:84,”imageIndex”:25},{“imageOffset”:35682,”symbol”:”mach_msg_overwrite”,”symbolLocation”:653,”imageIndex”:25},{“imageOffset”:7455,”symbol”:”mach_msg”,”symbolLocation”:19,”imageIndex”:25},{“imageOffset”:510217,”symbol”:”__CFRunLoopServiceMachPort”,”symbolLocation”:143,”imageIndex”:21},{“imageOffset”:504700,”symbol”:”__CFRunLoopRun”,”symbolLocation”:1371,”imageIndex”:21},{“imageOffset”:501849,”symbol”:”CFRunLoopRunSpecific”,”symbolLocation”:557,”imageIndex”:21},{“imageOffset”:377985,”symbol”:”-[NSRunLoop(NSRunLoop) runMode:beforeDate:]”,”symbolLocation”:216,”imageIndex”:28},{“imageOffset”:672816,”symbol”:”-[CBL_RunLoopServer runServerThread]”,”symbolLocation”:321,”imageIndex”:11},{“imageOffset”:350092,”symbol”:”__NSThread__start__”,”symbolLocation”:1013,”imageIndex”:28},{“imageOffset”:25090,”symbol”:”_pthread_start”,”symbolLocation”:99,”imageIndex”:20},{“imageOffset”:7083,”symbol”:”thread_start”,”symbolLocation”:15,”imageIndex”:20}]},{“id”:21859520,”frames”:[{“imageOffset”:140705858464376,”imageIndex”:24},{“imageOffset”:6702,”symbol”:”mach_msg2_trap”,”symbolLocation”:10,”imageIndex”:25},{“imageOffset”:65082,”symbol”:”mach_msg2_internal”,”symbolLocation”:84,”imageIndex”:25},{“imageOffset”:35682,”symbol”:”mach_msg_overwrite”,”symbolLocation”:653,”imageIndex”:25},{“imageOffset”:7455,”symbol”:”mach_msg”,”symbolLocation”:19,”imageIndex”:25},{“imageOffset”:510217,”symbol”:”__CFRunLoopServiceMachPort”,”symbolLocation”:143,”imageIndex”:21},{“imageOffset”:504700,”symbol”:”__CFRunLoopRun”,”symbolLocation”:1371,”imageIndex”:21},{“imageOffset”:501849,”symbol”:”CFRunLoopRunSpecific”,”symbolLocation”:557,”imageIndex”:21},{“imageOffset”:377985,”symbol”:”-[NSRunLoop(NSRunLoop) runMode:beforeDate:]”,”symbolLocation”:216,”imageIndex”:28},{“imageOffset”:910187,”symbol”:”-[NSRunLoop(NSRunLoop) run]”,”symbolLocation”:76,”imageIndex”:28},{“imageOffset”:210354,”symbol”:”+[CBL_HTTPServer bonjourThread]”,”symbolLocation”:226,”imageIndex”:13},{“imageOffset”:350092,”symbol”:”__NSThread__start__”,”symbolLocation”:1013,”imageIndex”:28},{“imageOffset”:25090,”symbol”:”_pthread_start”,”symbolLocation”:99,”imageIndex”:20},{“imageOffset”:7083,”symbol”:”thread_start”,”symbolLocation”:15,”imageIndex”:20}],”threadState”:{“flavor”:”x86_THREAD_STATE”,”rbp”:{“value”:403533652295680},”r12″:{“value”:4294967295},”rosetta”:{“tmp2”:{“value”:140703436578362},”tmp1″:{“value”:140705858464616},”tmp0″:{“value”:18446744073709551615}},”rbx”:{“value”:403533652295680},”r8″:{“value”:5},”r15″:{“value”:403533652295680},”r10″:{“value”:403533652295680},”rdx”:{“value”:8589934592},”rdi”:{“value”:4294967295},”r9″:{“value”:403533652295680},”r13″:{“value”:21592279046},”rflags”:{“value”:643},”rax”:{“value”:268451845},”rsp”:{“value”:5},”r11″:{“value”:0},”rcx”:{“value”:21592279046},”r14″:{“value”:2},”rsi”:{“value”:2}}},{“id”:21859521,”name”:”com.apple.CFSocket.private”,”threadState”:{“flavor”:”x86_THREAD_STATE”,”rbp”:{“value”:0},”r12″:{“value”:1},”rosetta”:{“tmp2”:{“value”:140703436556564},”tmp1″:{“value”:140705858464332},”tmp0″:{“value”:18446744073709551615}},”rbx”:{“value”:0},”r8″:{“value”:0},”r15″:{“value”:105553143918656},”r10″:{“value”:0},”rdx”:{“value”:105553143916448},”rdi”:{“value”:0},”r9″:{“value”:0},”r13″:{“value”:140704506298560,”symbolLocation”:0,”symbol”:”__kCFNull”},”rflags”:{“value”:642},”rax”:{“value”:4},”rsp”:{“value”:0},”r11″:{“value”:140703437414875,”symbolLocation”:0,”symbol”:”-[__NSCFArray objectAtIndex:]”},”rcx”:{“value”:0},”r14″:{“value”:105553140786560},”rsi”:{“value”:0}},”frames”:[{“imageOffset”:140705858464376,”imageIndex”:24},{“imageOffset”:43294,”symbol”:”__select”,”symbolLocation”:10,”imageIndex”:25},{“imageOffset”:672879,”symbol”:”__CFSocketManager”,”symbolLocation”:637,”imageIndex”:21},{“imageOffset”:25090,”symbol”:”_pthread_start”,”symbolLocation”:99,”imageIndex”:20},{“imageOffset”:7083,”symbol”:”thread_start”,”symbolLocation”:15,”imageIndex”:20}]},{“id”:21859523,”name”:”JavaScriptCore libpas scavenger”,”threadState”:{“flavor”:”x86_THREAD_STATE”,”rbp”:{“value”:160},”r12″:{“value”:999995016},”rosetta”:{“tmp2”:{“value”:140703436531140},”tmp1″:{“value”:140705858464332},”tmp0″:{“value”:18446744073709551615}},”rbx”:{“value”:0},”r8″:{“value”:140703436788173,”symbolLocation”:0,”symbol”:”_pthread_psynch_cond_cleanup”},”r15″:{“value”:0},”r10″:{“value”:0},”rdx”:{“value”:0},”rdi”:{“value”:999995016},”r9″:{“value”:160},”r13″:{“value”:12098922875904},”rflags”:{“value”:658},”rax”:{“value”:260},”rsp”:{“value”:0},”r11″:{“value”:0},”rcx”:{“value”:0},”r14″:{“value”:13044297728},”rsi”:{“value”:9}},”frames”:[{“imageOffset”:140705858464376,”imageIndex”:24},{“imageOffset”:17870,”symbol”:”__psynch_cvwait”,”symbolLocation”:10,”imageIndex”:25},{“imageOffset”:26475,”symbol”:”_pthread_cond_wait”,”symbolLocation”:1211,”imageIndex”:20},{“imageOffset”:27046437,”symbol”:”scavenger_thread_main”,”symbolLocation”:1541,”imageIndex”:29},{“imageOffset”:25090,”symbol”:”_pthread_start”,”symbolLocation”:99,”imageIndex”:20},{“imageOffset”:7083,”symbol”:”thread_start”,”symbolLocation”:15,”imageIndex”:20}]},{“id”:21859670,”frames”:[{“imageOffset”:141644,”imageIndex”:17}],”threadState”:{“flavor”:”x86_THREAD_STATE”,”rbp”:{“value”:18446744073709551615},”r12″:{“value”:0},”rosetta”:{“tmp2”:{“value”:0},”tmp1″:{“value”:0},”tmp0″:{“value”:0}},”rbx”:{“value”:0},”r8″:{“value”:0},”r15″:{“value”:0},”r10″:{“value”:0},”rdx”:{“value”:13036064768},”rdi”:{“value”:0},”r9″:{“value”:0},”r13″:{“value”:0},”rflags”:{“value”:531},”rax”:{“value”:13036601344},”rsp”:{“value”:409604},”r11″:{“value”:0},”rcx”:{“value”:254227},”r14″:{“value”:0},”rsi”:{“value”:0}}}],
      “usedImages” : [
      {
        “source” : “P”,
        “arch” : “x86_64”,
        “base” : 8635174912,
        “size” : 655360,
        “uuid” : “ab17bf63-259b-3b48-8d70-863166a2191c”,
        “path” : “\/usr\/lib\/dyld”,
        “name” : “dyld”
      },
      {
        “source” : “P”,
        “arch” : “x86_64”,
        “base” : 4966850560,
        “CFBundleShortVersionString” : “19”,
        “CFBundleIdentifier” : “com.apple.print.PrintingCocoaPDEs”,
        “size” : 65536,
        “uuid” : “ccdd2ba8-0cb1-312f-b749-0c430e17616f”,
        “path” : “\/System\/Library\/PrivateFrameworks\/PrintingPrivate.framework\/Versions\/A\/Plugins\/PrintingCocoaPDEs.bundle\/Contents\/MacOS\/PrintingCocoaPDEs”,
        “name” : “PrintingCocoaPDEs”,
        “CFBundleVersion” : “699.1”
      },
      {
        “source” : “P”,
        “arch” : “x86_64”,
        “base” : 4964114432,
        “CFBundleShortVersionString” : “1.0”,
        “CFBundleIdentifier” : “com.apple.printing.private.PrintingUI”,
        “size” : 802816,
        “uuid” : “a0326539-43ee-3971-8c0b-19dcd768ac21”,
        “path” : “\/System\/Library\/PrivateFrameworks\/PrintingPrivate.framework\/Versions\/A\/Plugins\/PrintingUI.bundle\/Contents\/MacOS\/PrintingUI”,
        “name” : “PrintingUI”,
        “CFBundleVersion” : “699.1”
      },
      {
        “source” : “P”,
        “arch” : “x86_64”,
        “base” : 4492972032,
        “CFBundleShortVersionString” : “1.0”,
        “CFBundleIdentifier” : “com.apple.icloud.drive.fileprovider.override”,
        “size” : 16384,
        “uuid” : “d8889fe2-0bff-355c-aef5-8029f21da9cd”,
        “path” : “\/System\/Library\/Frameworks\/FileProvider.framework\/OverrideBundles\/iCloudDriveFileProviderOverride.bundle\/Contents\/MacOS\/iCloudDriveFileProviderOverride”,
        “name” : “iCloudDriveFileProviderOverride”,
        “CFBundleVersion” : “2461.61.2”
      },
      {
        “source” : “P”,
        “arch” : “x86_64”,
        “base” : 4702826496,
        “CFBundleShortVersionString” : “14.2”,
        “CFBundleIdentifier” : “com.apple.findersync.fileprovideroverride.FinderSyncCollaborationFileProviderOverride”,
        “size” : 114688,
        “uuid” : “a63c0dca-a9d9-3e8c-9efe-2c4585325f91”,
        “path” : “\/System\/Library\/Frameworks\/FileProvider.framework\/OverrideBundles\/FinderSyncCollaborationFileProviderOverride.bundle\/Contents\/MacOS\/FinderSyncCollaborationFileProviderOverride”,
        “name” : “FinderSyncCollaborationFileProviderOverride”,
        “CFBundleVersion” : “1630.2.4”
      },
      {
        “source” : “P”,
        “arch” : “x86_64”,
        “base” : 4497997824,
        “CFBundleShortVersionString” : “1703.61.4”,
        “CFBundleIdentifier” : “com.apple.FileProviderOverride”,
        “size” : 32768,
        “uuid” : “7505780c-f632-3660-b74f-7b095e716d38”,
        “path” : “\/System\/Library\/Frameworks\/FileProvider.framework\/OverrideBundles\/FileProviderOverride.bundle\/Contents\/MacOS\/FileProviderOverride”,
        “name” : “FileProviderOverride”,
        “CFBundleVersion” : “1703.61.4”
      },
      {
        “source” : “P”,
        “arch” : “x86_64”,
        “base” : 4495306752,
        “CFBundleShortVersionString” : “3.0”,
        “CFBundleIdentifier” : “com.apple.security.csparser”,
        “size” : 98304,
        “uuid” : “efd1144a-2484-312e-bae6-c7a6d935b14b”,
        “path” : “\/System\/Library\/Frameworks\/Security.framework\/Versions\/A\/PlugIns\/csparser.bundle\/Contents\/MacOS\/csparser”,
        “name” : “csparser”,
        “CFBundleVersion” : “61040.61.2”
      },
      {
        “source” : “P”,
        “arch” : “x86_64”,
        “base” : 4491390976,
        “size” : 65536,
        “uuid” : “c35523ac-5fc8-3185-b4fb-28be5af3f218”,
        “path” : “\/usr\/lib\/libobjc-trampolines.dylib”,
        “name” : “libobjc-trampolines.dylib”
      },
      {
        “source” : “P”,
        “arch” : “x86_64”,
        “base” : 4493590528,
        “CFBundleShortVersionString” : “5.3.37”,
        “CFBundleIdentifier” : “org.cocoapods.FMDB”,
        “size” : 65536,
        “uuid” : “e0142d06-4f0f-380c-8d39-e1146641604b”,
        “path” : “\/Applications\/Tap Forms 5.app\/Contents\/Frameworks\/FMDB.framework\/Versions\/A\/FMDB”,
        “name” : “FMDB”,
        “CFBundleVersion” : “1041”
      },
      {
        “source” : “P”,
        “arch” : “x86_64”,
        “base” : 4493910016,
        “CFBundleShortVersionString” : “5.3.37”,
        “CFBundleIdentifier” : “org.cocoapods.JLRoutes”,
        “size” : 49152,
        “uuid” : “3b5ff974-3314-3d82-9a08-1bf50a2e6cf5”,
        “path” : “\/Applications\/Tap Forms 5.app\/Contents\/Frameworks\/JLRoutes.framework\/Versions\/A\/JLRoutes”,
        “name” : “JLRoutes”,
        “CFBundleVersion” : “1041”
      },
      {
        “source” : “P”,
        “arch” : “x86_64”,
        “base” : 4494766080,
        “CFBundleShortVersionString” : “5.3.37”,
        “CFBundleIdentifier” : “com.kulakov.ShortcutRecorder”,
        “size” : 65536,
        “uuid” : “1a8a345d-eafe-32eb-a307-7f45ce9945dc”,
        “path” : “\/Applications\/Tap Forms 5.app\/Contents\/Frameworks\/ShortcutRecorder.framework\/Versions\/A\/ShortcutRecorder”,
        “name” : “ShortcutRecorder”,
        “CFBundleVersion” : “1041”
      },
      {
        “source” : “P”,
        “arch” : “x86_64”,
        “base” : 4498538496,
        “CFBundleShortVersionString” : “5.3.37”,
        “CFBundleIdentifier” : “com.couchbase.CouchbaseLite”,
        “size” : 2392064,
        “uuid” : “a9350f38-d483-3902-bb20-7c6a305b87e4”,
        “path” : “\/Applications\/Tap Forms 5.app\/Contents\/Frameworks\/CouchbaseLite.framework\/Versions\/A\/CouchbaseLite”,
        “name” : “CouchbaseLite”,
        “CFBundleVersion” : “1041”
      },
      {
        “source” : “P”,
        “arch” : “x86_64”,
        “base” : 4506931200,
        “CFBundleShortVersionString” : “5.3.37”,
        “CFBundleIdentifier” : “com.tapzapp.TFCoreMac”,
        “size” : 1015808,
        “uuid” : “2114417e-8fcc-313a-8db4-bbe56a330b87”,
        “path” : “\/Applications\/Tap Forms 5.app\/Contents\/Frameworks\/TFCoreMac.framework\/Versions\/A\/TFCoreMac”,
        “name” : “TFCoreMac”,
        “CFBundleVersion” : “1041”
      },
      {
        “source” : “P”,
        “arch” : “x86_64”,
        “base” : 4495765504,
        “CFBundleShortVersionString” : “5.3.37”,
        “CFBundleIdentifier” : “com.couchbase.CouchbaseLiteListener”,
        “size” : 479232,
        “uuid” : “d665b8d9-4c5c-3a89-8aae-83889fb3b402”,
        “path” : “\/Applications\/Tap Forms 5.app\/Contents\/Frameworks\/CouchbaseLiteListener.framework\/Versions\/A\/CouchbaseLiteListener”,
        “name” : “CouchbaseLiteListener”,
        “CFBundleVersion” : “1041”
      },
      {
        “source” : “P”,
        “arch” : “x86_64”,
        “base” : 4515581952,
        “CFBundleShortVersionString” : “5.3.37”,
        “CFBundleIdentifier” : “com.dcg.Charts”,
        “size” : 1572864,
        “uuid” : “da69913f-336d-3aa3-b6c7-741a34153ead”,
        “path” : “\/Applications\/Tap Forms 5.app\/Contents\/Frameworks\/Charts.framework\/Versions\/A\/Charts”,
        “name” : “Charts”,
        “CFBundleVersion” : “1041”
      },
      {
        “source” : “P”,
        “arch” : “x86_64”,
        “base” : 4511002624,
        “CFBundleShortVersionString” : “5.3.37”,
        “CFBundleIdentifier” : “com.downMarkdown.Down”,
        “size” : 311296,
        “uuid” : “e45eaa6e-b6cd-3ff6-b30a-bf3232af5e33”,
        “path” : “\/Applications\/Tap Forms 5.app\/Contents\/Frameworks\/Down.framework\/Versions\/A\/Down”,
        “name” : “Down”,
        “CFBundleVersion” : “1041”
      },
      {
        “source” : “P”,
        “arch” : “x86_64”,
        “base” : 4497469440,
        “CFBundleShortVersionString” : “5.3.37”,
        “CFBundleIdentifier” : “com.abbey-code.UnzipKit”,
        “size” : 147456,
        “uuid” : “1231d1ab-c8ea-348d-851c-d3448c862fcc”,
        “path” : “\/Applications\/Tap Forms 5.app\/Contents\/Frameworks\/UnzipKit.framework\/Versions\/A\/UnzipKit”,
        “name” : “UnzipKit”,
        “CFBundleVersion” : “1041”
      },
      {
        “source” : “P”,
        “arch” : “arm64”,
        “base” : 140703127564288,
        “size” : 196608,
        “uuid” : “c4c97159-5c72-3e75-ba2d-d6ca98ea626f”,
        “path” : “\/usr\/libexec\/rosetta\/runtime”,
        “name” : “runtime”
      },
      {
        “source” : “P”,
        “arch” : “arm64”,
        “base” : 4483563520,
        “size” : 344064,
        “uuid” : “7af8ba1e-5c4d-393d-99cd-92566f60c450”,
        “path” : “\/Library\/Apple\/*\/libRosettaRuntime”,
        “name” : “libRosettaRuntime”
      },
      {
        “source” : “P”,
        “arch” : “x86_64”,
        “base” : 4331569152,
        “CFBundleShortVersionString” : “5.3.37”,
        “CFBundleIdentifier” : “com.tapzapp.tapforms-mac”,
        “size” : 5111808,
        “uuid” : “aab25a3b-d21d-3cb4-9caa-452257a3abe8”,
        “path” : “\/Applications\/Tap Forms 5.app\/Contents\/MacOS\/Tap Forms 5”,
        “name” : “Tap Forms 5”,
        “CFBundleVersion” : “1041”
      },
      {
        “source” : “P”,
        “arch” : “x86_64”,
        “base” : 140703436754944,
        “size” : 49152,
        “uuid” : “a9ba8a53-d774-3fe9-8bde-64187bff7ea9”,
        “path” : “\/usr\/lib\/system\/libsystem_pthread.dylib”,
        “name” : “libsystem_pthread.dylib”
      },
      {
        “source” : “P”,
        “arch” : “x86_64”,
        “base” : 140703437172736,
        “CFBundleShortVersionString” : “6.9”,
        “CFBundleIdentifier” : “com.apple.CoreFoundation”,
        “size” : 4825085,
        “uuid” : “fd59424c-be72-3201-b98c-0421b284ffbb”,
        “path” : “\/System\/Library\/Frameworks\/CoreFoundation.framework\/Versions\/A\/CoreFoundation”,
        “name” : “CoreFoundation”,
        “CFBundleVersion” : “2202”
      },
      {
        “source” : “P”,
        “arch” : “x86_64”,
        “base” : 140703703642112,
        “CFBundleShortVersionString” : “19”,
        “CFBundleIdentifier” : “com.apple.print.framework.PrintCore”,
        “size” : 475133,
        “uuid” : “885b04be-c0b0-30c8-962d-d2ea5ef030ac”,
        “path” : “\/System\/Library\/Frameworks\/ApplicationServices.framework\/Versions\/A\/Frameworks\/PrintCore.framework\/Versions\/A\/PrintCore”,
        “name” : “PrintCore”,
        “CFBundleVersion” : “582.1”
      },
      {
        “source” : “P”,
        “arch” : “x86_64”,
        “base” : 140703493451776,
        “CFBundleShortVersionString” : “6.9”,
        “CFBundleIdentifier” : “com.apple.AppKit”,
        “size” : 21024764,
        “uuid” : “20292f0b-3eb2-3566-91e2-ea657457d71d”,
        “path” : “\/System\/Library\/Frameworks\/AppKit.framework\/Versions\/C\/AppKit”,
        “name” : “AppKit”,
        “CFBundleVersion” : “2487.30.108”
      },
      {
        “size” : 0,
        “source” : “A”,
        “base” : 0,
        “uuid” : “00000000-0000-0000-0000-000000000000”
      },
      {
        “source” : “P”,
        “arch” : “x86_64”,
        “base” : 140703436513280,
        “size” : 241656,
        “uuid” : “9927a0a9-dfa8-3ffa-88d8-62055f37a137”,
        “path” : “\/usr\/lib\/system\/libsystem_kernel.dylib”,
        “name” : “libsystem_kernel.dylib”
      },
      {
        “source” : “P”,
        “arch” : “x86_64”,
        “base” : 140703435030528,
        “size” : 290814,
        “uuid” : “895cad19-704c-3ff8-b148-23689a163b12”,
        “path” : “\/usr\/lib\/system\/libdispatch.dylib”,
        “name” : “libdispatch.dylib”
      },
      {
        “source” : “P”,
        “arch” : “x86_64”,
        “base” : 140703433699328,
        “size” : 278515,
        “uuid” : “6f11e645-db1c-325d-ac28-91740663e4dd”,
        “path” : “\/usr\/lib\/system\/libxpc.dylib”,
        “name” : “libxpc.dylib”
      },
      {
        “source” : “P”,
        “arch” : “x86_64”,
        “base” : 140703453007872,
        “CFBundleShortVersionString” : “6.9”,
        “CFBundleIdentifier” : “com.apple.Foundation”,
        “size” : 12812276,
        “uuid” : “3e371a1d-63d5-3286-a66a-b47b0f8a09a0”,
        “path” : “\/System\/Library\/Frameworks\/Foundation.framework\/Versions\/C\/Foundation”,
        “name” : “Foundation”,
        “CFBundleVersion” : “2202”
      },
      {
        “source” : “P”,
        “arch” : “x86_64”,
        “base” : 140703924727808,
        “CFBundleShortVersionString” : “19617”,
        “CFBundleIdentifier” : “com.apple.JavaScriptCore”,
        “size” : 28934027,
        “uuid” : “2dd789c6-8027-36b4-be9f-9a0c3458c694”,
        “path” : “\/System\/Library\/Frameworks\/JavaScriptCore.framework\/Versions\/A\/JavaScriptCore”,
        “name” : “JavaScriptCore”,
        “CFBundleVersion” : “19617.1.17.11.9”
      }
    ],
      “sharedCache” : {
      “base” : 140703432343552,
      “size” : 21474836480,
      “uuid” : “f472a7ec-2754-3135-aa13-6d6612d9e439”
    },
      “legacyInfo” : {
      “threadTriggered” : {
        “queue” : “com.apple.main-thread”
      }
    },
      “logWritingSignature” : “b0c059c539ad79c32df12688fbbe0531a0e11252”,
      “trialInfo” : {
      “rollouts” : [
        {
          “rolloutId” : “5ffde50ce2aacd000d47a95f”,
          “factorPackIds” : {
          },
          “deploymentId” : 240000361
        },
        {
          “rolloutId” : “639124e81d92412bfb4880b3”,
          “factorPackIds” : {
          },
          “deploymentId” : 240000012
        }
      ],
      “experiments” : [
        {
          “treatmentId” : “5d51a80d-93ec-47e1-9027-675002e78e4a”,
          “experimentId” : “6384d56b96e8d228551ec182”,
          “deploymentId” : 400000026
        }
      ]
    },
      “reportNotes” : [
      “PC register does not match crashing frame (0x0 vs 0x7FF8125DEBE7)”
    ]
    }
    Model: Macmini9,1, BootROM 10151.61.4, proc 8:4:4 processors, 8 GB, SMC
    Graphics: Apple M1, Apple M1, Built-In
    Display: KA272 A, 1920 x 1080 (1080p FHD – Full High Definition), Main, MirrorOff, Online
    Memory Module: LPDDR4, Hynix
    AirPort: spairport_wireless_card_type_wifi (0x14E4, 0x4378), wl0: Aug 26 2023 17:55:53 version 18.20.439.0.7.8.163 FWID 01-f9b9247b
    AirPort:
    Bluetooth: Version (null), 0 services, 0 devices, 0 incoming serial ports
    Network Service: Ethernet, Ethernet, en0
    Network Service: Wi-Fi, AirPort, en1
    USB Device: USB31Bus
    USB Device: USB3.1 Hub
    USB Device: RTL9210B-CG
    USB Device: USB3.0 Hub
    USB Device: ASM225
    USB Device: USB2.0 Hub
    USB Device: USB2.0 Hub
    USB Device: USB Billboard Device
    USB Device: USB31Bus
    USB Device: USB30Bus
    USB Device: USB3.1 Hub
    USB Device: USB2.1 Hub
    USB Device: Back-UPS CS 350 FW:805.q10 .D USB FW:q10
    USB Device: USB 2.0 Hub
    USB Device: USB NETVISTA FULL WIDTH KEYBOARD
    USB Device: USB Optical Mouse
    Thunderbolt Bus: Mac mini, Apple Inc.
    Thunderbolt Bus: Mac mini, Apple Inc.
    #50368

    In reply to: Change data in records

    Brendan
    Keymaster

    Hi Vaughan,

    The iOS version would need a script to do something like this. But if you have the Mac version, then Daniel’s suggestion is a good one. It also has a Fill Down function which does a similar function.

    But for a script to do it, you’d need to loop through all the records in the form, searching the field for the old value and then replace the value with the new value.

    There’s instructions on scripting here:

    https://www.tapforms.com/help-mac/5.3/en/topic/scripts

    It’s definitely easier to do this with the Mac version as Daniel suggested.

    Thanks,

    Brendan

    #50365
    Daniel Leu
    Participant

    I just tried with my own script and it works as expected:

    function Update_Table() {
    console.log("Add entry");
    const table_id = "fld-xxx";
    const table__date_id = "fld-xxx";
    const table__name_id = "fld-xxx";
    const name_id = "fld-xxx";
    const date_id = 'fld-xxx';
    let date = record.getFieldValue(date_id);
    console.log("   Date: " + date);
    let recTable = record.addNewRecordToField(table_id);
    recTable.setFieldValue(table__date_id, date);
    document.saveAllChanges();
    }
    Update_Table();
    Using double quotes prevents the field script to be executed.
    • This reply was modified 3 months, 2 weeks ago by Daniel Leu.
    #50358
    Ray Robillard
    Participant

    Ok, found the bug.  My initial script works perfectly.

    If you input the date manually (with the keyboard), the script is called twice.  If you use the date picker, however, it’s only executed once.

    Where do I file a bug report ?

     

Viewing 15 results - 31 through 45 (of 2,612 total)
 
Apple, the Apple logo, iPad, iPhone, and iPod touch are trademarks of Apple Inc., registered in the U.S. and other countries. App Store is a service mark of Apple Inc.