Print Word document to specific Printer and Printer Tray

Does GemBox.Document have the ability to set the Printer Tray when printing a document?

I want to silently print to Tray 1 when the Default Tray for the selected printer is Tray 2

The PrintTicket function does not work - doesn’t change to the Tray I want. The PrintCapabilities function gives me a completely different set of choices than when I use a PrintDocument.PrinterSettings enumeration.

Any suggestions? Does your plugin have the Printer Tray selection feature, that I missed in the documentation?

Hi Kim,

Unfortunately, the problem could (probably is) specific to the printer that’s used.
Just in case, have you tried using a different printer?

Setting the PrintTicket.InputBin property to InputBin enum value and then passing that PrintTicket to PrintOptions should work:

Dim document = DocumentModel.Load("sample file.docx")

Dim printTicket As New PrintTicket()
printTicket.InputBin = InputBin.Manual

' Create PrintOptions from PrintTicket XML stream.
Dim options As New PrintOptions(printTicket.GetXmlStream())

Dim printerName = "sample printer"
document.Print(printerName, options)

Regards,
Mario

Hi,

After further investigation, we came up with the following solution that you can try out.

The C# version:

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Printing;
using System.Xml;
using GemBox.Document;

static class Program
{
    static Program()
    {
        ComponentInfo.SetLicense("FREE-LIMITED-KEY");
    }

    static void Main()
    {
        // Get the dictionary of print queues that the print server hosts.
        var printQueues = WpfPrinterUtilities.GetPrintQueues();
        // Select the print queue.
        var printQueue = printQueues["HP Laserjet"];
        // Retrieve the dictionary of input bins from the print queue configuration.
        var inputBins = WpfPrinterUtilities.GetInputBins(printQueue);
        // Get the default print ticket associated with the print queue.
        var printTicket = printQueue.DefaultPrintTicket;
        // Modify a print ticket input bin value.
        printTicket = WpfPrinterUtilities.ModifyPrintTicket(printTicket, "psk:JobInputBin", inputBins["Tray 1"]);

        var document = DocumentModel.Load("Sample.docx");
        var options = new PrintOptions(printTicket.GetXmlStream());
        var printerName = "HP Laserjet";
        document.Print(printerName, options);
    }
}

public static class WpfPrinterUtilities
{
    /// <summary>
    /// Gets a dictionary of print queues where key is the print queue name, and value is the print queue object.
    /// </summary>
    /// <param name="printQueueTypes">EnumeratedPrintQueueTypes params array of the types of print queues being requested.</param>
    /// <returns>Dictionary of print queues where key is the print queue name, and value is the print queue object.</returns>
    public static Dictionary<string, PrintQueue> GetPrintQueues(params EnumeratedPrintQueueTypes[] printQueueTypes)
    {
        var server = new PrintServer();
        return server.GetPrintQueues(printQueueTypes).ToDictionary(pq => !string.IsNullOrEmpty(pq.ShareName) ? pq.ShareName : pq.Name);
    }

    /// <summary>
    /// Gets a dictionary of print queues where key is the print queue name, and value is the print queue object.
    /// </summary>
    /// <returns>Dictionary of print queues where key is the print queue name, and value is the print queue object.</returns>
    public static Dictionary<string, PrintQueue> GetPrintQueues()
    {
        var server = new PrintServer();
        return server.GetPrintQueues().ToDictionary(pq => !string.IsNullOrEmpty(pq.ShareName) ? pq.ShareName : pq.Name);
    }

    /// <summary>
    /// Reads print queue configuration xml to retrieve the current list of input bins.
    /// </summary>
    /// <param name="printQueue">The print queue to query.</param>
    /// <returns></returns>
    public static Dictionary<string, string> GetInputBins(PrintQueue printQueue)
    {
        Dictionary<string, string> inputBins = new Dictionary<string, string>();

        // Get the print queue PrintCapabilities.
        XmlDocument xmlDoc = new XmlDocument();
        using (MemoryStream stream = printQueue.GetPrintCapabilitiesAsXml())
            xmlDoc.Load(stream);

        // Read the JobInputBins out of the PrintCapabilities.

        // Create NamespaceManager and add PrintSchemaFrameWork-Namespace (should be on DocumentElement of the PrintTicket).
        // Prefix: psf NameSpace: xmlDoc.DocumentElement.NamespaceURI = "http://schemas.microsoft.com/windows/2003/08/printing/printschemaframework"
        XmlNamespaceManager manager = new XmlNamespaceManager(xmlDoc.NameTable);
        manager.AddNamespace(xmlDoc.DocumentElement.Prefix, xmlDoc.DocumentElement.NamespaceURI);

        // Select all job input bins.
        XmlNodeList nodeList = xmlDoc.SelectNodes("//psf:Feature[@name='psk:JobInputBin']/psf:Option/psf:Property", manager);

        // Load the Dictionary with the bin values and names. The names will be used to modify the print ticket if necessary.
        foreach (XmlNode node in nodeList)
            inputBins.Add(node.LastChild.InnerText, node.ParentNode.Attributes[0].Value);

        return inputBins;
    }

    /// <summary>
    /// Modifes a print ticket xml after updating a feature value.
    /// 
    /// Sample usage:
    /// Get Dictionary with Inputbins by calling the other method
    /// and get "value" for the desired inputbin you'd like to use...
    /// ...
    /// desiredTray is then something like "NS0000:SurpriseOption7" for example.
    /// defaultPrintTicket is the (Default)PrintTicket you want to modify from the PrintQueue for example
    /// PrintTicket myPrintTicket = WpfPrinterUtils.ModifyPrintTicket(defaultPrintTicket, "psk:JobInputBin", desiredTray);
    /// </summary>
    /// <param name="ticket"></param>
    /// <param name="featureName"></param>
    /// <param name="newValue"></param>
    /// <returns></returns>
    public static PrintTicket ModifyPrintTicket(PrintTicket ticket, string featureName, string newValue)
    {
        if (ticket == null)
            throw new ArgumentNullException("ticket");

        // Read Xml of the PrintTicket xml.
        XmlDocument xmlDoc = new XmlDocument();
        xmlDoc.Load(ticket.GetXmlStream());

        // Create NamespaceManager and add PrintSchemaFrameWork-Namespace hinzufugen (should be on DocumentElement of the PrintTicket).
        // Prefix: psf NameSpace: xmlDoc.DocumentElement.NamespaceURI = "http://schemas.microsoft.com/windows/2003/08/printing/printschemaframework"
        XmlNamespaceManager manager = new XmlNamespaceManager(xmlDoc.NameTable);
        manager.AddNamespace(xmlDoc.DocumentElement.Prefix, xmlDoc.DocumentElement.NamespaceURI);

        // Search node with desired feature we're looking for and set newValue for it
        string xpath = string.Format("//psf:Feature[@name='{0}']/psf:Option", featureName);
        XmlNode node = xmlDoc.SelectSingleNode(xpath, manager);
        if (node != null)
        {
            if (node.Attributes["name"].Value != newValue)
                node.Attributes["name"].Value = newValue;
        }

        // Create a new PrintTicket out of the XML.
        PrintTicket modifiedPrintTicket = null;
        using (MemoryStream stream = new MemoryStream())
        {
            xmlDoc.Save(stream);
            stream.Position = 0;
            modifiedPrintTicket = new PrintTicket(stream);
        }

        return modifiedPrintTicket;
    }
}

The VB.NET version:

Imports System
Imports System.Collections.Generic
Imports System.IO
Imports System.Linq
Imports System.Printing
Imports System.Xml
Imports GemBox.Document

Module Module1

    Sub New()
        ComponentInfo.SetLicense("FREE-LIMITED-KEY")
    End Sub

    Sub Main()

        ' Get the dictionary of print queues that the print server hosts.
        Dim printQueues = WpfPrinterUtilities.GetPrintQueues()
        ' Select the print queue.
        Dim printQueue = printQueues("HP Laserjet")
        ' Retrieve the dictionary of input bins from the print queue configuration.
        Dim inputBins = WpfPrinterUtilities.GetInputBins(printQueue)
        ' Get the default print ticket associated with the print queue.
        Dim printTicket = printQueue.DefaultPrintTicket
        ' Modify a print ticket input bin value.
        printTicket = WpfPrinterUtilities.ModifyPrintTicket(printTicket, "psk:JobInputBin", inputBins("Tray 1"))

        ' Print document using modified print ticket.
        Dim document = DocumentModel.Load("Sample.docx")
        Dim options = New PrintOptions(printTicket.GetXmlStream())
        Dim printerName = "HP Laserjet"
        document.Print(printerName, options)

    End Sub

End Module

Module WpfPrinterUtilities

    ''' <summary>
    ''' Gets a dictionary of print queues where key is the print queue name, and value is the print queue object.
    ''' </summary>
    ''' <param name="printQueueTypes">EnumeratedPrintQueueTypes params array of the types of print queues being requested.</param>
    ''' <returns>Dictionary of print queues where key is the print queue name, and value is the print queue object.</returns>
    Function GetPrintQueues(ParamArray printQueueTypes As EnumeratedPrintQueueTypes()) As Dictionary(Of String, PrintQueue)
        Dim server = New PrintServer()
        Return server.GetPrintQueues(printQueueTypes).ToDictionary(Function(pq) If(Not String.IsNullOrEmpty(pq.ShareName), pq.ShareName, pq.Name))
    End Function

    ''' <summary>
    ''' Gets a dictionary of print queues where key is the print queue name, and value is the print queue object.
    ''' </summary>
    ''' <returns>Dictionary of print queues where key is the print queue name, and value is the print queue object.</returns>
    Function GetPrintQueues() As Dictionary(Of String, PrintQueue)
        Dim server = New PrintServer()
        Return server.GetPrintQueues().ToDictionary(Function(pq) If(Not String.IsNullOrEmpty(pq.ShareName), pq.ShareName, pq.Name))
    End Function

    ''' <summary>
    ''' Reads print queue configuration xml to retrieve the current list of input bins.
    ''' </summary>
    ''' <param name="printQueue">The print queue to query.</param>
    ''' <returns></returns>
    Function GetInputBins(ByVal printQueue As PrintQueue) As Dictionary(Of String, String)
        Dim inputBins As Dictionary(Of String, String) = New Dictionary(Of String, String)()

        ' Get the print queue PrintCapabilities.
        Dim xmlDoc As XmlDocument = New XmlDocument()
        Using stream As MemoryStream = printQueue.GetPrintCapabilitiesAsXml()
            xmlDoc.Load(stream)
        End Using

        ' Read the JobInputBins out of the PrintCapabilities.

        ' Create NamespaceManager and add PrintSchemaFrameWork-Namespace (should be on DocumentElement of the PrintTicket).
        ' Prefix: psf NameSpace: xmlDoc.DocumentElement.NamespaceURI = "http://schemas.microsoft.com/windows/2003/08/printing/printschemaframework"
        Dim manager As XmlNamespaceManager = New XmlNamespaceManager(xmlDoc.NameTable)
        manager.AddNamespace(xmlDoc.DocumentElement.Prefix, xmlDoc.DocumentElement.NamespaceURI)

        ' Select all job input bins.
        Dim nodeList As XmlNodeList = xmlDoc.SelectNodes("//psf:Feature[@name='psk:JobInputBin']/psf:Option/psf:Property", manager)

        ' Load the Dictionary with the bin values and names. The names will be used to modify the print ticket if necessary.
        For Each node As XmlNode In nodeList
            inputBins.Add(node.LastChild.InnerText, node.ParentNode.Attributes(0).Value)
        Next

        Return inputBins
    End Function

    ''' <summary>
    ''' Modifes a print ticket xml after updating a feature value.
    ''' 
    ''' Sample usage:
    ''' Get Dictionary with Inputbins by calling the other method
    ''' and get "value" for the desired inputbin you'd like to use...
    ''' ...
    ''' desiredTray is then something like "NS0000:SurpriseOption7" for example.
    ''' defaultPrintTicket is the (Default)PrintTicket you want to modify from the PrintQueue for example
    ''' PrintTicket myPrintTicket = WpfPrinterUtils.ModifyPrintTicket(defaultPrintTicket, "psk:JobInputBin", desiredTray);
    ''' </summary>
    ''' <param name="ticket"></param>
    ''' <param name="featureName"></param>
    ''' <param name="newValue"></param>
    ''' <returns></returns>
    Function ModifyPrintTicket(ByVal ticket As PrintTicket, ByVal featureName As String, ByVal newValue As String) As PrintTicket
        If ticket Is Nothing Then Throw New ArgumentNullException("ticket")

        ' Read Xml of the PrintTicket xml.
        Dim xmlDoc As XmlDocument = New XmlDocument()
        xmlDoc.Load(ticket.GetXmlStream())

        ' Create NamespaceManager and add PrintSchemaFrameWork-Namespace hinzufugen (should be on DocumentElement of the PrintTicket).
        ' Prefix: psf NameSpace: xmlDoc.DocumentElement.NamespaceURI = "http://schemas.microsoft.com/windows/2003/08/printing/printschemaframework"
        Dim manager As XmlNamespaceManager = New XmlNamespaceManager(xmlDoc.NameTable)
        manager.AddNamespace(xmlDoc.DocumentElement.Prefix, xmlDoc.DocumentElement.NamespaceURI)

        ' Search node with desired feature we're looking for and set newValue for it
        Dim xpath As String = String.Format("//psf:Feature[@name='{0}']/psf:Option", featureName)
        Dim node As XmlNode = xmlDoc.SelectSingleNode(xpath, manager)
        If node IsNot Nothing Then
            If node.Attributes("name").Value <> newValue Then node.Attributes("name").Value = newValue
        End If

        ' Create a new PrintTicket out of the XML.
        Dim modifiedPrintTicket As PrintTicket = Nothing

        Using stream As MemoryStream = New MemoryStream()
            xmlDoc.Save(stream)
            stream.Position = 0
            modifiedPrintTicket = New PrintTicket(stream)
        End Using

        Return modifiedPrintTicket
    End Function

End Module

I hope this helps.

Regards,
Mario

I do not have psk:JobInputBin in my XML. I could only find psk:PageInputBin and I couldn’t figure out how to change it to get it to work. Any thoughts anyone?

Can you send us that XML so that we can take a look at it?

Here’s my full XML from the XmlDocument object. I’d like to be able to set the Bin and the Duplex option.

<?xml version="1.0" encoding="UTF-8"?>
<psf:PrintTicket xmlns:psf="" xmlns:xsi="" xmlns:xsd="" version="1" xmlns:ns0000="" xmlns:psk="">
    <psf:ParameterInit name="ns0000:PageDevmodeSnapshot">
        <psf:Value xsi:type="xsd:string">UwBGADAAMQBQAFQAMAAwADQAMQAgAG8AbgAgAFMARgAwADEAQQBTADEAMAAzADcALgBjAGEAcABpAHQAYQAAAAEEAwHcALwnD/+EAwEAAQDqCm8IAAAAAA4AWAIAAAEAWAICAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAwAAACIBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGRQY0sBAAAAWAEAACASAACQAAgAAABvCOoKKgAqACQTABkqACoAABkkE28I6goqACoAJBMAGSoAKgAAGSQTAAAMAAIAAgAAAAAAAAACAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAABAAAAAAAAAEUCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIoEAAAAAAAARQIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAwMDEAAAAAAAUAAAAAAAAAMDAwMAAAAAAAAAAANCEAAPgqAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANCEAAPgqAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAADIgg2QAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAABAAAAAQAAAAAAAAABAAAAQAACAAIAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAgD8AAAAAAQAeAAAAAAAMAAAAAACAPwAAAAAAAAAAAgAAAAAAAABYAgAAWAIAAAEAAAD/////AAEAAAEAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAgAIAAEoBAAAsAQAAWAIAAJYAAAA8AAAAFgAAAAAAAAANAAAAWALCAVgCwgFYAsIBWALCAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAQKAE9mZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOcDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAEAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAABAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAwMDAwAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBcmlhbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wD///8A////AP///wD///8A////AP///wD///8A////AP///wD///8A////AP///wD///8A////AP///wAAAAAAAAAAPwsAAQACAAAAAAAgQQAAIEEAACBBAAAAAAAAAAAFAAEAAAAgQQAAAAACAAAAAAAAAAAAAAAAAAAABwAAACIBAAAAAAAABwAAACIBAAAAAAAABwAAACIBAAAAAAAABwAAACIBAAAAAAAABwAAACIBAAAAAAAABwAAACIBAAAAAAAABwAAACIBAAAAAAAABwAAACIBAAAAAAAABwAAACIBAAAAAAAABwAAACIBAAAAAAAABwAAACIBAAAAAAAABwAAACIBAAAAAAAABwAAACIBAAAAAAAABwAAACIBAAAAAAAABwAAACIBAAAAAAAABwAAACIBAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAANQDyAWADKgvAAAAAAAAZFBjS1DDAABYAQAAMAEAAAAAAAAAAAAAAAAAAAEAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAGRQY0sQJwAAWAEAABgAAAAAAAAAAAAAAGRQY0sgTgAAWAEAAEQDAAAAAAAAAAAAAEMAbwBuAGYAaQBkAGUAbgB0AGkAYQBsACAAMQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZFBjS+kDAABYAQAA5AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAEAAAAAAAAAMxgAAAAAAAAEAAAAAAAAAAQAAAAAAAAABAAAAAAAAAAEAAAABQABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAeMHABchDgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGRQY0tk6gAAWAEAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA</psf:Value>
    </psf:ParameterInit>
    <psf:Feature name="psk:JobCollateAllDocuments">
        <psf:Option name="psk:Collated" />
    </psf:Feature>
    <psf:Feature name="psk:JobDuplexAllDocumentsContiguously">
        <psf:Option name="psk:OneSided">
            <psf:ScoredProperty name="psk:DuplexMode">
                <psf:Value xsi:type="xsd:string">Automatic</psf:Value>
            </psf:ScoredProperty>
            <psf:ScoredProperty name="ns0000:ManualDuplexInstruction">
                <psf:Value xsi:type="xsd:string">Print</psf:Value>
            </psf:ScoredProperty>
        </psf:Option>
    </psf:Feature>
    <psf:ParameterInit name="psk:JobCopiesAllDocuments">
        <psf:Value xsi:type="xsd:integer">0</psf:Value>
    </psf:ParameterInit>
    <psf:Feature name="psk:PageICMRenderingIntent">
        <psf:Option name="psk:RelativeColorimetric" />
    </psf:Feature>
    <psf:Feature name="psk:PageColorManagement">
        <psf:Option name="psk:None" />
    </psf:Feature>
    <psf:Feature name="psk:PageDeviceFontSubstitution">
        <psf:Option name="psk:Off" />
    </psf:Feature>
    <psf:Feature name="psk:JobStapleAllDocuments">
        <psf:Option name="psk:None">
            <psf:ScoredProperty name="psk:SheetCapacity">
                <psf:Value xsi:type="xsd:integer">0</psf:Value>
            </psf:ScoredProperty>
        </psf:Option>
    </psf:Feature>
    <psf:Feature name="psk:JobHolePunch">
        <psf:Option name="psk:None" />
        <psf:Feature name="ns0000:HoleCount">
            <psf:Option name="psk:None" />
        </psf:Feature>
    </psf:Feature>
    <psf:Feature name="psk:JobNUpAllDocumentsContiguously">
        <psf:Option>
            <psf:ScoredProperty name="psk:PagesPerSheet">
                <psf:Value xsi:type="xsd:integer">1</psf:Value>
            </psf:ScoredProperty>
        </psf:Option>
        <psf:Feature name="psk:PresentationDirection">
            <psf:Option name="ns0000:Auto" />
        </psf:Feature>
        <psf:Feature name="ns0000:BorderStyle">
            <psf:Option name="psk:None" />
        </psf:Feature>
    </psf:Feature>
    <psf:Feature name="psk:JobPageOrder">
        <psf:Option name="psk:Standard" />
    </psf:Feature>
    <psf:Feature name="psk:PageMirrorImage">
        <psf:Option name="psk:None" />
    </psf:Feature>
    <psf:Feature name="psk:PageNegativeImage">
        <psf:Option name="psk:None" />
    </psf:Feature>
    <psf:Feature name="psk:PagePoster">
        <psf:Option>
            <psf:ScoredProperty name="psk:SheetsPerPage">
                <psf:Value xsi:type="xsd:integer">1</psf:Value>
            </psf:ScoredProperty>
        </psf:Option>
        <psf:Feature name="ns0000:PrintFormat">
            <psf:Option name="ns0000:PosterPages" />
        </psf:Feature>
        <psf:Feature name="ns0000:OverlapEdges">
            <psf:Option name="psk:Off" />
        </psf:Feature>
        <psf:Feature name="ns0000:CropMarks">
            <psf:Option name="psk:Off" />
        </psf:Feature>
        <psf:Feature name="ns0000:AssemblyMarks">
            <psf:Option name="psk:Off" />
        </psf:Feature>
    </psf:Feature>
    <psf:Feature name="psk:JobBindAllDocuments">
        <psf:Option name="psk:None" />
        <psf:Feature name="ns0000:JobBindAllDocumentsFeedingEdge">
            <psf:Option name="psk:None" />
        </psf:Feature>
    </psf:Feature>
    <psf:Feature name="psk:DocumentCoverBack">
        <psf:Option name="psk:NoCover" />
    </psf:Feature>
    <psf:Feature name="psk:DocumentCoverFront">
        <psf:Option name="psk:NoCover" />
    </psf:Feature>
    <psf:Feature name="psk:PageInputBin">
        <psf:Option name="psk:Cassette">
            <psf:ScoredProperty name="psk:BinType">
                <psf:Value xsi:type="xsd:string">SheetFeed</psf:Value>
            </psf:ScoredProperty>
            <psf:ScoredProperty name="psk:FeedType">
                <psf:Value xsi:type="xsd:string">Automatic</psf:Value>
            </psf:ScoredProperty>
            <psf:ScoredProperty name="psk:MediaCapacity">
                <psf:Value xsi:type="xsd:string">Standard</psf:Value>
            </psf:ScoredProperty>
            <psf:ScoredProperty name="psk:MediaSizeAutoSense">
                <psf:Value xsi:type="xsd:string">Supported</psf:Value>
            </psf:ScoredProperty>
            <psf:ScoredProperty name="psk:MediaTypeAutoSense">
                <psf:Value xsi:type="xsd:string">Supported</psf:Value>
            </psf:ScoredProperty>
            <psf:ScoredProperty name="psk:MediaSheetCapacity">
                <psf:Value xsi:type="xsd:integer">1000</psf:Value>
            </psf:ScoredProperty>
            <psf:ScoredProperty name="psk:MediaPath">
                <psf:Value xsi:type="xsd:string">_Undefined_</psf:Value>
            </psf:ScoredProperty>
        </psf:Option>
    </psf:Feature>
    <psf:Feature name="psk:PageMediaSize">
        <psf:Option name="psk:NorthAmericaLetter">
            <psf:ScoredProperty name="psk:MediaSizeWidth">
                <psf:Value xsi:type="xsd:integer">215900</psf:Value>
            </psf:ScoredProperty>
            <psf:ScoredProperty name="psk:MediaSizeHeight">
                <psf:Value xsi:type="xsd:integer">279400</psf:Value>
            </psf:ScoredProperty>
        </psf:Option>
    </psf:Feature>
    <psf:Feature name="psk:PageMediaType">
        <psf:Option name="ns0000:Unspecified" />
    </psf:Feature>
    <psf:Feature name="psk:PageOutputBin">
        <psf:Option name="ns0000:DestPrinterDefault">
            <psf:ScoredProperty name="psk:BinType">
                <psf:Value xsi:type="xsd:string">_Undefined_</psf:Value>
            </psf:ScoredProperty>
            <psf:ScoredProperty name="psk:MediaSheetCapacity">
                <psf:Value xsi:type="xsd:integer">1000</psf:Value>
            </psf:ScoredProperty>
        </psf:Option>
    </psf:Feature>
    <psf:Feature name="psk:PageResolution">
        <psf:Option name="ns0000:Resolution600">
            <psf:ScoredProperty name="psk:ResolutionX">
                <psf:Value xsi:type="xsd:integer">600</psf:Value>
            </psf:ScoredProperty>
            <psf:ScoredProperty name="psk:ResolutionY">
                <psf:Value xsi:type="xsd:integer">600</psf:Value>
            </psf:ScoredProperty>
            <psf:ScoredProperty name="psk:QualitativeResolution">
                <psf:Value xsi:type="xsd:string">Normal</psf:Value>
            </psf:ScoredProperty>
            <psf:ScoredProperty name="ns0000:ResolutionConversion">
                <psf:Value xsi:type="xsd:string">On</psf:Value>
            </psf:ScoredProperty>
            <psf:ScoredProperty name="ns0000:BitsPerPixel">
                <psf:Value xsi:type="xsd:integer">8</psf:Value>
            </psf:ScoredProperty>
        </psf:Option>
    </psf:Feature>
    <psf:Feature name="psk:PageOrientation">
        <psf:Option name="psk:Portrait" />
    </psf:Feature>
    <psf:Feature name="psk:PageOutputColor">
        <psf:Option name="psk:Monochrome" />
    </psf:Feature>
    <psf:Feature name="psk:PageTrueTypeFontMode">
        <psf:Option name="psk:DownloadAsOutlineFont" />
    </psf:Feature>
    <psf:Feature name="ns0000:JobEcoPrint">
        <psf:Option name="psk:Off" />
    </psf:Feature>
    <psf:Feature name="ns0000:JobPageInsert">
        <psf:Option name="ns0000:NoPageInsert" />
    </psf:Feature>
    <psf:Feature name="ns0000:JobChapterPageInsert">
        <psf:Option name="ns0000:NoChapterPageInsert" />
    </psf:Feature>
    <psf:Feature name="ns0000:JobTransparencyInterleaving">
        <psf:Option name="ns0000:NoInterleaving" />
    </psf:Feature>
    <psf:Feature name="ns0000:JobStorage">
        <psf:Option name="psk:None" />
    </psf:Feature>
    <psf:Feature name="ns0000:JobJobName">
        <psf:Option name="ns0000:ApplicationDefined">
            <psf:ScoredProperty name="ns0000:NoApplicationName">
                <psf:ParameterRef name="ns0000:JobNameNoApplicationName" />
            </psf:ScoredProperty>
            <psf:ScoredProperty name="ns0000:OverwriteMode">
                <psf:ParameterRef name="ns0000:JobNameOverwriteMode" />
            </psf:ScoredProperty>
        </psf:Option>
    </psf:Feature>
    <psf:ParameterInit name="ns0000:JobNameNoApplicationName">
        <psf:Value xsi:type="xsd:string">On</psf:Value>
    </psf:ParameterInit>
    <psf:ParameterInit name="ns0000:JobNameOverwriteMode">
        <psf:Value xsi:type="xsd:string">AppendDateTime</psf:Value>
    </psf:ParameterInit>
    <psf:Feature name="ns0000:JobSeparation">
        <psf:Option name="psk:Off" />
    </psf:Feature>
    <psf:Feature name="ns0000:JobBlackText">
        <psf:Option name="psk:Off" />
    </psf:Feature>
    <psf:Feature name="ns0000:JobBlackGraphics">
        <psf:Option name="psk:Off" />
    </psf:Feature>
    <psf:Feature name="ns0000:JobEdgeSmoothing">
        <psf:Option name="psk:On" />
    </psf:Feature>
    <psf:Feature name="ns0000:PagePatternScaling">
        <psf:Option name="ns0000:Auto" />
    </psf:Feature>
    <psf:Feature name="ns0000:JobColorAdjustment">
        <psf:Option name="ns0000:Monochrome">
            <psf:ScoredProperty name="ns0000:Brightness">
                <psf:ParameterRef name="ns0000:JobMonochromeBrightness" />
            </psf:ScoredProperty>
            <psf:ScoredProperty name="ns0000:Contrast">
                <psf:ParameterRef name="ns0000:JobMonochromeContrast" />
            </psf:ScoredProperty>
        </psf:Option>
    </psf:Feature>
    <psf:ParameterInit name="ns0000:JobMonochromeBrightness">
        <psf:Value xsi:type="xsd:integer">0</psf:Value>
    </psf:ParameterInit>
    <psf:ParameterInit name="ns0000:JobMonochromeContrast">
        <psf:Value xsi:type="xsd:integer">0</psf:Value>
    </psf:ParameterInit>
    <psf:Feature name="ns0000:JobAccounting">
        <psf:Option name="psk:Off" />
    </psf:Feature>
    <psf:Feature name="ns0000:JobUserLogin">
        <psf:Option name="psk:Off" />
    </psf:Feature>
    <psf:Feature name="ns0000:JobColorPageCount">
        <psf:Option name="psk:On" />
    </psf:Feature>
    <psf:Property name="ns0000:JobPagesPerSheet">
        <psf:Value xsi:type="xsd:integer">1</psf:Value>
    </psf:Property>
    <psf:Feature name="psk:JobOutputOptimization">
        <psf:Option name="psk:OptimizeForSpeed" />
    </psf:Feature>
    <psf:Property name="ns0000:JobHardDiskSupport">
        <psf:Value xsi:type="xsd:string">On</psf:Value>
    </psf:Property>
    <psf:Property name="ns0000:JobRamSupport">
        <psf:Value xsi:type="xsd:string">Off</psf:Value>
    </psf:Property>
    <psf:Property name="ns0000:JobUserName">
        <psf:Value xsi:type="xsd:string">bmartens</psf:Value>
    </psf:Property>
    <psf:Property name="ns0000:JobNameSize">
        <psf:Value xsi:type="xsd:integer">0</psf:Value>
    </psf:Property>
    <psf:Feature name="ns0000:JobFold">
        <psf:Option name="psk:Off" />
        <psf:Feature name="ns0000:JobFoldFace">
            <psf:Option name="psk:Off" />
        </psf:Feature>
        <psf:Feature name="ns0000:JobFoldOrder">
            <psf:Option name="psk:Off" />
        </psf:Feature>
    </psf:Feature>
    <psf:Feature name="ns0000:JobEmailNotification">
        <psf:Option name="psk:Off" />
    </psf:Feature>
    <psf:Feature name="ns0000:JobSuspendMode">
        <psf:Option name="psk:Off" />
    </psf:Feature>
    <psf:Feature name="ns0000:JobSaveAndPrint">
        <psf:Option name="ns0000:Print" />
    </psf:Feature>
</psf:PrintTicket>