From 8f7058d77051ee65b724114d3f64585e56b11ec9 Mon Sep 17 00:00:00 2001 From: Iru Cai Date: Fri, 17 May 2019 11:21:29 +0800 Subject: upd --- chap/abs.tex | 45 +- chap/chap1.tex | 19 +- chap/chap2.tex | 78 +- chap/chap5.tex | 148 +- chap/origin.tex | 2 +- gem5_cpu.pdf | Bin 0 -> 67483 bytes result.eps | 151578 +++++++++++++++++++++++++++++++++++++++++++++++++- specload_ratio.eps | 6163 ++ thesis.bib | 9 +- 9 files changed, 157307 insertions(+), 735 deletions(-) create mode 100644 gem5_cpu.pdf create mode 100644 specload_ratio.eps diff --git a/chap/abs.tex b/chap/abs.tex index 8131207..080c963 100644 --- a/chap/abs.tex +++ b/chap/abs.tex @@ -2,31 +2,30 @@ % Public domain. \begin{cabstract} - 现代微处理器设计主要考虑性能和功耗。随着软硬件变得越来越复杂,安全在 - 计算机系统的设计中逐渐受到重视。Meltdown 和 Spectre 攻击的发现,表明 - 处理器微体系结构的优化,虽然不影响程序的正确运行,但是可能破坏系统的安全 - 性。其中 Spectre 攻击利用处理器的推测式执行,通过暂态指令的执行构造隐 - 蔽信道,将程序中的秘密信息泄露给攻击者,破坏了程序的安全保证和系统的 - 隔离性。由于推测式执行是处理器优化执行性能的重要手段,在防御 Spectre - 攻击的同时,减少防御手段带来的性能下降,是一个复杂的问题。 + 现代微处理器设计主要需要考虑性能和功耗。但随着软硬件系统越来越复杂, + 安全性在处理器设计中越来越重要。熔断(Meltdown)和幽灵(Spectre)攻 + 击的发现,表明处理器微体系结构的优化,虽然不影响程序的正确运行,但是 + 可能带来安全性的问题。其中 Spectre 攻击利用处理器的推测式执行,通过 + 暂态指令的执行构造隐蔽信道,将程序中的秘密信息泄露给攻击者,破坏了程 + 序的安全保证和系统的隔离性。由于推测式执行是微处理器设计中提升性能的 + 重要手段,在防御 Spectre攻击的同时,减少防御手段带来的性能下降,是一 + 个重要的问题。 - 本文基于 gem5 模拟平台,设计了一种用于防御 Spectre 攻击的微体系结构,并 - 对其进行评估。主要工作内容如下: - \begin{itemize} - \item 调研现有的侧信道攻击、Meltdown 和 Spectre 攻击技术,深入分析这 - 些攻击技术的原理。 + 本文基于模拟平台,针对推测式执行侧信道攻击设计实现了一种防御结构。主 + 要工作内容如下: + \begin{enumerate} + \item 调研 Meltdown 和 Spectre 攻击技术,分析其技术原理。 \item 调研现有的 Meltdown 和 Spectre 防御方案,分析这些方案的设计思 - 想、实现方法、安全性和开销 - \item 设计一种用于防御 Spectre 攻击的微体系结构,并在 gem5 中模拟。该微架 - 构基于动态信息流追踪技术,它用于检测推测式执行中的指令是否直接或间 - 接依赖一个推测式执行中从内存装载的值,进而可能泄露数据。本文将这种 - 技术和已有的安全装载数据的方案 InvisiSpec 结合使用,并在 gem5 中实 - 现了这些模型。 - \item 评测这种微体系结构的安全性和性能。在 gem5 中模拟这种微体系结构,用构造 - 的验证程序进行测试,表明设计的微体系结构满足本文的安全特性。用 SPEC - CPU2006 进行性能评测,平均性能开销为 8.5\%,优于只使用动态信息流追 - 踪检测技术或只使用 InvisiSpec 的模型的性能。 - \end{itemize} + 想、实现方法、安全性和性能开销。 + \item 设计一种针对 Spectre 攻击的防御结构,并在模拟平台中实现。该结 + 构动态追踪信息流,检测推测式执行的指令与推测的内存读取之间的依赖关 + 系,标记存在数据泄露风险的指令。进一步地,针对有风险的内存读取指令, + 采用安全的数据装载方案,避免在高速缓存状态中留下暂态执行的痕迹。 + \item 基于模拟平台对该防御结构进行评估。利用构造的攻击程序进行测试, + 表明该防御结构可以防御测试中的攻击,满足安全性要求。利用 SPEC + CPU2006 进行性能评测,平均性能开销为 8.5\%,需要安全执行的推测式数 + 据读取显著减少,降低了防御的性能开销。 + \end{enumerate} \end{cabstract} \begin{eabstract} diff --git a/chap/chap1.tex b/chap/chap1.tex index 4a0e94e..7ddf6b6 100644 --- a/chap/chap1.tex +++ b/chap/chap1.tex @@ -51,8 +51,8 @@ Tomasulo 算法\supercite{tomasulo},可以识别指令之间的依赖关系, 它的 ROB 使得流水线中可以同时存在 224 个微操作,它的分支预测器可以预测 分支的方向和目标地址,使处理器在预测的目标处取出指令至指令缓存。 -2018 年公布的 Meltdown\supercite{meltdown} 和 -Spectre\supercite{spectre} 攻击使人们发现,虽然处理器在执行指令产生异 +2018 年公布的“熔断”(Meltdown)\supercite{meltdown}和“幽灵”(Spectre) +\supercite{spectre} 攻击使人们发现,虽然处理器在执行指令产生异 常,或推测式执行错误后,通过恢复可以使体系结构层次上的状态保持正确,但 是这些错误执行的指令在微体系结构中产生了副作用,并且可能泄露系统中的秘 密数据,破坏了系统的安全。在 Meltdown 和 Spectre 之后,研究者发现了更 @@ -100,20 +100,25 @@ gem5 是一个模拟平台,由 GEMS\supercite{gems} 和 M5\supercite{m5} 两 MIPS, RISC-V 等指令系统。作为一个开源的模拟器,学术界和工业界都为 gem5 的开发做出贡献,使得 gem5 称为体系结构研究中最流行的模拟器之一。 +\begin{figure}[htbp] + \centering + \includegraphics[width=0.8\textwidth]{gem5_cpu.pdf} + \caption{gem5 支持的 CPU 模型\supercite{gem5-tutorial}} + \label{fig:gem5_cpu} +\end{figure} + gem5 的灵活性使得研究者可以根据需要选择不同的系统模型,取得模拟速度和精 度的平衡。gem5 支持以下模型的配置: -\begin{itemize} -\item CPU 模型:gem5 支持四种不同的 CPU 模型。AtomicSimpleCPU 模拟一个 - 单周期处理器,模拟速度最快。TimingSimpleCPU 在此之上增加对存储访问时 - 间的模拟。O3CPU 则是一个详细的乱序执行处理器模型。 +\begin{enumerate} + \item CPU 模型:如图\ref{fig:gem5_cpu},gem5 支持多种不同的 CPU 模型。AtomicSimpleCPU 模拟一个单周期处理器,模拟速度最快。TimingSimpleCPU 在此之上增加对存储访问时间的模拟。O3CPU 则是一个详细的乱序执行处理器模型。此外,gem5 还支持使用 KVM 虚拟化技术模拟 CPU 的执行。 \item 系统模式:gem5 可以用系统调用模拟(SE)和全系统(FS)两种模式进 行模拟,前者模拟大多数的系统调用,无需对操作系统和设备进行模拟,而后 者则模拟了操作系统和设备,同时执行用户态和内核态的指令。 \item 存储系统:gem5 包含两种存储系统模型,来自 M5 的 Classic 模型容易 配置且模拟速度快,而来自 GEMS 的 Ruby 模型则提供了一个可以精确模拟缓 存一致性模型的存储系统模拟框架。 -\end{itemize} +\end{enumerate} gem5 模拟器使用 C++ 编写,并集成了 Python,模拟器的核心功能由 C++ 实现, 而 Python 用于初始化、配置和控制模拟器。为了支持多种指令系统和缓存一致 diff --git a/chap/chap2.tex b/chap/chap2.tex index 86ab846..7f6b4f8 100644 --- a/chap/chap2.tex +++ b/chap/chap2.tex @@ -38,7 +38,7 @@ Diffie-Hellman,RSA 等密码的私钥。\supercite{TimingAttack} 这是最早 的数据,通过测量访问时间推断受害者是否访问了这个共享的地址 \end{itemize} -\section{Meltdown和Spectre攻击} +\section{Meltdown 和 Spectre 攻击的各种变体} 处理器在执行指令遇到异常,或者推测式执行了错误的指令后,会回卷错误执行 的指令,丢弃它们对体系结构状态的修改,这些被回卷的指令称为暂态指令 @@ -50,13 +50,13 @@ Spectre\supercite{spectre} 是最早发现的两个利用暂态指令的攻击 究\supercite{systematic},将所有暂态执行攻击分为 Meltdown型攻击 和 Spectre 型攻击两类。 -\subsection{Meltdown型攻击} +\subsection{Meltdown 型攻击} Meltdown 型攻击利用的是处理器异常产生的暂态指令,这些指令使用了体系结构 层次上不可访问的数据,从而绕过硬件的安全策略,泄露体系结构层次上不可访 问的数据。 -\subsubsection{Meltdown} +\subsubsection{“熔断”(Meltdown)攻击} 内存隔离是现代操作系统的核心安全功能之一。操作系统确保用户程序无法访问 其他程序的内存或内核的内存。这种隔离是现代计算环境的基石,使得系统上可 @@ -152,21 +152,21 @@ Meltdown 打破了处理器内存隔离功能提供的所有安全保障。这 度、TLB 和高速缓存大小、DRAM 速度等,可以以 3.2KB/s 到 503KB/s 的速度 读取内核内存。因此,大量系统受到影响。 -\subsubsection{Foreshadow} +\subsubsection{“预兆”(Foreshadow)攻击} % foreshadow introduction 由于现代广泛使用的操作系统和应用程序的大小可以轻松地达到数百万行代码, 并且单个漏洞通常会破坏所有安全保证,所以在安全上很难信任现有的操作系统 和应用程序。为了应对这些挑战,学术界和工业界开发了可信执行环境 (Trusted Execution Environment, TEE),其中包含一个处理器常规执行环境 -之外的非分层保护模型,用于隔离应用程序,称为 enclave. TEE 利用只含有处 -理器和微码的最小可信计算基础(Trusted Computing Base),来保证相互不信 -任的 enclave 的保密性和完整性。 每个 enclave 的私有处理器和内存状态只可 -以由其内部运行的代码访问,并且在任何特权级别(包括潜在的恶意操作系统和 -虚拟机管理程序)上运行的所有其他 enclave 和软件都无法访问。除了强大的内 -存隔离外,TEE 通常还提供一个证明(attestation)原语,从而可以本地或远程 -地在运行时从密码学上验证特定的 enclave 已经加载到真正的(因而被认为是安 -全的)TEE 处理器上。 +之外的非分层保护模型,用于隔离应用程序,称为隔离区(enclave)。 TEE 利 +用只含有处理器和微码的最小可信计算基础(Trusted Computing Base),来保 +证相互不信任的隔离区的保密性和完整性。 每个隔离区的私有处理器和 +内存状态只可以由其内部运行的代码访问,并且在任何特权级别(包括潜在的恶 + 意操作系统和虚拟机管理程序)上运行的所有其他隔离区和软件都无法访 +问。除了强大的内存隔离外,TEE 通常还提供一个证明(attestation)原语, +从而可以本地或远程地在运行时从密码学上验证特定的隔离区已经加载到真 +正的(因而被认为是安全的)TEE 处理器上。 随着 2013 年 Intel 软件防护扩展(Software Guard eXtention, SGX)\supercite{sgx}的发布,硬件强制的 TEE 隔离和证明可以在现成的x86处 @@ -180,28 +180,28 @@ Whisper Systems 依靠 SGX 在 Signal 网络中实现隐私友好的联系人发 然而,当前的 SGX 实现并没有满足它的安全目标。Foreshadow 攻击利用现 代 Intel 处理器中的乱序执行机制,可以从处理器的缓存中泄露明文 -的 enclave 数据。Foreshadow 攻击的核心是利用 Meltdown 攻击相同的处理器 +的隔离区数据。Foreshadow 攻击的核心是利用 Meltdown 攻击相同的处理器 漏洞,即处理器的访问控制逻辑允许攻击者在瞬态的乱序执行指令回滚之前,使 用未授权内存访问的结果。然而,Meltdown 攻击针对传统的分层保护域, 而 Foreshadow 考虑了一种非常不同的攻击模型,攻击者的目标不是从用户空间 -读取内核内存,而是破坏最先进的地址空间内 enclave 保护域,它不在已经部署 +读取内核内存,而是破坏最先进的地址空间内隔离区保护域,它不在已经部署 的用于防御 Meltdown 的内核页表隔离技术的保护之内。Foreshadow 使用了一 种新的漏洞利用方法,并且基本的攻击完全可以由无特权的攻击者使用,而无需 用 root 权限访问受害者机器。对于有 root 权限的攻击者,还可以使用一组可 选的内核级优化技术,进一步降低 Foreshadow 攻击的噪声。 Foreshadow 对 Intel SGX 所追求的安全模型产生了深远的影响,在没有微码补 -丁的情况下,当前的SGX处理器无法保证 enclave 的数据保密性,也无法证 -明enclave 执行的完整性,包括英特尔自己的 enclave 架构。此外,尽管 SGX +丁的情况下,当前的SGX处理器无法保证隔离区的数据保密性,也无法证 +明隔离区执行的完整性,包括英特尔自己的隔离区架构。此外,尽管 SGX 希望内核级别的攻击者,但现有的 SGX 处理器甚至无法在没有特权的用户空间 -攻击者面前保护 enclave 中的秘密数据。 +攻击者面前保护隔离区中的秘密数据。 所有先前已知的针对 SGX 的攻击都依赖于软件特定的侧信道泄露或软件漏 -洞。 人们普遍认为,精心编写的 enclave 可以通过坚持良好的编码实践,例如 +洞。 人们普遍认为,精心编写的隔离区可以通过坚持良好的编码实践,例如 不使用依赖秘密数据的分支,来防止信息泄露。Intel 认为这些攻击都没有破 -坏 SGX 的安全保证,防止侧信道攻击应该是 enclave 开发者的责任。 然 +坏 SGX 的安全保证,防止侧信道攻击应该是隔离区开发者的责任。 然 而,Foreshadow 否定了这一论点,因为它完全依赖于基本的 Intel x86 处理器 -的行为,并且不利用任何软件漏洞,甚至不需要知道受害者 enclave 的源代码。 +的行为,并且不利用任何软件漏洞,甚至不需要知道受害者隔离区的源代码。 % foreshadow attack \begin{figure}[htbp] @@ -217,9 +217,9 @@ Foreshadow 对 Intel SGX 所追求的安全模型产生了深远的影响,在 如果在虚拟机环境中,则需要如图 \ref{fig:addr-tran} 所示,增加一个扩展 页表(Extended Page Table,EPT)的访问过程,将客户机的物理地址翻译为底 层物理机的物理地址。最后,启用了 Intel SGX 的处理器还会进一步检查地址 -翻译的结果,确保这个地址翻译遵守硬件强制的 enclave 访问控制限制。如果 +翻译的结果,确保这个地址翻译遵守硬件强制的隔离区访问控制限制。如果 这三个独立的阶段报告一个访问违例,则处理器抛出一个页错误,控制流转向异 -常处理代码,而对于 SGX,大多数的 enclave 内存违例会被处理器忽视,将内 +常处理代码,而对于 SGX,大多数的隔离区内存违例会被处理器忽视,将内 存装载指令得到的值设为 abort page 的值 -1. 在体系结构层次上,以上的地址翻译过程在文档中有精确的描述。现代处理器为 @@ -236,13 +236,13 @@ Foreshadow 对 Intel SGX 所追求的安全模型产生了深远的影响,在 路的物理地址标签对比,在某一个有效的缓存路存在正确的物理地址时,此时一 级缓存命中,数据返回至处理器的执行单元。 -Foreshadow\supercite{foreshadow} 是一种可以读取 Intel SGX enclave 中秘 +Foreshadow\supercite{foreshadow} 是一种可以读取 Intel SGX 隔离区中秘 密数据的 Meltdown 型攻击。如果对 SGX 使用 Meltdown 攻击,攻击者读取未授 -权的 enclave 内存,不会产生异常,而是读出 abort page 值 -1. 但是 abort +权的隔离区内存,不会产生异常,而是读出 abort page 值 -1. 但是 abort page 只在页权限检查通过后发生,攻击者可以将该页 present 位清除,即将该 页设为不存在,此时处理器便会产生异常,但由于一级缓存使用虚拟地址索引, 因此仍然可以从一级缓存读取该虚拟地址中的数据,从而暂态指令可以泄露 SGX -enclave 中的数据。 +隔离区中的数据。 通过将一个页设为不存在,绕过地址翻译,从一级缓存读取数据的攻击方 式,Intel 将其称为L1终端错误(L1 Terminal @@ -269,7 +269,7 @@ Foreshadow-OS 利用了这种错误造成的暂态执行的指令。虽然访问 于 4KB 的页(例如,2MB 或 1GB),攻击者可以通过无意的映射访问最大页面大 小的内存范围。由于所有软件本质上共享相同的物理地址空间,因此元数据创建 的虚拟到物理映射可能指向属于操作系统内核,VMM 内存,SGX -enclave,或 SMM 内存的数据。在操作系统通过 munmap 系统调用释放内存时, +隔离区,或 SMM 内存的数据。在操作系统通过 munmap 系统调用释放内存时, 将页表项清零的常见情况下,攻击者可以访问存储在物理地址 0x00 的数据。 实验结果表明,在一个 i7-6820HQ CPU 上,Foreshadow-OS 通过利用瞬态执行, @@ -304,7 +304,7 @@ Foreshadow 攻击使用在可以直接控制客户机器物理地址和一级缓 缓存中的任何秘密。 -\subsubsection{LazyFP} +\subsubsection{延迟浮点寄存器状态还原(LazyFP)攻击} % introduction LazyFP\supercite{lazyfp} 是一个 Meltdown 类型的攻击,它可以跨越进程和虚 @@ -829,16 +829,22 @@ flag 的缓存状态会发生变化。如果 \verb|bitstream[x]| 为 1,则 flag \subsection{SgxPectre} SgxPectre \supercite{sgxpectre} 将 Spectre 攻击用于泄露 Intel SGX 环境 -中的数据。通过在 SGX enclave 之外污染 enclave 的 BTB 和 RSB,改变 SGX -enclave 中的控制流,将秘密数据泄露至 SGX 之外。 - -\subsection{MeltdownPrime 和 SpectrePrime} - -MeltdownPrime 和 SpectrePrime \supercite{meltdownprime} 是一种使用 -Prime+Probe 方式进行 Meltdown 和 Spectre 攻击的形式。通过利用缓存一致 -性协议的缓存行失效机制,可以达到和 Flush+Reload 方式的同等精度。 +中的数据。执行隔离区内的代码时,使用的分支预测器仍然受隔离区外代码影响, +并且暂态执行的代码可以在隔离区外产生可见的缓存状态更改。因此攻击者可以从 +推断出隔离区内的内存或寄存器的数据,破坏了 SGX 保证的保密性。 +SgxPectre 通过在 SGX 隔离区之外污染隔离区的 BTB 和 RSB,改变 SGX +隔离区中的控制流,将秘密数据泄露至 SGX 之外。 + +% \subsection{MeltdownPrime 和 SpectrePrime} +% +% MeltdownPrime 和 SpectrePrime \supercite{meltdownprime} 是一种使用 +% Prime+Probe 方式进行 Meltdown 和 Spectre 攻击的形式。通过利用缓存一致 +% 性协议的缓存行失效机制,可以达到和 Flush+Reload 方式的同等精度。 \section{小结} 本章首先介绍侧信道攻击,接着分类介绍各个变体的 Meltdown 型攻击和 -Spectre 型攻击,最后介绍 NetSpectre 等攻击的其他利用形式。 +Spectre 型攻击,其中 Meltdown 型攻击利用来自异常的暂态指令,主要的攻击 +有 Meltdown, Foreshadow 和 LazyFP,Spectre 型攻击利用错误的推测式执行 +产生的暂态指令,根据执行预测的部件分为 Spectre-PHT, Spectre-BTB, +Spectre-RSB 和 Spectre-STL,最后介绍 NetSpectre 等攻击的其他利用形式。 diff --git a/chap/chap5.tex b/chap/chap5.tex index e16fe51..2c83fe3 100644 --- a/chap/chap5.tex +++ b/chap/chap5.tex @@ -64,14 +64,12 @@ L2 Cache & 2MB, 16路组相联, 8周期延迟\tabularnewline \section{评测指标} -本文评测每种微体系结构设计的安全性和性能。安全性表现为是否受 Spectre 攻击的 -影响,本文构造测试程序测试微体系结构的安全性。性能指标使用每个微体系结构设计运 -行基准程序,和 Baseline 的运行时间的比值,平均性能取这些比值的几何平均 -数。 +本文评测每种微体系结构设计的安全性和性能。安全性表现为是否受 Spectre +攻击的影响,本文构造测试程序测试微体系结构的安全性。性能指标使用每个微 +体系结构设计运行基准程序,和 Baseline 的运行时间的比值,平均性能取这些 +比值的几何平均数。 -\section{评测结果与分析} - -\subsection{微体系结构安全性测试} +\subsection{功能验证} 本文构造一个测试程序对每种配置的处理器进行安全性的测试,用于验证实现的 方案可以防御 Spectre 攻击。 @@ -91,7 +89,7 @@ L2 Cache & 2MB, 16路组相联, 8周期延迟\tabularnewline 攻击得到 X 的值 123. 而在其他配置中,array2 的所有位置都发生缓存缺失, 从而攻击者无法得出 X 的值,说明这些配置都能防御 Spectre 攻击。 -\subsection{SPEC CPU2006的性能评测} +\section{SPEC CPU2006 的性能评测与分析} 本文对 21 个 SPEC CPU2006 基准测试进行评测,基准测试的数据集使用 ref 集。所有的基准程序均用 GCC 8.3.0 编译,编译优化选项为 -O2,并且和 @@ -159,7 +157,8 @@ Glibc 2.24 静态链接。 %% \end{table} 图\ref{fig:is_spec06_result}是每种配置的处理器运行 SPEC CPU2006 相对于 -Baseline 的运行时间。 +Baseline 的运行时间。其中 cactusADM 和 lbm 由于每种配置的相对运行时间 +都接近 1,故未列入图中。 \begin{figure}[htbp] \centering @@ -175,74 +174,87 @@ Baseline 的运行时间。 6 个在 10\% 至 20\%. 性能开销最大的是 omnetpp, 所有安全的方案都会造成 94\% 以上的性能开销。 +\begin{figure}[htbp] + \centering + \includegraphics[width=\textwidth]{specload_ratio.eps} + \caption{SPEC CPU2006 中 SpecLoad 在所有操作中的比例} + \label{fig:specload} +\end{figure} + +%% \begin{table}[htbp] +%% \begin{tabular}{|c|c|c|c|} +%% \hline +%% 基准测试 & IS & IS+DIFT & SpecLoad 减少量\tabularnewline +%% \hline +%% \hline +%% astar & 34.80\% & 19.79\% & 43.13\%\tabularnewline +%% \hline +%% bwaves & 10.75\% & 0.23\% & 97.89\%\tabularnewline +%% \hline +%% bzip2 & 12.12\% & 5.49\% & 54.74\%\tabularnewline +%% \hline +%% cactusADM & 0.51\% & 0.13\% & 74.51\%\tabularnewline +%% \hline +%% calculix & 9.89\% & 3.06\% & 69.04\%\tabularnewline +%% \hline +%% GemsFDTD & 6.29\% & 0.13\% & 97.91\%\tabularnewline +%% \hline +%% gobmk & 12.61\% & 2.60\% & 79.38\%\tabularnewline +%% \hline +%% gromacs & 0.76\% & 0.06\% & 92.74\%\tabularnewline +%% \hline +%% h264ref & 5.43\% & 0.94\% & 82.68\%\tabularnewline +%% \hline +%% hmmer & 9.52\% & 4.82\% & 49.35\%\tabularnewline +%% \hline +%% lbm & 1.39\% & 0.00\% & 100.00\%\tabularnewline +%% \hline +%% leslie3d & 5.98\% & 0.11\% & 98.23\%\tabularnewline +%% \hline +%% libquantum & 1.99\% & 0.00\% & 99.99\%\tabularnewline +%% \hline +%% mcf & 10.56\% & 2.11\% & 79.99\%\tabularnewline +%% \hline +%% milc & 3.22\% & 0.10\% & 97.04\%\tabularnewline +%% \hline +%% namd & 2.67\% & 0.84\% & 68.73\%\tabularnewline +%% \hline +%% omnetpp & 5.94\% & 1.94\% & 67.37\%\tabularnewline +%% \hline +%% sjeng & 13.19\% & 2.72\% & 79.35\%\tabularnewline +%% \hline +%% soplex & 9.68\% & 4.63\% & 52.22\%\tabularnewline +%% \hline +%% sphinx3 & 6.63\% & 1.41\% & 78.68\%\tabularnewline +%% \hline +%% zeusmp & 6.70\% & 0.03\% & 99.58\%\tabularnewline +%% \hline +%% \end{tabular} +%% \centering +%% \caption{SPEC CPU2006 中 SpecLoad 在所有操作中的比例} +%% \label{tab:specload} +%% \end{table} +%% 为了观察使用基于信息流追踪的检测机制的效果,可以统计 IS 和 IS+DIFT 方 -案中 SpecLoad 请求的数量。表\ref{tab:specload}列出两种方案中,SpecLoad +案中 SpecLoad 请求的数量。图\ref{fig:specload}列出两种方案中,SpecLoad 请求的数量和程序的总操作数(gem5 模拟后得出的 sim\_ops 结果)的比例。 -\begin{table} -\centering -\begin{tabular}{|c|c|c|c|} -\hline -基准测试 & IS & IS+DIFT & SpecLoad 减少量\tabularnewline -\hline -\hline -astar & 34.80\% & 19.79\% & 43.13\%\tabularnewline -\hline -bwaves & 10.75\% & 0.23\% & 97.89\%\tabularnewline -\hline -bzip2 & 12.12\% & 5.49\% & 54.74\%\tabularnewline -\hline -cactusADM & 0.51\% & 0.13\% & 74.51\%\tabularnewline -\hline -calculix & 9.89\% & 3.06\% & 69.04\%\tabularnewline -\hline -GemsFDTD & 6.29\% & 0.13\% & 97.91\%\tabularnewline -\hline -gobmk & 12.61\% & 2.60\% & 79.38\%\tabularnewline -\hline -gromacs & 0.76\% & 0.06\% & 92.74\%\tabularnewline -\hline -h264ref & 5.43\% & 0.94\% & 82.68\%\tabularnewline -\hline -hmmer & 9.52\% & 4.82\% & 49.35\%\tabularnewline -\hline -lbm & 1.39\% & 0.00\% & 100.00\%\tabularnewline -\hline -leslie3d & 5.98\% & 0.11\% & 98.23\%\tabularnewline -\hline -libquantum & 1.99\% & 0.00\% & 99.99\%\tabularnewline -\hline -mcf & 10.56\% & 2.11\% & 79.99\%\tabularnewline -\hline -milc & 3.22\% & 0.10\% & 97.04\%\tabularnewline -\hline -namd & 2.67\% & 0.84\% & 68.73\%\tabularnewline -\hline -omnetpp & 5.94\% & 1.94\% & 67.37\%\tabularnewline -\hline -sjeng & 13.19\% & 2.72\% & 79.35\%\tabularnewline -\hline -soplex & 9.68\% & 4.63\% & 52.22\%\tabularnewline -\hline -sphinx3 & 6.63\% & 1.41\% & 78.68\%\tabularnewline -\hline -zeusmp & 6.70\% & 0.03\% & 99.58\%\tabularnewline -\hline -\end{tabular} -\caption{SPEC CPU2006 中 SpecLoad 在所有操作中的比例} -\label{tab:specload} -\end{table} - 可以看出,几乎所有的基准程序中,DIFT 可以过滤一半以上被认为不安全的装 载操作,其中 bwaves, GemsFDTD, libquantum, milc 中,推测式执行中的装载 指令只有 3\% 以下需要用安全的方式执行,因此使用 Fence+DIFT 即可以获得 -与 Baseline 几乎同等的性能。在 IS+DIFT 性能开销最大的 omnetpp 中, -SpecLoad 的数量只减少了 67\%,而性能开销接近 20\% 的 calculix 和 astar, -SpecLoad 减少的数量也在 70\% 以下。 +与 Baseline 几乎同等的性能。 + +在 IS+DIFT 性能开销最大的 omnetpp 中,SpecLoad 的数量只减少了 67\%,而 +性能开销接近 20\% 的 calculix 和 astar,SpecLoad 减少的数量也在 70\% +以下。而在 calculix 和 astar 中,对不安全的装载指令,用 InvisiSpec 策 +略执行,比阻止这些指令的执行,有明显的性能提升。 %\Todo: 评测结果的分析 \section{小结} 本章先介绍了评测环境,列出了各个处理器配置的基本参数。其后给出了评测指 标,包括安全性的测试和性能测试的指标。最后给出了安全测试的方法和结果, -以及用 SPEC CPU2006 进行性能评测得出的性能结果与分析。 +以及用 SPEC CPU2006 进行性能评测得出的性能结果与分析。功能验证表明,本 +文使用的基于 DIFT 的检测方法和 InvisiSpec 装载指令执行策略,都能阻止 +Spectre 攻击泄露内存中的数据。通过将这两种方法结合,防御 Spectre 攻击 +的性能开销为 8.5\%. diff --git a/chap/origin.tex b/chap/origin.tex index 49d25b5..0002589 100644 --- a/chap/origin.tex +++ b/chap/origin.tex @@ -34,7 +34,7 @@ % 学校书面要求本页面不要页码,但在给出的 Word 模版中又有页码且编入了目录。 % 此处以 Word 模版为实际标准进行设定。 - \specialchap{北京大学学位论文原创性声明和使用授权说明} + \specialchap*{北京大学学位论文原创性声明和使用授权说明} \mbox{}\vspace*{-3em} \section*{原创性声明} diff --git a/gem5_cpu.pdf b/gem5_cpu.pdf new file mode 100644 index 0000000..58a86fd Binary files /dev/null and b/gem5_cpu.pdf differ diff --git a/result.eps b/result.eps index ddc26f3..4769bca 100644 --- a/result.eps +++ b/result.eps @@ -61,695 +61,151129 @@ gs 46270 31498 l 27584 31498 l p ef gr gs -0 lw 1 lj 0.703 0.703 0.703 c 26605 29057 m 10372 29057 l 10372 10897 l -42837 10897 l 42837 29057 l 26605 29057 l pc +0 lw 1 lj 0.703 0.703 0.703 c 27947 30431 m 10372 30431 l 10372 11096 l +45523 11096 l 45523 30431 l 27947 30431 l pc gr gs -0 lw 1 lj 0.703 0.703 0.703 c 42837 29056 m 10372 29056 l ps +0 lw 1 lj 0.703 0.703 0.703 c 45523 30430 m 10372 30430 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 42837 27239 m 10372 27239 l ps +0 lw 1 lj 0.703 0.703 0.703 c 45523 28496 m 10372 28496 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 42837 25423 m 10372 25423 l ps +0 lw 1 lj 0.703 0.703 0.703 c 45523 26562 m 10372 26562 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 42837 23607 m 10372 23607 l ps +0 lw 1 lj 0.703 0.703 0.703 c 45523 24629 m 10372 24629 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 42837 21791 m 10372 21791 l ps +0 lw 1 lj 0.703 0.703 0.703 c 45523 22695 m 10372 22695 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 42837 19976 m 10372 19976 l ps +0 lw 1 lj 0.703 0.703 0.703 c 45523 20763 m 10372 20763 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 42837 18160 m 10372 18160 l ps +0 lw 1 lj 0.703 0.703 0.703 c 45523 18829 m 10372 18829 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 42837 16344 m 10372 16344 l ps +0 lw 1 lj 0.703 0.703 0.703 c 45523 16895 m 10372 16895 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 42837 14528 m 10372 14528 l ps +0 lw 1 lj 0.703 0.703 0.703 c 45523 14962 m 10372 14962 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 42837 12712 m 10372 12712 l ps +0 lw 1 lj 0.703 0.703 0.703 c 45523 13028 m 10372 13028 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 42837 10896 m 10372 10896 l ps +0 lw 1 lj 0.703 0.703 0.703 c 45523 11095 m 10372 11095 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 10372 29206 m 10372 29056 l ps +0 lw 1 lj 0.703 0.703 0.703 c 10372 30580 m 10372 30430 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 10372 29206 m 10372 29056 l ps +0 lw 1 lj 0.703 0.703 0.703 c 10372 30580 m 10372 30430 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 11847 29206 m 11847 29056 l ps +0 lw 1 lj 0.703 0.703 0.703 c 12129 30580 m 12129 30430 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 11847 29206 m 11847 29056 l ps +0 lw 1 lj 0.703 0.703 0.703 c 12129 30580 m 12129 30430 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 13323 29206 m 13323 29056 l ps +0 lw 1 lj 0.703 0.703 0.703 c 13887 30580 m 13887 30430 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 13323 29206 m 13323 29056 l ps +0 lw 1 lj 0.703 0.703 0.703 c 13887 30580 m 13887 30430 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 14799 29206 m 14799 29056 l ps +0 lw 1 lj 0.703 0.703 0.703 c 15644 30580 m 15644 30430 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 14799 29206 m 14799 29056 l ps +0 lw 1 lj 0.703 0.703 0.703 c 15644 30580 m 15644 30430 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 16274 29206 m 16274 29056 l ps +0 lw 1 lj 0.703 0.703 0.703 c 17402 30580 m 17402 30430 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 16274 29206 m 16274 29056 l ps +0 lw 1 lj 0.703 0.703 0.703 c 17402 30580 m 17402 30430 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 17750 29206 m 17750 29056 l ps +0 lw 1 lj 0.703 0.703 0.703 c 19160 30580 m 19160 30430 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 17750 29206 m 17750 29056 l ps +0 lw 1 lj 0.703 0.703 0.703 c 19160 30580 m 19160 30430 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 19226 29206 m 19226 29056 l ps +0 lw 1 lj 0.703 0.703 0.703 c 20917 30580 m 20917 30430 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 19226 29206 m 19226 29056 l ps +0 lw 1 lj 0.703 0.703 0.703 c 20917 30580 m 20917 30430 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 20702 29206 m 20702 29056 l ps +0 lw 1 lj 0.703 0.703 0.703 c 22675 30580 m 22675 30430 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 20702 29206 m 20702 29056 l ps +0 lw 1 lj 0.703 0.703 0.703 c 22675 30580 m 22675 30430 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 22177 29206 m 22177 29056 l ps +0 lw 1 lj 0.703 0.703 0.703 c 24432 30580 m 24432 30430 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 22177 29206 m 22177 29056 l ps +0 lw 1 lj 0.703 0.703 0.703 c 24432 30580 m 24432 30430 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 23653 29206 m 23653 29056 l ps +0 lw 1 lj 0.703 0.703 0.703 c 26190 30580 m 26190 30430 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 23653 29206 m 23653 29056 l ps +0 lw 1 lj 0.703 0.703 0.703 c 26190 30580 m 26190 30430 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 25129 29206 m 25129 29056 l ps +0 lw 1 lj 0.703 0.703 0.703 c 27947 30580 m 27947 30430 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 25129 29206 m 25129 29056 l ps +0 lw 1 lj 0.703 0.703 0.703 c 27947 30580 m 27947 30430 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 26605 29206 m 26605 29056 l ps +0 lw 1 lj 0.703 0.703 0.703 c 29704 30580 m 29704 30430 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 26605 29206 m 26605 29056 l ps +0 lw 1 lj 0.703 0.703 0.703 c 29704 30580 m 29704 30430 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 28079 29206 m 28079 29056 l ps +0 lw 1 lj 0.703 0.703 0.703 c 31462 30580 m 31462 30430 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 28079 29206 m 28079 29056 l ps +0 lw 1 lj 0.703 0.703 0.703 c 31462 30580 m 31462 30430 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 29555 29206 m 29555 29056 l ps +0 lw 1 lj 0.703 0.703 0.703 c 33219 30580 m 33219 30430 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 29555 29206 m 29555 29056 l ps +0 lw 1 lj 0.703 0.703 0.703 c 33219 30580 m 33219 30430 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 31031 29206 m 31031 29056 l ps +0 lw 1 lj 0.703 0.703 0.703 c 34977 30580 m 34977 30430 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 31031 29206 m 31031 29056 l ps +0 lw 1 lj 0.703 0.703 0.703 c 34977 30580 m 34977 30430 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 32506 29206 m 32506 29056 l ps +0 lw 1 lj 0.703 0.703 0.703 c 36735 30580 m 36735 30430 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 32506 29206 m 32506 29056 l ps +0 lw 1 lj 0.703 0.703 0.703 c 36735 30580 m 36735 30430 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 33982 29206 m 33982 29056 l ps +0 lw 1 lj 0.703 0.703 0.703 c 38492 30580 m 38492 30430 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 33982 29206 m 33982 29056 l ps +0 lw 1 lj 0.703 0.703 0.703 c 38492 30580 m 38492 30430 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 35458 29206 m 35458 29056 l ps +0 lw 1 lj 0.703 0.703 0.703 c 40250 30580 m 40250 30430 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 35458 29206 m 35458 29056 l ps +0 lw 1 lj 0.703 0.703 0.703 c 40250 30580 m 40250 30430 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 36934 29206 m 36934 29056 l ps +0 lw 1 lj 0.703 0.703 0.703 c 42007 30580 m 42007 30430 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 36934 29206 m 36934 29056 l ps +0 lw 1 lj 0.703 0.703 0.703 c 42007 30580 m 42007 30430 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 38409 29206 m 38409 29056 l ps +0 lw 1 lj 0.703 0.703 0.703 c 43765 30580 m 43765 30430 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 38409 29206 m 38409 29056 l ps +0 lw 1 lj 0.703 0.703 0.703 c 43765 30580 m 43765 30430 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 39885 29206 m 39885 29056 l ps +0 lw 1 lj 0.703 0.703 0.703 c 45523 30580 m 45523 30430 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 39885 29206 m 39885 29056 l ps +0 lw 1 lj 0.703 0.703 0.703 c 45523 30580 m 45523 30430 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 41361 29206 m 41361 29056 l ps +0 lw 1 lj 0.703 0.703 0.703 c 10372 30430 m 45523 30430 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 41361 29206 m 41361 29056 l ps +0 lw 1 lj 0.703 0.703 0.703 c 10222 30430 m 10372 30430 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 42837 29206 m 42837 29056 l ps +0 lw 1 lj 0.703 0.703 0.703 c 10222 30430 m 10372 30430 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 42837 29206 m 42837 29056 l ps +0 lw 1 lj 0.703 0.703 0.703 c 10222 28496 m 10372 28496 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 10372 29056 m 42837 29056 l ps +0 lw 1 lj 0.703 0.703 0.703 c 10222 28496 m 10372 28496 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 10222 29056 m 10372 29056 l ps +0 lw 1 lj 0.703 0.703 0.703 c 10222 26562 m 10372 26562 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 10222 29056 m 10372 29056 l ps +0 lw 1 lj 0.703 0.703 0.703 c 10222 26562 m 10372 26562 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 10222 27239 m 10372 27239 l ps +0 lw 1 lj 0.703 0.703 0.703 c 10222 24629 m 10372 24629 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 10222 27239 m 10372 27239 l ps +0 lw 1 lj 0.703 0.703 0.703 c 10222 24629 m 10372 24629 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 10222 25423 m 10372 25423 l ps +0 lw 1 lj 0.703 0.703 0.703 c 10222 22695 m 10372 22695 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 10222 25423 m 10372 25423 l ps +0 lw 1 lj 0.703 0.703 0.703 c 10222 22695 m 10372 22695 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 10222 23607 m 10372 23607 l ps +0 lw 1 lj 0.703 0.703 0.703 c 10222 20763 m 10372 20763 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 10222 23607 m 10372 23607 l ps +0 lw 1 lj 0.703 0.703 0.703 c 10222 20763 m 10372 20763 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 10222 21791 m 10372 21791 l ps +0 lw 1 lj 0.703 0.703 0.703 c 10222 18829 m 10372 18829 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 10222 21791 m 10372 21791 l ps +0 lw 1 lj 0.703 0.703 0.703 c 10222 18829 m 10372 18829 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 10222 19976 m 10372 19976 l ps +0 lw 1 lj 0.703 0.703 0.703 c 10222 16895 m 10372 16895 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 10222 19976 m 10372 19976 l ps +0 lw 1 lj 0.703 0.703 0.703 c 10222 16895 m 10372 16895 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 10222 18160 m 10372 18160 l ps +0 lw 1 lj 0.703 0.703 0.703 c 10222 14962 m 10372 14962 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 10222 18160 m 10372 18160 l ps +0 lw 1 lj 0.703 0.703 0.703 c 10222 14962 m 10372 14962 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 10222 16344 m 10372 16344 l ps +0 lw 1 lj 0.703 0.703 0.703 c 10222 13028 m 10372 13028 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 10222 16344 m 10372 16344 l ps +0 lw 1 lj 0.703 0.703 0.703 c 10222 13028 m 10372 13028 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 10222 14528 m 10372 14528 l ps +0 lw 1 lj 0.703 0.703 0.703 c 10222 11095 m 10372 11095 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 10222 14528 m 10372 14528 l ps +0 lw 1 lj 0.703 0.703 0.703 c 10222 11095 m 10372 11095 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 10222 12712 m 10372 12712 l ps +0 lw 1 lj 0.703 0.703 0.703 c 10372 30430 m 10372 11095 l ps gr gs -0 lw 1 lj 0.703 0.703 0.703 c 10222 12712 m 10372 12712 l ps -gr -gs -0 lw 1 lj 0.703 0.703 0.703 c 10222 10896 m 10372 10896 l ps -gr -gs -0 lw 1 lj 0.703 0.703 0.703 c 10222 10896 m 10372 10896 l ps -gr -gs -0 lw 1 lj 0.703 0.703 0.703 c 10372 29056 m 10372 10896 l ps -gr -gs -0.003 0.273 0.527 c 41484 29056 m 41730 29056 l 41730 25423 l 41484 25423 l -41484 29056 l p ef -gr -gs -0.003 0.273 0.527 c 40008 29056 m 40254 29056 l 40254 25423 l 40008 25423 l -40008 29056 l p ef -gr -gs -0.003 0.273 0.527 c 38532 29056 m 38778 29056 l 38778 25423 l 38532 25423 l -38532 29056 l p ef -gr -gs -0.003 0.273 0.527 c 37057 29056 m 37303 29056 l 37303 25423 l 37057 25423 l -37057 29056 l p ef -gr -gs -0.003 0.273 0.527 c 35581 29056 m 35827 29056 l 35827 25423 l 35581 25423 l -35581 29056 l p ef -gr -gs -0.003 0.273 0.527 c 34105 29056 m 34351 29056 l 34351 25423 l 34105 25423 l -34105 29056 l p ef -gr -gs -0.003 0.273 0.527 c 32629 29056 m 32875 29056 l 32875 25423 l 32629 25423 l -32629 29056 l p ef -gr -gs -0.003 0.273 0.527 c 31154 29056 m 31400 29056 l 31400 25423 l 31154 25423 l -31154 29056 l p ef -gr -gs -0.003 0.273 0.527 c 29678 29056 m 29924 29056 l 29924 25423 l 29678 25423 l -29678 29056 l p ef -gr -gs -0.003 0.273 0.527 c 28202 29056 m 28448 29056 l 28448 25423 l 28202 25423 l -28202 29056 l p ef +43941 30430 m 44292 30430 l 44292 23521 l 43941 23521 l 43941 30430 l +eoclip newpath +43941 23521 m 44292 23521 l 44292 30430 l 43941 30430 l 43941 23521 l eoclip newpath +pum +43799 23690 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +44011 23690 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +44223 23690 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +43587 23902 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +43799 23902 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +44011 23902 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +44223 23902 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +43799 24114 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +44011 24114 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +44223 24114 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +43587 24326 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +43799 24326 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +44011 24326 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +44223 24326 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +43799 24538 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +44011 24538 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +44223 24538 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +43587 24750 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +43799 24750 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +44011 24750 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +44223 24750 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +43799 24962 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +44011 24962 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +44223 24962 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +43587 25174 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +43799 25174 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +44011 25174 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +44223 25174 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +43799 25386 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +44011 25386 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +44223 25386 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +43587 25598 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +43799 25598 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +44011 25598 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +44223 25598 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +43799 25810 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +44011 25810 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +44223 25810 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +43587 26022 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +43799 26022 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +44011 26022 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +44223 26022 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +43799 26234 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +44011 26234 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +44223 26234 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +43587 26446 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +43799 26446 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +44011 26446 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +44223 26446 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +43799 26658 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +44011 26658 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +44223 26658 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +43587 26870 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +43799 26870 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +44011 26870 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +44223 26870 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +43799 27082 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +44011 27082 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +44223 27082 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +43587 27294 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +43799 27294 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +44011 27294 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +44223 27294 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +43799 27506 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +44011 27506 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +44223 27506 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +43587 27718 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +43799 27718 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +44011 27718 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +44223 27718 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +43799 27930 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +44011 27930 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +44223 27930 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +43587 28142 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +43799 28142 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +44011 28142 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +44223 28142 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +43799 28354 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +44011 28354 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +44223 28354 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +43587 28566 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +43799 28566 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +44011 28566 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +44223 28566 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +43799 28778 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +44011 28778 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +44223 28778 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +43587 28990 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +43799 28990 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +44011 28990 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +44223 28990 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +43799 29202 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +44011 29202 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +44223 29202 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +43587 29414 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +43799 29414 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +44011 29414 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +44223 29414 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +43799 29626 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +44011 29626 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +44223 29626 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +43587 29838 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +43799 29838 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +44011 29838 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +44223 29838 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +43799 30050 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +44011 30050 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +44223 30050 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +43587 30262 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +43799 30262 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +44011 30262 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +44223 30262 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +43799 30474 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +44011 30474 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +44223 30474 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom gr gs -0.003 0.273 0.527 c 26727 29056 m 26973 29056 l 26973 25423 l 26727 25423 l -26727 29056 l p ef -gr -gs -0.003 0.273 0.527 c 25252 29056 m 25498 29056 l 25498 25423 l 25252 25423 l -25252 29056 l p ef -gr -gs -0.003 0.273 0.527 c 23776 29056 m 24022 29056 l 24022 25423 l 23776 25423 l -23776 29056 l p ef -gr -gs -0.003 0.273 0.527 c 22300 29056 m 22546 29056 l 22546 25423 l 22300 25423 l -22300 29056 l p ef -gr -gs -0.003 0.273 0.527 c 20825 29056 m 21071 29056 l 21071 25423 l 20825 25423 l -20825 29056 l p ef -gr -gs -0.003 0.273 0.527 c 19349 29056 m 19595 29056 l 19595 25423 l 19349 25423 l -19349 29056 l p ef -gr -gs -0.003 0.273 0.527 c 17873 29056 m 18119 29056 l 18119 25423 l 17873 25423 l -17873 29056 l p ef -gr -gs -0.003 0.273 0.527 c 16397 29056 m 16643 29056 l 16643 25423 l 16397 25423 l -16397 29056 l p ef -gr -gs -0.003 0.273 0.527 c 14922 29056 m 15168 29056 l 15168 25423 l 14922 25423 l -14922 29056 l p ef -gr -gs -0.003 0.273 0.527 c 13446 29056 m 13692 29056 l 13692 25423 l 13446 25423 l -13446 29056 l p ef -gr -gs -0.003 0.273 0.527 c 11970 29056 m 12216 29056 l 12216 25423 l 11970 25423 l -11970 29056 l p ef -gr -gs -0.003 0.273 0.527 c 10494 29056 m 10740 29056 l 10740 25423 l 10494 25423 l -10494 29056 l p ef -gr -gs -1.000 0.261 0.058 c 41730 29056 m 41976 29056 l 41976 22917 l 41730 22917 l -41730 29056 l p ef -gr -gs -1.000 0.261 0.058 c 40254 29056 m 40500 29056 l 40500 23790 l 40254 23790 l -40254 29056 l p ef -gr -gs -1.000 0.261 0.058 c 38778 29056 m 39024 29056 l 39024 22399 l 38778 22399 l -38778 29056 l p ef -gr -gs -1.000 0.261 0.058 c 37303 29056 m 37548 29056 l 37548 22892 l 37303 22892 l -37303 29056 l p ef -gr -gs -1.000 0.261 0.058 c 35827 29056 m 36073 29056 l 36073 23866 l 35827 23866 l -35827 29056 l p ef -gr -gs -1.000 0.261 0.058 c 34351 29056 m 34597 29056 l 34597 18993 l 34351 18993 l -34351 29056 l p ef -gr -gs -1.000 0.261 0.058 c 32875 29056 m 33121 29056 l 33121 23078 l 32875 23078 l -32875 29056 l p ef -gr -gs -1.000 0.261 0.058 c 31400 29056 m 31646 29056 l 31646 23000 l 31400 23000 l -31400 29056 l p ef -gr -gs -1.000 0.261 0.058 c 29924 29056 m 30170 29056 l 30170 22457 l 29924 22457 l -29924 29056 l p ef -gr -gs -1.000 0.261 0.058 c 28448 29056 m 28694 29056 l 28694 13034 l 28448 13034 l -28448 29056 l p ef -gr -gs -1.000 0.261 0.058 c 26973 29056 m 27219 29056 l 27219 23812 l 26973 23812 l -26973 29056 l p ef -gr -gs -1.000 0.261 0.058 c 25498 29056 m 25744 29056 l 25744 25443 l 25498 25443 l -25498 29056 l p ef -gr -gs -1.000 0.261 0.058 c 24022 29056 m 24268 29056 l 24268 18959 l 24022 18959 l -24022 29056 l p ef -gr -gs -1.000 0.261 0.058 c 22546 29056 m 22792 29056 l 22792 23275 l 22546 23275 l -22546 29056 l p ef -gr -gs -1.000 0.261 0.058 c 21071 29056 m 21316 29056 l 21316 24911 l 21071 24911 l -21071 29056 l p ef -gr -gs -1.000 0.261 0.058 c 19595 29056 m 19841 29056 l 19841 23386 l 19595 23386 l -19595 29056 l p ef -gr -gs -1.000 0.261 0.058 c 18119 29056 m 18365 29056 l 18365 24161 l 18119 24161 l -18119 29056 l p ef +42183 30430 m 42535 30430 l 42535 24824 l 42183 24824 l 42183 30430 l +eoclip newpath +42183 24824 m 42535 24824 l 42535 30430 l 42183 30430 l 42183 24824 l eoclip newpath +pum +41829 24977 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42041 24977 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42253 24977 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42465 24977 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42041 25189 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42253 25189 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42465 25189 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +41829 25401 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42041 25401 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42253 25401 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42465 25401 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42041 25613 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42253 25613 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42465 25613 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +41829 25825 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42041 25825 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42253 25825 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42465 25825 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42041 26037 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42253 26037 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42465 26037 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +41829 26249 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42041 26249 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42253 26249 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42465 26249 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42041 26461 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42253 26461 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42465 26461 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +41829 26673 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42041 26673 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42253 26673 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42465 26673 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42041 26885 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42253 26885 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42465 26885 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +41829 27097 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42041 27097 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42253 27097 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42465 27097 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42041 27309 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42253 27309 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42465 27309 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +41829 27521 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42041 27521 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42253 27521 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42465 27521 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42041 27733 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42253 27733 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42465 27733 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +41829 27945 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42041 27945 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42253 27945 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42465 27945 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42041 28157 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42253 28157 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42465 28157 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +41829 28369 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42041 28369 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42253 28369 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42465 28369 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42041 28581 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42253 28581 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42465 28581 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +41829 28793 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42041 28793 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42253 28793 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42465 28793 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42041 29005 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42253 29005 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42465 29005 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +41829 29217 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42041 29217 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42253 29217 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42465 29217 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42041 29429 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42253 29429 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42465 29429 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +41829 29641 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42041 29641 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42253 29641 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42465 29641 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42041 29853 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42253 29853 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42465 29853 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +41829 30065 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42041 30065 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42253 30065 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42465 30065 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42041 30277 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42253 30277 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42465 30277 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +41829 30489 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42041 30489 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42253 30489 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +42465 30489 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom gr gs -1.000 0.261 0.058 c 16643 29056 m 16889 29056 l 16889 22255 l 16643 22255 l -16643 29056 l p ef +40425 30430 m 40777 30430 l 40777 23342 l 40425 23342 l 40425 30430 l +eoclip newpath +40425 23342 m 40777 23342 l 40777 30430 l 40425 30430 l 40425 23342 l eoclip newpath +pum +40071 23388 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40283 23388 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40495 23388 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40707 23388 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40283 23600 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40495 23600 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40707 23600 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40071 23812 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40283 23812 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40495 23812 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40707 23812 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40283 24024 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40495 24024 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40707 24024 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40071 24236 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40283 24236 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40495 24236 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40707 24236 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40283 24448 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40495 24448 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40707 24448 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40071 24660 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40283 24660 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40495 24660 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40707 24660 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40283 24872 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40495 24872 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40707 24872 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40071 25084 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40283 25084 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40495 25084 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40707 25084 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40283 25296 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40495 25296 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40707 25296 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40071 25508 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40283 25508 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40495 25508 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40707 25508 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40283 25720 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40495 25720 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40707 25720 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40071 25932 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40283 25932 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40495 25932 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40707 25932 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40283 26144 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40495 26144 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40707 26144 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40071 26356 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40283 26356 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40495 26356 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40707 26356 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40283 26568 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40495 26568 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40707 26568 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40071 26780 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40283 26780 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40495 26780 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40707 26780 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40283 26992 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40495 26992 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40707 26992 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40071 27204 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40283 27204 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40495 27204 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40707 27204 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40283 27416 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40495 27416 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40707 27416 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40071 27628 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40283 27628 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40495 27628 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40707 27628 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40283 27840 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40495 27840 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40707 27840 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40071 28052 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40283 28052 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40495 28052 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40707 28052 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40283 28264 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40495 28264 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40707 28264 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40071 28476 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40283 28476 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40495 28476 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40707 28476 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40283 28688 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40495 28688 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40707 28688 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40071 28900 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40283 28900 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40495 28900 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40707 28900 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40283 29112 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40495 29112 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40707 29112 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40071 29324 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40283 29324 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40495 29324 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40707 29324 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40283 29536 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40495 29536 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40707 29536 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40071 29748 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40283 29748 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40495 29748 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40707 29748 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40283 29960 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40495 29960 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40707 29960 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40071 30172 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40283 30172 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40495 30172 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40707 30172 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40283 30384 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40495 30384 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40707 30384 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40071 30596 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40283 30596 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40495 30596 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +40707 30596 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +gr +gs +38668 30430 m 39019 30430 l 39019 23867 l 38668 23867 l 38668 30430 l +eoclip newpath +38668 23867 m 39019 23867 l 39019 30430 l 38668 30430 l 38668 23867 l eoclip newpath +pum +38314 24075 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38526 24075 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38738 24075 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38950 24075 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38526 24287 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38738 24287 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38950 24287 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38314 24499 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38526 24499 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38738 24499 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38950 24499 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38526 24711 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38738 24711 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38950 24711 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38314 24923 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38526 24923 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38738 24923 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38950 24923 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38526 25135 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38738 25135 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38950 25135 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38314 25347 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38526 25347 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38738 25347 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38950 25347 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38526 25559 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38738 25559 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38950 25559 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38314 25771 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38526 25771 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38738 25771 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38950 25771 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38526 25983 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38738 25983 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38950 25983 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38314 26195 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38526 26195 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38738 26195 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38950 26195 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38526 26407 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38738 26407 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38950 26407 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38314 26619 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38526 26619 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38738 26619 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38950 26619 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38526 26831 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38738 26831 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38950 26831 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38314 27043 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38526 27043 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38738 27043 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38950 27043 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38526 27255 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38738 27255 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38950 27255 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38314 27467 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38526 27467 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38738 27467 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38950 27467 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38526 27679 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38738 27679 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38950 27679 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38314 27891 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38526 27891 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38738 27891 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38950 27891 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38526 28103 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38738 28103 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38950 28103 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38314 28315 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38526 28315 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38738 28315 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38950 28315 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38526 28527 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38738 28527 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38950 28527 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38314 28739 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38526 28739 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38738 28739 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38950 28739 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38526 28951 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38738 28951 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38950 28951 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38314 29163 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38526 29163 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38738 29163 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38950 29163 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38526 29375 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38738 29375 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38950 29375 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38314 29587 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38526 29587 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38738 29587 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38950 29587 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38526 29799 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38738 29799 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38950 29799 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38314 30011 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38526 30011 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38738 30011 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38950 30011 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38526 30223 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38738 30223 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38950 30223 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38314 30435 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38526 30435 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38738 30435 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +38950 30435 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +gr +gs +36910 30430 m 37262 30430 l 37262 24904 l 36910 24904 l 36910 30430 l +eoclip newpath +36910 24904 m 37262 24904 l 37262 30430 l 36910 30430 l 36910 24904 l eoclip newpath +pum +36556 25017 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +36768 25017 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +36980 25017 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +37192 25017 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +36768 25229 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +36980 25229 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +37192 25229 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +36556 25441 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +36768 25441 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +36980 25441 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +37192 25441 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +36768 25653 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +36980 25653 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +37192 25653 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +36556 25865 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +36768 25865 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +36980 25865 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +37192 25865 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +36768 26077 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +36980 26077 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +37192 26077 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +36556 26289 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +36768 26289 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +36980 26289 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +37192 26289 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +36768 26501 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +36980 26501 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +37192 26501 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +36556 26713 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +36768 26713 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +36980 26713 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +37192 26713 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +36768 26925 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +36980 26925 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +37192 26925 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +36556 27137 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +36768 27137 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +36980 27137 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +37192 27137 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +36768 27349 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +36980 27349 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +37192 27349 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +36556 27561 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +36768 27561 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +36980 27561 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +37192 27561 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +36768 27773 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +36980 27773 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +37192 27773 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +36556 27985 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +36768 27985 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +36980 27985 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +37192 27985 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +36768 28197 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +36980 28197 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +37192 28197 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +36556 28409 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +36768 28409 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +36980 28409 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +37192 28409 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +36768 28621 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +36980 28621 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +37192 28621 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +36556 28833 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +36768 28833 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +36980 28833 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +37192 28833 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +36768 29045 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +36980 29045 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +37192 29045 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +36556 29257 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +36768 29257 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +36980 29257 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +37192 29257 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +36768 29469 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +36980 29469 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +37192 29469 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +36556 29681 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +36768 29681 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +36980 29681 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +37192 29681 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +36768 29893 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +36980 29893 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +37192 29893 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +36556 30105 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +36768 30105 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +36980 30105 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +37192 30105 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +36768 30317 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +36980 30317 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +37192 30317 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +36556 30529 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +36768 30529 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +36980 30529 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +37192 30529 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +gr +gs +35153 30430 m 35504 30430 l 35504 19716 l 35153 19716 l 35153 30430 l +eoclip newpath +35153 19716 m 35504 19716 l 35504 30430 l 35153 30430 l 35153 19716 l eoclip newpath +pum +34799 19879 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35011 19879 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35223 19879 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35435 19879 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35011 20091 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35223 20091 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35435 20091 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +34799 20303 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35011 20303 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35223 20303 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35435 20303 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35011 20515 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35223 20515 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35435 20515 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +34799 20727 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35011 20727 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35223 20727 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35435 20727 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35011 20939 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35223 20939 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35435 20939 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +34799 21151 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35011 21151 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35223 21151 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35435 21151 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35011 21363 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35223 21363 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35435 21363 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +34799 21575 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35011 21575 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35223 21575 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35435 21575 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35011 21787 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35223 21787 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35435 21787 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +34799 21999 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35011 21999 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35223 21999 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35435 21999 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35011 22211 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35223 22211 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35435 22211 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +34799 22423 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35011 22423 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35223 22423 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35435 22423 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35011 22635 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35223 22635 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35435 22635 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +34799 22847 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35011 22847 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35223 22847 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35435 22847 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35011 23059 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35223 23059 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35435 23059 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +34799 23271 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35011 23271 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35223 23271 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35435 23271 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35011 23483 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35223 23483 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35435 23483 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +34799 23695 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35011 23695 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35223 23695 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35435 23695 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35011 23907 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35223 23907 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35435 23907 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +34799 24119 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35011 24119 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35223 24119 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35435 24119 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35011 24331 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35223 24331 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35435 24331 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +34799 24543 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35011 24543 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35223 24543 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35435 24543 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35011 24755 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35223 24755 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35435 24755 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +34799 24967 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35011 24967 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35223 24967 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35435 24967 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35011 25179 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35223 25179 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35435 25179 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +34799 25391 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35011 25391 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35223 25391 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35435 25391 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35011 25603 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35223 25603 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35435 25603 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +34799 25815 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35011 25815 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35223 25815 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35435 25815 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35011 26027 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35223 26027 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35435 26027 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +34799 26239 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35011 26239 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35223 26239 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35435 26239 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35011 26451 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35223 26451 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35435 26451 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +34799 26663 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35011 26663 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35223 26663 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35435 26663 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35011 26875 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35223 26875 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35435 26875 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +34799 27087 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35011 27087 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35223 27087 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35435 27087 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35011 27299 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35223 27299 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35435 27299 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +34799 27511 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35011 27511 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35223 27511 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35435 27511 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35011 27723 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35223 27723 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35435 27723 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +34799 27935 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35011 27935 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35223 27935 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35435 27935 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35011 28147 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35223 28147 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35435 28147 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +34799 28359 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35011 28359 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35223 28359 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35435 28359 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35011 28571 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35223 28571 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35435 28571 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +34799 28783 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35011 28783 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35223 28783 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35435 28783 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35011 28995 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35223 28995 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35435 28995 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +34799 29207 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35011 29207 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35223 29207 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35435 29207 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35011 29419 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35223 29419 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35435 29419 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +34799 29631 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35011 29631 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35223 29631 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35435 29631 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35011 29843 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35223 29843 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35435 29843 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +34799 30055 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35011 30055 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35223 30055 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35435 30055 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35011 30267 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35223 30267 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35435 30267 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +34799 30479 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35011 30479 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35223 30479 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +35435 30479 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +gr +gs +33395 30430 m 33747 30430 l 33747 24065 l 33395 24065 l 33395 30430 l +eoclip newpath +33395 24065 m 33747 24065 l 33747 30430 l 33395 30430 l 33395 24065 l eoclip newpath +pum +33041 24174 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33253 24174 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33465 24174 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33677 24174 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33253 24386 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33465 24386 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33677 24386 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33041 24598 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33253 24598 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33465 24598 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33677 24598 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33253 24810 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33465 24810 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33677 24810 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33041 25022 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33253 25022 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33465 25022 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33677 25022 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33253 25234 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33465 25234 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33677 25234 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33041 25446 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33253 25446 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33465 25446 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33677 25446 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33253 25658 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33465 25658 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33677 25658 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33041 25870 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33253 25870 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33465 25870 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33677 25870 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33253 26082 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33465 26082 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33677 26082 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33041 26294 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33253 26294 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33465 26294 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33677 26294 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33253 26506 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33465 26506 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33677 26506 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33041 26718 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33253 26718 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33465 26718 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33677 26718 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33253 26930 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33465 26930 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33677 26930 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33041 27142 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33253 27142 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33465 27142 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33677 27142 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33253 27354 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33465 27354 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33677 27354 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33041 27566 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33253 27566 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33465 27566 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33677 27566 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33253 27778 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33465 27778 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33677 27778 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33041 27990 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33253 27990 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33465 27990 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33677 27990 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33253 28202 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33465 28202 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33677 28202 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33041 28414 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33253 28414 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33465 28414 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33677 28414 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33253 28626 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33465 28626 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33677 28626 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33041 28838 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33253 28838 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33465 28838 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33677 28838 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33253 29050 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33465 29050 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33677 29050 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33041 29262 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33253 29262 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33465 29262 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33677 29262 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33253 29474 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33465 29474 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33677 29474 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33041 29686 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33253 29686 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33465 29686 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33677 29686 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33253 29898 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33465 29898 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33677 29898 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33041 30110 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33253 30110 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33465 30110 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33677 30110 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33253 30322 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33465 30322 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33677 30322 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33041 30534 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33253 30534 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33465 30534 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +33677 30534 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +gr +gs +31637 30430 m 31989 30430 l 31989 23982 l 31637 23982 l 31637 30430 l +eoclip newpath +31637 23982 m 31989 23982 l 31989 30430 l 31637 30430 l 31637 23982 l eoclip newpath +pum +31283 24132 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31495 24132 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31707 24132 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31919 24132 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31495 24344 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31707 24344 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31919 24344 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31283 24556 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31495 24556 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31707 24556 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31919 24556 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31495 24768 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31707 24768 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31919 24768 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31283 24980 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31495 24980 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31707 24980 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31919 24980 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31495 25192 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31707 25192 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31919 25192 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31283 25404 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31495 25404 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31707 25404 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31919 25404 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31495 25616 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31707 25616 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31919 25616 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31283 25828 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31495 25828 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31707 25828 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31919 25828 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31495 26040 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31707 26040 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31919 26040 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31283 26252 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31495 26252 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31707 26252 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31919 26252 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31495 26464 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31707 26464 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31919 26464 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31283 26676 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31495 26676 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31707 26676 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31919 26676 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31495 26888 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31707 26888 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31919 26888 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31283 27100 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31495 27100 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31707 27100 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31919 27100 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31495 27312 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31707 27312 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31919 27312 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31283 27524 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31495 27524 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31707 27524 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31919 27524 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31495 27736 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31707 27736 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31919 27736 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31283 27948 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31495 27948 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31707 27948 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31919 27948 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31495 28160 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31707 28160 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31919 28160 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31283 28372 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31495 28372 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31707 28372 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31919 28372 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31495 28584 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31707 28584 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31919 28584 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31283 28796 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31495 28796 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31707 28796 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31919 28796 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31495 29008 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31707 29008 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31919 29008 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31283 29220 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31495 29220 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31707 29220 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31919 29220 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31495 29432 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31707 29432 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31919 29432 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31283 29644 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31495 29644 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31707 29644 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31919 29644 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31495 29856 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31707 29856 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31919 29856 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31283 30068 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31495 30068 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31707 30068 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31919 30068 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31495 30280 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31707 30280 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31919 30280 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31283 30492 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31495 30492 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31707 30492 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +31919 30492 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +gr +gs +29880 30430 m 30231 30430 l 30231 23404 l 29880 23404 l 29880 30430 l +eoclip newpath +29880 23404 m 30231 23404 l 30231 30430 l 29880 30430 l 29880 23404 l eoclip newpath +pum +29526 23419 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29738 23419 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29950 23419 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +30162 23419 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29738 23631 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29950 23631 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +30162 23631 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29526 23843 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29738 23843 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29950 23843 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +30162 23843 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29738 24055 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29950 24055 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +30162 24055 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29526 24267 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29738 24267 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29950 24267 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +30162 24267 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29738 24479 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29950 24479 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +30162 24479 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29526 24691 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29738 24691 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29950 24691 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +30162 24691 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29738 24903 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29950 24903 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +30162 24903 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29526 25115 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29738 25115 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29950 25115 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +30162 25115 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29738 25327 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29950 25327 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +30162 25327 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29526 25539 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29738 25539 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29950 25539 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +30162 25539 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29738 25751 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29950 25751 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +30162 25751 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29526 25963 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29738 25963 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29950 25963 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +30162 25963 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29738 26175 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29950 26175 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +30162 26175 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29526 26387 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29738 26387 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29950 26387 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +30162 26387 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29738 26599 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29950 26599 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +30162 26599 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29526 26811 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29738 26811 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29950 26811 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +30162 26811 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29738 27023 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29950 27023 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +30162 27023 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29526 27235 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29738 27235 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29950 27235 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +30162 27235 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29738 27447 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29950 27447 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +30162 27447 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29526 27659 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29738 27659 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29950 27659 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +30162 27659 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29738 27871 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29950 27871 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +30162 27871 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29526 28083 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29738 28083 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29950 28083 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +30162 28083 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29738 28295 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29950 28295 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +30162 28295 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29526 28507 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29738 28507 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29950 28507 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +30162 28507 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29738 28719 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29950 28719 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +30162 28719 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29526 28931 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29738 28931 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29950 28931 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +30162 28931 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29738 29143 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29950 29143 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +30162 29143 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29526 29355 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29738 29355 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29950 29355 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +30162 29355 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29738 29567 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29950 29567 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +30162 29567 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29526 29779 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29738 29779 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29950 29779 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +30162 29779 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29738 29991 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29950 29991 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +30162 29991 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29526 30203 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29738 30203 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29950 30203 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +30162 30203 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29738 30415 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29950 30415 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +30162 30415 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29526 30627 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29738 30627 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +29950 30627 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +30162 30627 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +gr +gs +28122 30430 m 28474 30430 l 28474 13372 l 28122 13372 l 28122 30430 l +eoclip newpath +28122 13372 m 28474 13372 l 28474 30430 l 28122 30430 l 28122 13372 l eoclip newpath +pum +27980 13527 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 13527 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 13527 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27768 13739 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 13739 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 13739 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 13739 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 13951 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 13951 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 13951 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27768 14163 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 14163 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 14163 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 14163 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 14375 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 14375 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 14375 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27768 14587 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 14587 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 14587 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 14587 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 14799 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 14799 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 14799 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27768 15011 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 15011 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 15011 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 15011 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 15223 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 15223 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 15223 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27768 15435 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 15435 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 15435 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 15435 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 15647 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 15647 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 15647 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27768 15859 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 15859 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 15859 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 15859 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 16071 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 16071 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 16071 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27768 16283 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 16283 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 16283 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 16283 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 16495 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 16495 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 16495 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27768 16707 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 16707 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 16707 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 16707 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 16919 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 16919 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 16919 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27768 17131 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 17131 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 17131 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 17131 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 17343 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 17343 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 17343 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27768 17555 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 17555 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 17555 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 17555 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 17767 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 17767 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 17767 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27768 17979 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 17979 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 17979 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 17979 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 18191 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 18191 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 18191 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27768 18403 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 18403 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 18403 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 18403 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 18615 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 18615 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 18615 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27768 18827 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 18827 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 18827 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 18827 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 19039 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 19039 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 19039 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27768 19251 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 19251 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 19251 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 19251 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 19463 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 19463 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 19463 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27768 19675 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 19675 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 19675 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 19675 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 19887 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 19887 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 19887 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27768 20099 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 20099 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 20099 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 20099 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 20311 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 20311 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 20311 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27768 20523 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 20523 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 20523 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 20523 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 20735 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 20735 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 20735 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27768 20947 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 20947 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 20947 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 20947 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 21159 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 21159 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 21159 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27768 21371 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 21371 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 21371 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 21371 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 21583 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 21583 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 21583 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27768 21795 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 21795 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 21795 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 21795 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 22007 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 22007 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 22007 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27768 22219 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 22219 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 22219 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 22219 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 22431 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 22431 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 22431 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27768 22643 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 22643 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 22643 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 22643 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 22855 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 22855 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 22855 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27768 23067 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 23067 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 23067 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 23067 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 23279 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 23279 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 23279 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27768 23491 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 23491 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 23491 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 23491 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 23703 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 23703 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 23703 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27768 23915 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 23915 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 23915 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 23915 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 24127 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 24127 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 24127 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27768 24339 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 24339 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 24339 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 24339 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 24551 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 24551 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 24551 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27768 24763 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 24763 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 24763 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 24763 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 24975 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 24975 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 24975 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27768 25187 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 25187 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 25187 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 25187 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 25399 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 25399 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 25399 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27768 25611 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 25611 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 25611 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 25611 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 25823 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 25823 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 25823 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27768 26035 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 26035 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 26035 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 26035 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 26247 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 26247 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 26247 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27768 26459 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 26459 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 26459 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 26459 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 26671 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 26671 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 26671 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27768 26883 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 26883 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 26883 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 26883 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 27095 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 27095 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 27095 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27768 27307 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 27307 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 27307 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 27307 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 27519 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 27519 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 27519 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27768 27731 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 27731 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 27731 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 27731 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 27943 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 27943 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 27943 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27768 28155 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 28155 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 28155 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 28155 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 28367 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 28367 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 28367 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27768 28579 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 28579 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 28579 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 28579 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 28791 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 28791 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 28791 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27768 29003 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 29003 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 29003 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 29003 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 29215 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 29215 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 29215 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27768 29427 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 29427 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 29427 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 29427 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 29639 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 29639 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 29639 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27768 29851 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 29851 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 29851 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 29851 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 30063 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 30063 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 30063 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27768 30275 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 30275 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 30275 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 30275 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +27980 30487 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28192 30487 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +28404 30487 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom gr gs -1.000 0.261 0.058 c 15168 29056 m 15414 29056 l 15414 25418 l 15168 25418 l -15168 29056 l p ef +26366 30430 m 26717 30430 l 26717 24847 l 26366 24847 l 26366 30430 l +eoclip newpath +26366 24847 m 26717 24847 l 26717 30430 l 26366 30430 l 26366 24847 l eoclip newpath +pum +26011 24989 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26223 24989 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26435 24989 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26647 24989 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26223 25201 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26435 25201 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26647 25201 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26011 25413 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26223 25413 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26435 25413 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26647 25413 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26223 25625 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26435 25625 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26647 25625 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26011 25837 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26223 25837 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26435 25837 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26647 25837 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26223 26049 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26435 26049 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26647 26049 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26011 26261 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26223 26261 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26435 26261 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26647 26261 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26223 26473 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26435 26473 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26647 26473 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26011 26685 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26223 26685 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26435 26685 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26647 26685 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26223 26897 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26435 26897 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26647 26897 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26011 27109 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26223 27109 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26435 27109 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26647 27109 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26223 27321 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26435 27321 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26647 27321 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26011 27533 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26223 27533 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26435 27533 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26647 27533 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26223 27745 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26435 27745 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26647 27745 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26011 27957 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26223 27957 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26435 27957 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26647 27957 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26223 28169 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26435 28169 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26647 28169 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26011 28381 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26223 28381 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26435 28381 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26647 28381 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26223 28593 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26435 28593 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26647 28593 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26011 28805 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26223 28805 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26435 28805 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26647 28805 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26223 29017 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26435 29017 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26647 29017 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26011 29229 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26223 29229 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26435 29229 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26647 29229 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26223 29441 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26435 29441 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26647 29441 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26011 29653 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26223 29653 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26435 29653 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26647 29653 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26223 29865 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26435 29865 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26647 29865 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26011 30077 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26223 30077 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26435 30077 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26647 30077 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26223 30289 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26435 30289 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26647 30289 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26011 30501 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26223 30501 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26435 30501 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +26647 30501 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom gr gs -1.000 0.261 0.058 c 13692 29056 m 13938 29056 l 13938 22938 l 13692 22938 l -13692 29056 l p ef +24608 30430 m 24960 30430 l 24960 19679 l 24608 19679 l 24608 30430 l +eoclip newpath +24608 19679 m 24960 19679 l 24960 30430 l 24608 30430 l 24608 19679 l eoclip newpath +pum +24254 19861 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24466 19861 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24678 19861 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24890 19861 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24466 20073 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24678 20073 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24890 20073 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24254 20285 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24466 20285 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24678 20285 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24890 20285 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24466 20497 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24678 20497 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24890 20497 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24254 20709 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24466 20709 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24678 20709 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24890 20709 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24466 20921 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24678 20921 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24890 20921 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24254 21132 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24466 21132 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24678 21132 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24890 21132 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24466 21344 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24678 21344 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24890 21344 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24254 21556 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24466 21556 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24678 21556 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24890 21556 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24466 21768 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24678 21768 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24890 21768 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24254 21980 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24466 21980 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24678 21980 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24890 21980 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24466 22192 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24678 22192 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24890 22192 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24254 22404 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24466 22404 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24678 22404 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24890 22404 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24466 22616 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24678 22616 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24890 22616 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24254 22828 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24466 22828 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24678 22828 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24890 22828 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24466 23040 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24678 23040 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24890 23040 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24254 23252 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24466 23252 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24678 23252 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24890 23252 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24466 23464 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24678 23464 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24890 23464 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24254 23676 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24466 23676 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24678 23676 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24890 23676 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24466 23888 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24678 23888 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24890 23888 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24254 24100 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24466 24100 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24678 24100 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24890 24100 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24466 24312 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24678 24312 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24890 24312 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24254 24524 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24466 24524 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24678 24524 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24890 24524 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24466 24736 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24678 24736 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24890 24736 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24254 24948 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24466 24948 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24678 24948 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24890 24948 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24466 25160 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24678 25160 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24890 25160 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24254 25372 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24466 25372 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24678 25372 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24890 25372 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24466 25584 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24678 25584 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24890 25584 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24254 25796 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24466 25796 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24678 25796 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24890 25796 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24466 26008 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24678 26008 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24890 26008 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24254 26220 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24466 26220 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24678 26220 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24890 26220 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24466 26432 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24678 26432 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24890 26432 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24254 26644 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24466 26644 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24678 26644 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24890 26644 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24466 26856 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24678 26856 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24890 26856 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24254 27068 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24466 27068 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24678 27068 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24890 27068 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24466 27280 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24678 27280 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24890 27280 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24254 27492 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24466 27492 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24678 27492 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24890 27492 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24466 27704 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24678 27704 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24890 27704 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24254 27916 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24466 27916 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24678 27916 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24890 27916 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24466 28128 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24678 28128 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24890 28128 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24254 28340 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24466 28340 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24678 28340 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24890 28340 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24466 28552 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24678 28552 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24890 28552 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24254 28764 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24466 28764 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24678 28764 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24890 28764 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24466 28976 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24678 28976 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24890 28976 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24254 29188 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24466 29188 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24678 29188 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24890 29188 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24466 29400 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24678 29400 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24890 29400 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24254 29612 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24466 29612 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24678 29612 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24890 29612 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24466 29824 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24678 29824 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24890 29824 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24254 30036 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24466 30036 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24678 30036 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24890 30036 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24466 30248 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24678 30248 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24890 30248 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24254 30460 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24466 30460 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24678 30460 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +24890 30460 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom gr gs -1.000 0.261 0.058 c 12216 29056 m 12462 29056 l 12462 21635 l 12216 21635 l -12216 29056 l p ef +22850 30430 m 23202 30430 l 23202 24275 l 22850 24275 l 22850 30430 l +eoclip newpath +22850 24275 m 23202 24275 l 23202 30430 l 22850 30430 l 22850 24275 l eoclip newpath +pum +22496 24279 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22708 24279 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22920 24279 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +23132 24279 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22708 24491 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22920 24491 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +23132 24491 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22496 24703 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22708 24703 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22920 24703 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +23132 24703 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22708 24915 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22920 24915 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +23132 24915 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22496 25127 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22708 25127 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22920 25127 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +23132 25127 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22708 25339 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22920 25339 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +23132 25339 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22496 25551 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22708 25551 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22920 25551 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +23132 25551 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22708 25763 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22920 25763 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +23132 25763 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22496 25975 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22708 25975 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22920 25975 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +23132 25975 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22708 26187 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22920 26187 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +23132 26187 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22496 26399 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22708 26399 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22920 26399 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +23132 26399 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22708 26611 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22920 26611 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +23132 26611 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22496 26823 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22708 26823 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22920 26823 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +23132 26823 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22708 27035 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22920 27035 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +23132 27035 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22496 27247 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22708 27247 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22920 27247 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +23132 27247 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22708 27459 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22920 27459 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +23132 27459 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22496 27671 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22708 27671 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22920 27671 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +23132 27671 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22708 27883 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22920 27883 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +23132 27883 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22496 28095 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22708 28095 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22920 28095 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +23132 28095 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22708 28307 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22920 28307 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +23132 28307 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22496 28519 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22708 28519 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22920 28519 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +23132 28519 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22708 28731 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22920 28731 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +23132 28731 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22496 28943 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22708 28943 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22920 28943 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +23132 28943 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22708 29155 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22920 29155 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +23132 29155 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22496 29367 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22708 29367 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22920 29367 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +23132 29367 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22708 29579 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22920 29579 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +23132 29579 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22496 29791 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22708 29791 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22920 29791 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +23132 29791 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22708 30003 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22920 30003 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +23132 30003 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22496 30215 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22708 30215 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22920 30215 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +23132 30215 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22708 30427 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22920 30427 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +23132 30427 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22496 30639 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22708 30639 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +22920 30639 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +23132 30639 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom gr gs -1.000 0.261 0.058 c 10740 29056 m 10986 29056 l 10986 23306 l 10740 23306 l -10740 29056 l p ef +21093 30430 m 21444 30430 l 21444 26016 l 21093 26016 l 21093 30430 l +eoclip newpath +21093 26016 m 21444 26016 l 21444 30430 l 21093 30430 l 21093 26016 l eoclip newpath +pum +20950 26209 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +21162 26209 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +21374 26209 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +20738 26421 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +20950 26421 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +21162 26421 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +21374 26421 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +20950 26633 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +21162 26633 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +21374 26633 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +20738 26845 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +20950 26845 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +21162 26845 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +21374 26845 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +20950 27057 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +21162 27057 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +21374 27057 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +20738 27269 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +20950 27269 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +21162 27269 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +21374 27269 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +20950 27481 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +21162 27481 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +21374 27481 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +20738 27693 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +20950 27693 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +21162 27693 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +21374 27693 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +20950 27905 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +21162 27905 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +21374 27905 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +20738 28117 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +20950 28117 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +21162 28117 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +21374 28117 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +20950 28329 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +21162 28329 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +21374 28329 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +20738 28541 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +20950 28541 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +21162 28541 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +21374 28541 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +20950 28753 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +21162 28753 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +21374 28753 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +20738 28965 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +20950 28965 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +21162 28965 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +21374 28965 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +20950 29177 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +21162 29177 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +21374 29177 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +20738 29389 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +20950 29389 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +21162 29389 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +21374 29389 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +20950 29601 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +21162 29601 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +21374 29601 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +20738 29813 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +20950 29813 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +21162 29813 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +21374 29813 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +20950 30025 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +21162 30025 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +21374 30025 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +20738 30237 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +20950 30237 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +21162 30237 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +21374 30237 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +20950 30449 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +21162 30449 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +21374 30449 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom gr gs -1.000 0.828 0.128 c 41976 29056 m 42222 29056 l 42222 24878 l 41976 24878 l -41976 29056 l p ef +19335 30430 m 19687 30430 l 19687 24393 l 19335 24393 l 19335 30430 l +eoclip newpath +19335 24393 m 19687 24393 l 19687 30430 l 19335 30430 l 19335 24393 l eoclip newpath +pum +19193 24550 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19405 24550 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19617 24550 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +18981 24762 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19193 24762 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19405 24762 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19617 24762 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19193 24974 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19405 24974 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19617 24974 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +18981 25186 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19193 25186 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19405 25186 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19617 25186 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19193 25398 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19405 25398 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19617 25398 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +18981 25610 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19193 25610 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19405 25610 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19617 25610 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19193 25822 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19405 25822 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19617 25822 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +18981 26034 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19193 26034 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19405 26034 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19617 26034 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19193 26246 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19405 26246 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19617 26246 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +18981 26458 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19193 26458 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19405 26458 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19617 26458 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19193 26670 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19405 26670 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19617 26670 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +18981 26882 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19193 26882 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19405 26882 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19617 26882 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19193 27094 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19405 27094 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19617 27094 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +18981 27306 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19193 27306 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19405 27306 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19617 27306 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19193 27518 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19405 27518 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19617 27518 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +18981 27730 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19193 27730 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19405 27730 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19617 27730 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19193 27942 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19405 27942 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19617 27942 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +18981 28154 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19193 28154 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19405 28154 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19617 28154 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19193 28366 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19405 28366 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19617 28366 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +18981 28578 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19193 28578 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19405 28578 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19617 28578 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19193 28790 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19405 28790 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19617 28790 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +18981 29002 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19193 29002 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19405 29002 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19617 29002 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19193 29214 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19405 29214 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19617 29214 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +18981 29426 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19193 29426 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19405 29426 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19617 29426 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19193 29638 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19405 29638 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19617 29638 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +18981 29850 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19193 29850 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19405 29850 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19617 29850 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19193 30062 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19405 30062 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19617 30062 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +18981 30274 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19193 30274 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19405 30274 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19617 30274 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19193 30486 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19405 30486 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +19617 30486 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom gr gs -1.000 0.828 0.128 c 40500 29056 m 40746 29056 l 40746 25422 l 40500 25422 l -40500 29056 l p ef +17578 30430 m 17929 30430 l 17929 25218 l 17578 25218 l 17578 30430 l +eoclip newpath +17578 25218 m 17929 25218 l 17929 30430 l 17578 30430 l 17578 25218 l eoclip newpath +pum +17435 25386 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17647 25386 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17859 25386 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17223 25598 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17435 25598 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17647 25598 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17859 25598 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17435 25810 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17647 25810 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17859 25810 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17223 26022 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17435 26022 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17647 26022 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17859 26022 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17435 26234 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17647 26234 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17859 26234 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17223 26446 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17435 26446 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17647 26446 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17859 26446 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17435 26658 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17647 26658 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17859 26658 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17223 26870 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17435 26870 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17647 26870 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17859 26870 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17435 27082 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17647 27082 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17859 27082 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17223 27294 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17435 27294 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17647 27294 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17859 27294 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17435 27506 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17647 27506 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17859 27506 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17223 27718 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17435 27718 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17647 27718 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17859 27718 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17435 27930 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17647 27930 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17859 27930 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17223 28142 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17435 28142 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17647 28142 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17859 28142 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17435 28354 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17647 28354 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17859 28354 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17223 28566 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17435 28566 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17647 28566 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17859 28566 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17435 28778 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17647 28778 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17859 28778 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17223 28990 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17435 28990 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17647 28990 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17859 28990 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17435 29202 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17647 29202 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17859 29202 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17223 29414 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17435 29414 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17647 29414 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17859 29414 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17435 29626 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17647 29626 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17859 29626 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17223 29838 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17435 29838 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17647 29838 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17859 29838 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17435 30050 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17647 30050 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17859 30050 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17223 30262 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17435 30262 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17647 30262 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17859 30262 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17435 30474 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17647 30474 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +17859 30474 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom gr gs -1.000 0.828 0.128 c 39024 29056 m 39270 29056 l 39270 25033 l 39024 25033 l -39024 29056 l p ef +15820 30430 m 16172 30430 l 16172 23189 l 15820 23189 l 15820 30430 l +eoclip newpath +15820 23189 m 16172 23189 l 16172 30430 l 15820 30430 l 15820 23189 l eoclip newpath +pum +15466 23312 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15678 23312 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15890 23312 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +16102 23312 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15678 23524 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15890 23524 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +16102 23524 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15466 23736 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15678 23736 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15890 23736 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +16102 23736 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15678 23948 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15890 23948 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +16102 23948 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15466 24160 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15678 24160 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15890 24160 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +16102 24160 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15678 24372 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15890 24372 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +16102 24372 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15466 24584 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15678 24584 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15890 24584 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +16102 24584 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15678 24796 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15890 24796 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +16102 24796 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15466 25008 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15678 25008 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15890 25008 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +16102 25008 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15678 25220 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15890 25220 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +16102 25220 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15466 25432 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15678 25432 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15890 25432 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +16102 25432 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15678 25644 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15890 25644 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +16102 25644 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15466 25856 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15678 25856 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15890 25856 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +16102 25856 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15678 26068 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15890 26068 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +16102 26068 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15466 26280 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15678 26280 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15890 26280 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +16102 26280 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15678 26492 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15890 26492 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +16102 26492 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15466 26704 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15678 26704 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15890 26704 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +16102 26704 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15678 26916 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15890 26916 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +16102 26916 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15466 27128 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15678 27128 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15890 27128 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +16102 27128 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15678 27340 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15890 27340 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +16102 27340 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15466 27552 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15678 27552 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15890 27552 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +16102 27552 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15678 27764 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15890 27764 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +16102 27764 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15466 27976 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15678 27976 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15890 27976 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +16102 27976 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15678 28188 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15890 28188 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +16102 28188 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15466 28400 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15678 28400 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15890 28400 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +16102 28400 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15678 28612 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15890 28612 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +16102 28612 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15466 28824 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15678 28824 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15890 28824 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +16102 28824 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15678 29036 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15890 29036 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +16102 29036 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15466 29248 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15678 29248 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15890 29248 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +16102 29248 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15678 29460 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15890 29460 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +16102 29460 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15466 29672 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15678 29672 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15890 29672 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +16102 29672 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15678 29884 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15890 29884 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +16102 29884 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15466 30096 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15678 30096 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15890 30096 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +16102 30096 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15678 30308 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15890 30308 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +16102 30308 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15466 30520 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15678 30520 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +15890 30520 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +16102 30520 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom gr gs -1.000 0.828 0.128 c 37548 29056 m 37794 29056 l 37794 24681 l 37548 24681 l -37548 29056 l p ef +14062 30430 m 14414 30430 l 14414 23916 l 14062 23916 l 14062 30430 l +eoclip newpath +14062 23916 m 14414 23916 l 14414 30430 l 14062 30430 l 14062 23916 l eoclip newpath +pum +13708 24099 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +13920 24099 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +14132 24099 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +14344 24099 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +13920 24311 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +14132 24311 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +14344 24311 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +13708 24523 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +13920 24523 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +14132 24523 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +14344 24523 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +13920 24735 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +14132 24735 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +14344 24735 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +13708 24947 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +13920 24947 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +14132 24947 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +14344 24947 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +13920 25159 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +14132 25159 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +14344 25159 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +13708 25371 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +13920 25371 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +14132 25371 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +14344 25371 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +13920 25583 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +14132 25583 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +14344 25583 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +13708 25795 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +13920 25795 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +14132 25795 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +14344 25795 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +13920 26007 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +14132 26007 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +14344 26007 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +13708 26219 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +13920 26219 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +14132 26219 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +14344 26219 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +13920 26431 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +14132 26431 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +14344 26431 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +13708 26643 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +13920 26643 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +14132 26643 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +14344 26643 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +13920 26855 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +14132 26855 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +14344 26855 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +13708 27067 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +13920 27067 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +14132 27067 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +14344 27067 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +13920 27279 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +14132 27279 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +14344 27279 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +13708 27491 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +13920 27491 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +14132 27491 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +14344 27491 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +13920 27703 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +14132 27703 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +14344 27703 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +13708 27915 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +13920 27915 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +14132 27915 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +14344 27915 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +13920 28127 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +14132 28127 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +14344 28127 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +13708 28339 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +13920 28339 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +14132 28339 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +14344 28339 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +13920 28551 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +14132 28551 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +14344 28551 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +13708 28763 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +13920 28763 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +14132 28763 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +14344 28763 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +13920 28975 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +14132 28975 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +14344 28975 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +13708 29187 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +13920 29187 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +14132 29187 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +14344 29187 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +13920 29399 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +14132 29399 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +14344 29399 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +13708 29611 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +13920 29611 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +14132 29611 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +14344 29611 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +13920 29823 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +14132 29823 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +14344 29823 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +13708 30035 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +13920 30035 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +14132 30035 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +14344 30035 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +13920 30247 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +14132 30247 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +14344 30247 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +13708 30459 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +13920 30459 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +14132 30459 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +14344 30459 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom gr gs -1.000 0.828 0.128 c 36073 29056 m 36319 29056 l 36319 25142 l 36073 25142 l -36073 29056 l p ef +12305 30430 m 12656 30430 l 12656 22529 l 12305 22529 l 12305 30430 l +eoclip newpath +12305 22529 m 12656 22529 l 12656 30430 l 12305 30430 l 12305 22529 l eoclip newpath +pum +11950 22558 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12162 22558 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12374 22558 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12586 22558 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12162 22770 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12374 22770 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12586 22770 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +11950 22982 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12162 22982 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12374 22982 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12586 22982 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12162 23194 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12374 23194 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12586 23194 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +11950 23406 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12162 23406 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12374 23406 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12586 23406 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12162 23618 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12374 23618 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12586 23618 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +11950 23830 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12162 23830 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12374 23830 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12586 23830 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12162 24042 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12374 24042 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12586 24042 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +11950 24254 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12162 24254 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12374 24254 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12586 24254 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12162 24466 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12374 24466 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12586 24466 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +11950 24678 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12162 24678 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12374 24678 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12586 24678 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12162 24890 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12374 24890 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12586 24890 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +11950 25102 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12162 25102 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12374 25102 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12586 25102 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12162 25314 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12374 25314 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12586 25314 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +11950 25526 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12162 25526 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12374 25526 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12586 25526 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12162 25738 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12374 25738 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12586 25738 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +11950 25950 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12162 25950 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12374 25950 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12586 25950 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12162 26162 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12374 26162 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12586 26162 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +11950 26374 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12162 26374 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12374 26374 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12586 26374 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12162 26586 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12374 26586 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12586 26586 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +11950 26798 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12162 26798 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12374 26798 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12586 26798 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12162 27010 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12374 27010 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12586 27010 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +11950 27222 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12162 27222 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12374 27222 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12586 27222 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12162 27434 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12374 27434 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12586 27434 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +11950 27646 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12162 27646 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12374 27646 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12586 27646 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12162 27858 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12374 27858 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12586 27858 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +11950 28070 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12162 28070 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12374 28070 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12586 28070 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12162 28282 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12374 28282 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12586 28282 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +11950 28494 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12162 28494 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12374 28494 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12586 28494 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12162 28706 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12374 28706 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12586 28706 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +11950 28918 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12162 28918 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12374 28918 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12586 28918 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12162 29130 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12374 29130 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12586 29130 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +11950 29342 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12162 29342 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12374 29342 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12586 29342 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12162 29554 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12374 29554 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12586 29554 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +11950 29766 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12162 29766 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12374 29766 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12586 29766 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12162 29978 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12374 29978 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12586 29978 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +11950 30190 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12162 30190 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12374 30190 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12586 30190 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12162 30402 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12374 30402 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12586 30402 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +11950 30614 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12162 30614 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12374 30614 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +12586 30614 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom gr gs -1.000 0.828 0.128 c 34597 29056 m 34843 29056 l 34843 21859 l 34597 21859 l -34597 29056 l p ef +10547 30430 m 10899 30430 l 10899 24308 l 10547 24308 l 10547 30430 l +eoclip newpath +10547 24308 m 10899 24308 l 10899 30430 l 10547 30430 l 10547 24308 l eoclip newpath +pum +10405 24507 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10617 24507 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10829 24507 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10193 24719 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10405 24719 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10617 24719 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10829 24719 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10405 24931 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10617 24931 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10829 24931 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10193 25143 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10405 25143 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10617 25143 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10829 25143 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10405 25355 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10617 25355 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10829 25355 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10193 25567 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10405 25567 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10617 25567 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10829 25567 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10405 25779 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10617 25779 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10829 25779 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10193 25991 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10405 25991 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10617 25991 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10829 25991 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10405 26203 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10617 26203 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10829 26203 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10193 26415 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10405 26415 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10617 26415 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10829 26415 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10405 26627 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10617 26627 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10829 26627 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10193 26839 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10405 26839 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10617 26839 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10829 26839 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10405 27051 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10617 27051 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10829 27051 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10193 27263 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10405 27263 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10617 27263 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10829 27263 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10405 27475 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10617 27475 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10829 27475 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10193 27687 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10405 27687 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10617 27687 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10829 27687 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10405 27899 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10617 27899 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10829 27899 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10193 28111 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10405 28111 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10617 28111 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10829 28111 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10405 28323 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10617 28323 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10829 28323 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10193 28535 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10405 28535 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10617 28535 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10829 28535 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10405 28747 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10617 28747 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10829 28747 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10193 28959 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10405 28959 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10617 28959 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10829 28959 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10405 29171 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10617 29171 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10829 29171 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10193 29383 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10405 29383 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10617 29383 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10829 29383 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10405 29595 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10617 29595 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10829 29595 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10193 29807 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10405 29807 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10617 29807 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10829 29807 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10405 30019 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10617 30019 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10829 30019 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10193 30231 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10405 30231 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10617 30231 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10829 30231 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10405 30443 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10617 30443 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom +pum +10829 30443 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom gr gs -1.000 0.828 0.128 c 33121 29056 m 33367 29056 l 33367 25318 l 33121 25318 l -33121 29056 l p ef +44292 30430 m 44644 30430 l 44644 25916 l 44292 25916 l 44292 30430 l +eoclip newpath +44292 25916 m 44644 25916 l 44644 30430 l 44292 30430 l 44292 25916 l eoclip newpath +pum +43938 25947 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +44150 25947 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +44362 25947 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +44574 25947 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +44150 26159 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +44362 26159 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +44574 26159 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +43938 26371 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +44150 26371 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +44362 26371 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +44574 26371 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +44150 26583 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +44362 26583 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +44574 26583 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +43938 26795 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +44150 26795 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +44362 26795 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +44574 26795 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +44150 27007 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +44362 27007 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +44574 27007 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +43938 27219 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +44150 27219 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +44362 27219 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +44574 27219 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +44150 27431 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +44362 27431 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +44574 27431 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +43938 27643 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +44150 27643 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +44362 27643 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +44574 27643 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +44150 27855 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +44362 27855 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +44574 27855 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +43938 28067 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +44150 28067 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +44362 28067 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +44574 28067 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +44150 28279 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +44362 28279 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +44574 28279 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +43938 28491 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +44150 28491 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +44362 28491 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +44574 28491 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +44150 28703 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +44362 28703 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +44574 28703 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +43938 28915 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +44150 28915 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +44362 28915 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +44574 28915 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +44150 29127 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +44362 29127 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +44574 29127 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +43938 29339 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +44150 29339 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +44362 29339 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +44574 29339 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +44150 29551 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +44362 29551 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +44574 29551 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +43938 29763 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +44150 29763 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +44362 29763 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +44574 29763 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +44150 29975 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +44362 29975 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +44574 29975 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +43938 30187 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +44150 30187 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +44362 30187 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +44574 30187 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +44150 30399 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +44362 30399 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +44574 30399 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +43938 30611 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +44150 30611 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +44362 30611 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +44574 30611 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom gr gs -1.000 0.828 0.128 c 31646 29056 m 31892 29056 l 31892 25249 l 31646 25249 l -31646 29056 l p ef +42535 30430 m 42886 30430 l 42886 26561 l 42535 26561 l 42535 30430 l +eoclip newpath +42535 26561 m 42886 26561 l 42886 30430 l 42535 30430 l 42535 26561 l eoclip newpath +pum +42181 26694 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +42393 26694 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +42605 26694 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +42817 26694 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +42393 26906 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +42605 26906 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +42817 26906 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +42181 27118 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +42393 27118 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +42605 27118 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +42817 27118 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +42393 27330 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +42605 27330 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +42817 27330 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +42181 27542 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +42393 27542 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +42605 27542 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +42817 27542 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +42393 27754 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +42605 27754 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +42817 27754 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +42181 27966 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +42393 27966 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +42605 27966 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +42817 27966 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +42393 28178 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +42605 28178 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +42817 28178 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +42181 28390 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +42393 28390 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +42605 28390 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +42817 28390 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +42393 28602 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +42605 28602 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +42817 28602 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +42181 28814 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +42393 28814 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +42605 28814 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +42817 28814 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +42393 29026 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +42605 29026 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +42817 29026 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +42181 29238 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +42393 29238 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +42605 29238 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +42817 29238 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +42393 29450 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +42605 29450 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +42817 29450 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +42181 29662 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +42393 29662 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +42605 29662 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +42817 29662 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +42393 29874 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +42605 29874 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +42817 29874 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +42181 30086 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +42393 30086 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +42605 30086 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +42817 30086 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +42393 30298 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +42605 30298 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +42817 30298 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +42181 30510 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +42393 30510 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +42605 30510 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +42817 30510 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom gr gs -1.000 0.828 0.128 c 30170 29056 m 30416 29056 l 30416 24616 l 30170 24616 l -30170 29056 l p ef +40777 30430 m 41129 30430 l 41129 26147 l 40777 26147 l 40777 30430 l +eoclip newpath +40777 26147 m 41129 26147 l 41129 30430 l 40777 30430 l 40777 26147 l eoclip newpath +pum +40635 26275 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +40847 26275 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +41059 26275 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +40423 26487 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +40635 26487 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +40847 26487 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +41059 26487 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +40635 26699 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +40847 26699 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +41059 26699 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +40423 26911 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +40635 26911 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +40847 26911 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +41059 26911 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +40635 27123 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +40847 27123 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +41059 27123 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +40423 27335 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +40635 27335 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +40847 27335 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +41059 27335 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +40635 27547 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +40847 27547 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +41059 27547 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +40423 27759 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +40635 27759 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +40847 27759 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +41059 27759 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +40635 27971 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +40847 27971 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +41059 27971 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +40423 28183 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +40635 28183 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +40847 28183 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +41059 28183 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +40635 28395 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +40847 28395 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +41059 28395 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +40423 28607 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +40635 28607 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +40847 28607 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +41059 28607 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +40635 28819 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +40847 28819 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +41059 28819 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +40423 29031 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +40635 29031 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +40847 29031 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +41059 29031 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +40635 29243 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +40847 29243 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +41059 29243 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +40423 29455 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +40635 29455 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +40847 29455 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +41059 29455 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +40635 29667 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +40847 29667 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +41059 29667 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +40423 29879 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +40635 29879 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +40847 29879 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +41059 29879 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +40635 30091 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +40847 30091 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +41059 30091 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +40423 30303 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +40635 30303 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +40847 30303 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +41059 30303 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +40635 30515 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +40847 30515 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +41059 30515 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom gr gs -1.000 0.828 0.128 c 28694 29056 m 28940 29056 l 28940 25256 l 28694 25256 l -28694 29056 l p ef +39019 30430 m 39371 30430 l 39371 25772 l 39019 25772 l 39019 30430 l +eoclip newpath +39019 25772 m 39371 25772 l 39371 30430 l 39019 30430 l 39019 25772 l eoclip newpath +pum +38665 25875 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +38877 25875 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +39089 25875 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +39301 25875 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +38877 26087 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +39089 26087 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +39301 26087 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +38665 26299 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +38877 26299 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +39089 26299 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +39301 26299 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +38877 26511 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +39089 26511 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +39301 26511 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +38665 26723 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +38877 26723 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +39089 26723 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +39301 26723 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +38877 26935 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +39089 26935 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +39301 26935 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +38665 27147 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +38877 27147 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +39089 27147 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +39301 27147 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +38877 27359 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +39089 27359 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +39301 27359 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +38665 27571 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +38877 27571 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +39089 27571 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +39301 27571 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +38877 27783 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +39089 27783 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +39301 27783 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +38665 27995 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +38877 27995 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +39089 27995 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +39301 27995 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +38877 28207 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +39089 28207 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +39301 28207 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +38665 28419 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +38877 28419 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +39089 28419 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +39301 28419 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +38877 28631 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +39089 28631 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +39301 28631 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +38665 28843 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +38877 28843 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +39089 28843 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +39301 28843 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +38877 29055 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +39089 29055 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +39301 29055 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +38665 29267 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +38877 29267 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +39089 29267 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +39301 29267 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +38877 29479 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +39089 29479 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +39301 29479 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +38665 29691 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +38877 29691 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +39089 29691 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +39301 29691 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +38877 29903 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +39089 29903 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +39301 29903 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +38665 30115 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +38877 30115 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +39089 30115 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +39301 30115 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +38877 30327 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +39089 30327 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +39301 30327 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +38665 30539 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +38877 30539 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +39089 30539 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +39301 30539 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom gr gs -1.000 0.828 0.128 c 27219 29056 m 27465 29056 l 27465 25243 l 27219 25243 l -27219 29056 l p ef +37262 30430 m 37613 30430 l 37613 26263 l 37262 26263 l 37262 30430 l +eoclip newpath +37262 26263 m 37613 26263 l 37613 30430 l 37262 30430 l 37262 26263 l eoclip newpath +pum +37120 26333 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +37332 26333 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +37544 26333 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +36908 26545 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +37120 26545 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +37332 26545 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +37544 26545 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +37120 26757 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +37332 26757 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +37544 26757 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +36908 26969 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +37120 26969 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +37332 26969 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +37544 26969 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +37120 27181 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +37332 27181 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +37544 27181 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +36908 27393 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +37120 27393 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +37332 27393 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +37544 27393 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +37120 27605 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +37332 27605 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +37544 27605 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +36908 27817 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +37120 27817 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +37332 27817 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +37544 27817 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +37120 28029 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +37332 28029 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +37544 28029 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +36908 28241 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +37120 28241 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +37332 28241 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +37544 28241 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +37120 28453 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +37332 28453 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +37544 28453 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +36908 28665 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +37120 28665 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +37332 28665 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +37544 28665 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +37120 28877 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +37332 28877 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +37544 28877 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +36908 29089 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +37120 29089 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +37332 29089 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +37544 29089 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +37120 29301 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +37332 29301 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +37544 29301 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +36908 29513 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +37120 29513 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +37332 29513 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +37544 29513 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +37120 29725 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +37332 29725 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +37544 29725 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +36908 29937 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +37120 29937 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +37332 29937 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +37544 29937 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +37120 30149 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +37332 30149 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +37544 30149 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +36908 30361 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +37120 30361 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +37332 30361 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +37544 30361 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +37120 30573 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +37332 30573 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +37544 30573 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom gr gs -1.000 0.828 0.128 c 25744 29056 m 25990 29056 l 25990 25416 l 25744 25416 l -25744 29056 l p ef +35504 30430 m 35856 30430 l 35856 22767 l 35504 22767 l 35504 30430 l +eoclip newpath +35504 22767 m 35856 22767 l 35856 30430 l 35504 30430 l 35504 22767 l eoclip newpath +pum +35362 22889 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35574 22889 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35786 22889 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35150 23101 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35362 23101 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35574 23101 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35786 23101 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35362 23313 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35574 23313 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35786 23313 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35150 23525 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35362 23525 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35574 23525 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35786 23525 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35362 23737 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35574 23737 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35786 23737 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35150 23949 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35362 23949 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35574 23949 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35786 23949 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35362 24161 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35574 24161 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35786 24161 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35150 24373 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35362 24373 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35574 24373 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35786 24373 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35362 24585 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35574 24585 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35786 24585 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35150 24797 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35362 24797 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35574 24797 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35786 24797 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35362 25009 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35574 25009 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35786 25009 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35150 25221 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35362 25221 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35574 25221 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35786 25221 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35362 25433 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35574 25433 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35786 25433 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35150 25645 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35362 25645 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35574 25645 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35786 25645 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35362 25857 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35574 25857 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35786 25857 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35150 26069 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35362 26069 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35574 26069 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35786 26069 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35362 26281 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35574 26281 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35786 26281 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35150 26493 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35362 26493 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35574 26493 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35786 26493 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35362 26705 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35574 26705 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35786 26705 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35150 26917 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35362 26917 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35574 26917 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35786 26917 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35362 27129 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35574 27129 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35786 27129 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35150 27341 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35362 27341 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35574 27341 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35786 27341 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35362 27553 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35574 27553 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35786 27553 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35150 27765 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35362 27765 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35574 27765 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35786 27765 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35362 27977 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35574 27977 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35786 27977 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35150 28189 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35362 28189 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35574 28189 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35786 28189 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35362 28401 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35574 28401 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35786 28401 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35150 28613 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35362 28613 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35574 28613 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35786 28613 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35362 28825 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35574 28825 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35786 28825 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35150 29037 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35362 29037 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35574 29037 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35786 29037 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35362 29249 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35574 29249 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35786 29249 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35150 29461 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35362 29461 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35574 29461 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35786 29461 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35362 29673 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35574 29673 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35786 29673 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35150 29885 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35362 29885 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35574 29885 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35786 29885 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35362 30097 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35574 30097 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35786 30097 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35150 30309 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35362 30309 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35574 30309 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35786 30309 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35362 30521 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35574 30521 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +35786 30521 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom gr gs -1.000 0.828 0.128 c 24268 29056 m 24514 29056 l 24514 24043 l 24268 24043 l -24268 29056 l p ef +33747 30430 m 34098 30430 l 34098 26450 l 33747 26450 l 33747 30430 l +eoclip newpath +33747 26450 m 34098 26450 l 34098 30430 l 33747 30430 l 33747 26450 l eoclip newpath +pum +33393 26638 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +33605 26638 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +33817 26638 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +34029 26638 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +33605 26850 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +33817 26850 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +34029 26850 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +33393 27062 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +33605 27062 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +33817 27062 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +34029 27062 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +33605 27274 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +33817 27274 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +34029 27274 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +33393 27486 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +33605 27486 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +33817 27486 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +34029 27486 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +33605 27698 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +33817 27698 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +34029 27698 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +33393 27910 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +33605 27910 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +33817 27910 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +34029 27910 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +33605 28122 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +33817 28122 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +34029 28122 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +33393 28334 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +33605 28334 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +33817 28334 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +34029 28334 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +33605 28546 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +33817 28546 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +34029 28546 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +33393 28758 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +33605 28758 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +33817 28758 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +34029 28758 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +33605 28970 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +33817 28970 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +34029 28970 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +33393 29182 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +33605 29182 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +33817 29182 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +34029 29182 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +33605 29394 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +33817 29394 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +34029 29394 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +33393 29606 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +33605 29606 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +33817 29606 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +34029 29606 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +33605 29818 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +33817 29818 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +34029 29818 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +33393 30030 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +33605 30030 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +33817 30030 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +34029 30030 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +33605 30242 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +33817 30242 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +34029 30242 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +33393 30454 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +33605 30454 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +33817 30454 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +34029 30454 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom gr gs -1.000 0.828 0.128 c 22792 29056 m 23038 29056 l 23038 24693 l 22792 24693 l -22792 29056 l p ef +31989 30430 m 32341 30430 l 32341 26377 l 31989 26377 l 31989 30430 l +eoclip newpath +31989 26377 m 32341 26377 l 32341 30430 l 31989 30430 l 31989 26377 l eoclip newpath +pum +31847 26390 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +32059 26390 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +32271 26390 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +31635 26602 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +31847 26602 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +32059 26602 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +32271 26602 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +31847 26814 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +32059 26814 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +32271 26814 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +31635 27026 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +31847 27026 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +32059 27026 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +32271 27026 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +31847 27238 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +32059 27238 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +32271 27238 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +31635 27450 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +31847 27450 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +32059 27450 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +32271 27450 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +31847 27662 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +32059 27662 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +32271 27662 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +31635 27874 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +31847 27874 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +32059 27874 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +32271 27874 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +31847 28086 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +32059 28086 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +32271 28086 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +31635 28298 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +31847 28298 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +32059 28298 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +32271 28298 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +31847 28510 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +32059 28510 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +32271 28510 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +31635 28722 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +31847 28722 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +32059 28722 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +32271 28722 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +31847 28934 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +32059 28934 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +32271 28934 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +31635 29146 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +31847 29146 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +32059 29146 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +32271 29146 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +31847 29358 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +32059 29358 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +32271 29358 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +31635 29570 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +31847 29570 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +32059 29570 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +32271 29570 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +31847 29782 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +32059 29782 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +32271 29782 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +31635 29994 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +31847 29994 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +32059 29994 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +32271 29994 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +31847 30206 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +32059 30206 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +32271 30206 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +31635 30418 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +31847 30418 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +32059 30418 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +32271 30418 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +31847 30630 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +32059 30630 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +32271 30630 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom gr gs -1.000 0.828 0.128 c 21316 29056 m 21562 29056 l 21562 25345 l 21316 25345 l -21316 29056 l p ef +30231 30430 m 30583 30430 l 30583 25703 l 30231 25703 l 30231 30430 l +eoclip newpath +30231 25703 m 30583 25703 l 30583 30430 l 30231 30430 l 30231 25703 l eoclip newpath +pum +29877 25841 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +30089 25841 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +30301 25841 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +30513 25841 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +30089 26053 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +30301 26053 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +30513 26053 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +29877 26265 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +30089 26265 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +30301 26265 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +30513 26265 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +30089 26477 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +30301 26477 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +30513 26477 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +29877 26689 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +30089 26689 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +30301 26689 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +30513 26689 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +30089 26901 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +30301 26901 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +30513 26901 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +29877 27113 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +30089 27113 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +30301 27113 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +30513 27113 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +30089 27325 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +30301 27325 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +30513 27325 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +29877 27537 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +30089 27537 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +30301 27537 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +30513 27537 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +30089 27749 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +30301 27749 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +30513 27749 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +29877 27961 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +30089 27961 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +30301 27961 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +30513 27961 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +30089 28173 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +30301 28173 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +30513 28173 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +29877 28385 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +30089 28385 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +30301 28385 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +30513 28385 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +30089 28597 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +30301 28597 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +30513 28597 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +29877 28809 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +30089 28809 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +30301 28809 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +30513 28809 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +30089 29021 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +30301 29021 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +30513 29021 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +29877 29233 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +30089 29233 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +30301 29233 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +30513 29233 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +30089 29445 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +30301 29445 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +30513 29445 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +29877 29657 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +30089 29657 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +30301 29657 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +30513 29657 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +30089 29869 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +30301 29869 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +30513 29869 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +29877 30081 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +30089 30081 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +30301 30081 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +30513 30081 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +30089 30293 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +30301 30293 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +30513 30293 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +29877 30505 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +30089 30505 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +30301 30505 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +30513 30505 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom gr gs -1.000 0.828 0.128 c 19841 29056 m 20087 29056 l 20087 24974 l 19841 24974 l -19841 29056 l p ef +28474 30430 m 28825 30430 l 28825 26384 l 28474 26384 l 28474 30430 l +eoclip newpath +28474 26384 m 28825 26384 l 28825 30430 l 28474 30430 l 28474 26384 l eoclip newpath +pum +28332 26393 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +28544 26393 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +28756 26393 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +28120 26605 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +28332 26605 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +28544 26605 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +28756 26605 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +28332 26817 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +28544 26817 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +28756 26817 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +28120 27029 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +28332 27029 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +28544 27029 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +28756 27029 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +28332 27241 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +28544 27241 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +28756 27241 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +28120 27453 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +28332 27453 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +28544 27453 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +28756 27453 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +28332 27665 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +28544 27665 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +28756 27665 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +28120 27877 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +28332 27877 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +28544 27877 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +28756 27877 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +28332 28089 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +28544 28089 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +28756 28089 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +28120 28301 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +28332 28301 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +28544 28301 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +28756 28301 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +28332 28513 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +28544 28513 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +28756 28513 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +28120 28725 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +28332 28725 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +28544 28725 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +28756 28725 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +28332 28937 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +28544 28937 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +28756 28937 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +28120 29149 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +28332 29149 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +28544 29149 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +28756 29149 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +28332 29361 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +28544 29361 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +28756 29361 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +28120 29573 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +28332 29573 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +28544 29573 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +28756 29573 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +28332 29785 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +28544 29785 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +28756 29785 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +28120 29997 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +28332 29997 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +28544 29997 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +28756 29997 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +28332 30209 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +28544 30209 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +28756 30209 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +28120 30421 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +28332 30421 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +28544 30421 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +28756 30421 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +28332 30633 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +28544 30633 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +28756 30633 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom gr gs -1.000 0.828 0.128 c 18365 29056 m 18611 29056 l 18611 25337 l 18365 25337 l -18365 29056 l p ef +26717 30430 m 27069 30430 l 27069 26370 l 26717 26370 l 26717 30430 l +eoclip newpath +26717 26370 m 27069 26370 l 27069 30430 l 26717 30430 l 26717 26370 l eoclip newpath +pum +26575 26386 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +26787 26386 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +26999 26386 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +26363 26598 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +26575 26598 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +26787 26598 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +26999 26598 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +26575 26810 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +26787 26810 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +26999 26810 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +26363 27022 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +26575 27022 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +26787 27022 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +26999 27022 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +26575 27234 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +26787 27234 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +26999 27234 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +26363 27446 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +26575 27446 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +26787 27446 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +26999 27446 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +26575 27658 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +26787 27658 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +26999 27658 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +26363 27870 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +26575 27870 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +26787 27870 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +26999 27870 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +26575 28082 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +26787 28082 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +26999 28082 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +26363 28294 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +26575 28294 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +26787 28294 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +26999 28294 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +26575 28506 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +26787 28506 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +26999 28506 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +26363 28718 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +26575 28718 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +26787 28718 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +26999 28718 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +26575 28930 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +26787 28930 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +26999 28930 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +26363 29142 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +26575 29142 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +26787 29142 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +26999 29142 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +26575 29354 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +26787 29354 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +26999 29354 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +26363 29566 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +26575 29566 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +26787 29566 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +26999 29566 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +26575 29778 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +26787 29778 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +26999 29778 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +26363 29990 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +26575 29990 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +26787 29990 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +26999 29990 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +26575 30202 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +26787 30202 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +26999 30202 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +26363 30414 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +26575 30414 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +26787 30414 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +26999 30414 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +26575 30626 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +26787 30626 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +26999 30626 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom gr gs -1.000 0.828 0.128 c 16889 29056 m 17135 29056 l 17135 24359 l 16889 24359 l -16889 29056 l p ef +24960 30430 m 25311 30430 l 25311 25093 l 24960 25093 l 24960 30430 l +eoclip newpath +24960 25093 m 25311 25093 l 25311 30430 l 24960 30430 l 24960 25093 l eoclip newpath +pum +24605 25112 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +24817 25112 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +25029 25112 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +25241 25112 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +24817 25324 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +25029 25324 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +25241 25324 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +24605 25536 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +24817 25536 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +25029 25536 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +25241 25536 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +24817 25748 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +25029 25748 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +25241 25748 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +24605 25960 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +24817 25960 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +25029 25960 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +25241 25960 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +24817 26172 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +25029 26172 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +25241 26172 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +24605 26384 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +24817 26384 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +25029 26384 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +25241 26384 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +24817 26596 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +25029 26596 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +25241 26596 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +24605 26808 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +24817 26808 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +25029 26808 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +25241 26808 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +24817 27020 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +25029 27020 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +25241 27020 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +24605 27232 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +24817 27232 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +25029 27232 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +25241 27232 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +24817 27444 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +25029 27444 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +25241 27444 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +24605 27656 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +24817 27656 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +25029 27656 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +25241 27656 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +24817 27868 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +25029 27868 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +25241 27868 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +24605 28080 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +24817 28080 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +25029 28080 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +25241 28080 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +24817 28292 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +25029 28292 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +25241 28292 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +24605 28504 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +24817 28504 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +25029 28504 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +25241 28504 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +24817 28716 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +25029 28716 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +25241 28716 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +24605 28928 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +24817 28928 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +25029 28928 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +25241 28928 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +24817 29140 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +25029 29140 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +25241 29140 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +24605 29352 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +24817 29352 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +25029 29352 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +25241 29352 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +24817 29564 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +25029 29564 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +25241 29564 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +24605 29776 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +24817 29776 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +25029 29776 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +25241 29776 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +24817 29988 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +25029 29988 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +25241 29988 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +24605 30200 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +24817 30200 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +25029 30200 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +25241 30200 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +24817 30412 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +25029 30412 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +25241 30412 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +24605 30624 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +24817 30624 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +25029 30624 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +25241 30624 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom gr gs -1.000 0.828 0.128 c 15414 29056 m 15660 29056 l 15660 25423 l 15414 25423 l -15414 29056 l p ef +23202 30430 m 23554 30430 l 23554 25785 l 23202 25785 l 23202 30430 l +eoclip newpath +23202 25785 m 23554 25785 l 23554 30430 l 23202 30430 l 23202 25785 l eoclip newpath +pum +22848 25882 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +23060 25882 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +23272 25882 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +23484 25882 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +23060 26094 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +23272 26094 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +23484 26094 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +22848 26306 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +23060 26306 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +23272 26306 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +23484 26306 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +23060 26518 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +23272 26518 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +23484 26518 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +22848 26730 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +23060 26730 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +23272 26730 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +23484 26730 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +23060 26942 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +23272 26942 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +23484 26942 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +22848 27154 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +23060 27154 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +23272 27154 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +23484 27154 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +23060 27366 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +23272 27366 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +23484 27366 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +22848 27578 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +23060 27578 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +23272 27578 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +23484 27578 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +23060 27790 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +23272 27790 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +23484 27790 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +22848 28002 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +23060 28002 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +23272 28002 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +23484 28002 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +23060 28214 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +23272 28214 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +23484 28214 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +22848 28426 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +23060 28426 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +23272 28426 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +23484 28426 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +23060 28638 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +23272 28638 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +23484 28638 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +22848 28850 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +23060 28850 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +23272 28850 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +23484 28850 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +23060 29062 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +23272 29062 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +23484 29062 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +22848 29274 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +23060 29274 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +23272 29274 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +23484 29274 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +23060 29486 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +23272 29486 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +23484 29486 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +22848 29698 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +23060 29698 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +23272 29698 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +23484 29698 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +23060 29910 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +23272 29910 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +23484 29910 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +22848 30122 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +23060 30122 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +23272 30122 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +23484 30122 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +23060 30334 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +23272 30334 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +23484 30334 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +22848 30546 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +23060 30546 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +23272 30546 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +23484 30546 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom gr gs -1.000 0.828 0.128 c 13938 29056 m 14184 29056 l 14184 24244 l 13938 24244 l -13938 29056 l p ef +21444 30430 m 21796 30430 l 21796 26479 l 21444 26479 l 21444 30430 l +eoclip newpath +21444 26479 m 21796 26479 l 21796 30430 l 21444 30430 l 21444 26479 l eoclip newpath +pum +21090 26653 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +21302 26653 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +21514 26653 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +21726 26653 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +21302 26865 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +21514 26865 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +21726 26865 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +21090 27077 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +21302 27077 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +21514 27077 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +21726 27077 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +21302 27289 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +21514 27289 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +21726 27289 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +21090 27501 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +21302 27501 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +21514 27501 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +21726 27501 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +21302 27713 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +21514 27713 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +21726 27713 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +21090 27925 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +21302 27925 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +21514 27925 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +21726 27925 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +21302 28137 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +21514 28137 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +21726 28137 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +21090 28349 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +21302 28349 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +21514 28349 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +21726 28349 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +21302 28561 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +21514 28561 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +21726 28561 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +21090 28773 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +21302 28773 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +21514 28773 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +21726 28773 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +21302 28985 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +21514 28985 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +21726 28985 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +21090 29197 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +21302 29197 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +21514 29197 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +21726 29197 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +21302 29409 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +21514 29409 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +21726 29409 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +21090 29621 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +21302 29621 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +21514 29621 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +21726 29621 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +21302 29833 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +21514 29833 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +21726 29833 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +21090 30045 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +21302 30045 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +21514 30045 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +21726 30045 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +21302 30257 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +21514 30257 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +21726 30257 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +21090 30469 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +21302 30469 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +21514 30469 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +21726 30469 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom gr gs -1.000 0.828 0.128 c 12462 29056 m 12708 29056 l 12708 25363 l 12462 25363 l -12462 29056 l p ef +19687 30430 m 20038 30430 l 20038 26084 l 19687 26084 l 19687 30430 l +eoclip newpath +19687 26084 m 20038 26084 l 20038 30430 l 19687 30430 l 19687 26084 l eoclip newpath +pum +19544 26243 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +19756 26243 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +19968 26243 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +19332 26455 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +19544 26455 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +19756 26455 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +19968 26455 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +19544 26667 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +19756 26667 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +19968 26667 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +19332 26879 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +19544 26879 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +19756 26879 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +19968 26879 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +19544 27091 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +19756 27091 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +19968 27091 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +19332 27303 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +19544 27303 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +19756 27303 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +19968 27303 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +19544 27515 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +19756 27515 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +19968 27515 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +19332 27727 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +19544 27727 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +19756 27727 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +19968 27727 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +19544 27939 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +19756 27939 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +19968 27939 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +19332 28151 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +19544 28151 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +19756 28151 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +19968 28151 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +19544 28363 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +19756 28363 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +19968 28363 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +19332 28575 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +19544 28575 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +19756 28575 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +19968 28575 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +19544 28787 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +19756 28787 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +19968 28787 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +19332 28999 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +19544 28999 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +19756 28999 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +19968 28999 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +19544 29211 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +19756 29211 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +19968 29211 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +19332 29423 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +19544 29423 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +19756 29423 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +19968 29423 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +19544 29635 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +19756 29635 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +19968 29635 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +19332 29847 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +19544 29847 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +19756 29847 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +19968 29847 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +19544 30059 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +19756 30059 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +19968 30059 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +19332 30271 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +19544 30271 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +19756 30271 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +19968 30271 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +19544 30483 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +19756 30483 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +19968 30483 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom gr gs -1.000 0.828 0.128 c 10986 29056 m 11232 29056 l 11232 24161 l 10986 24161 l -10986 29056 l p ef +17929 30430 m 18281 30430 l 18281 26470 l 17929 26470 l 17929 30430 l +eoclip newpath +17929 26470 m 18281 26470 l 18281 30430 l 17929 30430 l 17929 26470 l eoclip newpath +pum +17575 26648 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +17787 26648 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +17999 26648 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +18211 26648 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +17787 26860 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +17999 26860 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +18211 26860 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +17575 27072 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +17787 27072 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +17999 27072 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +18211 27072 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +17787 27284 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +17999 27284 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +18211 27284 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +17575 27496 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +17787 27496 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +17999 27496 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +18211 27496 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +17787 27708 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +17999 27708 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +18211 27708 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +17575 27920 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +17787 27920 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +17999 27920 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +18211 27920 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +17787 28132 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +17999 28132 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +18211 28132 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +17575 28344 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +17787 28344 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +17999 28344 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +18211 28344 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +17787 28556 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +17999 28556 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +18211 28556 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +17575 28768 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +17787 28768 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +17999 28768 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +18211 28768 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +17787 28980 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +17999 28980 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +18211 28980 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +17575 29192 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +17787 29192 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +17999 29192 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +18211 29192 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +17787 29404 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +17999 29404 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +18211 29404 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +17575 29616 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +17787 29616 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +17999 29616 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +18211 29616 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +17787 29828 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +17999 29828 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +18211 29828 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +17575 30040 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +17787 30040 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +17999 30040 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +18211 30040 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +17787 30252 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +17999 30252 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +18211 30252 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +17575 30464 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +17787 30464 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +17999 30464 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +18211 30464 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom gr gs -0.343 0.617 0.113 c 42222 29056 m 42468 29056 l 42468 24711 l 42222 24711 l -42222 29056 l p ef +16172 30430 m 16523 30430 l 16523 25429 l 16172 25429 l 16172 30430 l +eoclip newpath +16172 25429 m 16523 25429 l 16523 30430 l 16172 30430 l 16172 25429 l eoclip newpath +pum +16029 25492 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +16241 25492 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +16453 25492 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +15817 25704 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +16029 25704 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +16241 25704 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +16453 25704 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +16029 25916 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +16241 25916 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +16453 25916 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +15817 26128 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +16029 26128 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +16241 26128 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +16453 26128 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +16029 26340 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +16241 26340 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +16453 26340 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +15817 26552 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +16029 26552 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +16241 26552 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +16453 26552 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +16029 26764 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +16241 26764 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +16453 26764 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +15817 26976 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +16029 26976 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +16241 26976 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +16453 26976 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +16029 27188 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +16241 27188 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +16453 27188 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +15817 27400 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +16029 27400 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +16241 27400 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +16453 27400 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +16029 27612 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +16241 27612 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +16453 27612 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +15817 27824 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +16029 27824 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +16241 27824 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +16453 27824 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +16029 28036 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +16241 28036 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +16453 28036 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +15817 28248 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +16029 28248 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +16241 28248 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +16453 28248 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +16029 28460 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +16241 28460 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +16453 28460 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +15817 28672 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +16029 28672 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +16241 28672 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +16453 28672 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +16029 28884 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +16241 28884 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +16453 28884 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +15817 29096 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +16029 29096 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +16241 29096 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +16453 29096 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +16029 29308 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +16241 29308 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +16453 29308 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +15817 29520 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +16029 29520 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +16241 29520 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +16453 29520 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +16029 29732 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +16241 29732 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +16453 29732 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +15817 29944 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +16029 29944 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +16241 29944 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +16453 29944 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +16029 30156 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +16241 30156 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +16453 30156 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +15817 30368 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +16029 30368 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +16241 30368 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +16453 30368 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +16029 30580 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +16241 30580 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +16453 30580 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom gr gs -0.343 0.617 0.113 c 40746 29056 m 40992 29056 l 40992 25352 l 40746 25352 l -40746 29056 l p ef +14414 30430 m 14766 30430 l 14766 25306 l 14414 25306 l 14414 30430 l +eoclip newpath +14414 25306 m 14766 25306 l 14766 30430 l 14414 30430 l 14414 25306 l eoclip newpath +pum +14272 25430 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14484 25430 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14696 25430 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14060 25642 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14272 25642 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14484 25642 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14696 25642 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14272 25854 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14484 25854 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14696 25854 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14060 26066 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14272 26066 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14484 26066 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14696 26066 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14272 26278 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14484 26278 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14696 26278 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14060 26490 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14272 26490 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14484 26490 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14696 26490 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14272 26702 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14484 26702 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14696 26702 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14060 26914 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14272 26914 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14484 26914 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14696 26914 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14272 27126 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14484 27126 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14696 27126 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14060 27338 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14272 27338 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14484 27338 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14696 27338 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14272 27550 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14484 27550 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14696 27550 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14060 27762 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14272 27762 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14484 27762 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14696 27762 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14272 27974 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14484 27974 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14696 27974 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14060 28186 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14272 28186 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14484 28186 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14696 28186 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14272 28398 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14484 28398 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14696 28398 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14060 28610 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14272 28610 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14484 28610 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14696 28610 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14272 28822 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14484 28822 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14696 28822 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14060 29034 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14272 29034 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14484 29034 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14696 29034 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14272 29246 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14484 29246 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14696 29246 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14060 29458 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14272 29458 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14484 29458 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14696 29458 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14272 29670 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14484 29670 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14696 29670 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14060 29882 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14272 29882 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14484 29882 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14696 29882 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14272 30094 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14484 30094 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14696 30094 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14060 30306 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14272 30306 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14484 30306 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14696 30306 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14272 30518 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14484 30518 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +14696 30518 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom gr gs -0.343 0.617 0.113 c 39270 29056 m 39516 29056 l 39516 24992 l 39270 24992 l -39270 29056 l p ef +12656 30430 m 13008 30430 l 13008 26498 l 12656 26498 l 12656 30430 l +eoclip newpath +12656 26498 m 13008 26498 l 13008 30430 l 12656 30430 l 12656 26498 l eoclip newpath +pum +12302 26662 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +12514 26662 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +12726 26662 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +12938 26662 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +12514 26874 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +12726 26874 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +12938 26874 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +12302 27086 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +12514 27086 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +12726 27086 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +12938 27086 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +12514 27298 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +12726 27298 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +12938 27298 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +12302 27510 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +12514 27510 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +12726 27510 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +12938 27510 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +12514 27722 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +12726 27722 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +12938 27722 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +12302 27934 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +12514 27934 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +12726 27934 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +12938 27934 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +12514 28146 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +12726 28146 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +12938 28146 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +12302 28358 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +12514 28358 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +12726 28358 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +12938 28358 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +12514 28570 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +12726 28570 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +12938 28570 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +12302 28782 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +12514 28782 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +12726 28782 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +12938 28782 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +12514 28994 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +12726 28994 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +12938 28994 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +12302 29206 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +12514 29206 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +12726 29206 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +12938 29206 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +12514 29418 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +12726 29418 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +12938 29418 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +12302 29630 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +12514 29630 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +12726 29630 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +12938 29630 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +12514 29842 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +12726 29842 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +12938 29842 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +12302 30054 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +12514 30054 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +12726 30054 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +12938 30054 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +12514 30266 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +12726 30266 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +12938 30266 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +12302 30478 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +12514 30478 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +12726 30478 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +12938 30478 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom gr gs -0.343 0.617 0.113 c 37794 29056 m 38040 29056 l 38040 24502 l 37794 24502 l -37794 29056 l p ef +10899 30430 m 11250 30430 l 11250 25219 l 10899 25219 l 10899 30430 l +eoclip newpath +10899 25219 m 11250 25219 l 11250 30430 l 10899 30430 l 10899 25219 l eoclip newpath +pum +10756 25387 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +10968 25387 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +11180 25387 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +10544 25599 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +10756 25599 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +10968 25599 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +11180 25599 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +10756 25811 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +10968 25811 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +11180 25811 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +10544 26023 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +10756 26023 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +10968 26023 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +11180 26023 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +10756 26235 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +10968 26235 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +11180 26235 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +10544 26447 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +10756 26447 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +10968 26447 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +11180 26447 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +10756 26659 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +10968 26659 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +11180 26659 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +10544 26871 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +10756 26871 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +10968 26871 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +11180 26871 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +10756 27083 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +10968 27083 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +11180 27083 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +10544 27295 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +10756 27295 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +10968 27295 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +11180 27295 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +10756 27507 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +10968 27507 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +11180 27507 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +10544 27719 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +10756 27719 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +10968 27719 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +11180 27719 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +10756 27931 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +10968 27931 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +11180 27931 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +10544 28143 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +10756 28143 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +10968 28143 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +11180 28143 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +10756 28355 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +10968 28355 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +11180 28355 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +10544 28567 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +10756 28567 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +10968 28567 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +11180 28567 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +10756 28779 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +10968 28779 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +11180 28779 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +10544 28991 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +10756 28991 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +10968 28991 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +11180 28991 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +10756 29203 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +10968 29203 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +11180 29203 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +10544 29415 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +10756 29415 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +10968 29415 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +11180 29415 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +10756 29627 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +10968 29627 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +11180 29627 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +10544 29839 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +10756 29839 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +10968 29839 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +11180 29839 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +10756 30051 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +10968 30051 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +11180 30051 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +10544 30263 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +10756 30263 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +10968 30263 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +11180 30263 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +10756 30475 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +10968 30475 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom +pum +11180 30475 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom gr gs -0.343 0.617 0.113 c 36319 29056 m 36565 29056 l 36565 25007 l 36319 25007 l -36319 29056 l p ef +44644 30430 m 44995 30430 l 44995 25720 l 44644 25720 l 44644 30430 l +eoclip newpath +44644 25720 m 44995 25720 l 44995 30430 l 44644 30430 l 44644 25720 l eoclip newpath +pum +44290 25849 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44502 25849 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44714 25849 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44926 25849 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44502 26061 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44714 26061 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44926 26061 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44290 26273 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44502 26273 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44714 26273 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44926 26273 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44502 26485 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44714 26485 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44926 26485 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44290 26697 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44502 26697 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44714 26697 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44926 26697 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44502 26909 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44714 26909 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44926 26909 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44290 27121 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44502 27121 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44714 27121 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44926 27121 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44502 27333 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44714 27333 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44926 27333 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44290 27545 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44502 27545 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44714 27545 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44926 27545 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44502 27757 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44714 27757 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44926 27757 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44290 27969 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44502 27969 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44714 27969 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44926 27969 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44502 28181 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44714 28181 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44926 28181 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44290 28393 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44502 28393 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44714 28393 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44926 28393 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44502 28605 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44714 28605 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44926 28605 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44290 28817 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44502 28817 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44714 28817 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44926 28817 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44502 29029 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44714 29029 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44926 29029 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44290 29241 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44502 29241 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44714 29241 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44926 29241 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44502 29453 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44714 29453 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44926 29453 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44290 29665 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44502 29665 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44714 29665 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44926 29665 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44502 29877 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44714 29877 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44926 29877 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44290 30089 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44502 30089 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44714 30089 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44926 30089 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44502 30301 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44714 30301 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44926 30301 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44290 30513 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44502 30513 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44714 30513 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +44926 30513 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom gr gs -0.343 0.617 0.113 c 34843 29056 m 35089 29056 l 35089 21312 l 34843 21312 l -34843 29056 l p ef +42886 30430 m 43238 30430 l 43238 26486 l 42886 26486 l 42886 30430 l +eoclip newpath +42886 26486 m 43238 26486 l 43238 30430 l 42886 30430 l 42886 26486 l eoclip newpath +pum +42532 26656 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +42744 26656 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +42956 26656 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +43168 26656 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +42744 26868 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +42956 26868 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +43168 26868 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +42532 27080 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +42744 27080 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +42956 27080 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +43168 27080 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +42744 27292 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +42956 27292 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +43168 27292 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +42532 27504 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +42744 27504 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +42956 27504 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +43168 27504 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +42744 27716 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +42956 27716 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +43168 27716 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +42532 27928 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +42744 27928 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +42956 27928 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +43168 27928 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +42744 28140 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +42956 28140 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +43168 28140 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +42532 28352 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +42744 28352 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +42956 28352 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +43168 28352 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +42744 28564 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +42956 28564 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +43168 28564 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +42532 28776 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +42744 28776 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +42956 28776 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +43168 28776 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +42744 28988 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +42956 28988 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +43168 28988 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +42532 29200 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +42744 29200 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +42956 29200 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +43168 29200 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +42744 29412 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +42956 29412 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +43168 29412 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +42532 29624 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +42744 29624 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +42956 29624 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +43168 29624 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +42744 29836 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +42956 29836 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +43168 29836 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +42532 30048 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +42744 30048 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +42956 30048 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +43168 30048 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +42744 30260 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +42956 30260 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +43168 30260 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +42532 30472 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +42744 30472 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +42956 30472 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +43168 30472 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom gr gs -0.343 0.617 0.113 c 33367 29056 m 33613 29056 l 33613 25193 l 33367 25193 l -33367 29056 l p ef +41129 30430 m 41480 30430 l 41480 26104 l 41129 26104 l 41129 30430 l +eoclip newpath +41129 26104 m 41480 26104 l 41480 30430 l 41129 30430 l 41129 26104 l eoclip newpath +pum +40987 26253 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +41199 26253 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +41411 26253 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +40775 26465 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +40987 26465 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +41199 26465 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +41411 26465 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +40987 26677 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +41199 26677 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +41411 26677 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +40775 26889 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +40987 26889 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +41199 26889 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +41411 26889 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +40987 27101 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +41199 27101 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +41411 27101 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +40775 27313 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +40987 27313 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +41199 27313 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +41411 27313 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +40987 27525 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +41199 27525 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +41411 27525 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +40775 27737 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +40987 27737 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +41199 27737 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +41411 27737 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +40987 27949 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +41199 27949 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +41411 27949 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +40775 28161 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +40987 28161 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +41199 28161 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +41411 28161 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +40987 28373 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +41199 28373 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +41411 28373 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +40775 28585 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +40987 28585 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +41199 28585 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +41411 28585 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +40987 28797 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +41199 28797 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +41411 28797 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +40775 29009 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +40987 29009 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +41199 29009 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +41411 29009 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +40987 29221 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +41199 29221 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +41411 29221 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +40775 29433 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +40987 29433 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +41199 29433 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +41411 29433 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +40987 29645 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +41199 29645 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +41411 29645 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +40775 29857 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +40987 29857 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +41199 29857 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +41411 29857 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +40987 30069 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +41199 30069 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +41411 30069 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +40775 30281 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +40987 30281 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +41199 30281 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +41411 30281 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +40987 30493 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +41199 30493 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +41411 30493 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom gr gs -0.343 0.617 0.113 c 31892 29056 m 32137 29056 l 32137 24984 l 31892 24984 l -31892 29056 l p ef +39371 30430 m 39722 30430 l 39722 25581 l 39371 25581 l 39371 30430 l +eoclip newpath +39371 25581 m 39722 25581 l 39722 30430 l 39371 30430 l 39371 25581 l eoclip newpath +pum +39017 25780 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39229 25780 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39441 25780 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39653 25780 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39229 25992 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39441 25992 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39653 25992 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39017 26204 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39229 26204 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39441 26204 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39653 26204 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39229 26416 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39441 26416 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39653 26416 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39017 26628 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39229 26628 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39441 26628 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39653 26628 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39229 26840 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39441 26840 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39653 26840 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39017 27052 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39229 27052 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39441 27052 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39653 27052 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39229 27264 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39441 27264 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39653 27264 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39017 27476 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39229 27476 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39441 27476 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39653 27476 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39229 27688 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39441 27688 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39653 27688 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39017 27900 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39229 27900 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39441 27900 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39653 27900 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39229 28112 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39441 28112 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39653 28112 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39017 28324 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39229 28324 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39441 28324 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39653 28324 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39229 28536 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39441 28536 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39653 28536 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39017 28748 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39229 28748 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39441 28748 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39653 28748 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39229 28960 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39441 28960 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39653 28960 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39017 29172 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39229 29172 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39441 29172 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39653 29172 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39229 29384 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39441 29384 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39653 29384 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39017 29596 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39229 29596 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39441 29596 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39653 29596 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39229 29808 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39441 29808 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39653 29808 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39017 30020 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39229 30020 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39441 30020 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39653 30020 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39229 30232 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39441 30232 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39653 30232 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39017 30444 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39229 30444 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39441 30444 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +39653 30444 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom gr gs -0.343 0.617 0.113 c 30416 29056 m 30662 29056 l 30662 23599 l 30416 23599 l -30416 29056 l p ef +37613 30430 m 37965 30430 l 37965 26120 l 37613 26120 l 37613 30430 l +eoclip newpath +37613 26120 m 37965 26120 l 37965 30430 l 37613 30430 l 37613 26120 l eoclip newpath +pum +37471 26261 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +37683 26261 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +37895 26261 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +37259 26473 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +37471 26473 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +37683 26473 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +37895 26473 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +37471 26685 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +37683 26685 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +37895 26685 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +37259 26897 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +37471 26897 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +37683 26897 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +37895 26897 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +37471 27109 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +37683 27109 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +37895 27109 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +37259 27321 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +37471 27321 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +37683 27321 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +37895 27321 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +37471 27533 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +37683 27533 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +37895 27533 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +37259 27745 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +37471 27745 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +37683 27745 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +37895 27745 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +37471 27957 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +37683 27957 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +37895 27957 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +37259 28169 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +37471 28169 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +37683 28169 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +37895 28169 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +37471 28381 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +37683 28381 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +37895 28381 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +37259 28593 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +37471 28593 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +37683 28593 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +37895 28593 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +37471 28805 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +37683 28805 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +37895 28805 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +37259 29017 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +37471 29017 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +37683 29017 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +37895 29017 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +37471 29229 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +37683 29229 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +37895 29229 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +37259 29441 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +37471 29441 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +37683 29441 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +37895 29441 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +37471 29653 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +37683 29653 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +37895 29653 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +37259 29865 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +37471 29865 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +37683 29865 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +37895 29865 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +37471 30077 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +37683 30077 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +37895 30077 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +37259 30289 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +37471 30289 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +37683 30289 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +37895 30289 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +37471 30501 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +37683 30501 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +37895 30501 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom gr gs -0.343 0.617 0.113 c 28940 29056 m 29186 29056 l 29186 23486 l 28940 23486 l -28940 29056 l p ef +35856 30430 m 36207 30430 l 36207 22185 l 35856 22185 l 35856 30430 l +eoclip newpath +35856 22185 m 36207 22185 l 36207 30430 l 35856 30430 l 35856 22185 l eoclip newpath +pum +35502 22386 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35714 22386 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35926 22386 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +36138 22386 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35714 22598 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35926 22598 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +36138 22598 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35502 22810 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35714 22810 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35926 22810 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +36138 22810 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35714 23022 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35926 23022 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +36138 23022 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35502 23234 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35714 23234 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35926 23234 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +36138 23234 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35714 23446 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35926 23446 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +36138 23446 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35502 23658 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35714 23658 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35926 23658 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +36138 23658 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35714 23870 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35926 23870 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +36138 23870 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35502 24082 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35714 24082 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35926 24082 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +36138 24082 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35714 24294 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35926 24294 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +36138 24294 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35502 24506 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35714 24506 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35926 24506 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +36138 24506 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35714 24718 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35926 24718 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +36138 24718 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35502 24930 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35714 24930 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35926 24930 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +36138 24930 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35714 25142 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35926 25142 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +36138 25142 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35502 25354 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35714 25354 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35926 25354 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +36138 25354 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35714 25566 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35926 25566 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +36138 25566 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35502 25778 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35714 25778 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35926 25778 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +36138 25778 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35714 25990 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35926 25990 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +36138 25990 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35502 26202 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35714 26202 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35926 26202 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +36138 26202 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35714 26414 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35926 26414 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +36138 26414 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35502 26626 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35714 26626 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35926 26626 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +36138 26626 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35714 26838 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35926 26838 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +36138 26838 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35502 27050 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35714 27050 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35926 27050 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +36138 27050 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35714 27262 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35926 27262 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +36138 27262 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35502 27474 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35714 27474 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35926 27474 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +36138 27474 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35714 27686 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35926 27686 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +36138 27686 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35502 27898 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35714 27898 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35926 27898 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +36138 27898 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35714 28110 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35926 28110 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +36138 28110 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35502 28322 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35714 28322 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35926 28322 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +36138 28322 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35714 28534 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35926 28534 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +36138 28534 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35502 28746 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35714 28746 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35926 28746 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +36138 28746 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35714 28958 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35926 28958 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +36138 28958 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35502 29170 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35714 29170 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35926 29170 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +36138 29170 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35714 29382 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35926 29382 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +36138 29382 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35502 29594 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35714 29594 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35926 29594 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +36138 29594 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35714 29806 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35926 29806 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +36138 29806 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35502 30018 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35714 30018 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35926 30018 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +36138 30018 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35714 30230 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35926 30230 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +36138 30230 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35502 30442 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35714 30442 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +35926 30442 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +36138 30442 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom gr gs -0.343 0.617 0.113 c 27465 29056 m 27710 29056 l 27710 25357 l 27465 25357 l -27465 29056 l p ef +34098 30430 m 34450 30430 l 34450 26317 l 34098 26317 l 34098 30430 l +eoclip newpath +34098 26317 m 34450 26317 l 34450 30430 l 34098 30430 l 34098 26317 l eoclip newpath +pum +33956 26360 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +34168 26360 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +34380 26360 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +33744 26572 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +33956 26572 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +34168 26572 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +34380 26572 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +33956 26784 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +34168 26784 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +34380 26784 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +33744 26996 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +33956 26996 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +34168 26996 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +34380 26996 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +33956 27208 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +34168 27208 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +34380 27208 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +33744 27420 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +33956 27420 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +34168 27420 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +34380 27420 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +33956 27632 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +34168 27632 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +34380 27632 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +33744 27844 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +33956 27844 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +34168 27844 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +34380 27844 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +33956 28056 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +34168 28056 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +34380 28056 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +33744 28268 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +33956 28268 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +34168 28268 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +34380 28268 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +33956 28480 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +34168 28480 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +34380 28480 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +33744 28692 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +33956 28692 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +34168 28692 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +34380 28692 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +33956 28904 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +34168 28904 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +34380 28904 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +33744 29116 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +33956 29116 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +34168 29116 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +34380 29116 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +33956 29328 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +34168 29328 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +34380 29328 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +33744 29540 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +33956 29540 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +34168 29540 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +34380 29540 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +33956 29752 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +34168 29752 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +34380 29752 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +33744 29964 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +33956 29964 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +34168 29964 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +34380 29964 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +33956 30176 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +34168 30176 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +34380 30176 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +33744 30388 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +33956 30388 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +34168 30388 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +34380 30388 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +33956 30600 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +34168 30600 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +34380 30600 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom gr gs -0.343 0.617 0.113 c 25990 29056 m 26236 29056 l 26236 25410 l 25990 25410 l -25990 29056 l p ef +32341 30430 m 32692 30430 l 32692 26094 l 32341 26094 l 32341 30430 l +eoclip newpath +32341 26094 m 32692 26094 l 32692 30430 l 32341 30430 l 32341 26094 l eoclip newpath +pum +32199 26248 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +32411 26248 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +32623 26248 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +31987 26460 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +32199 26460 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +32411 26460 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +32623 26460 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +32199 26672 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +32411 26672 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +32623 26672 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +31987 26884 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +32199 26884 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +32411 26884 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +32623 26884 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +32199 27096 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +32411 27096 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +32623 27096 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +31987 27308 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +32199 27308 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +32411 27308 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +32623 27308 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +32199 27520 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +32411 27520 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +32623 27520 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +31987 27732 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +32199 27732 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +32411 27732 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +32623 27732 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +32199 27944 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +32411 27944 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +32623 27944 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +31987 28156 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +32199 28156 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +32411 28156 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +32623 28156 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +32199 28368 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +32411 28368 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +32623 28368 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +31987 28580 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +32199 28580 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +32411 28580 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +32623 28580 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +32199 28792 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +32411 28792 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +32623 28792 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +31987 29004 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +32199 29004 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +32411 29004 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +32623 29004 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +32199 29216 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +32411 29216 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +32623 29216 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +31987 29428 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +32199 29428 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +32411 29428 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +32623 29428 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +32199 29640 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +32411 29640 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +32623 29640 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +31987 29852 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +32199 29852 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +32411 29852 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +32623 29852 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +32199 30064 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +32411 30064 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +32623 30064 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +31987 30276 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +32199 30276 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +32411 30276 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +32623 30276 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +32199 30488 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +32411 30488 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +32623 30488 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom gr gs -0.343 0.617 0.113 c 24514 29056 m 24760 29056 l 24760 24008 l 24514 24008 l -24514 29056 l p ef +30583 30430 m 30934 30430 l 30934 24620 l 30583 24620 l 30583 30430 l +eoclip newpath +30583 24620 m 30934 24620 l 30934 30430 l 30583 30430 l 30583 24620 l eoclip newpath +pum +30441 24663 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30653 24663 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30865 24663 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30229 24875 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30441 24875 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30653 24875 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30865 24875 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30441 25087 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30653 25087 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30865 25087 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30229 25299 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30441 25299 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30653 25299 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30865 25299 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30441 25511 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30653 25511 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30865 25511 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30229 25723 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30441 25723 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30653 25723 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30865 25723 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30441 25935 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30653 25935 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30865 25935 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30229 26147 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30441 26147 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30653 26147 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30865 26147 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30441 26359 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30653 26359 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30865 26359 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30229 26571 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30441 26571 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30653 26571 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30865 26571 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30441 26783 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30653 26783 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30865 26783 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30229 26995 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30441 26995 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30653 26995 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30865 26995 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30441 27207 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30653 27207 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30865 27207 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30229 27419 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30441 27419 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30653 27419 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30865 27419 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30441 27631 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30653 27631 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30865 27631 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30229 27843 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30441 27843 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30653 27843 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30865 27843 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30441 28055 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30653 28055 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30865 28055 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30229 28267 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30441 28267 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30653 28267 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30865 28267 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30441 28479 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30653 28479 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30865 28479 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30229 28691 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30441 28691 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30653 28691 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30865 28691 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30441 28903 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30653 28903 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30865 28903 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30229 29115 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30441 29115 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30653 29115 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30865 29115 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30441 29327 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30653 29327 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30865 29327 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30229 29539 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30441 29539 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30653 29539 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30865 29539 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30441 29751 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30653 29751 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30865 29751 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30229 29963 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30441 29963 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30653 29963 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30865 29963 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30441 30175 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30653 30175 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30865 30175 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30229 30387 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30441 30387 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30653 30387 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30865 30387 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30441 30599 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30653 30599 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +30865 30599 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom gr gs -0.343 0.617 0.113 c 23038 29056 m 23284 29056 l 23284 25262 l 23038 25262 l -23038 29056 l p ef +28825 30430 m 29177 30430 l 29177 24499 l 28825 24499 l 28825 30430 l +eoclip newpath +28825 24499 m 29177 24499 l 29177 30430 l 28825 30430 l 28825 24499 l eoclip newpath +pum +28683 24603 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +28895 24603 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +29107 24603 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +28471 24815 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +28683 24815 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +28895 24815 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +29107 24815 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +28683 25027 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +28895 25027 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +29107 25027 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +28471 25239 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +28683 25239 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +28895 25239 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +29107 25239 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +28683 25451 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +28895 25451 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +29107 25451 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +28471 25663 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +28683 25663 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +28895 25663 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +29107 25663 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +28683 25875 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +28895 25875 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +29107 25875 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +28471 26087 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +28683 26087 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +28895 26087 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +29107 26087 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +28683 26299 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +28895 26299 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +29107 26299 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +28471 26511 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +28683 26511 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +28895 26511 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +29107 26511 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +28683 26723 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +28895 26723 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +29107 26723 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +28471 26935 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +28683 26935 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +28895 26935 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +29107 26935 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +28683 27147 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +28895 27147 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +29107 27147 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +28471 27359 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +28683 27359 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +28895 27359 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +29107 27359 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +28683 27571 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +28895 27571 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +29107 27571 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +28471 27783 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +28683 27783 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +28895 27783 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +29107 27783 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +28683 27995 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +28895 27995 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +29107 27995 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +28471 28207 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +28683 28207 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +28895 28207 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +29107 28207 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +28683 28419 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +28895 28419 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +29107 28419 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +28471 28631 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +28683 28631 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +28895 28631 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +29107 28631 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +28683 28843 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +28895 28843 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +29107 28843 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +28471 29055 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +28683 29055 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +28895 29055 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +29107 29055 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +28683 29267 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +28895 29267 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +29107 29267 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +28471 29479 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +28683 29479 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +28895 29479 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +29107 29479 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +28683 29691 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +28895 29691 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +29107 29691 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +28471 29903 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +28683 29903 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +28895 29903 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +29107 29903 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +28683 30115 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +28895 30115 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +29107 30115 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +28471 30327 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +28683 30327 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +28895 30327 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +29107 30327 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +28683 30539 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +28895 30539 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +29107 30539 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom gr gs -0.343 0.617 0.113 c 21562 29056 m 21808 29056 l 21808 25369 l 21562 25369 l -21562 29056 l p ef +27069 30430 m 27420 30430 l 27420 26492 l 27069 26492 l 27069 30430 l +eoclip newpath +27069 26492 m 27420 26492 l 27420 30430 l 27069 30430 l 27069 26492 l eoclip newpath +pum +26714 26659 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +26926 26659 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +27138 26659 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +27350 26659 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +26926 26871 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +27138 26871 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +27350 26871 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +26714 27083 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +26926 27083 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +27138 27083 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +27350 27083 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +26926 27295 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +27138 27295 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +27350 27295 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +26714 27507 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +26926 27507 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +27138 27507 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +27350 27507 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +26926 27719 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +27138 27719 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +27350 27719 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +26714 27931 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +26926 27931 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +27138 27931 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +27350 27931 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +26926 28143 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +27138 28143 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +27350 28143 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +26714 28355 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +26926 28355 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +27138 28355 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +27350 28355 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +26926 28567 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +27138 28567 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +27350 28567 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +26714 28779 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +26926 28779 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +27138 28779 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +27350 28779 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +26926 28991 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +27138 28991 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +27350 28991 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +26714 29203 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +26926 29203 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +27138 29203 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +27350 29203 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +26926 29415 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +27138 29415 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +27350 29415 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +26714 29627 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +26926 29627 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +27138 29627 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +27350 29627 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +26926 29839 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +27138 29839 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +27350 29839 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +26714 30051 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +26926 30051 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +27138 30051 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +27350 30051 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +26926 30263 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +27138 30263 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +27350 30263 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +26714 30475 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +26926 30475 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +27138 30475 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +27350 30475 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom gr gs -0.343 0.617 0.113 c 20087 29056 m 20333 29056 l 20333 24637 l 20087 24637 l -20087 29056 l p ef +25311 30430 m 25663 30430 l 25663 25055 l 25311 25055 l 25311 30430 l +eoclip newpath +25311 25055 m 25663 25055 l 25663 30430 l 25311 30430 l 25311 25055 l eoclip newpath +pum +24957 25093 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25169 25093 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25381 25093 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25593 25093 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25169 25305 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25381 25305 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25593 25305 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +24957 25517 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25169 25517 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25381 25517 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25593 25517 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25169 25729 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25381 25729 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25593 25729 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +24957 25941 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25169 25941 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25381 25941 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25593 25941 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25169 26153 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25381 26153 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25593 26153 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +24957 26365 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25169 26365 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25381 26365 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25593 26365 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25169 26577 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25381 26577 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25593 26577 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +24957 26789 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25169 26789 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25381 26789 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25593 26789 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25169 27001 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25381 27001 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25593 27001 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +24957 27213 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25169 27213 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25381 27213 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25593 27213 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25169 27425 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25381 27425 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25593 27425 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +24957 27637 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25169 27637 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25381 27637 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25593 27637 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25169 27849 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25381 27849 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25593 27849 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +24957 28061 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25169 28061 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25381 28061 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25593 28061 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25169 28273 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25381 28273 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25593 28273 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +24957 28485 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25169 28485 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25381 28485 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25593 28485 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25169 28697 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25381 28697 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25593 28697 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +24957 28909 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25169 28909 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25381 28909 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25593 28909 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25169 29121 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25381 29121 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25593 29121 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +24957 29333 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25169 29333 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25381 29333 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25593 29333 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25169 29545 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25381 29545 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25593 29545 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +24957 29757 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25169 29757 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25381 29757 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25593 29757 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25169 29969 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25381 29969 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25593 29969 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +24957 30181 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25169 30181 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25381 30181 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25593 30181 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25169 30393 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25381 30393 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25593 30393 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +24957 30605 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25169 30605 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25381 30605 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +25593 30605 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom gr gs -0.343 0.617 0.113 c 18611 29056 m 18857 29056 l 18857 25199 l 18611 25199 l -18611 29056 l p ef +23554 30430 m 23905 30430 l 23905 26391 l 23554 26391 l 23554 30430 l +eoclip newpath +23554 26391 m 23905 26391 l 23905 30430 l 23554 30430 l 23554 26391 l eoclip newpath +pum +23411 26397 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +23623 26397 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +23835 26397 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +23199 26609 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +23411 26609 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +23623 26609 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +23835 26609 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +23411 26821 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +23623 26821 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +23835 26821 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +23199 27033 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +23411 27033 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +23623 27033 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +23835 27033 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +23411 27245 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +23623 27245 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +23835 27245 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +23199 27457 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +23411 27457 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +23623 27457 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +23835 27457 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +23411 27669 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +23623 27669 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +23835 27669 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +23199 27881 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +23411 27881 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +23623 27881 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +23835 27881 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +23411 28093 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +23623 28093 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +23835 28093 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +23199 28305 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +23411 28305 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +23623 28305 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +23835 28305 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +23411 28517 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +23623 28517 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +23835 28517 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +23199 28729 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +23411 28729 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +23623 28729 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +23835 28729 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +23411 28941 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +23623 28941 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +23835 28941 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +23199 29153 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +23411 29153 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +23623 29153 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +23835 29153 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +23411 29365 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +23623 29365 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +23835 29365 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +23199 29577 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +23411 29577 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +23623 29577 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +23835 29577 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +23411 29789 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +23623 29789 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +23835 29789 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +23199 30001 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +23411 30001 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +23623 30001 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +23835 30001 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +23411 30213 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +23623 30213 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +23835 30213 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +23199 30425 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +23411 30425 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +23623 30425 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +23835 30425 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +23411 30637 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +23623 30637 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +23835 30637 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom gr gs -0.343 0.617 0.113 c 17135 29056 m 17381 29056 l 17381 24251 l 17135 24251 l -17135 29056 l p ef +21796 30430 m 22147 30430 l 22147 26504 l 21796 26504 l 21796 30430 l +eoclip newpath +21796 26504 m 22147 26504 l 22147 30430 l 21796 30430 l 21796 26504 l eoclip newpath +pum +21441 26665 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +21653 26665 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +21865 26665 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +22077 26665 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +21653 26877 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +21865 26877 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +22077 26877 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +21441 27089 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +21653 27089 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +21865 27089 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +22077 27089 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +21653 27301 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +21865 27301 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +22077 27301 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +21441 27513 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +21653 27513 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +21865 27513 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +22077 27513 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +21653 27725 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +21865 27725 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +22077 27725 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +21441 27937 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +21653 27937 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +21865 27937 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +22077 27937 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +21653 28149 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +21865 28149 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +22077 28149 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +21441 28361 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +21653 28361 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +21865 28361 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +22077 28361 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +21653 28573 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +21865 28573 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +22077 28573 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +21441 28785 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +21653 28785 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +21865 28785 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +22077 28785 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +21653 28997 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +21865 28997 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +22077 28997 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +21441 29209 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +21653 29209 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +21865 29209 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +22077 29209 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +21653 29421 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +21865 29421 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +22077 29421 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +21441 29633 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +21653 29633 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +21865 29633 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +22077 29633 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +21653 29845 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +21865 29845 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +22077 29845 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +21441 30057 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +21653 30057 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +21865 30057 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +22077 30057 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +21653 30269 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +21865 30269 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +22077 30269 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +21441 30481 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +21653 30481 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +21865 30481 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +22077 30481 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom gr gs -0.343 0.617 0.113 c 15660 29056 m 15905 29056 l 15905 25376 l 15660 25376 l -15660 29056 l p ef +20038 30430 m 20390 30430 l 20390 25725 l 20038 25725 l 20038 30430 l +eoclip newpath +20038 25725 m 20390 25725 l 20390 30430 l 20038 30430 l 20038 25725 l eoclip newpath +pum +19684 25852 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +19896 25852 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +20108 25852 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +20320 25852 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +19896 26064 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +20108 26064 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +20320 26064 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +19684 26276 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +19896 26276 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +20108 26276 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +20320 26276 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +19896 26488 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +20108 26488 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +20320 26488 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +19684 26700 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +19896 26700 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +20108 26700 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +20320 26700 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +19896 26912 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +20108 26912 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +20320 26912 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +19684 27124 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +19896 27124 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +20108 27124 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +20320 27124 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +19896 27336 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +20108 27336 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +20320 27336 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +19684 27548 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +19896 27548 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +20108 27548 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +20320 27548 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +19896 27760 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +20108 27760 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +20320 27760 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +19684 27972 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +19896 27972 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +20108 27972 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +20320 27972 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +19896 28184 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +20108 28184 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +20320 28184 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +19684 28396 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +19896 28396 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +20108 28396 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +20320 28396 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +19896 28608 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +20108 28608 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +20320 28608 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +19684 28820 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +19896 28820 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +20108 28820 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +20320 28820 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +19896 29032 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +20108 29032 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +20320 29032 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +19684 29244 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +19896 29244 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +20108 29244 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +20320 29244 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +19896 29456 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +20108 29456 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +20320 29456 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +19684 29668 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +19896 29668 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +20108 29668 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +20320 29668 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +19896 29880 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +20108 29880 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +20320 29880 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +19684 30092 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +19896 30092 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +20108 30092 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +20320 30092 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +19896 30304 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +20108 30304 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +20320 30304 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +19684 30516 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +19896 30516 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +20108 30516 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +20320 30516 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom gr gs -0.343 0.617 0.113 c 14184 29056 m 14430 29056 l 14430 24422 l 14184 24422 l -14184 29056 l p ef +18281 30430 m 18632 30430 l 18632 26324 l 18281 26324 l 18281 30430 l +eoclip newpath +18281 26324 m 18632 26324 l 18632 30430 l 18281 30430 l 18281 26324 l eoclip newpath +pum +18138 26363 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +18350 26363 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +18562 26363 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +17926 26575 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +18138 26575 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +18350 26575 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +18562 26575 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +18138 26787 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +18350 26787 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +18562 26787 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +17926 26999 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +18138 26999 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +18350 26999 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +18562 26999 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +18138 27211 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +18350 27211 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +18562 27211 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +17926 27423 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +18138 27423 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +18350 27423 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +18562 27423 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +18138 27635 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +18350 27635 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +18562 27635 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +17926 27847 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +18138 27847 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +18350 27847 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +18562 27847 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +18138 28059 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +18350 28059 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +18562 28059 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +17926 28271 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +18138 28271 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +18350 28271 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +18562 28271 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +18138 28483 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +18350 28483 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +18562 28483 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +17926 28695 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +18138 28695 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +18350 28695 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +18562 28695 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +18138 28907 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +18350 28907 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +18562 28907 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +17926 29119 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +18138 29119 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +18350 29119 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +18562 29119 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +18138 29331 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +18350 29331 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +18562 29331 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +17926 29543 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +18138 29543 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +18350 29543 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +18562 29543 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +18138 29755 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +18350 29755 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +18562 29755 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +17926 29967 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +18138 29967 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +18350 29967 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +18562 29967 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +18138 30179 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +18350 30179 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +18562 30179 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +17926 30391 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +18138 30391 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +18350 30391 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +18562 30391 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +18138 30603 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +18350 30603 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +18562 30603 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom gr gs -0.343 0.617 0.113 c 12708 29056 m 12954 29056 l 12954 25239 l 12708 25239 l -12708 29056 l p ef +16523 30430 m 16875 30430 l 16875 25314 l 16523 25314 l 16523 30430 l +eoclip newpath +16523 25314 m 16875 25314 l 16875 30430 l 16523 30430 l 16523 25314 l eoclip newpath +pum +16381 25434 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16593 25434 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16805 25434 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16169 25646 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16381 25646 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16593 25646 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16805 25646 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16381 25858 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16593 25858 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16805 25858 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16169 26070 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16381 26070 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16593 26070 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16805 26070 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16381 26282 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16593 26282 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16805 26282 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16169 26494 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16381 26494 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16593 26494 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16805 26494 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16381 26706 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16593 26706 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16805 26706 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16169 26918 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16381 26918 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16593 26918 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16805 26918 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16381 27130 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16593 27130 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16805 27130 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16169 27342 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16381 27342 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16593 27342 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16805 27342 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16381 27554 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16593 27554 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16805 27554 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16169 27766 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16381 27766 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16593 27766 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16805 27766 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16381 27978 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16593 27978 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16805 27978 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16169 28190 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16381 28190 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16593 28190 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16805 28190 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16381 28402 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16593 28402 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16805 28402 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16169 28614 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16381 28614 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16593 28614 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16805 28614 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16381 28826 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16593 28826 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16805 28826 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16169 29038 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16381 29038 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16593 29038 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16805 29038 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16381 29250 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16593 29250 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16805 29250 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16169 29462 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16381 29462 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16593 29462 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16805 29462 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16381 29674 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16593 29674 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16805 29674 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16169 29886 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16381 29886 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16593 29886 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16805 29886 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16381 30098 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16593 30098 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16805 30098 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16169 30310 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16381 30310 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16593 30310 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16805 30310 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16381 30522 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16593 30522 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +16805 30522 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom gr gs -0.343 0.617 0.113 c 11232 29056 m 11478 29056 l 11478 24261 l 11232 24261 l -11232 29056 l p ef +14766 30430 m 15117 30430 l 15117 25496 l 14766 25496 l 14766 30430 l +eoclip newpath +14766 25496 m 15117 25496 l 15117 30430 l 14766 30430 l 14766 25496 l eoclip newpath +pum +14623 25525 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +14835 25525 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +15047 25525 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +14411 25737 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +14623 25737 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +14835 25737 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +15047 25737 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +14623 25949 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +14835 25949 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +15047 25949 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +14411 26161 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +14623 26161 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +14835 26161 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +15047 26161 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +14623 26373 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +14835 26373 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +15047 26373 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +14411 26585 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +14623 26585 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +14835 26585 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +15047 26585 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +14623 26797 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +14835 26797 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +15047 26797 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +14411 27009 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +14623 27009 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +14835 27009 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +15047 27009 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +14623 27221 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +14835 27221 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +15047 27221 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +14411 27433 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +14623 27433 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +14835 27433 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +15047 27433 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +14623 27645 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +14835 27645 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +15047 27645 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +14411 27857 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +14623 27857 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +14835 27857 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +15047 27857 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +14623 28069 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +14835 28069 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +15047 28069 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +14411 28281 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +14623 28281 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +14835 28281 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +15047 28281 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +14623 28493 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +14835 28493 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +15047 28493 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +14411 28705 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +14623 28705 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +14835 28705 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +15047 28705 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +14623 28917 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +14835 28917 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +15047 28917 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +14411 29129 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +14623 29129 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +14835 29129 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +15047 29129 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +14623 29341 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +14835 29341 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +15047 29341 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +14411 29553 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +14623 29553 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +14835 29553 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +15047 29553 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +14623 29765 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +14835 29765 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +15047 29765 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +14411 29977 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +14623 29977 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +14835 29977 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +15047 29977 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +14623 30189 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +14835 30189 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +15047 30189 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +14411 30401 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +14623 30401 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +14835 30401 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +15047 30401 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +14623 30613 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +14835 30613 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +15047 30613 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom gr gs -0.496 0.003 0.132 c 42468 29056 m 42714 29056 l 42714 25113 l 42468 25113 l -42468 29056 l p ef +13008 30430 m 13359 30430 l 13359 26366 l 13008 26366 l 13008 30430 l +eoclip newpath +13008 26366 m 13359 26366 l 13359 30430 l 13008 30430 l 13008 26366 l eoclip newpath +pum +12865 26384 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +13077 26384 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +13289 26384 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +12653 26596 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +12865 26596 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +13077 26596 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +13289 26596 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +12865 26808 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +13077 26808 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +13289 26808 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +12653 27020 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +12865 27020 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +13077 27020 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +13289 27020 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +12865 27232 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +13077 27232 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +13289 27232 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +12653 27444 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +12865 27444 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +13077 27444 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +13289 27444 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +12865 27656 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +13077 27656 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +13289 27656 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +12653 27868 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +12865 27868 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +13077 27868 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +13289 27868 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +12865 28080 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +13077 28080 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +13289 28080 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +12653 28292 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +12865 28292 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +13077 28292 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +13289 28292 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +12865 28504 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +13077 28504 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +13289 28504 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +12653 28716 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +12865 28716 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +13077 28716 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +13289 28716 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +12865 28928 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +13077 28928 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +13289 28928 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +12653 29140 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +12865 29140 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +13077 29140 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +13289 29140 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +12865 29352 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +13077 29352 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +13289 29352 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +12653 29564 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +12865 29564 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +13077 29564 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +13289 29564 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +12865 29776 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +13077 29776 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +13289 29776 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +12653 29988 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +12865 29988 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +13077 29988 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +13289 29988 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +12865 30200 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +13077 30200 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +13289 30200 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +12653 30412 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +12865 30412 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +13077 30412 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +13289 30412 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +12865 30624 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +13077 30624 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +13289 30624 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom gr gs -0.496 0.003 0.132 c 40992 29056 m 41238 29056 l 41238 25424 l 40992 25424 l -40992 29056 l p ef +11250 30430 m 11602 30430 l 11602 25325 l 11250 25325 l 11250 30430 l +eoclip newpath +11250 25325 m 11602 25325 l 11602 30430 l 11250 30430 l 11250 25325 l eoclip newpath +pum +11108 25440 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +11320 25440 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +11532 25440 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +10896 25652 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +11108 25652 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +11320 25652 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +11532 25652 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +11108 25864 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +11320 25864 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +11532 25864 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +10896 26076 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +11108 26076 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +11320 26076 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +11532 26076 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +11108 26288 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +11320 26288 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +11532 26288 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +10896 26500 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +11108 26500 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +11320 26500 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +11532 26500 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +11108 26712 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +11320 26712 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +11532 26712 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +10896 26924 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +11108 26924 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +11320 26924 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +11532 26924 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +11108 27136 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +11320 27136 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +11532 27136 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +10896 27348 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +11108 27348 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +11320 27348 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +11532 27348 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +11108 27560 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +11320 27560 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +11532 27560 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +10896 27772 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +11108 27772 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +11320 27772 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +11532 27772 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +11108 27984 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +11320 27984 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +11532 27984 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +10896 28196 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +11108 28196 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +11320 28196 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +11532 28196 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +11108 28408 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +11320 28408 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +11532 28408 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +10896 28620 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +11108 28620 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +11320 28620 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +11532 28620 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +11108 28832 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +11320 28832 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +11532 28832 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +10896 29044 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +11108 29044 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +11320 29044 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +11532 29044 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +11108 29256 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +11320 29256 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +11532 29256 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +10896 29468 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +11108 29468 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +11320 29468 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +11532 29468 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +11108 29680 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +11320 29680 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +11532 29680 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +10896 29892 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +11108 29892 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +11320 29892 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +11532 29892 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +11108 30104 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +11320 30104 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +11532 30104 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +10896 30316 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +11108 30316 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +11320 30316 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +11532 30316 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +11108 30528 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +11320 30528 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom +pum +11532 30528 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom gr gs -0.496 0.003 0.132 c 39516 29056 m 39762 29056 l 39762 25164 l 39516 25164 l -39516 29056 l p ef +44995 30430 m 45347 30430 l 45347 26196 l 44995 26196 l 44995 30430 l +eoclip newpath +44995 26196 m 45347 26196 l 45347 30430 l 44995 30430 l 44995 26196 l eoclip newpath +pum +44853 26299 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +45065 26299 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +45277 26299 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +44641 26511 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +44853 26511 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +45065 26511 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +45277 26511 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +44853 26723 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +45065 26723 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +45277 26723 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +44641 26935 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +44853 26935 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +45065 26935 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +45277 26935 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +44853 27147 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +45065 27147 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +45277 27147 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +44641 27359 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +44853 27359 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +45065 27359 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +45277 27359 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +44853 27571 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +45065 27571 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +45277 27571 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +44641 27783 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +44853 27783 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +45065 27783 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +45277 27783 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +44853 27995 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +45065 27995 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +45277 27995 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +44641 28207 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +44853 28207 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +45065 28207 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +45277 28207 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +44853 28419 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +45065 28419 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +45277 28419 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +44641 28631 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +44853 28631 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +45065 28631 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +45277 28631 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +44853 28843 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +45065 28843 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +45277 28843 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +44641 29055 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +44853 29055 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +45065 29055 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +45277 29055 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +44853 29267 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +45065 29267 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +45277 29267 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +44641 29479 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +44853 29479 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +45065 29479 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +45277 29479 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +44853 29691 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +45065 29691 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +45277 29691 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +44641 29903 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +44853 29903 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +45065 29903 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +45277 29903 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +44853 30115 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +45065 30115 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +45277 30115 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +44641 30327 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +44853 30327 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +45065 30327 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +45277 30327 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +44853 30539 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +45065 30539 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +45277 30539 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom gr gs -0.496 0.003 0.132 c 38040 29056 m 38286 29056 l 38286 24896 l 38040 24896 l -38040 29056 l p ef +43238 30430 m 43589 30430 l 43589 26564 l 43238 26564 l 43238 30430 l +eoclip newpath +43238 26564 m 43589 26564 l 43589 30430 l 43238 30430 l 43238 26564 l eoclip newpath +pum +42884 26695 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +43096 26695 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +43308 26695 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +43520 26695 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +43096 26907 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +43308 26907 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +43520 26907 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +42884 27119 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +43096 27119 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +43308 27119 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +43520 27119 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +43096 27331 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +43308 27331 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +43520 27331 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +42884 27543 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +43096 27543 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +43308 27543 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +43520 27543 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +43096 27755 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +43308 27755 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +43520 27755 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +42884 27967 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +43096 27967 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +43308 27967 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +43520 27967 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +43096 28179 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +43308 28179 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +43520 28179 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +42884 28391 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +43096 28391 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +43308 28391 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +43520 28391 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +43096 28603 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +43308 28603 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +43520 28603 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +42884 28815 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +43096 28815 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +43308 28815 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +43520 28815 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +43096 29027 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +43308 29027 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +43520 29027 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +42884 29239 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +43096 29239 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +43308 29239 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +43520 29239 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +43096 29451 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +43308 29451 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +43520 29451 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +42884 29663 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +43096 29663 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +43308 29663 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +43520 29663 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +43096 29875 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +43308 29875 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +43520 29875 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +42884 30087 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +43096 30087 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +43308 30087 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +43520 30087 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +43096 30299 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +43308 30299 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +43520 30299 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +42884 30511 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +43096 30511 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +43308 30511 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +43520 30511 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom gr gs -0.496 0.003 0.132 c 36565 29056 m 36811 29056 l 36811 25311 l 36565 25311 l -36565 29056 l p ef +41480 30430 m 41832 30430 l 41832 26286 l 41480 26286 l 41480 30430 l +eoclip newpath +41480 26286 m 41832 26286 l 41832 30430 l 41480 30430 l 41480 26286 l eoclip newpath +pum +41338 26344 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +41550 26344 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +41762 26344 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +41126 26556 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +41338 26556 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +41550 26556 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +41762 26556 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +41338 26768 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +41550 26768 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +41762 26768 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +41126 26980 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +41338 26980 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +41550 26980 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +41762 26980 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +41338 27192 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +41550 27192 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +41762 27192 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +41126 27404 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +41338 27404 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +41550 27404 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +41762 27404 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +41338 27616 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +41550 27616 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +41762 27616 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +41126 27828 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +41338 27828 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +41550 27828 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +41762 27828 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +41338 28040 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +41550 28040 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +41762 28040 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +41126 28252 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +41338 28252 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +41550 28252 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +41762 28252 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +41338 28464 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +41550 28464 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +41762 28464 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +41126 28676 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +41338 28676 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +41550 28676 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +41762 28676 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +41338 28888 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +41550 28888 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +41762 28888 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +41126 29100 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +41338 29100 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +41550 29100 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +41762 29100 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +41338 29312 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +41550 29312 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +41762 29312 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +41126 29524 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +41338 29524 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +41550 29524 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +41762 29524 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +41338 29736 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +41550 29736 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +41762 29736 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +41126 29948 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +41338 29948 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +41550 29948 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +41762 29948 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +41338 30160 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +41550 30160 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +41762 30160 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +41126 30372 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +41338 30372 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +41550 30372 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +41762 30372 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +41338 30584 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +41550 30584 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +41762 30584 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom gr gs -0.496 0.003 0.132 c 35089 29056 m 35335 29056 l 35335 21984 l 35089 21984 l -35089 29056 l p ef +39722 30430 m 40074 30430 l 40074 26001 l 39722 26001 l 39722 30430 l +eoclip newpath +39722 26001 m 40074 26001 l 40074 30430 l 39722 30430 l 39722 26001 l eoclip newpath +pum +39580 26202 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +39792 26202 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +40004 26202 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +39368 26414 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +39580 26414 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +39792 26414 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +40004 26414 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +39580 26626 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +39792 26626 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +40004 26626 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +39368 26838 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +39580 26838 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +39792 26838 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +40004 26838 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +39580 27050 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +39792 27050 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +40004 27050 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +39368 27262 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +39580 27262 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +39792 27262 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +40004 27262 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +39580 27474 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +39792 27474 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +40004 27474 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +39368 27686 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +39580 27686 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +39792 27686 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +40004 27686 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +39580 27898 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +39792 27898 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +40004 27898 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +39368 28110 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +39580 28110 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +39792 28110 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +40004 28110 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +39580 28322 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +39792 28322 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +40004 28322 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +39368 28534 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +39580 28534 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +39792 28534 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +40004 28534 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +39580 28746 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +39792 28746 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +40004 28746 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +39368 28958 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +39580 28958 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +39792 28958 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +40004 28958 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +39580 29170 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +39792 29170 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +40004 29170 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +39368 29382 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +39580 29382 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +39792 29382 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +40004 29382 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +39580 29594 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +39792 29594 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +40004 29594 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +39368 29806 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +39580 29806 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +39792 29806 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +40004 29806 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +39580 30018 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +39792 30018 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +40004 30018 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +39368 30230 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +39580 30230 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +39792 30230 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +40004 30230 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +39580 30442 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +39792 30442 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +40004 30442 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom gr gs -0.496 0.003 0.132 c 33613 29056 m 33859 29056 l 33859 25404 l 33613 25404 l -33613 29056 l p ef +37965 30430 m 38316 30430 l 38316 26443 l 37965 26443 l 37965 30430 l +eoclip newpath +37965 26443 m 38316 26443 l 38316 30430 l 37965 30430 l 37965 26443 l eoclip newpath +pum +37611 26635 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +37823 26635 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +38035 26635 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +38247 26635 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +37823 26847 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +38035 26847 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +38247 26847 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +37611 27059 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +37823 27059 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +38035 27059 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +38247 27059 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +37823 27271 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +38035 27271 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +38247 27271 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +37611 27483 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +37823 27483 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +38035 27483 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +38247 27483 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +37823 27695 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +38035 27695 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +38247 27695 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +37611 27907 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +37823 27907 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +38035 27907 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +38247 27907 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +37823 28119 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +38035 28119 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +38247 28119 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +37611 28331 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +37823 28331 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +38035 28331 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +38247 28331 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +37823 28543 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +38035 28543 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +38247 28543 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +37611 28755 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +37823 28755 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +38035 28755 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +38247 28755 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +37823 28967 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +38035 28967 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +38247 28967 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +37611 29179 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +37823 29179 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +38035 29179 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +38247 29179 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +37823 29391 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +38035 29391 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +38247 29391 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +37611 29603 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +37823 29603 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +38035 29603 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +38247 29603 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +37823 29815 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +38035 29815 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +38247 29815 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +37611 30027 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +37823 30027 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +38035 30027 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +38247 30027 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +37823 30239 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +38035 30239 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +38247 30239 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +37611 30451 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +37823 30451 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +38035 30451 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +38247 30451 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom gr gs -0.496 0.003 0.132 c 32137 29056 m 32383 29056 l 32383 25421 l 32137 25421 l -32137 29056 l p ef +36207 30430 m 36559 30430 l 36559 22900 l 36207 22900 l 36207 30430 l +eoclip newpath +36207 22900 m 36559 22900 l 36559 30430 l 36207 30430 l 36207 22900 l eoclip newpath +pum +36065 22955 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36277 22955 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36489 22955 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +35853 23167 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36065 23167 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36277 23167 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36489 23167 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36065 23379 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36277 23379 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36489 23379 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +35853 23591 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36065 23591 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36277 23591 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36489 23591 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36065 23803 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36277 23803 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36489 23803 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +35853 24015 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36065 24015 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36277 24015 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36489 24015 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36065 24227 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36277 24227 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36489 24227 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +35853 24439 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36065 24439 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36277 24439 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36489 24439 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36065 24651 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36277 24651 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36489 24651 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +35853 24863 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36065 24863 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36277 24863 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36489 24863 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36065 25075 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36277 25075 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36489 25075 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +35853 25287 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36065 25287 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36277 25287 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36489 25287 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36065 25499 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36277 25499 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36489 25499 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +35853 25711 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36065 25711 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36277 25711 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36489 25711 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36065 25923 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36277 25923 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36489 25923 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +35853 26135 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36065 26135 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36277 26135 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36489 26135 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36065 26347 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36277 26347 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36489 26347 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +35853 26559 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36065 26559 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36277 26559 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36489 26559 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36065 26771 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36277 26771 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36489 26771 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +35853 26983 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36065 26983 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36277 26983 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36489 26983 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36065 27195 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36277 27195 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36489 27195 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +35853 27407 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36065 27407 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36277 27407 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36489 27407 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36065 27619 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36277 27619 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36489 27619 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +35853 27831 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36065 27831 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36277 27831 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36489 27831 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36065 28043 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36277 28043 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36489 28043 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +35853 28255 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36065 28255 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36277 28255 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36489 28255 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36065 28467 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36277 28467 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36489 28467 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +35853 28679 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36065 28679 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36277 28679 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36489 28679 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36065 28891 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36277 28891 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36489 28891 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +35853 29103 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36065 29103 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36277 29103 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36489 29103 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36065 29315 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36277 29315 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36489 29315 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +35853 29527 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36065 29527 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36277 29527 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36489 29527 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36065 29739 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36277 29739 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36489 29739 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +35853 29951 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36065 29951 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36277 29951 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36489 29951 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36065 30163 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36277 30163 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36489 30163 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +35853 30375 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36065 30375 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36277 30375 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36489 30375 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36065 30587 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36277 30587 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +36489 30587 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom gr gs -0.496 0.003 0.132 c 30662 29056 m 30908 29056 l 30908 24764 l 30662 24764 l -30662 29056 l p ef +34450 30430 m 34801 30430 l 34801 26542 l 34450 26542 l 34450 30430 l +eoclip newpath +34450 26542 m 34801 26542 l 34801 30430 l 34450 30430 l 34450 26542 l eoclip newpath +pum +34096 26684 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +34308 26684 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +34520 26684 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +34732 26684 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +34308 26896 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +34520 26896 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +34732 26896 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +34096 27108 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +34308 27108 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +34520 27108 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +34732 27108 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +34308 27320 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +34520 27320 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +34732 27320 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +34096 27532 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +34308 27532 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +34520 27532 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +34732 27532 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +34308 27744 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +34520 27744 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +34732 27744 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +34096 27956 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +34308 27956 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +34520 27956 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +34732 27956 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +34308 28168 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +34520 28168 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +34732 28168 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +34096 28380 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +34308 28380 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +34520 28380 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +34732 28380 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +34308 28592 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +34520 28592 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +34732 28592 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +34096 28804 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +34308 28804 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +34520 28804 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +34732 28804 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +34308 29016 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +34520 29016 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +34732 29016 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +34096 29228 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +34308 29228 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +34520 29228 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +34732 29228 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +34308 29440 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +34520 29440 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +34732 29440 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +34096 29652 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +34308 29652 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +34520 29652 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +34732 29652 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +34308 29864 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +34520 29864 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +34732 29864 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +34096 30076 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +34308 30076 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +34520 30076 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +34732 30076 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +34308 30288 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +34520 30288 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +34732 30288 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +34096 30500 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +34308 30500 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +34520 30500 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +34732 30500 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom gr gs -0.496 0.003 0.132 c 29186 29056 m 29432 29056 l 29432 25431 l 29186 25431 l -29186 29056 l p ef +32692 30430 m 33044 30430 l 33044 26560 l 32692 26560 l 32692 30430 l +eoclip newpath +32692 26560 m 33044 26560 l 33044 30430 l 32692 30430 l 32692 26560 l eoclip newpath +pum +32338 26693 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +32550 26693 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +32762 26693 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +32974 26693 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +32550 26905 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +32762 26905 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +32974 26905 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +32338 27117 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +32550 27117 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +32762 27117 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +32974 27117 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +32550 27329 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +32762 27329 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +32974 27329 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +32338 27541 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +32550 27541 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +32762 27541 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +32974 27541 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +32550 27753 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +32762 27753 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +32974 27753 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +32338 27965 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +32550 27965 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +32762 27965 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +32974 27965 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +32550 28177 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +32762 28177 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +32974 28177 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +32338 28389 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +32550 28389 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +32762 28389 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +32974 28389 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +32550 28601 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +32762 28601 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +32974 28601 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +32338 28813 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +32550 28813 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +32762 28813 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +32974 28813 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +32550 29025 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +32762 29025 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +32974 29025 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +32338 29237 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +32550 29237 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +32762 29237 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +32974 29237 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +32550 29449 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +32762 29449 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +32974 29449 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +32338 29661 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +32550 29661 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +32762 29661 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +32974 29661 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +32550 29873 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +32762 29873 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +32974 29873 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +32338 30085 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +32550 30085 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +32762 30085 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +32974 30085 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +32550 30297 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +32762 30297 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +32974 30297 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +32338 30509 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +32550 30509 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +32762 30509 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +32974 30509 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom gr gs -0.496 0.003 0.132 c 27710 29056 m 27956 29056 l 27956 25411 l 27710 25411 l -27710 29056 l p ef +30934 30430 m 31286 30430 l 31286 25860 l 30934 25860 l 30934 30430 l +eoclip newpath +30934 25860 m 31286 25860 l 31286 30430 l 30934 30430 l 30934 25860 l eoclip newpath +pum +30580 25919 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +30792 25919 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +31004 25919 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +31216 25919 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +30792 26131 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +31004 26131 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +31216 26131 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +30580 26343 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +30792 26343 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +31004 26343 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +31216 26343 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +30792 26555 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +31004 26555 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +31216 26555 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +30580 26767 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +30792 26767 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +31004 26767 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +31216 26767 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +30792 26979 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +31004 26979 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +31216 26979 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +30580 27191 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +30792 27191 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +31004 27191 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +31216 27191 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +30792 27403 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +31004 27403 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +31216 27403 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +30580 27615 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +30792 27615 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +31004 27615 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +31216 27615 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +30792 27827 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +31004 27827 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +31216 27827 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +30580 28039 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +30792 28039 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +31004 28039 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +31216 28039 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +30792 28251 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +31004 28251 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +31216 28251 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +30580 28463 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +30792 28463 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +31004 28463 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +31216 28463 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +30792 28675 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +31004 28675 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +31216 28675 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +30580 28887 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +30792 28887 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +31004 28887 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +31216 28887 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +30792 29099 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +31004 29099 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +31216 29099 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +30580 29311 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +30792 29311 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +31004 29311 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +31216 29311 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +30792 29523 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +31004 29523 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +31216 29523 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +30580 29735 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +30792 29735 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +31004 29735 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +31216 29735 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +30792 29947 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +31004 29947 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +31216 29947 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +30580 30159 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +30792 30159 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +31004 30159 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +31216 30159 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +30792 30371 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +31004 30371 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +31216 30371 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +30580 30583 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +30792 30583 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +31004 30583 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +31216 30583 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom gr gs -0.496 0.003 0.132 c 26236 29056 m 26482 29056 l 26482 25420 l 26236 25420 l -26236 29056 l p ef +29177 30430 m 29528 30430 l 29528 26570 l 29177 26570 l 29177 30430 l +eoclip newpath +29177 26570 m 29528 26570 l 29528 30430 l 29177 30430 l 29177 26570 l eoclip newpath +pum +28823 26698 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +29035 26698 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +29247 26698 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +29459 26698 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +29035 26910 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +29247 26910 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +29459 26910 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +28823 27122 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +29035 27122 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +29247 27122 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +29459 27122 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +29035 27334 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +29247 27334 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +29459 27334 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +28823 27546 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +29035 27546 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +29247 27546 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +29459 27546 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +29035 27758 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +29247 27758 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +29459 27758 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +28823 27970 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +29035 27970 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +29247 27970 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +29459 27970 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +29035 28182 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +29247 28182 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +29459 28182 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +28823 28394 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +29035 28394 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +29247 28394 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +29459 28394 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +29035 28606 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +29247 28606 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +29459 28606 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +28823 28818 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +29035 28818 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +29247 28818 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +29459 28818 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +29035 29030 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +29247 29030 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +29459 29030 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +28823 29242 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +29035 29242 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +29247 29242 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +29459 29242 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +29035 29454 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +29247 29454 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +29459 29454 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +28823 29666 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +29035 29666 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +29247 29666 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +29459 29666 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +29035 29878 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +29247 29878 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +29459 29878 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +28823 30090 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +29035 30090 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +29247 30090 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +29459 30090 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +29035 30302 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +29247 30302 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +29459 30302 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +28823 30514 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +29035 30514 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +29247 30514 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +29459 30514 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom gr gs -0.496 0.003 0.132 c 24760 29056 m 25006 29056 l 25006 24993 l 24760 24993 l -24760 29056 l p ef +27420 30430 m 27771 30430 l 27771 26549 l 27420 26549 l 27420 30430 l +eoclip newpath +27420 26549 m 27771 26549 l 27771 30430 l 27420 30430 l 27420 26549 l eoclip newpath +pum +27066 26688 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +27278 26688 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +27490 26688 t +211 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +27701 26688 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +27278 26900 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +27490 26900 t +211 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +27701 26900 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +27066 27112 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +27278 27112 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +27490 27112 t +211 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +27701 27112 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +27278 27324 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +27490 27324 t +211 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +27701 27324 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +27066 27536 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +27278 27536 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +27490 27536 t +211 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +27701 27536 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +27278 27748 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +27490 27748 t +211 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +27701 27748 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +27066 27960 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +27278 27960 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +27490 27960 t +211 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +27701 27960 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +27278 28172 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +27490 28172 t +211 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +27701 28172 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +27066 28384 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +27278 28384 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +27490 28384 t +211 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +27701 28384 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +27278 28596 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +27490 28596 t +211 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +27701 28596 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +27066 28808 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +27278 28808 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +27490 28808 t +211 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +27701 28808 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +27278 29020 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +27490 29020 t +211 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +27701 29020 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +27066 29232 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +27278 29232 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +27490 29232 t +211 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +27701 29232 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +27278 29444 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +27490 29444 t +211 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +27701 29444 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +27066 29656 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +27278 29656 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +27490 29656 t +211 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +27701 29656 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +27278 29868 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +27490 29868 t +211 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +27701 29868 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +27066 30080 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +27278 30080 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +27490 30080 t +211 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +27701 30080 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +27278 30292 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +27490 30292 t +211 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +27701 30292 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +27066 30504 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +27278 30504 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +27490 30504 t +211 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +27701 30504 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom gr gs -0.496 0.003 0.132 c 23284 29056 m 23530 29056 l 23530 25348 l 23284 25348 l -23284 29056 l p ef +25663 30430 m 26014 30430 l 26014 26104 l 25663 26104 l 25663 30430 l +eoclip newpath +25663 26104 m 26014 26104 l 26014 30430 l 25663 30430 l 25663 26104 l eoclip newpath +pum +25520 26253 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +25732 26253 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +25944 26253 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +25308 26465 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +25520 26465 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +25732 26465 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +25944 26465 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +25520 26677 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +25732 26677 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +25944 26677 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +25308 26889 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +25520 26889 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +25732 26889 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +25944 26889 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +25520 27101 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +25732 27101 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +25944 27101 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +25308 27313 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +25520 27313 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +25732 27313 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +25944 27313 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +25520 27525 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +25732 27525 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +25944 27525 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +25308 27737 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +25520 27737 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +25732 27737 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +25944 27737 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +25520 27949 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +25732 27949 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +25944 27949 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +25308 28161 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +25520 28161 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +25732 28161 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +25944 28161 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +25520 28373 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +25732 28373 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +25944 28373 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +25308 28585 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +25520 28585 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +25732 28585 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +25944 28585 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +25520 28797 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +25732 28797 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +25944 28797 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +25308 29009 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +25520 29009 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +25732 29009 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +25944 29009 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +25520 29221 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +25732 29221 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +25944 29221 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +25308 29433 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +25520 29433 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +25732 29433 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +25944 29433 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +25520 29645 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +25732 29645 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +25944 29645 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +25308 29857 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +25520 29857 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +25732 29857 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +25944 29857 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +25520 30069 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +25732 30069 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +25944 30069 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +25308 30281 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +25520 30281 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +25732 30281 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +25944 30281 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +25520 30493 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +25732 30493 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +25944 30493 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom gr gs -0.496 0.003 0.132 c 21808 29056 m 22054 29056 l 22054 25415 l 21808 25415 l -21808 29056 l p ef +23905 30430 m 24257 30430 l 24257 26482 l 23905 26482 l 23905 30430 l +eoclip newpath +23905 26482 m 24257 26482 l 24257 30430 l 23905 30430 l 23905 26482 l eoclip newpath +pum +23551 26654 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +23763 26654 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +23975 26654 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +24187 26654 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +23763 26866 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +23975 26866 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +24187 26866 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +23551 27078 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +23763 27078 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +23975 27078 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +24187 27078 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +23763 27290 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +23975 27290 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +24187 27290 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +23551 27502 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +23763 27502 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +23975 27502 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +24187 27502 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +23763 27714 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +23975 27714 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +24187 27714 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +23551 27926 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +23763 27926 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +23975 27926 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +24187 27926 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +23763 28138 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +23975 28138 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +24187 28138 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +23551 28350 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +23763 28350 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +23975 28350 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +24187 28350 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +23763 28562 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +23975 28562 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +24187 28562 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +23551 28774 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +23763 28774 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +23975 28774 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +24187 28774 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +23763 28986 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +23975 28986 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +24187 28986 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +23551 29198 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +23763 29198 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +23975 29198 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +24187 29198 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +23763 29410 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +23975 29410 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +24187 29410 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +23551 29622 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +23763 29622 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +23975 29622 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +24187 29622 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +23763 29834 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +23975 29834 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +24187 29834 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +23551 30046 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +23763 30046 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +23975 30046 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +24187 30046 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +23763 30258 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +23975 30258 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +24187 30258 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +23551 30470 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +23763 30470 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +23975 30470 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +24187 30470 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom gr gs -0.496 0.003 0.132 c 20333 29056 m 20579 29056 l 20579 25179 l 20333 25179 l -20333 29056 l p ef +22147 30430 m 22499 30430 l 22499 26553 l 22147 26553 l 22147 30430 l +eoclip newpath +22147 26553 m 22499 26553 l 22499 30430 l 22147 30430 l 22147 26553 l eoclip newpath +pum +21793 26690 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +22005 26690 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +22217 26690 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +22429 26690 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +22005 26902 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +22217 26902 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +22429 26902 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +21793 27114 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +22005 27114 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +22217 27114 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +22429 27114 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +22005 27326 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +22217 27326 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +22429 27326 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +21793 27538 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +22005 27538 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +22217 27538 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +22429 27538 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +22005 27750 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +22217 27750 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +22429 27750 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +21793 27962 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +22005 27962 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +22217 27962 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +22429 27962 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +22005 28174 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +22217 28174 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +22429 28174 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +21793 28386 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +22005 28386 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +22217 28386 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +22429 28386 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +22005 28598 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +22217 28598 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +22429 28598 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +21793 28810 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +22005 28810 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +22217 28810 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +22429 28810 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +22005 29022 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +22217 29022 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +22429 29022 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +21793 29234 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +22005 29234 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +22217 29234 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +22429 29234 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +22005 29446 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +22217 29446 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +22429 29446 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +21793 29658 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +22005 29658 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +22217 29658 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +22429 29658 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +22005 29870 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +22217 29870 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +22429 29870 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +21793 30082 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +22005 30082 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +22217 30082 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +22429 30082 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +22005 30294 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +22217 30294 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +22429 30294 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +21793 30506 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +22005 30506 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +22217 30506 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +22429 30506 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom gr gs -0.496 0.003 0.132 c 18857 29056 m 19103 29056 l 19103 25410 l 18857 25410 l -18857 29056 l p ef +20390 30430 m 20741 30430 l 20741 26303 l 20390 26303 l 20390 30430 l +eoclip newpath +20390 26303 m 20741 26303 l 20741 30430 l 20390 30430 l 20390 26303 l eoclip newpath +pum +20247 26353 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +20459 26353 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +20671 26353 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +20035 26565 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +20247 26565 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +20459 26565 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +20671 26565 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +20247 26777 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +20459 26777 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +20671 26777 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +20035 26989 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +20247 26989 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +20459 26989 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +20671 26989 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +20247 27201 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +20459 27201 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +20671 27201 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +20035 27413 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +20247 27413 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +20459 27413 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +20671 27413 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +20247 27625 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +20459 27625 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +20671 27625 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +20035 27837 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +20247 27837 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +20459 27837 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +20671 27837 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +20247 28049 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +20459 28049 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +20671 28049 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +20035 28261 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +20247 28261 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +20459 28261 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +20671 28261 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +20247 28473 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +20459 28473 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +20671 28473 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +20035 28685 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +20247 28685 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +20459 28685 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +20671 28685 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +20247 28897 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +20459 28897 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +20671 28897 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +20035 29109 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +20247 29109 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +20459 29109 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +20671 29109 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +20247 29321 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +20459 29321 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +20671 29321 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +20035 29533 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +20247 29533 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +20459 29533 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +20671 29533 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +20247 29745 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +20459 29745 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +20671 29745 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +20035 29957 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +20247 29957 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +20459 29957 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +20671 29957 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +20247 30169 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +20459 30169 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +20671 30169 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +20035 30381 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +20247 30381 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +20459 30381 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +20671 30381 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +20247 30593 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +20459 30593 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +20671 30593 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom gr gs -0.496 0.003 0.132 c 17381 29056 m 17627 29056 l 17627 24793 l 17381 24793 l -17381 29056 l p ef +18632 30430 m 18984 30430 l 18984 26548 l 18632 26548 l 18632 30430 l +eoclip newpath +18632 26548 m 18984 26548 l 18984 30430 l 18632 30430 l 18632 26548 l eoclip newpath +pum +18278 26687 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +18490 26687 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +18702 26687 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +18914 26687 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +18490 26899 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +18702 26899 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +18914 26899 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +18278 27111 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +18490 27111 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +18702 27111 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +18914 27111 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +18490 27323 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +18702 27323 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +18914 27323 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +18278 27535 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +18490 27535 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +18702 27535 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +18914 27535 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +18490 27747 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +18702 27747 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +18914 27747 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +18278 27959 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +18490 27959 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +18702 27959 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +18914 27959 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +18490 28171 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +18702 28171 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +18914 28171 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +18278 28383 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +18490 28383 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +18702 28383 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +18914 28383 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +18490 28595 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +18702 28595 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +18914 28595 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +18278 28807 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +18490 28807 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +18702 28807 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +18914 28807 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +18490 29019 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +18702 29019 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +18914 29019 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +18278 29231 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +18490 29231 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +18702 29231 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +18914 29231 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +18490 29443 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +18702 29443 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +18914 29443 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +18278 29655 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +18490 29655 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +18702 29655 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +18914 29655 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +18490 29867 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +18702 29867 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +18914 29867 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +18278 30079 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +18490 30079 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +18702 30079 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +18914 30079 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +18490 30291 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +18702 30291 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +18914 30291 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +18278 30503 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +18490 30503 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +18702 30503 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +18914 30503 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom gr gs -0.496 0.003 0.132 c 15905 29056 m 16151 29056 l 16151 25421 l 15905 25421 l -15905 29056 l p ef +16875 30430 m 17226 30430 l 17226 25891 l 16875 25891 l 16875 30430 l +eoclip newpath +16875 25891 m 17226 25891 l 17226 30430 l 16875 30430 l 16875 25891 l eoclip newpath +pum +16520 25935 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +16732 25935 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +16944 25935 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +17156 25935 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +16732 26147 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +16944 26147 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +17156 26147 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +16520 26359 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +16732 26359 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +16944 26359 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +17156 26359 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +16732 26571 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +16944 26571 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +17156 26571 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +16520 26783 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +16732 26783 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +16944 26783 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +17156 26783 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +16732 26995 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +16944 26995 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +17156 26995 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +16520 27207 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +16732 27207 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +16944 27207 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +17156 27207 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +16732 27419 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +16944 27419 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +17156 27419 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +16520 27631 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +16732 27631 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +16944 27631 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +17156 27631 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +16732 27843 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +16944 27843 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +17156 27843 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +16520 28055 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +16732 28055 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +16944 28055 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +17156 28055 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +16732 28267 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +16944 28267 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +17156 28267 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +16520 28479 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +16732 28479 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +16944 28479 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +17156 28479 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +16732 28691 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +16944 28691 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +17156 28691 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +16520 28903 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +16732 28903 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +16944 28903 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +17156 28903 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +16732 29115 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +16944 29115 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +17156 29115 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +16520 29327 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +16732 29327 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +16944 29327 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +17156 29327 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +16732 29539 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +16944 29539 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +17156 29539 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +16520 29751 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +16732 29751 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +16944 29751 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +17156 29751 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +16732 29963 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +16944 29963 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +17156 29963 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +16520 30175 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +16732 30175 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +16944 30175 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +17156 30175 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +16732 30387 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +16944 30387 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +17156 30387 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +16520 30599 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +16732 30599 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +16944 30599 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +17156 30599 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom gr gs -0.496 0.003 0.132 c 14430 29056 m 14676 29056 l 14676 25028 l 14430 25028 l -14430 29056 l p ef +15117 30430 m 15469 30430 l 15469 26142 l 15117 26142 l 15117 30430 l +eoclip newpath +15117 26142 m 15469 26142 l 15469 30430 l 15117 30430 l 15117 26142 l eoclip newpath +pum +14975 26272 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +15187 26272 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +15399 26272 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +14763 26484 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +14975 26484 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +15187 26484 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +15399 26484 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +14975 26696 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +15187 26696 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +15399 26696 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +14763 26908 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +14975 26908 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +15187 26908 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +15399 26908 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +14975 27120 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +15187 27120 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +15399 27120 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +14763 27332 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +14975 27332 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +15187 27332 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +15399 27332 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +14975 27544 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +15187 27544 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +15399 27544 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +14763 27756 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +14975 27756 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +15187 27756 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +15399 27756 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +14975 27968 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +15187 27968 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +15399 27968 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +14763 28180 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +14975 28180 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +15187 28180 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +15399 28180 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +14975 28392 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +15187 28392 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +15399 28392 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +14763 28604 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +14975 28604 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +15187 28604 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +15399 28604 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +14975 28816 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +15187 28816 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +15399 28816 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +14763 29028 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +14975 29028 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +15187 29028 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +15399 29028 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +14975 29240 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +15187 29240 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +15399 29240 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +14763 29452 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +14975 29452 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +15187 29452 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +15399 29452 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +14975 29664 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +15187 29664 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +15399 29664 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +14763 29876 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +14975 29876 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +15187 29876 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +15399 29876 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +14975 30088 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +15187 30088 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +15399 30088 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +14763 30300 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +14975 30300 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +15187 30300 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +15399 30300 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +14975 30512 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +15187 30512 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +15399 30512 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom gr gs -0.496 0.003 0.132 c 12954 29056 m 13200 29056 l 13200 25403 l 12954 25403 l -12954 29056 l p ef +13359 30430 m 13711 30430 l 13711 26541 l 13359 26541 l 13359 30430 l +eoclip newpath +13359 26541 m 13711 26541 l 13711 30430 l 13359 30430 l 13359 26541 l eoclip newpath +pum +13005 26684 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +13217 26684 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +13429 26684 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +13641 26684 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +13217 26896 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +13429 26896 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +13641 26896 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +13005 27108 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +13217 27108 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +13429 27108 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +13641 27108 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +13217 27320 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +13429 27320 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +13641 27320 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +13005 27532 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +13217 27532 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +13429 27532 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +13641 27532 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +13217 27744 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +13429 27744 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +13641 27744 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +13005 27956 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +13217 27956 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +13429 27956 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +13641 27956 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +13217 28168 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +13429 28168 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +13641 28168 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +13005 28380 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +13217 28380 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +13429 28380 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +13641 28380 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +13217 28592 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +13429 28592 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +13641 28592 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +13005 28804 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +13217 28804 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +13429 28804 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +13641 28804 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +13217 29016 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +13429 29016 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +13641 29016 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +13005 29228 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +13217 29228 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +13429 29228 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +13641 29228 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +13217 29440 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +13429 29440 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +13641 29440 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +13005 29652 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +13217 29652 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +13429 29652 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +13641 29652 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +13217 29864 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +13429 29864 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +13641 29864 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +13005 30076 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +13217 30076 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +13429 30076 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +13641 30076 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +13217 30288 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +13429 30288 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +13641 30288 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +13005 30500 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +13217 30500 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +13429 30500 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +13641 30500 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom gr gs -0.496 0.003 0.132 c 11478 29056 m 11724 29056 l 11724 24742 l 11478 24742 l -11478 29056 l p ef +11602 30430 m 11953 30430 l 11953 25837 l 11602 25837 l 11602 30430 l +eoclip newpath +11602 25837 m 11953 25837 l 11953 30430 l 11602 30430 l 11602 25837 l eoclip newpath +pum +11247 25908 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11459 25908 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11671 25908 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11883 25908 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11459 26120 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11671 26120 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11883 26120 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11247 26332 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11459 26332 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11671 26332 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11883 26332 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11459 26544 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11671 26544 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11883 26544 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11247 26756 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11459 26756 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11671 26756 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11883 26756 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11459 26968 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11671 26968 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11883 26968 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11247 27180 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11459 27180 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11671 27180 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11883 27180 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11459 27392 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11671 27392 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11883 27392 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11247 27604 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11459 27604 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11671 27604 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11883 27604 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11459 27816 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11671 27816 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11883 27816 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11247 28028 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11459 28028 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11671 28028 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11883 28028 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11459 28240 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11671 28240 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11883 28240 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11247 28452 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11459 28452 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11671 28452 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11883 28452 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11459 28664 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11671 28664 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11883 28664 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11247 28876 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11459 28876 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11671 28876 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11883 28876 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11459 29088 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11671 29088 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11883 29088 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11247 29300 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11459 29300 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11671 29300 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11883 29300 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11459 29512 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11671 29512 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11883 29512 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11247 29724 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11459 29724 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11671 29724 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11883 29724 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11459 29936 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11671 29936 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11883 29936 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11247 30148 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11459 30148 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11671 30148 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11883 30148 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11459 30360 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11671 30360 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11883 30360 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11247 30572 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11459 30572 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11671 30572 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom +pum +11883 30572 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> +pom gr pum -10649 30074 t -44.9 r 0.003 0.003 0.003 c 71 3 m 53 3 39 -2 29 -12 ct 20 -22 15 -35 15 -53 ct 15 -72 21 -87 34 -97 ct +10866 30998 t +0.003 0.003 0.003 c 71 3 m 53 3 39 -2 29 -12 ct 20 -22 15 -35 15 -53 ct 15 -72 21 -87 34 -97 ct 47 -107 67 -113 95 -114 ct 137 -114 l 137 -125 l 137 -140 134 -151 128 -157 ct 121 -164 111 -167 97 -167 ct 83 -167 73 -165 67 -160 ct 61 -155 57 -148 56 -137 ct 23 -140 l 29 -174 54 -191 98 -191 ct 122 -191 139 -185 151 -175 ct 163 -164 169 -148 169 -128 ct @@ -790,10 +151224,10 @@ p ef 717 0 l 685 0 l p ef pom pum -11845 30355 t -44.9 r 182 -94 m 182 -29 159 3 113 3 ct 99 3 87 0 78 -5 ct 68 -10 61 -18 55 -29 ct -54 -29 l 54 -26 54 -20 54 -13 ct 53 -6 53 -2 53 0 ct 23 0 l 23 -7 24 -19 24 -39 ct -24 -256 l 55 -256 l 55 -183 l 55 -176 55 -167 54 -157 ct 55 -157 l 61 -169 68 -177 78 -182 ct +12426 30998 t +182 -94 m 182 -29 159 3 113 3 ct 99 3 87 0 78 -5 ct 68 -10 61 -18 55 -29 ct 54 -29 l +54 -26 54 -20 54 -13 ct 53 -6 53 -2 53 0 ct 23 0 l 23 -7 24 -19 24 -39 ct 24 -256 l +55 -256 l 55 -183 l 55 -176 55 -167 54 -157 ct 55 -157 l 61 -169 68 -177 78 -182 ct 87 -187 99 -190 113 -190 ct 136 -190 154 -182 165 -166 ct 176 -150 182 -126 182 -94 ct p 149 -93 m 149 -119 145 -138 139 -149 ct 132 -160 120 -166 105 -166 ct 88 -166 75 -160 67 -148 ct @@ -834,10 +151268,10 @@ p ef 1134 -82 1137 -77 1139 -71 ct 1142 -66 1143 -59 1143 -52 ct p ef pom pum -13564 30111 t -44.9 r 182 -94 m 182 -29 159 3 113 3 ct 99 3 87 0 78 -5 ct 68 -10 61 -18 55 -29 ct -54 -29 l 54 -26 54 -20 54 -13 ct 53 -6 53 -2 53 0 ct 23 0 l 23 -7 24 -19 24 -39 ct -24 -256 l 55 -256 l 55 -183 l 55 -176 55 -167 54 -157 ct 55 -157 l 61 -169 68 -177 78 -182 ct +14356 30998 t +182 -94 m 182 -29 159 3 113 3 ct 99 3 87 0 78 -5 ct 68 -10 61 -18 55 -29 ct 54 -29 l +54 -26 54 -20 54 -13 ct 53 -6 53 -2 53 0 ct 23 0 l 23 -7 24 -19 24 -39 ct 24 -256 l +55 -256 l 55 -183 l 55 -176 55 -167 54 -157 ct 55 -157 l 61 -169 68 -177 78 -182 ct 87 -187 99 -190 113 -190 ct 136 -190 154 -182 165 -166 ct 176 -150 182 -126 182 -94 ct p 149 -93 m 149 -119 145 -138 139 -149 ct 132 -160 120 -166 105 -166 ct 88 -166 75 -160 67 -148 ct @@ -865,70 +151299,8 @@ p ef 696 -43 690 -34 687 -26 ct 814 -26 l 814 0 l 653 0 l p ef pom pum -14348 30803 t -44.9 r 47 -95 m 47 -70 51 -51 59 -39 ct 67 -27 79 -21 94 -21 ct 105 -21 115 -24 122 -30 ct -130 -36 134 -46 136 -58 ct 167 -56 l 165 -38 157 -24 144 -13 ct 131 -2 115 3 95 3 ct -69 3 49 -5 36 -22 ct 22 -38 15 -62 15 -94 ct 15 -125 22 -149 36 -166 ct 49 -182 69 -190 95 -190 ct -114 -190 130 -185 142 -175 ct 155 -166 163 -152 166 -135 ct 134 -132 l 133 -143 129 -151 122 -157 ct -115 -163 106 -166 94 -166 ct 78 -166 66 -161 58 -150 ct 51 -139 47 -120 47 -95 ct -p ef -256 3 m 238 3 224 -2 214 -12 ct 205 -22 200 -35 200 -53 ct 200 -72 206 -87 219 -97 ct -232 -107 252 -113 280 -114 ct 322 -114 l 322 -125 l 322 -140 319 -151 313 -157 ct -306 -164 296 -167 282 -167 ct 268 -167 258 -165 252 -160 ct 246 -155 242 -148 241 -137 ct -208 -140 l 214 -174 239 -191 283 -191 ct 307 -191 324 -185 336 -175 ct 348 -164 354 -148 354 -128 ct -354 -48 l 354 -38 355 -31 357 -27 ct 360 -22 364 -20 371 -20 ct 374 -20 378 -20 381 -21 ct -381 -2 l 374 0 366 1 357 1 ct 346 1 338 -2 332 -8 ct 327 -14 324 -23 323 -36 ct -322 -36 l 314 -22 305 -12 295 -6 ct 284 0 271 3 256 3 ct p -263 -20 m 275 -20 285 -23 294 -28 ct 303 -33 310 -40 315 -49 ct 320 -58 322 -67 322 -77 ct -322 -92 l 288 -92 l 274 -92 263 -91 255 -88 ct 248 -85 242 -81 238 -75 ct -234 -69 232 -62 232 -52 ct 232 -42 235 -34 240 -29 ct 246 -23 253 -20 263 -20 ct -p ef -417 -95 m 417 -70 421 -51 429 -39 ct 437 -27 449 -21 464 -21 ct 475 -21 485 -24 492 -30 ct -500 -36 504 -46 506 -58 ct 537 -56 l 535 -38 527 -24 514 -13 ct 501 -2 485 3 465 3 ct -439 3 419 -5 406 -22 ct 392 -38 385 -62 385 -94 ct 385 -125 392 -149 406 -166 ct -419 -182 439 -190 465 -190 ct 484 -190 500 -185 512 -175 ct 525 -166 533 -152 536 -135 ct -504 -132 l 503 -143 499 -151 492 -157 ct 485 -163 476 -166 464 -166 ct 448 -166 436 -161 428 -150 ct -421 -139 417 -120 417 -95 ct p ef -651 -1 m 641 2 631 3 620 3 ct 595 3 583 -11 583 -39 ct 583 -164 l 561 -164 l -561 -187 l 584 -187 l 593 -228 l 614 -228 l 614 -187 l 648 -187 l -648 -164 l 614 -164 l 614 -46 l 614 -37 615 -31 618 -27 ct 621 -23 626 -22 634 -22 ct -638 -22 644 -22 651 -24 ct 651 -1 l p ef -715 -187 m 715 -69 l 715 -56 716 -47 719 -40 ct 721 -33 725 -28 730 -25 ct -736 -22 743 -21 754 -21 ct 769 -21 780 -26 789 -36 ct 798 -47 802 -61 802 -79 ct -802 -187 l 833 -187 l 833 -40 l 833 -19 833 -5 834 0 ct 805 0 l 804 -1 804 -3 804 -5 ct -804 -8 804 -11 804 -14 ct 804 -17 803 -23 803 -32 ct 803 -32 l 796 -19 787 -10 778 -5 ct -769 0 757 3 743 3 ct 723 3 708 -2 698 -12 ct 689 -22 684 -39 684 -63 ct 684 -187 l -715 -187 l p ef -1011 -52 m 1011 -34 1004 -21 991 -11 ct 978 -2 959 3 935 3 ct 912 3 894 -1 881 -8 ct -869 -16 861 -28 857 -44 ct 884 -50 l 887 -40 892 -32 901 -28 ct 909 -23 920 -21 935 -21 ct -951 -21 962 -23 970 -28 ct 977 -33 981 -40 981 -50 ct 981 -57 978 -63 973 -68 ct -968 -72 960 -76 949 -79 ct 926 -85 l 908 -89 896 -94 888 -98 ct 881 -103 875 -108 871 -114 ct -866 -121 864 -129 864 -138 ct 864 -155 870 -168 882 -177 ct 895 -186 912 -190 935 -190 ct -956 -190 972 -186 984 -179 ct 997 -172 1004 -160 1007 -144 ct 980 -141 l 978 -149 973 -156 966 -160 ct -958 -164 948 -167 935 -167 ct 921 -167 911 -164 904 -160 ct 898 -156 894 -149 894 -141 ct -894 -136 896 -131 899 -128 ct 901 -124 905 -121 911 -119 ct 916 -117 928 -113 945 -109 ct -961 -105 973 -101 980 -97 ct 988 -94 993 -90 998 -86 ct 1002 -82 1005 -77 1007 -71 ct -1010 -66 1011 -59 1011 -52 ct p ef -1233 0 m 1205 -71 l 1095 -71 l 1067 0 l 1033 0 l 1132 -243 l 1169 -243 l -1267 0 l 1233 0 l p -1150 -218 m 1149 -213 l 1146 -204 1141 -191 1136 -177 ct 1105 -97 l 1196 -97 l -1164 -177 l 1161 -185 1158 -194 1155 -204 ct 1150 -218 l p ef -1508 -124 m 1508 -99 1503 -77 1493 -58 ct 1484 -39 1470 -25 1452 -15 ct 1434 -5 1413 0 1390 0 ct -1299 0 l 1299 -243 l 1379 -243 l 1420 -243 1452 -233 1475 -212 ct 1497 -191 1508 -162 1508 -124 ct -p -1475 -124 m 1475 -154 1467 -177 1450 -193 ct 1434 -209 1410 -217 1379 -217 ct -1332 -217 l 1332 -26 l 1386 -26 l 1404 -26 1419 -30 1433 -38 ct 1446 -46 1457 -57 1464 -72 ct -1471 -87 1475 -104 1475 -124 ct p ef -1743 0 m 1743 -162 l 1743 -180 1744 -197 1745 -214 ct 1739 -193 1734 -177 1730 -166 ct -1667 0 l 1644 0 l 1580 -166 l 1571 -195 l 1565 -214 l 1566 -195 l -1566 -162 l 1566 0 l 1537 0 l 1537 -243 l 1580 -243 l 1645 -75 l -1647 -68 1649 -60 1651 -53 ct 1654 -45 1655 -39 1656 -36 ct 1657 -40 1659 -47 1661 -57 ct -1664 -66 1666 -72 1667 -75 ct 1731 -243 l 1773 -243 l 1773 0 l 1743 0 l -p ef -pom -pum -16272 30355 t -44.9 r 47 -95 m 47 -70 51 -51 59 -39 ct 67 -27 79 -21 94 -21 ct 105 -21 115 -24 122 -30 ct +15941 30998 t +47 -95 m 47 -70 51 -51 59 -39 ct 67 -27 79 -21 94 -21 ct 105 -21 115 -24 122 -30 ct 130 -36 134 -46 136 -58 ct 167 -56 l 165 -38 157 -24 144 -13 ct 131 -2 115 3 95 3 ct 69 3 49 -5 36 -22 ct 22 -38 15 -62 15 -94 ct 15 -125 22 -149 36 -166 ct 49 -182 69 -190 95 -190 ct 114 -190 130 -185 142 -175 ct 155 -166 163 -152 166 -135 ct 134 -132 l 133 -143 129 -151 122 -157 ct @@ -966,8 +151338,8 @@ p ef p ef pom pum -17279 30823 t -44.9 r 18 -123 m 18 -162 28 -193 49 -215 ct 71 -236 100 -247 139 -247 ct 165 -247 187 -242 204 -233 ct +17368 30998 t +18 -123 m 18 -162 28 -193 49 -215 ct 71 -236 100 -247 139 -247 ct 165 -247 187 -242 204 -233 ct 221 -224 234 -210 243 -190 ct 211 -180 l 205 -194 195 -204 183 -211 ct 171 -217 156 -220 138 -220 ct 110 -220 88 -212 73 -195 ct 59 -178 51 -154 51 -123 ct 51 -92 59 -68 75 -50 ct 91 -33 112 -24 140 -24 ct 156 -24 171 -26 185 -31 ct 198 -36 209 -42 218 -51 ct @@ -1017,8 +151389,8 @@ p 1789 -87 1793 -104 1793 -124 ct p ef pom pum -19317 30261 t -44.9 r 94 73 m 74 73 58 69 46 61 ct 34 53 26 42 23 27 ct 54 22 l 56 31 60 38 67 42 ct +19522 30998 t +94 73 m 74 73 58 69 46 61 ct 34 53 26 42 23 27 ct 54 22 l 56 31 60 38 67 42 ct 75 47 84 49 95 49 ct 126 49 142 31 142 -5 ct 142 -35 l 141 -35 l 135 -23 127 -14 117 -8 ct 107 -2 95 1 81 1 ct 59 1 42 -7 31 -22 ct 20 -37 15 -61 15 -93 ct 15 -126 21 -151 32 -166 ct 44 -182 61 -190 85 -190 ct 98 -190 109 -187 119 -181 ct 129 -175 136 -166 142 -155 ct @@ -1055,8 +151427,8 @@ p ef 902 -96 l 984 -187 l 1020 -187 l 944 -106 l 1024 0 l 988 0 l p ef pom pum -20586 30467 t -44.9 r 94 73 m 74 73 58 69 46 61 ct 34 53 26 42 23 27 ct 54 22 l 56 31 60 38 67 42 ct +21134 30998 t +94 73 m 74 73 58 69 46 61 ct 34 53 26 42 23 27 ct 54 22 l 56 31 60 38 67 42 ct 75 47 84 49 95 49 ct 126 49 142 31 142 -5 ct 142 -35 l 141 -35 l 135 -23 127 -14 117 -8 ct 107 -2 95 1 81 1 ct 59 1 42 -7 31 -22 ct 20 -37 15 -61 15 -93 ct 15 -126 21 -151 32 -166 ct 44 -182 61 -190 85 -190 ct 98 -190 109 -187 119 -181 ct 129 -175 136 -166 142 -155 ct @@ -1114,8 +151486,8 @@ p ef 1293 -82 1296 -77 1298 -71 ct 1301 -66 1302 -59 1302 -52 ct p ef pom pum -22194 30336 t -44.9 r 55 -155 m 61 -167 69 -176 79 -181 ct 88 -187 100 -190 114 -190 ct 135 -190 149 -185 159 -175 ct +22985 30998 t +55 -155 m 61 -167 69 -176 79 -181 ct 88 -187 100 -190 114 -190 ct 135 -190 149 -185 159 -175 ct 169 -165 173 -148 173 -124 ct 173 0 l 142 0 l 142 -118 l 142 -131 141 -141 139 -148 ct 136 -154 132 -159 127 -162 ct 121 -165 114 -166 104 -166 ct 89 -166 77 -161 69 -151 ct 60 -141 56 -127 56 -110 ct 56 0 l 24 0 l 24 -256 l 56 -256 l 56 -189 l @@ -1156,8 +151528,8 @@ pum 1131 -187 l 1131 -164 l 1094 -164 l p ef pom pum -23726 30279 t -44.9 r 55 -155 m 61 -167 69 -176 79 -181 ct 88 -187 100 -190 114 -190 ct 135 -190 149 -185 159 -175 ct +24782 30998 t +55 -155 m 61 -167 69 -176 79 -181 ct 88 -187 100 -190 114 -190 ct 135 -190 149 -185 159 -175 ct 169 -165 173 -148 173 -124 ct 173 0 l 142 0 l 142 -118 l 142 -131 141 -141 139 -148 ct 136 -154 132 -159 127 -162 ct 121 -165 114 -166 104 -166 ct 89 -166 77 -161 69 -151 ct 60 -141 56 -127 56 -110 ct 56 0 l 24 0 l 24 -256 l 56 -256 l 56 -189 l @@ -1193,29 +151565,8 @@ pum p ef pom pum -25557 29925 t -44.9 r 24 0 m 24 -256 l 55 -256 l 55 0 l 24 0 l p ef -261 -94 m 261 -29 238 3 192 3 ct 178 3 166 0 157 -5 ct 147 -10 140 -18 134 -29 ct -133 -29 l 133 -26 133 -20 133 -13 ct 132 -6 132 -2 132 0 ct 102 0 l 102 -7 103 -19 103 -39 ct -103 -256 l 134 -256 l 134 -183 l 134 -176 134 -167 133 -157 ct 134 -157 l -140 -169 147 -177 157 -182 ct 166 -187 178 -190 192 -190 ct 215 -190 233 -182 244 -166 ct -255 -150 261 -126 261 -94 ct p -228 -93 m 228 -119 224 -138 218 -149 ct 211 -160 199 -166 184 -166 ct 167 -166 154 -160 146 -148 ct -138 -136 134 -117 134 -91 ct 134 -67 138 -49 146 -37 ct 153 -26 166 -20 184 -20 ct -199 -20 211 -26 217 -37 ct 224 -49 228 -67 228 -93 ct p ef -397 0 m 397 -118 l 397 -136 395 -149 390 -156 ct 385 -163 376 -166 363 -166 ct -350 -166 340 -161 332 -151 ct 324 -141 320 -127 320 -108 ct 320 0 l 289 0 l -289 -147 l 289 -168 289 -182 288 -187 ct 318 -187 l 318 -186 318 -184 318 -182 ct -318 -179 318 -176 319 -173 ct 319 -170 319 -164 319 -155 ct 320 -155 l 326 -168 334 -177 343 -182 ct -351 -187 362 -190 374 -190 ct 388 -190 399 -187 408 -182 ct 416 -176 422 -167 425 -155 ct -425 -155 l 432 -167 440 -176 449 -182 ct 458 -187 469 -190 482 -190 ct 501 -190 514 -185 523 -175 ct -532 -164 536 -148 536 -124 ct 536 0 l 505 0 l 505 -118 l 505 -136 503 -149 498 -156 ct -493 -163 484 -166 471 -166 ct 457 -166 447 -161 439 -151 ct 432 -141 428 -127 428 -108 ct -428 0 l 397 0 l p ef -pom -pum -26602 30355 t -44.9 r 24 0 m 24 -256 l 55 -256 l 55 0 l 24 0 l p ef +26487 30998 t +24 0 m 24 -256 l 55 -256 l 55 0 l 24 0 l p ef 127 -87 m 127 -66 131 -49 140 -38 ct 149 -26 162 -20 179 -20 ct 192 -20 203 -23 211 -28 ct 219 -34 225 -41 227 -49 ct 255 -41 l 244 -12 218 3 179 3 ct 151 3 130 -5 116 -22 ct 101 -38 94 -62 94 -95 ct 94 -125 101 -149 116 -165 ct 130 -182 151 -190 177 -190 ct @@ -1260,8 +151611,8 @@ p ef 1055 -167 1044 -161 1037 -150 ct 1030 -138 1026 -120 1026 -94 ct p ef pom pum -27722 30711 t -44.9 r 24 0 m 24 -256 l 55 -256 l 55 0 l 24 0 l p ef +27992 30998 t +24 0 m 24 -256 l 55 -256 l 55 0 l 24 0 l p ef 103 -226 m 103 -256 l 134 -256 l 134 -226 l 103 -226 l p 103 0 m 103 -187 l 134 -187 l 134 0 l 103 0 l p ef 341 -94 m 341 -29 318 3 272 3 ct 258 3 246 0 237 -5 ct 227 -10 220 -18 214 -29 ct @@ -1325,8 +151676,8 @@ p ef p ef pom pum -29965 29943 t -44.9 r 132 0 m 132 -118 l 132 -136 130 -149 125 -156 ct 120 -163 111 -166 98 -166 ct +30293 30998 t +132 0 m 132 -118 l 132 -136 130 -149 125 -156 ct 120 -163 111 -166 98 -166 ct 85 -166 75 -161 67 -151 ct 59 -141 55 -127 55 -108 ct 55 0 l 24 0 l 24 -147 l 24 -168 24 -182 23 -187 ct 53 -187 l 53 -186 53 -184 53 -182 ct 53 -179 53 -176 54 -173 ct 54 -170 54 -164 54 -155 ct 55 -155 l 61 -168 69 -177 78 -182 ct 86 -187 97 -190 109 -190 ct @@ -1347,8 +151698,8 @@ p ef 538 -187 l 575 -187 l 575 -164 l 538 -164 l p ef pom pum -31404 29981 t -44.9 r 132 0 m 132 -118 l 132 -136 130 -149 125 -156 ct 120 -163 111 -166 98 -166 ct +32024 30998 t +132 0 m 132 -118 l 132 -136 130 -149 125 -156 ct 120 -163 111 -166 98 -166 ct 85 -166 75 -161 67 -151 ct 59 -141 55 -127 55 -108 ct 55 0 l 24 0 l 24 -147 l 24 -168 24 -182 23 -187 ct 53 -187 l 53 -186 53 -184 53 -182 ct 53 -179 53 -176 54 -173 ct 54 -170 54 -164 54 -155 ct 55 -155 l 61 -168 69 -177 78 -182 ct 86 -187 97 -190 109 -190 ct @@ -1368,8 +151719,8 @@ p ef 501 -139 497 -120 497 -95 ct p ef pom pum -32729 30131 t -44.9 r 142 0 m 142 -118 l 142 -131 141 -140 139 -147 ct 136 -154 132 -159 127 -162 ct +33675 30998 t +142 0 m 142 -118 l 142 -131 141 -140 139 -147 ct 136 -154 132 -159 127 -162 ct 122 -165 114 -166 104 -166 ct 89 -166 77 -161 68 -151 ct 60 -140 56 -126 56 -108 ct 56 0 l 24 0 l 24 -147 l 24 -168 24 -182 23 -187 ct 53 -187 l 53 -186 53 -184 53 -182 ct 53 -179 53 -176 54 -173 ct 54 -170 54 -164 54 -155 ct 55 -155 l 62 -168 70 -177 79 -182 ct @@ -1405,8 +151756,8 @@ p ef 737 -167 726 -161 719 -150 ct 712 -138 708 -120 708 -94 ct p ef pom pum -33868 30467 t -44.9 r 182 -94 m 182 -61 174 -37 160 -21 ct 146 -5 125 3 97 3 ct 70 3 50 -5 36 -22 ct +35195 30998 t +182 -94 m 182 -61 174 -37 160 -21 ct 146 -5 125 3 97 3 ct 70 3 50 -5 36 -22 ct 22 -38 15 -62 15 -94 ct 15 -158 43 -190 98 -190 ct 127 -190 148 -182 161 -167 ct 175 -151 182 -127 182 -94 ct p 149 -94 m 149 -119 145 -138 137 -150 ct 130 -161 117 -167 99 -167 ct 81 -167 68 -161 60 -149 ct @@ -1459,8 +151810,8 @@ p 1283 -48 1287 -67 1287 -94 ct p ef pom pum -35699 30111 t -44.9 r 164 -52 m 164 -34 157 -21 144 -11 ct 131 -2 112 3 88 3 ct 65 3 47 -1 34 -8 ct +37204 30998 t +164 -52 m 164 -34 157 -21 144 -11 ct 131 -2 112 3 88 3 ct 65 3 47 -1 34 -8 ct 22 -16 14 -28 10 -44 ct 37 -50 l 40 -40 45 -32 54 -28 ct 62 -23 73 -21 88 -21 ct 104 -21 115 -23 123 -28 ct 130 -33 134 -40 134 -50 ct 134 -57 131 -63 126 -68 ct 121 -72 113 -76 102 -79 ct 79 -85 l 61 -89 49 -94 41 -98 ct 34 -103 28 -108 24 -114 ct @@ -1498,8 +151849,8 @@ pum 775 -66 777 -79 777 -94 ct p ef pom pum -37043 30243 t -44.9 r 164 -52 m 164 -34 157 -21 144 -11 ct 131 -2 112 3 88 3 ct 65 3 47 -1 34 -8 ct +38869 30998 t +164 -52 m 164 -34 157 -21 144 -11 ct 131 -2 112 3 88 3 ct 65 3 47 -1 34 -8 ct 22 -16 14 -28 10 -44 ct 37 -50 l 40 -40 45 -32 54 -28 ct 62 -23 73 -21 88 -21 ct 104 -21 115 -23 123 -28 ct 130 -33 134 -40 134 -50 ct 134 -57 131 -63 126 -68 ct 121 -72 113 -76 102 -79 ct 79 -85 l 61 -89 49 -94 41 -98 ct 34 -103 28 -108 24 -114 ct @@ -1535,8 +151886,8 @@ p ef 908 -114 l 954 -187 l 989 -187 l 925 -96 l 993 0 l 958 0 l p ef pom pum -38388 30373 t -44.9 r 164 -52 m 164 -34 157 -21 144 -11 ct 131 -2 112 3 88 3 ct 65 3 47 -1 34 -8 ct +40534 30998 t +164 -52 m 164 -34 157 -21 144 -11 ct 131 -2 112 3 88 3 ct 65 3 47 -1 34 -8 ct 22 -16 14 -28 10 -44 ct 37 -50 l 40 -40 45 -32 54 -28 ct 62 -23 73 -21 88 -21 ct 104 -21 115 -23 123 -28 ct 130 -33 134 -40 134 -50 ct 134 -57 131 -63 126 -68 ct 121 -72 113 -76 102 -79 ct 79 -85 l 61 -89 49 -94 41 -98 ct 34 -103 28 -108 24 -114 ct @@ -1581,8 +151932,8 @@ p ef 1146 -123 1161 -117 1171 -106 ct 1181 -96 1186 -83 1186 -68 ct p ef pom pum -39845 30392 t -44.9 r 14 0 m 14 -24 l 119 -163 l 20 -163 l 20 -187 l 155 -187 l 155 -163 l +42278 30998 t +14 0 m 14 -24 l 119 -163 l 20 -163 l 20 -187 l 155 -187 l 155 -163 l 51 -24 l 159 -24 l 159 0 l 14 0 l p ef 233 -87 m 233 -66 237 -49 246 -38 ct 255 -26 268 -20 285 -20 ct 298 -20 309 -23 317 -28 ct 325 -34 331 -41 333 -49 ct 361 -41 l 350 -12 324 3 285 3 ct 257 3 236 -5 222 -22 ct @@ -1627,14 +151978,14 @@ p 1177 -48 1181 -67 1181 -94 ct p ef pom pum -41321 30392 t -44.9 r 71 3 m 53 3 39 -2 29 -12 ct 20 -22 15 -35 15 -53 ct 15 -72 21 -87 34 -97 ct -47 -107 67 -113 95 -114 ct 137 -114 l 137 -125 l 137 -140 134 -151 128 -157 ct -121 -164 111 -167 97 -167 ct 83 -167 73 -165 67 -160 ct 61 -155 57 -148 56 -137 ct -23 -140 l 29 -174 54 -191 98 -191 ct 122 -191 139 -185 151 -175 ct 163 -164 169 -148 169 -128 ct -169 -48 l 169 -38 170 -31 172 -27 ct 175 -22 179 -20 186 -20 ct 189 -20 193 -20 196 -21 ct -196 -2 l 189 0 181 1 172 1 ct 161 1 153 -2 147 -8 ct 142 -14 139 -23 138 -36 ct -137 -36 l 129 -22 120 -12 110 -6 ct 99 0 86 3 71 3 ct p +44036 30998 t +71 3 m 53 3 39 -2 29 -12 ct 20 -22 15 -35 15 -53 ct 15 -72 21 -87 34 -97 ct 47 -107 67 -113 95 -114 ct +137 -114 l 137 -125 l 137 -140 134 -151 128 -157 ct 121 -164 111 -167 97 -167 ct +83 -167 73 -165 67 -160 ct 61 -155 57 -148 56 -137 ct 23 -140 l 29 -174 54 -191 98 -191 ct +122 -191 139 -185 151 -175 ct 163 -164 169 -148 169 -128 ct 169 -48 l 169 -38 170 -31 172 -27 ct +175 -22 179 -20 186 -20 ct 189 -20 193 -20 196 -21 ct 196 -2 l 189 0 181 1 172 1 ct +161 1 153 -2 147 -8 ct 142 -14 139 -23 138 -36 ct 137 -36 l 129 -22 120 -12 110 -6 ct +99 0 86 3 71 3 ct p 78 -20 m 90 -20 100 -23 109 -28 ct 118 -33 125 -40 130 -49 ct 135 -58 137 -67 137 -77 ct 137 -92 l 103 -92 l 89 -92 78 -91 70 -88 ct 63 -85 57 -81 53 -75 ct 49 -69 47 -62 47 -52 ct 47 -42 50 -34 55 -29 ct 61 -23 68 -20 78 -20 ct p ef @@ -1680,7 +152031,7 @@ p ef p ef pom pum -9937 29177 t +9937 30551 t 183 -122 m 183 -81 175 -50 161 -29 ct 147 -8 126 3 98 3 ct 70 3 49 -8 35 -29 ct 21 -50 14 -81 14 -122 ct 14 -164 21 -195 34 -216 ct 48 -237 69 -247 99 -247 ct 127 -247 149 -236 162 -215 ct 176 -194 183 -163 183 -122 ct p @@ -1689,7 +152040,7 @@ pum 147 -63 151 -88 151 -122 ct p ef pom pum -9646 27360 t +9646 28617 t 183 -122 m 183 -81 175 -50 161 -29 ct 147 -8 126 3 98 3 ct 70 3 49 -8 35 -29 ct 21 -50 14 -81 14 -122 ct 14 -164 21 -195 34 -216 ct 48 -237 69 -247 99 -247 ct 127 -247 149 -236 162 -215 ct 176 -194 183 -163 183 -122 ct p @@ -1705,12 +152056,12 @@ pum 418 -155 437 -148 451 -134 ct 465 -120 473 -102 473 -80 ct p ef pom pum -9937 25544 t +9937 26683 t 27 0 m 27 -26 l 89 -26 l 89 -213 l 34 -174 l 34 -204 l 91 -243 l 120 -243 l 120 -26 l 179 -26 l 179 0 l 27 0 l p ef pom pum -9646 23728 t +9646 24750 t 27 0 m 27 -26 l 89 -26 l 89 -213 l 34 -174 l 34 -204 l 91 -243 l 120 -243 l 120 -26 l 179 -26 l 179 0 l 27 0 l p ef 217 0 m 217 -38 l 251 -38 l 251 0 l 217 0 l p ef @@ -1722,7 +152073,7 @@ pum 418 -155 437 -148 451 -134 ct 465 -120 473 -102 473 -80 ct p ef pom pum -9937 21912 t +9937 22816 t 18 0 m 18 -22 l 24 -35 31 -47 39 -58 ct 48 -68 57 -77 66 -85 ct 75 -94 84 -101 94 -109 ct 103 -116 111 -123 118 -130 ct 126 -137 132 -145 136 -152 ct 141 -160 143 -169 143 -179 ct 143 -192 139 -203 131 -210 ct 123 -217 113 -221 99 -221 ct 85 -221 74 -217 66 -210 ct @@ -1732,7 +152083,7 @@ pum 61 -43 55 -34 52 -26 ct 179 -26 l 179 0 l 18 0 l p ef pom pum -9646 20096 t +9646 20883 t 18 0 m 18 -22 l 24 -35 31 -47 39 -58 ct 48 -68 57 -77 66 -85 ct 75 -94 84 -101 94 -109 ct 103 -116 111 -123 118 -130 ct 126 -137 132 -145 136 -152 ct 141 -160 143 -169 143 -179 ct 143 -192 139 -203 131 -210 ct 123 -217 113 -221 99 -221 ct 85 -221 74 -217 66 -210 ct @@ -1749,7 +152100,7 @@ pum 418 -155 437 -148 451 -134 ct 465 -120 473 -102 473 -80 ct p ef pom pum -9937 18280 t +9937 18949 t 181 -68 m 181 -45 174 -28 159 -16 ct 145 -3 125 3 98 3 ct 74 3 54 -3 40 -14 ct 25 -25 16 -41 13 -63 ct 46 -66 l 50 -37 67 -23 98 -23 ct 114 -23 126 -27 135 -34 ct 144 -42 149 -54 149 -69 ct 149 -82 143 -92 133 -100 ct 123 -107 108 -111 89 -111 ct @@ -1761,7 +152112,7 @@ pum p ef pom pum -9646 16464 t +9646 17015 t 181 -68 m 181 -45 174 -28 159 -16 ct 145 -3 125 3 98 3 ct 74 3 54 -3 40 -14 ct 25 -25 16 -41 13 -63 ct 46 -66 l 50 -37 67 -23 98 -23 ct 114 -23 126 -27 135 -34 ct 144 -42 149 -54 149 -69 ct 149 -82 143 -92 133 -100 ct 123 -107 108 -111 89 -111 ct @@ -1780,14 +152131,14 @@ p ef 418 -155 437 -148 451 -134 ct 465 -120 473 -102 473 -80 ct p ef pom pum -9937 14648 t +9937 15082 t 152 -55 m 152 0 l 123 0 l 123 -55 l 8 -55 l 8 -79 l 119 -243 l 152 -243 l 152 -79 l 186 -79 l 186 -55 l 152 -55 l p 123 -208 m 122 -207 121 -204 118 -199 ct 115 -193 113 -190 111 -187 ct 49 -96 l 39 -83 l 37 -79 l 123 -79 l 123 -208 l p ef pom pum -9646 12832 t +9646 13148 t 152 -55 m 152 0 l 123 0 l 123 -55 l 8 -55 l 8 -79 l 119 -243 l 152 -243 l 152 -79 l 186 -79 l 186 -55 l 152 -55 l p 123 -208 m 122 -207 121 -204 118 -199 ct 115 -193 113 -190 111 -187 ct 49 -96 l @@ -1801,7 +152152,7 @@ pum 418 -155 437 -148 451 -134 ct 465 -120 473 -102 473 -80 ct p ef pom pum -9937 11016 t +9937 11215 t 182 -80 m 182 -54 174 -34 159 -19 ct 143 -4 122 3 95 3 ct 73 3 54 -2 41 -12 ct 27 -22 18 -36 14 -55 ct 46 -58 l 52 -34 69 -22 96 -22 ct 113 -22 126 -27 135 -37 ct 145 -47 149 -61 149 -79 ct 149 -94 145 -106 135 -116 ct 126 -125 113 -130 97 -130 ct @@ -1810,82 +152161,111 @@ pum 174 -120 182 -102 182 -80 ct p ef pom gs -0.003 0.273 0.527 c 43806 20097 m 43700 20097 l 43700 19886 l 43911 19886 l -43911 20097 l 43806 20097 l p ef -gr -gs -1.000 0.261 0.058 c 43806 20595 m 43700 20595 l 43700 20384 l 43911 20384 l -43911 20595 l 43806 20595 l p ef +43120 11766 m 43014 11766 l 43014 11555 l 43225 11555 l 43225 11766 l +43120 11766 l eoclip newpath +43014 11555 m 43225 11555 l 43225 11766 l 43014 11766 l 43014 11555 l eoclip newpath +pum +43014 11766 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001000000010000000000010000000100010000000100000000000100000001000100 +0000010000000000010000000100010000000100000000000100000001> +pom gr gs -1.000 0.828 0.128 c 43806 21092 m 43700 21092 l 43700 20882 l 43911 20882 l -43911 21092 l 43806 21092 l p ef +43120 12363 m 43014 12363 l 43014 12152 l 43225 12152 l 43225 12363 l +43120 12363 l eoclip newpath +43014 12152 m 43225 12152 l 43225 12363 l 43014 12363 l 43014 12152 l eoclip newpath +pum +43014 12363 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0100010001000100000100010001000101000100010001000001000100010001010001 +0001000100000100010001000101000100010001000001000100010001> +pom gr gs -0.343 0.617 0.113 c 43806 21590 m 43700 21590 l 43700 21379 l 43911 21379 l -43911 21590 l 43806 21590 l p ef +43120 12960 m 43014 12960 l 43014 12749 l 43225 12749 l 43225 12960 l +43120 12960 l eoclip newpath +43014 12749 m 43225 12749 l 43225 12960 l 43014 12960 l 43014 12749 l eoclip newpath +pum +43014 12960 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100010100000101000001000001010000010000010100000101000101 +0000010100010100000101000001000001010000010000010100000101> +pom gr gs -0.496 0.003 0.132 c 43806 22088 m 43700 22088 l 43700 21877 l 43911 21877 l -43911 22088 l 43806 22088 l p ef -gr +43120 13557 m 43014 13557 l 43014 13346 l 43225 13346 l 43225 13557 l +43120 13557 l eoclip newpath +43014 13346 m 43225 13346 l 43225 13557 l 43014 13557 l 43014 13346 l eoclip newpath pum -44011 20111 t -217 -68 m 217 -47 209 -30 193 -18 ct 177 -6 156 0 128 0 ct 29 0 l 29 -243 l -117 -243 l 174 -243 203 -223 203 -184 ct 203 -170 199 -158 191 -148 ct 183 -138 171 -131 157 -128 ct -176 -126 191 -119 201 -109 ct 212 -98 217 -85 217 -68 ct p -170 -180 m 170 -193 165 -203 156 -208 ct 147 -214 134 -217 117 -217 ct 62 -217 l -62 -140 l 117 -140 l 135 -140 148 -143 157 -150 ct 165 -156 170 -166 170 -180 ct -p -184 -71 m 184 -100 163 -114 123 -114 ct 62 -114 l 62 -26 l 126 -26 l 146 -26 161 -30 170 -38 ct -179 -45 184 -56 184 -71 ct p ef -309 3 m 291 3 277 -2 267 -12 ct 258 -22 253 -35 253 -53 ct 253 -72 259 -87 272 -97 ct -285 -107 305 -113 333 -114 ct 375 -114 l 375 -125 l 375 -140 372 -151 366 -157 ct -359 -164 349 -167 335 -167 ct 321 -167 311 -165 305 -160 ct 299 -155 295 -148 294 -137 ct -261 -140 l 267 -174 292 -191 336 -191 ct 360 -191 377 -185 389 -175 ct 401 -164 407 -148 407 -128 ct -407 -48 l 407 -38 408 -31 410 -27 ct 413 -22 417 -20 424 -20 ct 427 -20 431 -20 434 -21 ct -434 -2 l 427 0 419 1 410 1 ct 399 1 391 -2 385 -8 ct 380 -14 377 -23 376 -36 ct -375 -36 l 367 -22 358 -12 348 -6 ct 337 0 324 3 309 3 ct p -316 -20 m 328 -20 338 -23 347 -28 ct 356 -33 363 -40 368 -49 ct 373 -58 375 -67 375 -77 ct -375 -92 l 341 -92 l 327 -92 316 -91 308 -88 ct 301 -85 295 -81 291 -75 ct -287 -69 285 -62 285 -52 ct 285 -42 288 -34 293 -29 ct 299 -23 306 -20 316 -20 ct -p ef -587 -52 m 587 -34 580 -21 567 -11 ct 554 -2 535 3 511 3 ct 488 3 470 -1 457 -8 ct -445 -16 437 -28 433 -44 ct 460 -50 l 463 -40 468 -32 477 -28 ct 485 -23 496 -21 511 -21 ct -527 -21 538 -23 546 -28 ct 553 -33 557 -40 557 -50 ct 557 -57 554 -63 549 -68 ct -544 -72 536 -76 525 -79 ct 502 -85 l 484 -89 472 -94 464 -98 ct 457 -103 451 -108 447 -114 ct -442 -121 440 -129 440 -138 ct 440 -155 446 -168 458 -177 ct 471 -186 488 -190 511 -190 ct -532 -190 548 -186 560 -179 ct 573 -172 580 -160 583 -144 ct 556 -141 l 554 -149 549 -156 542 -160 ct -534 -164 524 -167 511 -167 ct 497 -167 487 -164 480 -160 ct 474 -156 470 -149 470 -141 ct -470 -136 472 -131 475 -128 ct 477 -124 481 -121 487 -119 ct 492 -117 504 -113 521 -109 ct -537 -105 549 -101 556 -97 ct 564 -94 569 -90 574 -86 ct 578 -82 581 -77 583 -71 ct -586 -66 587 -59 587 -52 ct p ef -657 -87 m 657 -66 661 -49 670 -38 ct 679 -26 692 -20 709 -20 ct 722 -20 733 -23 741 -28 ct -749 -34 755 -41 757 -49 ct 785 -41 l 774 -12 748 3 709 3 ct 681 3 660 -5 646 -22 ct -631 -38 624 -62 624 -95 ct 624 -125 631 -149 646 -165 ct 660 -182 681 -190 707 -190 ct -762 -190 790 -157 790 -91 ct 790 -87 l 657 -87 l p -758 -111 m 756 -130 751 -145 743 -154 ct 734 -163 722 -167 707 -167 ct 692 -167 680 -162 671 -152 ct -662 -142 658 -128 657 -111 ct 758 -111 l p ef -818 0 m 818 -256 l 849 -256 l 849 0 l 818 0 l p ef -897 -226 m 897 -256 l 928 -256 l 928 -226 l 897 -226 l p -897 0 m 897 -187 l 928 -187 l 928 0 l 897 0 l p ef -1095 0 m 1095 -118 l 1095 -131 1094 -140 1092 -147 ct 1089 -154 1085 -159 1080 -162 ct -1075 -165 1067 -166 1057 -166 ct 1042 -166 1030 -161 1021 -151 ct 1013 -140 1009 -126 1009 -108 ct -1009 0 l 977 0 l 977 -147 l 977 -168 977 -182 976 -187 ct 1006 -187 l -1006 -186 1006 -184 1006 -182 ct 1006 -179 1006 -176 1007 -173 ct 1007 -170 1007 -164 1007 -155 ct -1008 -155 l 1015 -168 1023 -177 1032 -182 ct 1042 -187 1053 -190 1067 -190 ct -1088 -190 1103 -185 1112 -175 ct 1122 -165 1126 -148 1126 -124 ct 1126 0 l 1095 0 l -p ef -1186 -87 m 1186 -66 1190 -49 1199 -38 ct 1208 -26 1221 -20 1238 -20 ct 1251 -20 1262 -23 1270 -28 ct -1278 -34 1284 -41 1286 -49 ct 1314 -41 l 1303 -12 1277 3 1238 3 ct 1210 3 1189 -5 1175 -22 ct -1160 -38 1153 -62 1153 -95 ct 1153 -125 1160 -149 1175 -165 ct 1189 -182 1210 -190 1236 -190 ct -1291 -190 1319 -157 1319 -91 ct 1319 -87 l 1186 -87 l p -1287 -111 m 1285 -130 1280 -145 1272 -154 ct 1263 -163 1251 -167 1236 -167 ct -1221 -167 1209 -162 1200 -152 ct 1191 -142 1187 -128 1186 -111 ct 1287 -111 l -p ef +43014 13557 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0001010000010100000001010000010101000001010000010101000001010000000101 +0000010100000001010000010101000001010000010101000001010000> pom +gr pum -44011 20609 t +43325 11780 t 62 -216 m 62 -125 l 197 -125 l 197 -98 l 62 -98 l 62 1 l 29 1 l 29 -243 l 202 -243 l 202 -216 l 62 -216 l p ef 260 -87 m 260 -66 264 -49 273 -38 ct 282 -26 295 -20 312 -20 ct 325 -20 336 -23 344 -28 ct @@ -1914,7 +152294,7 @@ pum 820 -142 816 -128 815 -111 ct 916 -111 l p ef pom pum -44011 21106 t +43325 12377 t 62 -216 m 62 -125 l 197 -125 l 197 -98 l 62 -98 l 62 1 l 29 1 l 29 -243 l 202 -243 l 202 -216 l 62 -216 l p ef 260 -87 m 260 -66 264 -49 273 -38 ct 282 -26 295 -20 312 -20 ct 325 -20 336 -23 344 -28 ct @@ -1957,7 +152337,7 @@ p 1928 -243 l 1928 -216 l 1844 -216 l p ef pom pum -44011 21604 t +43325 12974 t 33 0 m 33 -243 l 66 -243 l 66 0 l 33 0 l p ef 325 -68 m 325 -45 316 -28 299 -15 ct 281 -3 257 3 225 3 ct 166 3 131 -18 122 -59 ct 154 -65 l 158 -51 165 -40 177 -33 ct 189 -26 206 -23 226 -23 ct 247 -23 264 -26 275 -34 ct @@ -1972,7 +152352,7 @@ pum 316 -103 319 -97 322 -91 ct 324 -84 325 -76 325 -68 ct p ef pom pum -44011 22102 t +43325 13571 t 33 0 m 33 -243 l 66 -243 l 66 0 l 33 0 l p ef 325 -68 m 325 -45 316 -28 299 -15 ct 281 -3 257 3 225 3 ct 166 3 131 -18 122 -59 ct 154 -65 l 158 -51 165 -40 177 -33 ct 189 -26 206 -23 226 -23 ct 247 -23 264 -26 275 -34 ct diff --git a/specload_ratio.eps b/specload_ratio.eps new file mode 100644 index 0000000..81e8a26 --- /dev/null +++ b/specload_ratio.eps @@ -0,0 +1,6163 @@ +%!PS-Adobe-3.0 EPSF-3.0 +%%BoundingBox: 0 0 454 255 +%%Pages: 0 +%%Creator: LibreOffice 6.2 +%%Title: none +%%CreationDate: none +%%LanguageLevel: 2 +%%EndComments +%%BeginProlog +%%BeginResource: procset SDRes-Prolog 1.0 0 +/b4_inc_state save def +/dict_count countdictstack def +/op_count count 1 sub def +userdict begin +0 setgray 0 setlinecap 1 setlinewidth 0 setlinejoin 10 setmiterlimit[] 0 setdash newpath +/languagelevel where {pop languagelevel 1 ne {false setstrokeadjust false setoverprint} if} if +/bdef {bind def} bind def +/c {setrgbcolor} bdef +/l {neg lineto} bdef +/rl {neg rlineto} bdef +/lc {setlinecap} bdef +/lj {setlinejoin} bdef +/lw {setlinewidth} bdef +/ml {setmiterlimit} bdef +/ld {setdash} bdef +/m {neg moveto} bdef +/ct {6 2 roll neg 6 2 roll neg 6 2 roll neg curveto} bdef +/r {rotate} bdef +/t {neg translate} bdef +/s {scale} bdef +/sw {show} bdef +/gs {gsave} bdef +/gr {grestore} bdef +/f {findfont dup length dict begin +{1 index /FID ne {def} {pop pop} ifelse} forall /Encoding ISOLatin1Encoding def +currentdict end /NFont exch definefont pop /NFont findfont} bdef +/p {closepath} bdef +/sf {scalefont setfont} bdef +/ef {eofill}bdef +/pc {closepath stroke}bdef +/ps {stroke}bdef +/pum {matrix currentmatrix}bdef +/pom {setmatrix}bdef +/bs {/aString exch def /nXOfs exch def /nWidth exch def currentpoint nXOfs 0 rmoveto pum nWidth aString stringwidth pop div 1 scale aString show pom moveto} bdef +%%EndResource +%%EndProlog +%%BeginSetup +%%EndSetup +%%Page: 1 1 +%%BeginPageSetup +%%EndPageSetup +pum +0.02837 0.02833 s +0 -9000 t +/tm matrix currentmatrix def +tm setmatrix +-46127 -551 t +1 1 s +gs +1.000 1.000 1.000 c 54127 9550 m 46127 9550 l 46127 570 l 62126 570 l +62126 9550 l 54127 9550 l p ef +gr +gs +0 lw 1 lj 0.703 0.703 0.703 c 54834 7354 m 47862 7354 l 47862 750 l 61806 750 l +61806 7354 l 54834 7354 l pc +gr +gs +0 lw 1 lj 0.703 0.703 0.703 c 61806 7353 m 47862 7353 l ps +gr +gs +0 lw 1 lj 0.703 0.703 0.703 c 61806 6527 m 47862 6527 l ps +gr +gs +0 lw 1 lj 0.703 0.703 0.703 c 61806 5702 m 47862 5702 l ps +gr +gs +0 lw 1 lj 0.703 0.703 0.703 c 61806 4875 m 47862 4875 l ps +gr +gs +0 lw 1 lj 0.703 0.703 0.703 c 61806 4050 m 47862 4050 l ps +gr +gs +0 lw 1 lj 0.703 0.703 0.703 c 61806 3225 m 47862 3225 l ps +gr +gs +0 lw 1 lj 0.703 0.703 0.703 c 61806 2399 m 47862 2399 l ps +gr +gs +0 lw 1 lj 0.703 0.703 0.703 c 61806 1574 m 47862 1574 l ps +gr +gs +0 lw 1 lj 0.703 0.703 0.703 c 61806 749 m 47862 749 l ps +gr +gs +0 lw 1 lj 0.703 0.703 0.703 c 47862 7503 m 47862 7353 l ps +gr +gs +0 lw 1 lj 0.703 0.703 0.703 c 47862 7503 m 47862 7353 l ps +gr +gs +0 lw 1 lj 0.703 0.703 0.703 c 48526 7503 m 48526 7353 l ps +gr +gs +0 lw 1 lj 0.703 0.703 0.703 c 48526 7503 m 48526 7353 l ps +gr +gs +0 lw 1 lj 0.703 0.703 0.703 c 49190 7503 m 49190 7353 l ps +gr +gs +0 lw 1 lj 0.703 0.703 0.703 c 49190 7503 m 49190 7353 l ps +gr +gs +0 lw 1 lj 0.703 0.703 0.703 c 49854 7503 m 49854 7353 l ps +gr +gs +0 lw 1 lj 0.703 0.703 0.703 c 49854 7503 m 49854 7353 l ps +gr +gs +0 lw 1 lj 0.703 0.703 0.703 c 50518 7503 m 50518 7353 l ps +gr +gs +0 lw 1 lj 0.703 0.703 0.703 c 50518 7503 m 50518 7353 l ps +gr +gs +0 lw 1 lj 0.703 0.703 0.703 c 51182 7503 m 51182 7353 l ps +gr +gs +0 lw 1 lj 0.703 0.703 0.703 c 51182 7503 m 51182 7353 l ps +gr +gs +0 lw 1 lj 0.703 0.703 0.703 c 51846 7503 m 51846 7353 l ps +gr +gs +0 lw 1 lj 0.703 0.703 0.703 c 51846 7503 m 51846 7353 l ps +gr +gs +0 lw 1 lj 0.703 0.703 0.703 c 52510 7503 m 52510 7353 l ps +gr +gs +0 lw 1 lj 0.703 0.703 0.703 c 52510 7503 m 52510 7353 l ps +gr +gs +0 lw 1 lj 0.703 0.703 0.703 c 53174 7503 m 53174 7353 l ps +gr +gs +0 lw 1 lj 0.703 0.703 0.703 c 53174 7503 m 53174 7353 l ps +gr +gs +0 lw 1 lj 0.703 0.703 0.703 c 53838 7503 m 53838 7353 l ps +gr +gs +0 lw 1 lj 0.703 0.703 0.703 c 53838 7503 m 53838 7353 l ps +gr +gs +0 lw 1 lj 0.703 0.703 0.703 c 54501 7503 m 54501 7353 l ps +gr +gs +0 lw 1 lj 0.703 0.703 0.703 c 54501 7503 m 54501 7353 l ps +gr +gs +0 lw 1 lj 0.703 0.703 0.703 c 55165 7503 m 55165 7353 l ps +gr +gs +0 lw 1 lj 0.703 0.703 0.703 c 55165 7503 m 55165 7353 l ps +gr +gs +0 lw 1 lj 0.703 0.703 0.703 c 55829 7503 m 55829 7353 l ps +gr +gs +0 lw 1 lj 0.703 0.703 0.703 c 55829 7503 m 55829 7353 l ps +gr +gs +0 lw 1 lj 0.703 0.703 0.703 c 56493 7503 m 56493 7353 l ps +gr +gs +0 lw 1 lj 0.703 0.703 0.703 c 56493 7503 m 56493 7353 l ps +gr +gs +0 lw 1 lj 0.703 0.703 0.703 c 57157 7503 m 57157 7353 l ps +gr +gs +0 lw 1 lj 0.703 0.703 0.703 c 57157 7503 m 57157 7353 l ps +gr +gs +0 lw 1 lj 0.703 0.703 0.703 c 57821 7503 m 57821 7353 l ps +gr +gs +0 lw 1 lj 0.703 0.703 0.703 c 57821 7503 m 57821 7353 l ps +gr +gs +0 lw 1 lj 0.703 0.703 0.703 c 58485 7503 m 58485 7353 l ps +gr +gs +0 lw 1 lj 0.703 0.703 0.703 c 58485 7503 m 58485 7353 l ps +gr +gs +0 lw 1 lj 0.703 0.703 0.703 c 59149 7503 m 59149 7353 l ps +gr +gs +0 lw 1 lj 0.703 0.703 0.703 c 59149 7503 m 59149 7353 l ps +gr +gs +0 lw 1 lj 0.703 0.703 0.703 c 59813 7503 m 59813 7353 l ps +gr +gs +0 lw 1 lj 0.703 0.703 0.703 c 59813 7503 m 59813 7353 l ps +gr +gs +0 lw 1 lj 0.703 0.703 0.703 c 60477 7503 m 60477 7353 l ps +gr +gs +0 lw 1 lj 0.703 0.703 0.703 c 60477 7503 m 60477 7353 l ps +gr +gs +0 lw 1 lj 0.703 0.703 0.703 c 61141 7503 m 61141 7353 l ps +gr +gs +0 lw 1 lj 0.703 0.703 0.703 c 61141 7503 m 61141 7353 l ps +gr +gs +0 lw 1 lj 0.703 0.703 0.703 c 61806 7503 m 61806 7353 l ps +gr +gs +0 lw 1 lj 0.703 0.703 0.703 c 61806 7503 m 61806 7353 l ps +gr +gs +0 lw 1 lj 0.703 0.703 0.703 c 47862 7353 m 61806 7353 l ps +gr +gs +0 lw 1 lj 0.703 0.703 0.703 c 47712 7353 m 47862 7353 l ps +gr +gs +0 lw 1 lj 0.703 0.703 0.703 c 47712 7353 m 47862 7353 l ps +gr +gs +0 lw 1 lj 0.703 0.703 0.703 c 47712 6527 m 47862 6527 l ps +gr +gs +0 lw 1 lj 0.703 0.703 0.703 c 47712 6527 m 47862 6527 l ps +gr +gs +0 lw 1 lj 0.703 0.703 0.703 c 47712 5702 m 47862 5702 l ps +gr +gs +0 lw 1 lj 0.703 0.703 0.703 c 47712 5702 m 47862 5702 l ps +gr +gs +0 lw 1 lj 0.703 0.703 0.703 c 47712 4875 m 47862 4875 l ps +gr +gs +0 lw 1 lj 0.703 0.703 0.703 c 47712 4875 m 47862 4875 l ps +gr +gs +0 lw 1 lj 0.703 0.703 0.703 c 47712 4050 m 47862 4050 l ps +gr +gs +0 lw 1 lj 0.703 0.703 0.703 c 47712 4050 m 47862 4050 l ps +gr +gs +0 lw 1 lj 0.703 0.703 0.703 c 47712 3225 m 47862 3225 l ps +gr +gs +0 lw 1 lj 0.703 0.703 0.703 c 47712 3225 m 47862 3225 l ps +gr +gs +0 lw 1 lj 0.703 0.703 0.703 c 47712 2399 m 47862 2399 l ps +gr +gs +0 lw 1 lj 0.703 0.703 0.703 c 47712 2399 m 47862 2399 l ps +gr +gs +0 lw 1 lj 0.703 0.703 0.703 c 47712 1574 m 47862 1574 l ps +gr +gs +0 lw 1 lj 0.703 0.703 0.703 c 47712 1574 m 47862 1574 l ps +gr +gs +0 lw 1 lj 0.703 0.703 0.703 c 47712 749 m 47862 749 l ps +gr +gs +0 lw 1 lj 0.703 0.703 0.703 c 47712 749 m 47862 749 l ps +gr +gs +0 lw 1 lj 0.703 0.703 0.703 c 47862 7353 m 47862 749 l ps +gr +gs +0.003 0.003 0.003 c 61252 7353 m 61473 7353 l 61473 6246 l 61252 6246 l +61252 7353 l p ef +gr +gs +0.003 0.003 0.003 c 60588 7353 m 60809 7353 l 60809 6257 l 60588 6257 l +60588 7353 l p ef +gr +gs +0.003 0.003 0.003 c 59924 7353 m 60145 7353 l 60145 5753 l 59924 5753 l +59924 7353 l p ef +gr +gs +0.003 0.003 0.003 c 59260 7353 m 59481 7353 l 59481 5175 l 59260 5175 l +59260 7353 l p ef +gr +gs +0.003 0.003 0.003 c 58596 7353 m 58817 7353 l 58817 6371 l 58596 6371 l +58596 7353 l p ef +gr +gs +0.003 0.003 0.003 c 57932 7353 m 58153 7353 l 58153 6911 l 57932 6911 l +57932 7353 l p ef +gr +gs +0.003 0.003 0.003 c 57268 7353 m 57489 7353 l 57489 6821 l 57268 6821 l +57268 7353 l p ef +gr +gs +0.003 0.003 0.003 c 56604 7353 m 56825 7353 l 56825 5610 l 56604 5610 l +56604 7353 l p ef +gr +gs +0.003 0.003 0.003 c 55940 7353 m 56161 7353 l 56161 7024 l 55940 7024 l +55940 7353 l p ef +gr +gs +0.003 0.003 0.003 c 55276 7353 m 55497 7353 l 55497 6364 l 55276 6364 l +55276 7353 l p ef +gr +gs +0.003 0.003 0.003 c 54612 7353 m 54833 7353 l 54833 7122 l 54612 7122 l +54612 7353 l p ef +gr +gs +0.003 0.003 0.003 c 53949 7353 m 54169 7353 l 54169 5780 l 53949 5780 l +53949 7353 l p ef +gr +gs +0.003 0.003 0.003 c 53285 7353 m 53506 7353 l 53506 6456 l 53285 6456 l +53285 7353 l p ef +gr +gs +0.003 0.003 0.003 c 52621 7353 m 52842 7353 l 52842 7227 l 52621 7227 l +52621 7353 l p ef +gr +gs +0.003 0.003 0.003 c 51956 7353 m 52178 7353 l 52178 5271 l 51956 5271 l +51956 7353 l p ef +gr +gs +0.003 0.003 0.003 c 51292 7353 m 51514 7353 l 51514 6314 l 51292 6314 l +51292 7353 l p ef +gr +gs +0.003 0.003 0.003 c 50628 7353 m 50850 7353 l 50850 5720 l 50628 5720 l +50628 7353 l p ef +gr +gs +0.003 0.003 0.003 c 49964 7353 m 50186 7353 l 50186 7267 l 49964 7267 l +49964 7353 l p ef +gr +gs +0.003 0.003 0.003 c 49300 7353 m 49522 7353 l 49522 5350 l 49300 5350 l +49300 7353 l p ef +gr +gs +0.003 0.003 0.003 c 48636 7353 m 48858 7353 l 48858 5577 l 48636 5577 l +48636 7353 l p ef +gr +gs +0.003 0.003 0.003 c 47972 7353 m 48194 7353 l 48194 1606 l 47972 1606 l +47972 7353 l p ef +gr +gs +61473 7353 m 61695 7353 l 61695 7348 l 61473 7348 l 61473 7353 l eoclip newpath +61473 7348 m 61695 7348 l 61695 7353 l 61473 7353 l 61473 7348 l eoclip newpath +pum +61266 7456 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +61478 7456 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +61690 7456 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +gr +gs +60809 7353 m 61031 7353 l 61031 7118 l 60809 7118 l 60809 7353 l eoclip newpath +60809 7118 m 61031 7118 l 61031 7353 l 60809 7353 l 60809 7118 l eoclip newpath +pum +60390 7130 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +60602 7130 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +60814 7130 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +61026 7130 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +60602 7341 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +60814 7341 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +61026 7341 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +60390 7553 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +60602 7553 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +60814 7553 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +61026 7553 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +gr +gs +60145 7353 m 60367 7353 l 60367 6589 l 60145 6589 l 60145 7353 l eoclip newpath +60145 6589 m 60367 6589 l 60367 7353 l 60145 7353 l 60145 6589 l eoclip newpath +pum +59938 6653 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +60150 6653 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +60362 6653 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +59726 6865 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +59938 6865 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +60150 6865 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +60362 6865 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +59938 7076 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +60150 7076 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +60362 7076 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +59726 7288 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +59938 7288 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +60150 7288 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +60362 7288 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +59938 7500 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +60150 7500 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +60362 7500 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +gr +gs +59481 7353 m 59703 7353 l 59703 6903 l 59481 6903 l 59481 7353 l eoclip newpath +59481 6903 m 59703 6903 l 59703 7353 l 59481 7353 l 59481 6903 l eoclip newpath +pum +59062 7022 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +59274 7022 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +59486 7022 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +59698 7022 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +59274 7234 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +59486 7234 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +59698 7234 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +59062 7445 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +59274 7445 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +59486 7445 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +59698 7445 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +gr +gs +58817 7353 m 59039 7353 l 59039 7033 l 58817 7033 l 58817 7353 l eoclip newpath +58817 7033 m 59039 7033 l 59039 7353 l 58817 7353 l 58817 7033 l eoclip newpath +pum +58398 7087 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +58610 7087 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +58822 7087 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +59034 7087 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +58610 7299 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +58822 7299 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +59034 7299 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +58398 7510 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +58610 7510 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +58822 7510 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +59034 7510 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +gr +gs +58153 7353 m 58375 7353 l 58375 7214 l 58153 7214 l 58153 7353 l eoclip newpath +58153 7214 m 58375 7214 l 58375 7353 l 58153 7353 l 58153 7214 l eoclip newpath +pum +57946 7389 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +58158 7389 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +58370 7389 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +gr +gs +57489 7353 m 57711 7353 l 57711 7337 l 57489 7337 l 57489 7353 l eoclip newpath +57489 7337 m 57711 7337 l 57711 7353 l 57489 7353 l 57489 7337 l eoclip newpath +pum +57282 7451 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +57494 7451 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +57706 7451 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +gr +gs +56825 7353 m 57046 7353 l 57046 7004 l 56825 7004 l 56825 7353 l eoclip newpath +56825 7004 m 57046 7004 l 57046 7353 l 56825 7353 l 56825 7004 l eoclip newpath +pum +56406 7073 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +56618 7073 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +56830 7073 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +57042 7073 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +56618 7284 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +56830 7284 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +57042 7284 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +56406 7496 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +56618 7496 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +56830 7496 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +57042 7496 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +gr +gs +56161 7353 m 56382 7353 l 56382 7352 l 56161 7352 l 56161 7353 l eoclip newpath +56161 7352 m 56382 7352 l 56382 7353 l 56161 7353 l 56161 7352 l eoclip newpath +pum +55954 7458 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +56166 7458 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +56378 7458 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +gr +gs +55497 7353 m 55718 7353 l 55718 7335 l 55497 7335 l 55497 7353 l eoclip newpath +55497 7335 m 55718 7335 l 55718 7353 l 55497 7353 l 55497 7335 l eoclip newpath +pum +55290 7450 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +55502 7450 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +55714 7450 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +gr +gs +54833 7353 m 55054 7353 l 55054 7352 l 54833 7352 l 54833 7353 l eoclip newpath +54833 7352 m 55054 7352 l 55054 7353 l 54833 7353 l 54833 7352 l eoclip newpath +pum +54626 7458 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +54838 7458 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +55050 7458 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +gr +gs +54169 7353 m 54390 7353 l 54390 6556 l 54169 6556 l 54169 7353 l eoclip newpath +54169 6556 m 54390 6556 l 54390 7353 l 54169 7353 l 54169 6556 l eoclip newpath +pum +53962 6637 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +54174 6637 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +54386 6637 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +53750 6849 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +53962 6849 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +54174 6849 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +54386 6849 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +53962 7060 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +54174 7060 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +54386 7060 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +53750 7272 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +53962 7272 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +54174 7272 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +54386 7272 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +53962 7483 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +54174 7483 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +54386 7483 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +gr +gs +53506 7353 m 53727 7353 l 53727 7197 l 53506 7197 l 53506 7353 l eoclip newpath +53506 7197 m 53727 7197 l 53727 7353 l 53506 7353 l 53506 7197 l eoclip newpath +pum +53298 7381 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +53510 7381 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +53722 7381 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +gr +gs +52842 7353 m 53063 7353 l 53063 7343 l 52842 7343 l 52842 7353 l eoclip newpath +52842 7343 m 53063 7343 l 53063 7353 l 52842 7353 l 52842 7343 l eoclip newpath +pum +52634 7454 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +52846 7454 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +53058 7454 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +gr +gs +52178 7353 m 52399 7353 l 52399 6923 l 52178 6923 l 52178 7353 l eoclip newpath +52178 6923 m 52399 6923 l 52399 7353 l 52178 7353 l 52178 6923 l eoclip newpath +pum +51758 7032 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +51970 7032 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +52182 7032 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +52394 7032 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +51970 7244 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +52182 7244 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +52394 7244 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +51758 7455 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +51970 7455 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +52182 7455 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +52394 7455 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +gr +gs +51514 7353 m 51735 7353 l 51735 7331 l 51514 7331 l 51514 7353 l eoclip newpath +51514 7331 m 51735 7331 l 51735 7353 l 51514 7353 l 51514 7331 l eoclip newpath +pum +51306 7448 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +51518 7448 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +51730 7448 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +gr +gs +50850 7353 m 51071 7353 l 51071 6847 l 50850 6847 l 50850 7353 l eoclip newpath +50850 6847 m 51071 6847 l 51071 7353 l 50850 7353 l 50850 6847 l eoclip newpath +pum +50430 6994 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +50642 6994 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +50854 6994 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +51066 6994 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +50642 7206 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +50854 7206 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +51066 7206 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +50430 7417 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +50642 7417 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +50854 7417 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +51066 7417 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +gr +gs +50186 7353 m 50407 7353 l 50407 7331 l 50186 7331 l 50186 7353 l eoclip newpath +50186 7331 m 50407 7331 l 50407 7353 l 50186 7353 l 50186 7331 l eoclip newpath +pum +49978 7448 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +50190 7448 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +50402 7448 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +gr +gs +49522 7353 m 49743 7353 l 49743 6446 l 49522 6446 l 49522 7353 l eoclip newpath +49522 6446 m 49743 6446 l 49743 7353 l 49522 7353 l 49522 6446 l eoclip newpath +pum +49314 6582 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +49526 6582 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +49738 6582 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +49102 6794 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +49314 6794 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +49526 6794 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +49738 6794 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +49314 7005 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +49526 7005 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +49738 7005 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +49102 7217 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +49314 7217 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +49526 7217 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +49738 7217 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +49314 7428 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +49526 7428 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +49738 7428 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +gr +gs +48858 7353 m 49079 7353 l 49079 7315 l 48858 7315 l 48858 7353 l eoclip newpath +48858 7315 m 49079 7315 l 49079 7353 l 48858 7353 l 48858 7315 l eoclip newpath +pum +48650 7440 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +48862 7440 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +49074 7440 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +gr +gs +48194 7353 m 48415 7353 l 48415 4084 l 48194 4084 l 48194 7353 l eoclip newpath +48194 4084 m 48415 4084 l 48415 7353 l 48194 7353 l 48194 4084 l eoclip newpath +pum +47986 4132 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +48198 4132 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +48410 4132 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +47774 4344 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +47986 4344 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +48198 4344 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +48410 4344 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +47986 4555 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +48198 4555 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +48410 4555 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +47774 4767 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +47986 4767 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +48198 4767 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +48410 4767 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +47986 4978 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +48198 4978 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +48410 4978 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +47774 5190 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +47986 5190 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +48198 5190 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +48410 5190 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +47986 5401 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +48198 5401 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +48410 5401 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +47774 5613 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +47986 5613 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +48198 5613 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +48410 5613 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +47986 5824 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +48198 5824 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +48410 5824 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +47774 6036 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +47986 6036 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +48198 6036 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +48410 6036 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +47986 6247 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +48198 6247 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +48410 6247 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +47774 6459 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +47986 6459 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +48198 6459 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +48410 6459 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +47986 6670 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +48198 6670 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +48410 6670 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +47774 6882 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +47986 6882 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +48198 6882 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +48410 6882 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +47986 7093 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +48198 7093 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +48410 7093 t +212 211 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +47774 7305 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +47986 7305 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +48198 7305 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +48410 7305 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +47986 7517 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +48198 7517 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +pum +48410 7517 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +gr +pum +47734 8368 t +44.9 r 0.003 0.003 0.003 c 71 3 m 53 3 39 -2 29 -12 ct 20 -22 15 -35 15 -53 ct 15 -72 21 -87 34 -97 ct +47 -107 67 -113 95 -114 ct 137 -114 l 137 -125 l 137 -140 134 -151 128 -157 ct +121 -164 111 -167 97 -167 ct 83 -167 73 -165 67 -160 ct 61 -155 57 -148 56 -137 ct +23 -140 l 29 -174 54 -191 98 -191 ct 122 -191 139 -185 151 -175 ct 163 -164 169 -148 169 -128 ct +169 -48 l 169 -38 170 -31 172 -27 ct 175 -22 179 -20 186 -20 ct 189 -20 193 -20 196 -21 ct +196 -2 l 189 0 181 1 172 1 ct 161 1 153 -2 147 -8 ct 142 -14 139 -23 138 -36 ct +137 -36 l 129 -22 120 -12 110 -6 ct 99 0 86 3 71 3 ct p +78 -20 m 90 -20 100 -23 109 -28 ct 118 -33 125 -40 130 -49 ct 135 -58 137 -67 137 -77 ct +137 -92 l 103 -92 l 89 -92 78 -91 70 -88 ct 63 -85 57 -81 53 -75 ct 49 -69 47 -62 47 -52 ct +47 -42 50 -34 55 -29 ct 61 -23 68 -20 78 -20 ct p ef +349 -52 m 349 -34 342 -21 329 -11 ct 316 -2 297 3 273 3 ct 250 3 232 -1 219 -8 ct +207 -16 199 -28 195 -44 ct 222 -50 l 225 -40 230 -32 239 -28 ct 247 -23 258 -21 273 -21 ct +289 -21 300 -23 308 -28 ct 315 -33 319 -40 319 -50 ct 319 -57 316 -63 311 -68 ct +306 -72 298 -76 287 -79 ct 264 -85 l 246 -89 234 -94 226 -98 ct 219 -103 213 -108 209 -114 ct +204 -121 202 -129 202 -138 ct 202 -155 208 -168 220 -177 ct 233 -186 250 -190 273 -190 ct +294 -190 310 -186 322 -179 ct 335 -172 342 -160 345 -144 ct 318 -141 l 316 -149 311 -156 304 -160 ct +296 -164 286 -167 273 -167 ct 259 -167 249 -164 242 -160 ct 236 -156 232 -149 232 -141 ct +232 -136 234 -131 237 -128 ct 239 -124 243 -121 249 -119 ct 254 -117 266 -113 283 -109 ct +299 -105 311 -101 318 -97 ct 326 -94 331 -90 336 -86 ct 340 -82 343 -77 345 -71 ct +348 -66 349 -59 349 -52 ct p ef +465 -1 m 455 2 445 3 434 3 ct 409 3 397 -11 397 -39 ct 397 -164 l 375 -164 l +375 -187 l 398 -187 l 407 -228 l 428 -228 l 428 -187 l 462 -187 l +462 -164 l 428 -164 l 428 -46 l 428 -37 429 -31 432 -27 ct 435 -23 440 -22 448 -22 ct +452 -22 458 -22 465 -24 ct 465 -1 l p ef +547 3 m 529 3 515 -2 505 -12 ct 496 -22 491 -35 491 -53 ct 491 -72 497 -87 510 -97 ct +523 -107 543 -113 571 -114 ct 613 -114 l 613 -125 l 613 -140 610 -151 604 -157 ct +597 -164 587 -167 573 -167 ct 559 -167 549 -165 543 -160 ct 537 -155 533 -148 532 -137 ct +499 -140 l 505 -174 530 -191 574 -191 ct 598 -191 615 -185 627 -175 ct 639 -164 645 -148 645 -128 ct +645 -48 l 645 -38 646 -31 648 -27 ct 651 -22 655 -20 662 -20 ct 665 -20 669 -20 672 -21 ct +672 -2 l 665 0 657 1 648 1 ct 637 1 629 -2 623 -8 ct 618 -14 615 -23 614 -36 ct +613 -36 l 605 -22 596 -12 586 -6 ct 575 0 562 3 547 3 ct p +554 -20 m 566 -20 576 -23 585 -28 ct 594 -33 601 -40 606 -49 ct 611 -58 613 -67 613 -77 ct +613 -92 l 579 -92 l 565 -92 554 -91 546 -88 ct 539 -85 533 -81 529 -75 ct +525 -69 523 -62 523 -52 ct 523 -42 526 -34 531 -29 ct 537 -23 544 -20 554 -20 ct +p ef +685 0 m 685 -143 l 685 -156 685 -171 684 -187 ct 714 -187 l 715 -165 715 -153 715 -148 ct +716 -148 l 721 -164 726 -175 733 -181 ct 739 -187 748 -190 760 -190 ct 764 -190 768 -189 773 -188 ct +773 -160 l 769 -161 763 -162 756 -162 ct 743 -162 733 -156 727 -145 ct 720 -134 717 -118 717 -97 ct +717 0 l 685 0 l p ef +pom +pum +48118 8649 t +44.9 r 182 -94 m 182 -29 159 3 113 3 ct 99 3 87 0 78 -5 ct 68 -10 61 -18 55 -29 ct +54 -29 l 54 -26 54 -20 54 -13 ct 53 -6 53 -2 53 0 ct 23 0 l 23 -7 24 -19 24 -39 ct +24 -256 l 55 -256 l 55 -183 l 55 -176 55 -167 54 -157 ct 55 -157 l 61 -169 68 -177 78 -182 ct +87 -187 99 -190 113 -190 ct 136 -190 154 -182 165 -166 ct 176 -150 182 -126 182 -94 ct +p +149 -93 m 149 -119 145 -138 139 -149 ct 132 -160 120 -166 105 -166 ct 88 -166 75 -160 67 -148 ct +59 -136 55 -117 55 -91 ct 55 -67 59 -49 67 -37 ct 74 -26 87 -20 105 -20 ct 120 -20 132 -26 138 -37 ct +145 -49 149 -67 149 -93 ct p ef +387 0 m 351 0 l 319 -132 l 313 -161 l 312 -156 310 -148 308 -139 ct 306 -129 294 -83 273 0 ct +237 0 l 184 -187 l 215 -187 l 247 -60 l 248 -57 250 -46 254 -26 ct 257 -38 l +296 -187 l 329 -187 l 362 -58 l 370 -26 l 375 -50 l 410 -187 l 441 -187 l +387 0 l p ef +494 3 m 476 3 462 -2 452 -12 ct 443 -22 438 -35 438 -53 ct 438 -72 444 -87 457 -97 ct +470 -107 490 -113 518 -114 ct 560 -114 l 560 -125 l 560 -140 557 -151 551 -157 ct +544 -164 534 -167 520 -167 ct 506 -167 496 -165 490 -160 ct 484 -155 480 -148 479 -137 ct +446 -140 l 452 -174 477 -191 521 -191 ct 545 -191 562 -185 574 -175 ct 586 -164 592 -148 592 -128 ct +592 -48 l 592 -38 593 -31 595 -27 ct 598 -22 602 -20 609 -20 ct 612 -20 616 -20 619 -21 ct +619 -2 l 612 0 604 1 595 1 ct 584 1 576 -2 570 -8 ct 565 -14 562 -23 561 -36 ct +560 -36 l 552 -22 543 -12 533 -6 ct 522 0 509 3 494 3 ct p +501 -20 m 513 -20 523 -23 532 -28 ct 541 -33 548 -40 553 -49 ct 558 -58 560 -67 560 -77 ct +560 -92 l 526 -92 l 512 -92 501 -91 493 -88 ct 486 -85 480 -81 476 -75 ct +472 -69 470 -62 470 -52 ct 470 -42 473 -34 478 -29 ct 484 -23 491 -20 501 -20 ct +p ef +715 0 m 678 0 l 610 -187 l 643 -187 l 684 -65 l 686 -61 690 -47 696 -24 ct +702 -44 l 709 -65 l 751 -187 l 784 -187 l 715 0 l p ef +842 -87 m 842 -66 846 -49 855 -38 ct 864 -26 877 -20 894 -20 ct 907 -20 918 -23 926 -28 ct +934 -34 940 -41 942 -49 ct 970 -41 l 959 -12 933 3 894 3 ct 866 3 845 -5 831 -22 ct +816 -38 809 -62 809 -95 ct 809 -125 816 -149 831 -165 ct 845 -182 866 -190 892 -190 ct +947 -190 975 -157 975 -91 ct 975 -87 l 842 -87 l p +943 -111 m 941 -130 936 -145 928 -154 ct 919 -163 907 -167 892 -167 ct 877 -167 865 -162 856 -152 ct +847 -142 843 -128 842 -111 ct 943 -111 l p ef +1143 -52 m 1143 -34 1136 -21 1123 -11 ct 1110 -2 1091 3 1067 3 ct 1044 3 1026 -1 1013 -8 ct +1001 -16 993 -28 989 -44 ct 1016 -50 l 1019 -40 1024 -32 1033 -28 ct 1041 -23 1052 -21 1067 -21 ct +1083 -21 1094 -23 1102 -28 ct 1109 -33 1113 -40 1113 -50 ct 1113 -57 1110 -63 1105 -68 ct +1100 -72 1092 -76 1081 -79 ct 1058 -85 l 1040 -89 1028 -94 1020 -98 ct 1013 -103 1007 -108 1003 -114 ct +998 -121 996 -129 996 -138 ct 996 -155 1002 -168 1014 -177 ct 1027 -186 1044 -190 1067 -190 ct +1088 -190 1104 -186 1116 -179 ct 1129 -172 1136 -160 1139 -144 ct 1112 -141 l +1110 -149 1105 -156 1098 -160 ct 1090 -164 1080 -167 1067 -167 ct 1053 -167 1043 -164 1036 -160 ct +1030 -156 1026 -149 1026 -141 ct 1026 -136 1028 -131 1031 -128 ct 1033 -124 1037 -121 1043 -119 ct +1048 -117 1060 -113 1077 -109 ct 1093 -105 1105 -101 1112 -97 ct 1120 -94 1125 -90 1130 -86 ct +1134 -82 1137 -77 1139 -71 ct 1142 -66 1143 -59 1143 -52 ct p ef +pom +pum +49025 8405 t +44.9 r 182 -94 m 182 -29 159 3 113 3 ct 99 3 87 0 78 -5 ct 68 -10 61 -18 55 -29 ct +54 -29 l 54 -26 54 -20 54 -13 ct 53 -6 53 -2 53 0 ct 23 0 l 23 -7 24 -19 24 -39 ct +24 -256 l 55 -256 l 55 -183 l 55 -176 55 -167 54 -157 ct 55 -157 l 61 -169 68 -177 78 -182 ct +87 -187 99 -190 113 -190 ct 136 -190 154 -182 165 -166 ct 176 -150 182 -126 182 -94 ct +p +149 -93 m 149 -119 145 -138 139 -149 ct 132 -160 120 -166 105 -166 ct 88 -166 75 -160 67 -148 ct +59 -136 55 -117 55 -91 ct 55 -67 59 -49 67 -37 ct 74 -26 87 -20 105 -20 ct 120 -20 132 -26 138 -37 ct +145 -49 149 -67 149 -93 ct p ef +199 0 m 199 -24 l 304 -163 l 205 -163 l 205 -187 l 340 -187 l 340 -163 l +236 -24 l 344 -24 l 344 0 l 199 0 l p ef +394 -226 m 394 -256 l 425 -256 l 425 -226 l 394 -226 l p +394 0 m 394 -187 l 425 -187 l 425 0 l 394 0 l p ef +632 -94 m 632 -29 609 3 563 3 ct 534 3 515 -8 505 -29 ct 504 -29 l 505 -28 505 -19 505 0 ct +505 73 l 474 73 l 474 -149 l 474 -168 473 -181 473 -187 ct 503 -187 l +503 -186 503 -185 503 -182 ct 504 -179 504 -175 504 -169 ct 504 -163 504 -159 504 -157 ct +505 -157 l 511 -168 518 -177 527 -182 ct 536 -187 548 -190 563 -190 ct 586 -190 603 -182 614 -167 ct +626 -152 632 -127 632 -94 ct p +599 -94 m 599 -120 595 -138 588 -149 ct 581 -160 570 -166 555 -166 ct 543 -166 533 -163 526 -158 ct +519 -153 514 -145 510 -134 ct 507 -123 505 -109 505 -91 ct 505 -67 509 -49 517 -37 ct +524 -26 537 -20 555 -20 ct 570 -20 581 -26 588 -37 ct 595 -48 599 -67 599 -94 ct +p ef +653 0 m 653 -22 l 659 -35 666 -47 674 -58 ct 683 -68 692 -77 701 -85 ct 710 -94 719 -101 729 -109 ct +738 -116 746 -123 753 -130 ct 761 -137 767 -145 771 -152 ct 776 -160 778 -169 778 -179 ct +778 -192 774 -203 766 -210 ct 758 -217 748 -221 734 -221 ct 720 -221 709 -217 701 -210 ct +692 -203 687 -193 686 -180 ct 654 -183 l 656 -202 665 -218 679 -229 ct 693 -241 711 -247 734 -247 ct +758 -247 777 -241 790 -229 ct 803 -218 810 -201 810 -180 ct 810 -171 808 -161 803 -152 ct +799 -143 793 -133 784 -124 ct 776 -115 759 -100 735 -81 ct 722 -70 712 -60 704 -51 ct +696 -43 690 -34 687 -26 ct 814 -26 l 814 0 l 653 0 l p ef +pom +pum +48997 9096 t +44.9 r 47 -95 m 47 -70 51 -51 59 -39 ct 67 -27 79 -21 94 -21 ct 105 -21 115 -24 122 -30 ct +130 -36 134 -46 136 -58 ct 167 -56 l 165 -38 157 -24 144 -13 ct 131 -2 115 3 95 3 ct +69 3 49 -5 36 -22 ct 22 -38 15 -62 15 -94 ct 15 -125 22 -149 36 -166 ct 49 -182 69 -190 95 -190 ct +114 -190 130 -185 142 -175 ct 155 -166 163 -152 166 -135 ct 134 -132 l 133 -143 129 -151 122 -157 ct +115 -163 106 -166 94 -166 ct 78 -166 66 -161 58 -150 ct 51 -139 47 -120 47 -95 ct +p ef +256 3 m 238 3 224 -2 214 -12 ct 205 -22 200 -35 200 -53 ct 200 -72 206 -87 219 -97 ct +232 -107 252 -113 280 -114 ct 322 -114 l 322 -125 l 322 -140 319 -151 313 -157 ct +306 -164 296 -167 282 -167 ct 268 -167 258 -165 252 -160 ct 246 -155 242 -148 241 -137 ct +208 -140 l 214 -174 239 -191 283 -191 ct 307 -191 324 -185 336 -175 ct 348 -164 354 -148 354 -128 ct +354 -48 l 354 -38 355 -31 357 -27 ct 360 -22 364 -20 371 -20 ct 374 -20 378 -20 381 -21 ct +381 -2 l 374 0 366 1 357 1 ct 346 1 338 -2 332 -8 ct 327 -14 324 -23 323 -36 ct +322 -36 l 314 -22 305 -12 295 -6 ct 284 0 271 3 256 3 ct p +263 -20 m 275 -20 285 -23 294 -28 ct 303 -33 310 -40 315 -49 ct 320 -58 322 -67 322 -77 ct +322 -92 l 288 -92 l 274 -92 263 -91 255 -88 ct 248 -85 242 -81 238 -75 ct +234 -69 232 -62 232 -52 ct 232 -42 235 -34 240 -29 ct 246 -23 253 -20 263 -20 ct +p ef +417 -95 m 417 -70 421 -51 429 -39 ct 437 -27 449 -21 464 -21 ct 475 -21 485 -24 492 -30 ct +500 -36 504 -46 506 -58 ct 537 -56 l 535 -38 527 -24 514 -13 ct 501 -2 485 3 465 3 ct +439 3 419 -5 406 -22 ct 392 -38 385 -62 385 -94 ct 385 -125 392 -149 406 -166 ct +419 -182 439 -190 465 -190 ct 484 -190 500 -185 512 -175 ct 525 -166 533 -152 536 -135 ct +504 -132 l 503 -143 499 -151 492 -157 ct 485 -163 476 -166 464 -166 ct 448 -166 436 -161 428 -150 ct +421 -139 417 -120 417 -95 ct p ef +651 -1 m 641 2 631 3 620 3 ct 595 3 583 -11 583 -39 ct 583 -164 l 561 -164 l +561 -187 l 584 -187 l 593 -228 l 614 -228 l 614 -187 l 648 -187 l +648 -164 l 614 -164 l 614 -46 l 614 -37 615 -31 618 -27 ct 621 -23 626 -22 634 -22 ct +638 -22 644 -22 651 -24 ct 651 -1 l p ef +715 -187 m 715 -69 l 715 -56 716 -47 719 -40 ct 721 -33 725 -28 730 -25 ct +736 -22 743 -21 754 -21 ct 769 -21 780 -26 789 -36 ct 798 -47 802 -61 802 -79 ct +802 -187 l 833 -187 l 833 -40 l 833 -19 833 -5 834 0 ct 805 0 l 804 -1 804 -3 804 -5 ct +804 -8 804 -11 804 -14 ct 804 -17 803 -23 803 -32 ct 803 -32 l 796 -19 787 -10 778 -5 ct +769 0 757 3 743 3 ct 723 3 708 -2 698 -12 ct 689 -22 684 -39 684 -63 ct 684 -187 l +715 -187 l p ef +1011 -52 m 1011 -34 1004 -21 991 -11 ct 978 -2 959 3 935 3 ct 912 3 894 -1 881 -8 ct +869 -16 861 -28 857 -44 ct 884 -50 l 887 -40 892 -32 901 -28 ct 909 -23 920 -21 935 -21 ct +951 -21 962 -23 970 -28 ct 977 -33 981 -40 981 -50 ct 981 -57 978 -63 973 -68 ct +968 -72 960 -76 949 -79 ct 926 -85 l 908 -89 896 -94 888 -98 ct 881 -103 875 -108 871 -114 ct +866 -121 864 -129 864 -138 ct 864 -155 870 -168 882 -177 ct 895 -186 912 -190 935 -190 ct +956 -190 972 -186 984 -179 ct 997 -172 1004 -160 1007 -144 ct 980 -141 l 978 -149 973 -156 966 -160 ct +958 -164 948 -167 935 -167 ct 921 -167 911 -164 904 -160 ct 898 -156 894 -149 894 -141 ct +894 -136 896 -131 899 -128 ct 901 -124 905 -121 911 -119 ct 916 -117 928 -113 945 -109 ct +961 -105 973 -101 980 -97 ct 988 -94 993 -90 998 -86 ct 1002 -82 1005 -77 1007 -71 ct +1010 -66 1011 -59 1011 -52 ct p ef +1233 0 m 1205 -71 l 1095 -71 l 1067 0 l 1033 0 l 1132 -243 l 1169 -243 l +1267 0 l 1233 0 l p +1150 -218 m 1149 -213 l 1146 -204 1141 -191 1136 -177 ct 1105 -97 l 1196 -97 l +1164 -177 l 1161 -185 1158 -194 1155 -204 ct 1150 -218 l p ef +1508 -124 m 1508 -99 1503 -77 1493 -58 ct 1484 -39 1470 -25 1452 -15 ct 1434 -5 1413 0 1390 0 ct +1299 0 l 1299 -243 l 1379 -243 l 1420 -243 1452 -233 1475 -212 ct 1497 -191 1508 -162 1508 -124 ct +p +1475 -124 m 1475 -154 1467 -177 1450 -193 ct 1434 -209 1410 -217 1379 -217 ct +1332 -217 l 1332 -26 l 1386 -26 l 1404 -26 1419 -30 1433 -38 ct 1446 -46 1457 -57 1464 -72 ct +1471 -87 1475 -104 1475 -124 ct p ef +1743 0 m 1743 -162 l 1743 -180 1744 -197 1745 -214 ct 1739 -193 1734 -177 1730 -166 ct +1667 0 l 1644 0 l 1580 -166 l 1571 -195 l 1565 -214 l 1566 -195 l +1566 -162 l 1566 0 l 1537 0 l 1537 -243 l 1580 -243 l 1645 -75 l +1647 -68 1649 -60 1651 -53 ct 1654 -45 1655 -39 1656 -36 ct 1657 -40 1659 -47 1661 -57 ct +1664 -66 1666 -72 1667 -75 ct 1731 -243 l 1773 -243 l 1773 0 l 1743 0 l +p ef +pom +pum +50110 8649 t +44.9 r 47 -95 m 47 -70 51 -51 59 -39 ct 67 -27 79 -21 94 -21 ct 105 -21 115 -24 122 -30 ct +130 -36 134 -46 136 -58 ct 167 -56 l 165 -38 157 -24 144 -13 ct 131 -2 115 3 95 3 ct +69 3 49 -5 36 -22 ct 22 -38 15 -62 15 -94 ct 15 -125 22 -149 36 -166 ct 49 -182 69 -190 95 -190 ct +114 -190 130 -185 142 -175 ct 155 -166 163 -152 166 -135 ct 134 -132 l 133 -143 129 -151 122 -157 ct +115 -163 106 -166 94 -166 ct 78 -166 66 -161 58 -150 ct 51 -139 47 -120 47 -95 ct +p ef +256 3 m 238 3 224 -2 214 -12 ct 205 -22 200 -35 200 -53 ct 200 -72 206 -87 219 -97 ct +232 -107 252 -113 280 -114 ct 322 -114 l 322 -125 l 322 -140 319 -151 313 -157 ct +306 -164 296 -167 282 -167 ct 268 -167 258 -165 252 -160 ct 246 -155 242 -148 241 -137 ct +208 -140 l 214 -174 239 -191 283 -191 ct 307 -191 324 -185 336 -175 ct 348 -164 354 -148 354 -128 ct +354 -48 l 354 -38 355 -31 357 -27 ct 360 -22 364 -20 371 -20 ct 374 -20 378 -20 381 -21 ct +381 -2 l 374 0 366 1 357 1 ct 346 1 338 -2 332 -8 ct 327 -14 324 -23 323 -36 ct +322 -36 l 314 -22 305 -12 295 -6 ct 284 0 271 3 256 3 ct p +263 -20 m 275 -20 285 -23 294 -28 ct 303 -33 310 -40 315 -49 ct 320 -58 322 -67 322 -77 ct +322 -92 l 288 -92 l 274 -92 263 -91 255 -88 ct 248 -85 242 -81 238 -75 ct +234 -69 232 -62 232 -52 ct 232 -42 235 -34 240 -29 ct 246 -23 253 -20 263 -20 ct +p ef +394 0 m 394 -256 l 425 -256 l 425 0 l 394 0 l p ef +497 -95 m 497 -70 501 -51 509 -39 ct 517 -27 529 -21 544 -21 ct 555 -21 565 -24 572 -30 ct +580 -36 584 -46 586 -58 ct 617 -56 l 615 -38 607 -24 594 -13 ct 581 -2 565 3 545 3 ct +519 3 499 -5 486 -22 ct 472 -38 465 -62 465 -94 ct 465 -125 472 -149 486 -166 ct +499 -182 519 -190 545 -190 ct 564 -190 580 -185 592 -175 ct 605 -166 613 -152 616 -135 ct +584 -132 l 583 -143 579 -151 572 -157 ct 565 -163 556 -166 544 -166 ct 528 -166 516 -161 508 -150 ct +501 -139 497 -120 497 -95 ct p ef +689 -187 m 689 -69 l 689 -56 690 -47 693 -40 ct 695 -33 699 -28 704 -25 ct +710 -22 717 -21 728 -21 ct 743 -21 754 -26 763 -36 ct 772 -47 776 -61 776 -79 ct +776 -187 l 807 -187 l 807 -40 l 807 -19 807 -5 808 0 ct 779 0 l 778 -1 778 -3 778 -5 ct +778 -8 778 -11 778 -14 ct 778 -17 777 -23 777 -32 ct 777 -32 l 770 -19 761 -10 752 -5 ct +743 0 731 3 717 3 ct 697 3 682 -2 672 -12 ct 663 -22 658 -39 658 -63 ct 658 -187 l +689 -187 l p ef +844 0 m 844 -256 l 875 -256 l 875 0 l 844 0 l p ef +924 -226 m 924 -256 l 955 -256 l 955 -226 l 924 -226 l p +924 0 m 924 -187 l 955 -187 l 955 0 l 924 0 l p ef +1117 0 m 1067 -77 l 1016 0 l 983 0 l 1049 -96 l 986 -187 l 1020 -187 l +1067 -114 l 1113 -187 l 1148 -187 l 1084 -96 l 1152 0 l 1117 0 l +p ef +pom +pum +50305 9115 t +44.9 r 18 -123 m 18 -162 28 -193 49 -215 ct 71 -236 100 -247 139 -247 ct 165 -247 187 -242 204 -233 ct +221 -224 234 -210 243 -190 ct 211 -180 l 205 -194 195 -204 183 -211 ct 171 -217 156 -220 138 -220 ct +110 -220 88 -212 73 -195 ct 59 -178 51 -154 51 -123 ct 51 -92 59 -68 75 -50 ct +91 -33 112 -24 140 -24 ct 156 -24 171 -26 185 -31 ct 198 -36 209 -42 218 -51 ct +218 -94 l 145 -94 l 145 -122 l 248 -122 l 248 -38 l 235 -25 220 -15 201 -8 ct +182 -1 162 3 140 3 ct 115 3 93 -2 74 -12 ct 56 -22 42 -37 32 -56 ct 23 -75 18 -97 18 -123 ct +p ef +313 -87 m 313 -66 317 -49 326 -38 ct 335 -26 348 -20 365 -20 ct 378 -20 389 -23 397 -28 ct +405 -34 411 -41 413 -49 ct 441 -41 l 430 -12 404 3 365 3 ct 337 3 316 -5 302 -22 ct +287 -38 280 -62 280 -95 ct 280 -125 287 -149 302 -165 ct 316 -182 337 -190 363 -190 ct +418 -190 446 -157 446 -91 ct 446 -87 l 313 -87 l p +414 -111 m 412 -130 407 -145 399 -154 ct 390 -163 378 -167 363 -167 ct 348 -167 336 -162 327 -152 ct +318 -142 314 -128 313 -111 ct 414 -111 l p ef +582 0 m 582 -118 l 582 -136 580 -149 575 -156 ct 570 -163 561 -166 548 -166 ct +535 -166 525 -161 517 -151 ct 509 -141 505 -127 505 -108 ct 505 0 l 474 0 l +474 -147 l 474 -168 474 -182 473 -187 ct 503 -187 l 503 -186 503 -184 503 -182 ct +503 -179 503 -176 504 -173 ct 504 -170 504 -164 504 -155 ct 505 -155 l 511 -168 519 -177 528 -182 ct +536 -187 547 -190 559 -190 ct 573 -190 584 -187 593 -182 ct 601 -176 607 -167 610 -155 ct +610 -155 l 617 -167 625 -176 634 -182 ct 643 -187 654 -190 667 -190 ct 686 -190 699 -185 708 -175 ct +717 -164 721 -148 721 -124 ct 721 0 l 690 0 l 690 -118 l 690 -136 688 -149 683 -156 ct +678 -163 669 -166 656 -166 ct 642 -166 632 -161 624 -151 ct 617 -141 613 -127 613 -108 ct +613 0 l 582 0 l p ef +905 -52 m 905 -34 898 -21 885 -11 ct 872 -2 853 3 829 3 ct 806 3 788 -1 775 -8 ct +763 -16 755 -28 751 -44 ct 778 -50 l 781 -40 786 -32 795 -28 ct 803 -23 814 -21 829 -21 ct +845 -21 856 -23 864 -28 ct 871 -33 875 -40 875 -50 ct 875 -57 872 -63 867 -68 ct +862 -72 854 -76 843 -79 ct 820 -85 l 802 -89 790 -94 782 -98 ct 775 -103 769 -108 765 -114 ct +760 -121 758 -129 758 -138 ct 758 -155 764 -168 776 -177 ct 789 -186 806 -190 829 -190 ct +850 -190 866 -186 878 -179 ct 891 -172 898 -160 901 -144 ct 874 -141 l 872 -149 867 -156 860 -160 ct +852 -164 842 -167 829 -167 ct 815 -167 805 -164 798 -160 ct 792 -156 788 -149 788 -141 ct +788 -136 790 -131 793 -128 ct 795 -124 799 -121 805 -119 ct 810 -117 822 -113 839 -109 ct +855 -105 867 -101 874 -97 ct 882 -94 887 -90 892 -86 ct 896 -82 899 -77 901 -71 ct +904 -66 905 -59 905 -52 ct p ef +988 -216 m 988 -125 l 1123 -125 l 1123 -98 l 988 -98 l 988 1 l 955 1 l +955 -243 l 1128 -243 l 1128 -216 l 988 -216 l p ef +1376 -124 m 1376 -99 1371 -77 1361 -58 ct 1352 -39 1338 -25 1320 -15 ct 1302 -5 1281 0 1258 0 ct +1167 0 l 1167 -243 l 1247 -243 l 1288 -243 1320 -233 1343 -212 ct 1365 -191 1376 -162 1376 -124 ct +p +1343 -124 m 1343 -154 1335 -177 1318 -193 ct 1302 -209 1278 -217 1247 -217 ct +1200 -217 l 1200 -26 l 1254 -26 l 1272 -26 1287 -30 1301 -38 ct 1314 -46 1325 -57 1332 -72 ct +1339 -87 1343 -104 1343 -124 ct p ef +1500 -216 m 1500 0 l 1467 0 l 1467 -216 l 1384 -216 l 1384 -243 l +1584 -243 l 1584 -216 l 1500 -216 l p ef +1826 -124 m 1826 -99 1821 -77 1811 -58 ct 1802 -39 1788 -25 1770 -15 ct 1752 -5 1731 0 1708 0 ct +1617 0 l 1617 -243 l 1697 -243 l 1738 -243 1770 -233 1793 -212 ct 1815 -191 1826 -162 1826 -124 ct +p +1793 -124 m 1793 -154 1785 -177 1768 -193 ct 1752 -209 1728 -217 1697 -217 ct +1650 -217 l 1650 -26 l 1704 -26 l 1722 -26 1737 -30 1751 -38 ct 1764 -46 1775 -57 1782 -72 ct +1789 -87 1793 -104 1793 -124 ct p ef +pom +pum +51531 8555 t +44.9 r 94 73 m 74 73 58 69 46 61 ct 34 53 26 42 23 27 ct 54 22 l 56 31 60 38 67 42 ct +75 47 84 49 95 49 ct 126 49 142 31 142 -5 ct 142 -35 l 141 -35 l 135 -23 127 -14 117 -8 ct +107 -2 95 1 81 1 ct 59 1 42 -7 31 -22 ct 20 -37 15 -61 15 -93 ct 15 -126 21 -151 32 -166 ct +44 -182 61 -190 85 -190 ct 98 -190 109 -187 119 -181 ct 129 -175 136 -166 142 -155 ct +142 -155 l 142 -159 142 -165 143 -173 ct 143 -182 144 -186 144 -186 ct 174 -186 l +173 -180 173 -167 173 -148 ct 173 -5 l 173 47 147 73 94 73 ct p +142 -94 m 142 -109 140 -122 135 -133 ct 131 -144 126 -152 118 -158 ct 110 -164 102 -167 92 -167 ct +77 -167 65 -161 58 -150 ct 51 -138 47 -120 47 -94 ct 47 -68 50 -50 57 -39 ct 64 -28 75 -22 92 -22 ct +102 -22 110 -25 118 -31 ct 125 -36 131 -45 135 -55 ct 140 -66 142 -79 142 -94 ct +p ef +367 -94 m 367 -61 359 -37 345 -21 ct 331 -5 310 3 282 3 ct 255 3 235 -5 221 -22 ct +207 -38 200 -62 200 -94 ct 200 -158 228 -190 283 -190 ct 312 -190 333 -182 346 -167 ct +360 -151 367 -127 367 -94 ct p +334 -94 m 334 -119 330 -138 322 -150 ct 315 -161 302 -167 284 -167 ct 266 -167 253 -161 245 -149 ct +236 -137 232 -119 232 -94 ct 232 -69 236 -51 244 -38 ct 252 -26 265 -20 282 -20 ct +301 -20 314 -26 322 -38 ct 330 -50 334 -68 334 -94 ct p ef +552 -94 m 552 -29 529 3 483 3 ct 469 3 457 0 448 -5 ct 438 -10 431 -18 425 -29 ct +424 -29 l 424 -26 424 -20 424 -13 ct 423 -6 423 -2 423 0 ct 393 0 l 393 -7 394 -19 394 -39 ct +394 -256 l 425 -256 l 425 -183 l 425 -176 425 -167 424 -157 ct 425 -157 l +431 -169 438 -177 448 -182 ct 457 -187 469 -190 483 -190 ct 506 -190 524 -182 535 -166 ct +546 -150 552 -126 552 -94 ct p +519 -93 m 519 -119 515 -138 509 -149 ct 502 -160 490 -166 475 -166 ct 458 -166 445 -160 437 -148 ct +429 -136 425 -117 425 -91 ct 425 -67 429 -49 437 -37 ct 444 -26 457 -20 475 -20 ct +490 -20 502 -26 508 -37 ct 515 -49 519 -67 519 -93 ct p ef +688 0 m 688 -118 l 688 -136 686 -149 681 -156 ct 676 -163 667 -166 654 -166 ct +641 -166 631 -161 623 -151 ct 615 -141 611 -127 611 -108 ct 611 0 l 580 0 l +580 -147 l 580 -168 580 -182 579 -187 ct 609 -187 l 609 -186 609 -184 609 -182 ct +609 -179 609 -176 610 -173 ct 610 -170 610 -164 610 -155 ct 611 -155 l 617 -168 625 -177 634 -182 ct +642 -187 653 -190 665 -190 ct 679 -190 690 -187 699 -182 ct 707 -176 713 -167 716 -155 ct +716 -155 l 723 -167 731 -176 740 -182 ct 749 -187 760 -190 773 -190 ct 792 -190 805 -185 814 -175 ct +823 -164 827 -148 827 -124 ct 827 0 l 796 0 l 796 -118 l 796 -136 794 -149 789 -156 ct +784 -163 775 -166 762 -166 ct 748 -166 738 -161 730 -151 ct 723 -141 719 -127 719 -108 ct +719 0 l 688 0 l p ef +988 0 m 925 -85 l 902 -66 l 902 0 l 871 0 l 871 -256 l 902 -256 l +902 -96 l 984 -187 l 1020 -187 l 944 -106 l 1024 0 l 988 0 l p ef +pom +pum +51989 8760 t +44.9 r 94 73 m 74 73 58 69 46 61 ct 34 53 26 42 23 27 ct 54 22 l 56 31 60 38 67 42 ct +75 47 84 49 95 49 ct 126 49 142 31 142 -5 ct 142 -35 l 141 -35 l 135 -23 127 -14 117 -8 ct +107 -2 95 1 81 1 ct 59 1 42 -7 31 -22 ct 20 -37 15 -61 15 -93 ct 15 -126 21 -151 32 -166 ct +44 -182 61 -190 85 -190 ct 98 -190 109 -187 119 -181 ct 129 -175 136 -166 142 -155 ct +142 -155 l 142 -159 142 -165 143 -173 ct 143 -182 144 -186 144 -186 ct 174 -186 l +173 -180 173 -167 173 -148 ct 173 -5 l 173 47 147 73 94 73 ct p +142 -94 m 142 -109 140 -122 135 -133 ct 131 -144 126 -152 118 -158 ct 110 -164 102 -167 92 -167 ct +77 -167 65 -161 58 -150 ct 51 -138 47 -120 47 -94 ct 47 -68 50 -50 57 -39 ct 64 -28 75 -22 92 -22 ct +102 -22 110 -25 118 -31 ct 125 -36 131 -45 135 -55 ct 140 -66 142 -79 142 -94 ct +p ef +209 0 m 209 -143 l 209 -156 209 -171 208 -187 ct 238 -187 l 239 -165 239 -153 239 -148 ct +240 -148 l 245 -164 250 -175 257 -181 ct 263 -187 272 -190 284 -190 ct 288 -190 292 -189 297 -188 ct +297 -160 l 293 -161 287 -162 280 -162 ct 267 -162 257 -156 251 -145 ct 244 -134 241 -118 241 -97 ct +241 0 l 209 0 l p ef +473 -94 m 473 -61 465 -37 451 -21 ct 437 -5 416 3 388 3 ct 361 3 341 -5 327 -22 ct +313 -38 306 -62 306 -94 ct 306 -158 334 -190 389 -190 ct 418 -190 439 -182 452 -167 ct +466 -151 473 -127 473 -94 ct p +440 -94 m 440 -119 436 -138 428 -150 ct 421 -161 408 -167 390 -167 ct 372 -167 359 -161 351 -149 ct +342 -137 338 -119 338 -94 ct 338 -69 342 -51 350 -38 ct 358 -26 371 -20 388 -20 ct +407 -20 420 -26 428 -38 ct 436 -50 440 -68 440 -94 ct p ef +608 0 m 608 -118 l 608 -136 606 -149 601 -156 ct 596 -163 587 -166 574 -166 ct +561 -166 551 -161 543 -151 ct 535 -141 531 -127 531 -108 ct 531 0 l 500 0 l +500 -147 l 500 -168 500 -182 499 -187 ct 529 -187 l 529 -186 529 -184 529 -182 ct +529 -179 529 -176 530 -173 ct 530 -170 530 -164 530 -155 ct 531 -155 l 537 -168 545 -177 554 -182 ct +562 -187 573 -190 585 -190 ct 599 -190 610 -187 619 -182 ct 627 -176 633 -167 636 -155 ct +636 -155 l 643 -167 651 -176 660 -182 ct 669 -187 680 -190 693 -190 ct 712 -190 725 -185 734 -175 ct +743 -164 747 -148 747 -124 ct 747 0 l 716 0 l 716 -118 l 716 -136 714 -149 709 -156 ct +704 -163 695 -166 682 -166 ct 668 -166 658 -161 650 -151 ct 643 -141 639 -127 639 -108 ct +639 0 l 608 0 l p ef +838 3 m 820 3 806 -2 796 -12 ct 787 -22 782 -35 782 -53 ct 782 -72 788 -87 801 -97 ct +814 -107 834 -113 862 -114 ct 904 -114 l 904 -125 l 904 -140 901 -151 895 -157 ct +888 -164 878 -167 864 -167 ct 850 -167 840 -165 834 -160 ct 828 -155 824 -148 823 -137 ct +790 -140 l 796 -174 821 -191 865 -191 ct 889 -191 906 -185 918 -175 ct 930 -164 936 -148 936 -128 ct +936 -48 l 936 -38 937 -31 939 -27 ct 942 -22 946 -20 953 -20 ct 956 -20 960 -20 963 -21 ct +963 -2 l 956 0 948 1 939 1 ct 928 1 920 -2 914 -8 ct 909 -14 906 -23 905 -36 ct +904 -36 l 896 -22 887 -12 877 -6 ct 866 0 853 3 838 3 ct p +845 -20 m 857 -20 867 -23 876 -28 ct 885 -33 892 -40 897 -49 ct 902 -58 904 -67 904 -77 ct +904 -92 l 870 -92 l 856 -92 845 -91 837 -88 ct 830 -85 824 -81 820 -75 ct +816 -69 814 -62 814 -52 ct 814 -42 817 -34 822 -29 ct 828 -23 835 -20 845 -20 ct +p ef +1000 -95 m 1000 -70 1004 -51 1012 -39 ct 1020 -27 1032 -21 1047 -21 ct 1058 -21 1068 -24 1075 -30 ct +1083 -36 1087 -46 1089 -58 ct 1120 -56 l 1118 -38 1110 -24 1097 -13 ct 1084 -2 1068 3 1048 3 ct +1022 3 1002 -5 989 -22 ct 975 -38 968 -62 968 -94 ct 968 -125 975 -149 989 -166 ct +1002 -182 1022 -190 1048 -190 ct 1067 -190 1083 -185 1095 -175 ct 1108 -166 1116 -152 1119 -135 ct +1087 -132 l 1086 -143 1082 -151 1075 -157 ct 1068 -163 1059 -166 1047 -166 ct +1031 -166 1019 -161 1011 -150 ct 1004 -139 1000 -120 1000 -95 ct p ef +1302 -52 m 1302 -34 1295 -21 1282 -11 ct 1269 -2 1250 3 1226 3 ct 1203 3 1185 -1 1172 -8 ct +1160 -16 1152 -28 1148 -44 ct 1175 -50 l 1178 -40 1183 -32 1192 -28 ct 1200 -23 1211 -21 1226 -21 ct +1242 -21 1253 -23 1261 -28 ct 1268 -33 1272 -40 1272 -50 ct 1272 -57 1269 -63 1264 -68 ct +1259 -72 1251 -76 1240 -79 ct 1217 -85 l 1199 -89 1187 -94 1179 -98 ct 1172 -103 1166 -108 1162 -114 ct +1157 -121 1155 -129 1155 -138 ct 1155 -155 1161 -168 1173 -177 ct 1186 -186 1203 -190 1226 -190 ct +1247 -190 1263 -186 1275 -179 ct 1288 -172 1295 -160 1298 -144 ct 1271 -141 l +1269 -149 1264 -156 1257 -160 ct 1249 -164 1239 -167 1226 -167 ct 1212 -167 1202 -164 1195 -160 ct +1189 -156 1185 -149 1185 -141 ct 1185 -136 1187 -131 1190 -128 ct 1192 -124 1196 -121 1202 -119 ct +1207 -117 1219 -113 1236 -109 ct 1252 -105 1264 -101 1271 -97 ct 1279 -94 1284 -90 1289 -86 ct +1293 -82 1296 -77 1298 -71 ct 1301 -66 1302 -59 1302 -52 ct p ef +pom +pum +52785 8630 t +44.9 r 55 -155 m 61 -167 69 -176 79 -181 ct 88 -187 100 -190 114 -190 ct 135 -190 149 -185 159 -175 ct +169 -165 173 -148 173 -124 ct 173 0 l 142 0 l 142 -118 l 142 -131 141 -141 139 -148 ct +136 -154 132 -159 127 -162 ct 121 -165 114 -166 104 -166 ct 89 -166 77 -161 69 -151 ct +60 -141 56 -127 56 -110 ct 56 0 l 24 0 l 24 -256 l 56 -256 l 56 -189 l +56 -182 55 -175 55 -168 ct 55 -160 54 -156 54 -155 ct 55 -155 l p ef +203 0 m 203 -22 l 209 -35 216 -47 224 -58 ct 233 -68 242 -77 251 -85 ct 260 -94 269 -101 279 -109 ct +288 -116 296 -123 303 -130 ct 311 -137 317 -145 321 -152 ct 326 -160 328 -169 328 -179 ct +328 -192 324 -203 316 -210 ct 308 -217 298 -221 284 -221 ct 270 -221 259 -217 251 -210 ct +242 -203 237 -193 236 -180 ct 204 -183 l 206 -202 215 -218 229 -229 ct 243 -241 261 -247 284 -247 ct +308 -247 327 -241 340 -229 ct 353 -218 360 -201 360 -180 ct 360 -171 358 -161 353 -152 ct +349 -143 343 -133 334 -124 ct 326 -115 309 -100 285 -81 ct 272 -70 262 -60 254 -51 ct +246 -43 240 -34 237 -26 ct 364 -26 l 364 0 l 203 0 l p ef +551 -80 m 551 -54 544 -34 530 -19 ct 516 -4 497 3 472 3 ct 445 3 424 -7 410 -28 ct +395 -48 388 -77 388 -116 ct 388 -158 395 -191 411 -213 ct 426 -236 447 -247 475 -247 ct +511 -247 535 -231 544 -198 ct 514 -192 l 508 -212 495 -222 474 -222 ct 457 -222 443 -214 433 -197 ct +424 -181 419 -157 419 -126 ct 424 -136 432 -144 443 -150 ct 453 -155 465 -158 478 -158 ct +500 -158 518 -151 531 -137 ct 544 -123 551 -104 551 -80 ct p +519 -79 m 519 -96 515 -110 506 -120 ct 498 -129 486 -134 470 -134 ct 456 -134 444 -130 435 -121 ct +426 -113 422 -101 422 -86 ct 422 -67 427 -52 436 -40 ct 445 -28 457 -22 471 -22 ct +486 -22 498 -27 507 -37 ct 515 -47 519 -61 519 -79 ct p ef +708 -55 m 708 0 l 679 0 l 679 -55 l 564 -55 l 564 -79 l 675 -243 l +708 -243 l 708 -79 l 742 -79 l 742 -55 l 708 -55 l p +679 -208 m 678 -207 677 -204 674 -199 ct 671 -193 669 -190 667 -187 ct 605 -96 l +595 -83 l 593 -79 l 679 -79 l 679 -208 l p ef +765 0 m 765 -143 l 765 -156 765 -171 764 -187 ct 794 -187 l 795 -165 795 -153 795 -148 ct +796 -148 l 801 -164 806 -175 813 -181 ct 819 -187 828 -190 840 -190 ct 844 -190 848 -189 853 -188 ct +853 -160 l 849 -161 843 -162 836 -162 ct 823 -162 813 -156 807 -145 ct 800 -134 797 -118 797 -97 ct +797 0 l 765 0 l p ef +895 -87 m 895 -66 899 -49 908 -38 ct 917 -26 930 -20 947 -20 ct 960 -20 971 -23 979 -28 ct +987 -34 993 -41 995 -49 ct 1023 -41 l 1012 -12 986 3 947 3 ct 919 3 898 -5 884 -22 ct +869 -38 862 -62 862 -95 ct 862 -125 869 -149 884 -165 ct 898 -182 919 -190 945 -190 ct +1000 -190 1028 -157 1028 -91 ct 1028 -87 l 895 -87 l p +996 -111 m 994 -130 989 -145 981 -154 ct 972 -163 960 -167 945 -167 ct 930 -167 918 -162 909 -152 ct +900 -142 896 -128 895 -111 ct 996 -111 l p ef +1094 -164 m 1094 -1 l 1063 -1 l 1063 -164 l 1037 -164 l 1037 -187 l +1063 -187 l 1063 -208 l 1063 -225 1067 -237 1074 -245 ct 1082 -252 1093 -256 1109 -256 ct +1117 -256 1125 -255 1131 -254 ct 1131 -230 l 1125 -231 1121 -232 1117 -232 ct +1109 -232 1103 -230 1100 -226 ct 1096 -222 1094 -214 1094 -204 ct 1094 -187 l +1131 -187 l 1131 -164 l 1094 -164 l p ef +pom +pum +53505 8573 t +44.9 r 55 -155 m 61 -167 69 -176 79 -181 ct 88 -187 100 -190 114 -190 ct 135 -190 149 -185 159 -175 ct +169 -165 173 -148 173 -124 ct 173 0 l 142 0 l 142 -118 l 142 -131 141 -141 139 -148 ct +136 -154 132 -159 127 -162 ct 121 -165 114 -166 104 -166 ct 89 -166 77 -161 69 -151 ct +60 -141 56 -127 56 -110 ct 56 0 l 24 0 l 24 -256 l 56 -256 l 56 -189 l +56 -182 55 -175 55 -168 ct 55 -160 54 -156 54 -155 ct 55 -155 l p ef +317 0 m 317 -118 l 317 -136 315 -149 310 -156 ct 305 -163 296 -166 283 -166 ct +270 -166 260 -161 252 -151 ct 244 -141 240 -127 240 -108 ct 240 0 l 209 0 l +209 -147 l 209 -168 209 -182 208 -187 ct 238 -187 l 238 -186 238 -184 238 -182 ct +238 -179 238 -176 239 -173 ct 239 -170 239 -164 239 -155 ct 240 -155 l 246 -168 254 -177 263 -182 ct +271 -187 282 -190 294 -190 ct 308 -190 319 -187 328 -182 ct 336 -176 342 -167 345 -155 ct +345 -155 l 352 -167 360 -176 369 -182 ct 378 -187 389 -190 402 -190 ct 421 -190 434 -185 443 -175 ct +452 -164 456 -148 456 -124 ct 456 0 l 425 0 l 425 -118 l 425 -136 423 -149 418 -156 ct +413 -163 404 -166 391 -166 ct 377 -166 367 -161 359 -151 ct 352 -141 348 -127 348 -108 ct +348 0 l 317 0 l p ef +608 0 m 608 -118 l 608 -136 606 -149 601 -156 ct 596 -163 587 -166 574 -166 ct +561 -166 551 -161 543 -151 ct 535 -141 531 -127 531 -108 ct 531 0 l 500 0 l +500 -147 l 500 -168 500 -182 499 -187 ct 529 -187 l 529 -186 529 -184 529 -182 ct +529 -179 529 -176 530 -173 ct 530 -170 530 -164 530 -155 ct 531 -155 l 537 -168 545 -177 554 -182 ct +562 -187 573 -190 585 -190 ct 599 -190 610 -187 619 -182 ct 627 -176 633 -167 636 -155 ct +636 -155 l 643 -167 651 -176 660 -182 ct 669 -187 680 -190 693 -190 ct 712 -190 725 -185 734 -175 ct +743 -164 747 -148 747 -124 ct 747 0 l 716 0 l 716 -118 l 716 -136 714 -149 709 -156 ct +704 -163 695 -166 682 -166 ct 668 -166 658 -161 650 -151 ct 643 -141 639 -127 639 -108 ct +639 0 l 608 0 l p ef +815 -87 m 815 -66 819 -49 828 -38 ct 837 -26 850 -20 867 -20 ct 880 -20 891 -23 899 -28 ct +907 -34 913 -41 915 -49 ct 943 -41 l 932 -12 906 3 867 3 ct 839 3 818 -5 804 -22 ct +789 -38 782 -62 782 -95 ct 782 -125 789 -149 804 -165 ct 818 -182 839 -190 865 -190 ct +920 -190 948 -157 948 -91 ct 948 -87 l 815 -87 l p +916 -111 m 914 -130 909 -145 901 -154 ct 892 -163 880 -167 865 -167 ct 850 -167 838 -162 829 -152 ct +820 -142 816 -128 815 -111 ct 916 -111 l p ef +977 0 m 977 -143 l 977 -156 977 -171 976 -187 ct 1006 -187 l 1007 -165 1007 -153 1007 -148 ct +1008 -148 l 1013 -164 1018 -175 1025 -181 ct 1031 -187 1040 -190 1052 -190 ct +1056 -190 1060 -189 1065 -188 ct 1065 -160 l 1061 -161 1055 -162 1048 -162 ct +1035 -162 1025 -156 1019 -145 ct 1012 -134 1009 -118 1009 -97 ct 1009 0 l 977 0 l +p ef +pom +pum +54524 8219 t +44.9 r 24 0 m 24 -256 l 55 -256 l 55 0 l 24 0 l p ef +261 -94 m 261 -29 238 3 192 3 ct 178 3 166 0 157 -5 ct 147 -10 140 -18 134 -29 ct +133 -29 l 133 -26 133 -20 133 -13 ct 132 -6 132 -2 132 0 ct 102 0 l 102 -7 103 -19 103 -39 ct +103 -256 l 134 -256 l 134 -183 l 134 -176 134 -167 133 -157 ct 134 -157 l +140 -169 147 -177 157 -182 ct 166 -187 178 -190 192 -190 ct 215 -190 233 -182 244 -166 ct +255 -150 261 -126 261 -94 ct p +228 -93 m 228 -119 224 -138 218 -149 ct 211 -160 199 -166 184 -166 ct 167 -166 154 -160 146 -148 ct +138 -136 134 -117 134 -91 ct 134 -67 138 -49 146 -37 ct 153 -26 166 -20 184 -20 ct +199 -20 211 -26 217 -37 ct 224 -49 228 -67 228 -93 ct p ef +397 0 m 397 -118 l 397 -136 395 -149 390 -156 ct 385 -163 376 -166 363 -166 ct +350 -166 340 -161 332 -151 ct 324 -141 320 -127 320 -108 ct 320 0 l 289 0 l +289 -147 l 289 -168 289 -182 288 -187 ct 318 -187 l 318 -186 318 -184 318 -182 ct +318 -179 318 -176 319 -173 ct 319 -170 319 -164 319 -155 ct 320 -155 l 326 -168 334 -177 343 -182 ct +351 -187 362 -190 374 -190 ct 388 -190 399 -187 408 -182 ct 416 -176 422 -167 425 -155 ct +425 -155 l 432 -167 440 -176 449 -182 ct 458 -187 469 -190 482 -190 ct 501 -190 514 -185 523 -175 ct +532 -164 536 -148 536 -124 ct 536 0 l 505 0 l 505 -118 l 505 -136 503 -149 498 -156 ct +493 -163 484 -166 471 -166 ct 457 -166 447 -161 439 -151 ct 432 -141 428 -127 428 -108 ct +428 0 l 397 0 l p ef +pom +pum +54758 8649 t +44.9 r 24 0 m 24 -256 l 55 -256 l 55 0 l 24 0 l p ef +127 -87 m 127 -66 131 -49 140 -38 ct 149 -26 162 -20 179 -20 ct 192 -20 203 -23 211 -28 ct +219 -34 225 -41 227 -49 ct 255 -41 l 244 -12 218 3 179 3 ct 151 3 130 -5 116 -22 ct +101 -38 94 -62 94 -95 ct 94 -125 101 -149 116 -165 ct 130 -182 151 -190 177 -190 ct +232 -190 260 -157 260 -91 ct 260 -87 l 127 -87 l p +228 -111 m 226 -130 221 -145 213 -154 ct 204 -163 192 -167 177 -167 ct 162 -167 150 -162 141 -152 ct +132 -142 128 -128 127 -111 ct 228 -111 l p ef +429 -52 m 429 -34 422 -21 409 -11 ct 396 -2 377 3 353 3 ct 330 3 312 -1 299 -8 ct +287 -16 279 -28 275 -44 ct 302 -50 l 305 -40 310 -32 319 -28 ct 327 -23 338 -21 353 -21 ct +369 -21 380 -23 388 -28 ct 395 -33 399 -40 399 -50 ct 399 -57 396 -63 391 -68 ct +386 -72 378 -76 367 -79 ct 344 -85 l 326 -89 314 -94 306 -98 ct 299 -103 293 -108 289 -114 ct +284 -121 282 -129 282 -138 ct 282 -155 288 -168 300 -177 ct 313 -186 330 -190 353 -190 ct +374 -190 390 -186 402 -179 ct 415 -172 422 -160 425 -144 ct 398 -141 l 396 -149 391 -156 384 -160 ct +376 -164 366 -167 353 -167 ct 339 -167 329 -164 322 -160 ct 316 -156 312 -149 312 -141 ct +312 -136 314 -131 317 -128 ct 319 -124 323 -121 329 -119 ct 334 -117 346 -113 363 -109 ct +379 -105 391 -101 398 -97 ct 406 -94 411 -90 416 -86 ct 420 -82 423 -77 425 -71 ct +428 -66 429 -59 429 -52 ct p ef +474 0 m 474 -256 l 505 -256 l 505 0 l 474 0 l p ef +553 -226 m 553 -256 l 584 -256 l 584 -226 l 553 -226 l p +553 0 m 553 -187 l 584 -187 l 584 0 l 553 0 l p ef +657 -87 m 657 -66 661 -49 670 -38 ct 679 -26 692 -20 709 -20 ct 722 -20 733 -23 741 -28 ct +749 -34 755 -41 757 -49 ct 785 -41 l 774 -12 748 3 709 3 ct 681 3 660 -5 646 -22 ct +631 -38 624 -62 624 -95 ct 624 -125 631 -149 646 -165 ct 660 -182 681 -190 707 -190 ct +762 -190 790 -157 790 -91 ct 790 -87 l 657 -87 l p +758 -111 m 756 -130 751 -145 743 -154 ct 734 -163 722 -167 707 -167 ct 692 -167 680 -162 671 -152 ct +662 -142 658 -128 657 -111 ct 758 -111 l p ef +975 -68 m 975 -45 968 -28 953 -16 ct 939 -3 919 3 892 3 ct 868 3 848 -3 834 -14 ct +819 -25 810 -41 807 -63 ct 840 -66 l 844 -37 861 -23 892 -23 ct 908 -23 920 -27 929 -34 ct +938 -42 943 -54 943 -69 ct 943 -82 937 -92 927 -100 ct 917 -107 902 -111 883 -111 ct +866 -111 l 866 -138 l 883 -138 l 900 -138 913 -142 922 -149 ct 932 -156 936 -167 936 -180 ct +936 -193 932 -203 925 -210 ct 917 -218 906 -221 891 -221 ct 877 -221 866 -218 858 -211 ct +849 -204 844 -194 843 -182 ct 812 -184 l 814 -204 822 -219 836 -230 ct 851 -241 869 -247 891 -247 ct +915 -247 934 -241 948 -230 ct 961 -219 968 -203 968 -183 ct 968 -167 964 -155 955 -145 ct +946 -135 934 -129 917 -125 ct 917 -125 l 935 -123 950 -117 960 -106 ct 970 -96 975 -83 975 -68 ct +p ef +1121 -30 m 1115 -18 1107 -10 1098 -5 ct 1088 0 1076 3 1062 3 ct 1039 3 1022 -5 1010 -21 ct +999 -37 994 -61 994 -93 ct 994 -158 1017 -190 1062 -190 ct 1077 -190 1088 -187 1098 -182 ct +1107 -177 1115 -169 1121 -158 ct 1121 -158 l 1121 -179 l 1121 -256 l 1152 -256 l +1152 -39 l 1152 -19 1152 -7 1153 0 ct 1123 0 l 1123 -2 1122 -7 1122 -13 ct +1121 -20 1121 -26 1121 -30 ct 1121 -30 l p +1026 -94 m 1026 -68 1030 -49 1037 -38 ct 1044 -27 1055 -21 1070 -21 ct 1088 -21 1101 -27 1109 -39 ct +1117 -51 1121 -70 1121 -96 ct 1121 -120 1117 -138 1109 -150 ct 1101 -161 1088 -167 1071 -167 ct +1055 -167 1044 -161 1037 -150 ct 1030 -138 1026 -120 1026 -94 ct p ef +pom +pum +55066 9004 t +44.9 r 24 0 m 24 -256 l 55 -256 l 55 0 l 24 0 l p ef +103 -226 m 103 -256 l 134 -256 l 134 -226 l 103 -226 l p +103 0 m 103 -187 l 134 -187 l 134 0 l 103 0 l p ef +341 -94 m 341 -29 318 3 272 3 ct 258 3 246 0 237 -5 ct 227 -10 220 -18 214 -29 ct +213 -29 l 213 -26 213 -20 213 -13 ct 212 -6 212 -2 212 0 ct 182 0 l 182 -7 183 -19 183 -39 ct +183 -256 l 214 -256 l 214 -183 l 214 -176 214 -167 213 -157 ct 214 -157 l +220 -169 227 -177 237 -182 ct 246 -187 258 -190 272 -190 ct 295 -190 313 -182 324 -166 ct +335 -150 341 -126 341 -94 ct p +308 -93 m 308 -119 304 -138 298 -149 ct 291 -160 279 -166 264 -166 ct 247 -166 234 -160 226 -148 ct +218 -136 214 -117 214 -91 ct 214 -67 218 -49 226 -37 ct 233 -26 246 -20 264 -20 ct +279 -20 291 -26 297 -37 ct 304 -49 308 -67 308 -93 ct p ef +427 3 m 404 3 386 -5 375 -21 ct 364 -37 359 -61 359 -93 ct 359 -158 382 -190 427 -190 ct +442 -190 453 -188 462 -183 ct 472 -178 479 -169 486 -158 ct 486 -158 l 486 -161 486 -167 487 -176 ct +487 -184 487 -188 488 -188 ct 518 -188 l 517 -182 517 -165 517 -138 ct 517 73 l +486 73 l 486 -3 l 486 -31 l 486 -31 l 480 -19 472 -10 463 -5 ct 454 0 442 3 427 3 ct +p +486 -96 m 486 -120 482 -138 474 -150 ct 466 -161 453 -167 436 -167 ct 420 -167 409 -161 402 -150 ct +395 -138 391 -119 391 -94 ct 391 -68 395 -49 402 -38 ct 409 -27 420 -21 435 -21 ct +453 -21 466 -27 474 -40 ct 482 -52 486 -71 486 -96 ct p ef +583 -187 m 583 -69 l 583 -56 584 -47 587 -40 ct 589 -33 593 -28 598 -25 ct +604 -22 611 -21 622 -21 ct 637 -21 648 -26 657 -36 ct 666 -47 670 -61 670 -79 ct +670 -187 l 701 -187 l 701 -40 l 701 -19 701 -5 702 0 ct 673 0 l 672 -1 672 -3 672 -5 ct +672 -8 672 -11 672 -14 ct 672 -17 671 -23 671 -32 ct 671 -32 l 664 -19 655 -10 646 -5 ct +637 0 625 3 611 3 ct 591 3 576 -2 566 -12 ct 557 -22 552 -39 552 -63 ct 552 -187 l +583 -187 l p ef +785 3 m 767 3 753 -2 743 -12 ct 734 -22 729 -35 729 -53 ct 729 -72 735 -87 748 -97 ct +761 -107 781 -113 809 -114 ct 851 -114 l 851 -125 l 851 -140 848 -151 842 -157 ct +835 -164 825 -167 811 -167 ct 797 -167 787 -165 781 -160 ct 775 -155 771 -148 770 -137 ct +737 -140 l 743 -174 768 -191 812 -191 ct 836 -191 853 -185 865 -175 ct 877 -164 883 -148 883 -128 ct +883 -48 l 883 -38 884 -31 886 -27 ct 889 -22 893 -20 900 -20 ct 903 -20 907 -20 910 -21 ct +910 -2 l 903 0 895 1 886 1 ct 875 1 867 -2 861 -8 ct 856 -14 853 -23 852 -36 ct +851 -36 l 843 -22 834 -12 824 -6 ct 813 0 800 3 785 3 ct p +792 -20 m 804 -20 814 -23 823 -28 ct 832 -33 839 -40 844 -49 ct 849 -58 851 -67 851 -77 ct +851 -92 l 817 -92 l 803 -92 792 -91 784 -88 ct 777 -85 771 -81 767 -75 ct +763 -69 761 -62 761 -52 ct 761 -42 764 -34 769 -29 ct 775 -23 782 -20 792 -20 ct +p ef +1042 0 m 1042 -118 l 1042 -131 1041 -140 1039 -147 ct 1036 -154 1032 -159 1027 -162 ct +1022 -165 1014 -166 1004 -166 ct 989 -166 977 -161 968 -151 ct 960 -140 956 -126 956 -108 ct +956 0 l 924 0 l 924 -147 l 924 -168 924 -182 923 -187 ct 953 -187 l 953 -186 953 -184 953 -182 ct +953 -179 953 -176 954 -173 ct 954 -170 954 -164 954 -155 ct 955 -155 l 962 -168 970 -177 979 -182 ct +989 -187 1000 -190 1014 -190 ct 1035 -190 1050 -185 1059 -175 ct 1069 -165 1073 -148 1073 -124 ct +1073 0 l 1042 0 l p ef +1180 -1 m 1170 2 1160 3 1149 3 ct 1124 3 1112 -11 1112 -39 ct 1112 -164 l 1090 -164 l +1090 -187 l 1113 -187 l 1122 -228 l 1143 -228 l 1143 -187 l 1177 -187 l +1177 -164 l 1143 -164 l 1143 -46 l 1143 -37 1144 -31 1147 -27 ct 1150 -23 1155 -22 1163 -22 ct +1167 -22 1173 -22 1180 -24 ct 1180 -1 l p ef +1245 -187 m 1245 -69 l 1245 -56 1246 -47 1249 -40 ct 1251 -33 1255 -28 1260 -25 ct +1266 -22 1273 -21 1284 -21 ct 1299 -21 1310 -26 1319 -36 ct 1328 -47 1332 -61 1332 -79 ct +1332 -187 l 1363 -187 l 1363 -40 l 1363 -19 1363 -5 1364 0 ct 1335 0 l +1334 -1 1334 -3 1334 -5 ct 1334 -8 1334 -11 1334 -14 ct 1334 -17 1333 -23 1333 -32 ct +1333 -32 l 1326 -19 1317 -10 1308 -5 ct 1299 0 1287 3 1273 3 ct 1253 3 1238 -2 1228 -12 ct +1219 -22 1214 -39 1214 -63 ct 1214 -187 l 1245 -187 l p ef +1508 0 m 1508 -118 l 1508 -136 1506 -149 1501 -156 ct 1496 -163 1487 -166 1474 -166 ct +1461 -166 1451 -161 1443 -151 ct 1435 -141 1431 -127 1431 -108 ct 1431 0 l 1400 0 l +1400 -147 l 1400 -168 1400 -182 1399 -187 ct 1429 -187 l 1429 -186 1429 -184 1429 -182 ct +1429 -179 1429 -176 1430 -173 ct 1430 -170 1430 -164 1430 -155 ct 1431 -155 l +1437 -168 1445 -177 1454 -182 ct 1462 -187 1473 -190 1485 -190 ct 1499 -190 1510 -187 1519 -182 ct +1527 -176 1533 -167 1536 -155 ct 1536 -155 l 1543 -167 1551 -176 1560 -182 ct +1569 -187 1580 -190 1593 -190 ct 1612 -190 1625 -185 1634 -175 ct 1643 -164 1647 -148 1647 -124 ct +1647 0 l 1616 0 l 1616 -118 l 1616 -136 1614 -149 1609 -156 ct 1604 -163 1595 -166 1582 -166 ct +1568 -166 1558 -161 1550 -151 ct 1543 -141 1539 -127 1539 -108 ct 1539 0 l 1508 0 l +p ef +pom +pum +56497 8237 t +44.9 r 132 0 m 132 -118 l 132 -136 130 -149 125 -156 ct 120 -163 111 -166 98 -166 ct +85 -166 75 -161 67 -151 ct 59 -141 55 -127 55 -108 ct 55 0 l 24 0 l 24 -147 l +24 -168 24 -182 23 -187 ct 53 -187 l 53 -186 53 -184 53 -182 ct 53 -179 53 -176 54 -173 ct +54 -170 54 -164 54 -155 ct 55 -155 l 61 -168 69 -177 78 -182 ct 86 -187 97 -190 109 -190 ct +123 -190 134 -187 143 -182 ct 151 -176 157 -167 160 -155 ct 160 -155 l 167 -167 175 -176 184 -182 ct +193 -187 204 -190 217 -190 ct 236 -190 249 -185 258 -175 ct 267 -164 271 -148 271 -124 ct +271 0 l 240 0 l 240 -118 l 240 -136 238 -149 233 -156 ct 228 -163 219 -166 206 -166 ct +192 -166 182 -161 174 -151 ct 167 -141 163 -127 163 -108 ct 163 0 l 132 0 l +p ef +338 -95 m 338 -70 342 -51 350 -39 ct 358 -27 370 -21 385 -21 ct 396 -21 406 -24 413 -30 ct +421 -36 425 -46 427 -58 ct 458 -56 l 456 -38 448 -24 435 -13 ct 422 -2 406 3 386 3 ct +360 3 340 -5 327 -22 ct 313 -38 306 -62 306 -94 ct 306 -125 313 -149 327 -166 ct +340 -182 360 -190 386 -190 ct 405 -190 421 -185 433 -175 ct 446 -166 454 -152 457 -135 ct +425 -132 l 424 -143 420 -151 413 -157 ct 406 -163 397 -166 385 -166 ct 369 -166 357 -161 349 -150 ct +342 -139 338 -120 338 -95 ct p ef +538 -164 m 538 -1 l 507 -1 l 507 -164 l 481 -164 l 481 -187 l 507 -187 l +507 -208 l 507 -225 511 -237 518 -245 ct 526 -252 537 -256 553 -256 ct 561 -256 569 -255 575 -254 ct +575 -230 l 569 -231 565 -232 561 -232 ct 553 -232 547 -230 544 -226 ct 540 -222 538 -214 538 -204 ct +538 -187 l 575 -187 l 575 -164 l 538 -164 l p ef +pom +pum +57124 8275 t +44.9 r 132 0 m 132 -118 l 132 -136 130 -149 125 -156 ct 120 -163 111 -166 98 -166 ct +85 -166 75 -161 67 -151 ct 59 -141 55 -127 55 -108 ct 55 0 l 24 0 l 24 -147 l +24 -168 24 -182 23 -187 ct 53 -187 l 53 -186 53 -184 53 -182 ct 53 -179 53 -176 54 -173 ct +54 -170 54 -164 54 -155 ct 55 -155 l 61 -168 69 -177 78 -182 ct 86 -187 97 -190 109 -190 ct +123 -190 134 -187 143 -182 ct 151 -176 157 -167 160 -155 ct 160 -155 l 167 -167 175 -176 184 -182 ct +193 -187 204 -190 217 -190 ct 236 -190 249 -185 258 -175 ct 267 -164 271 -148 271 -124 ct +271 0 l 240 0 l 240 -118 l 240 -136 238 -149 233 -156 ct 228 -163 219 -166 206 -166 ct +192 -166 182 -161 174 -151 ct 167 -141 163 -127 163 -108 ct 163 0 l 132 0 l +p ef +315 -226 m 315 -256 l 346 -256 l 346 -226 l 315 -226 l p +315 0 m 315 -187 l 346 -187 l 346 0 l 315 0 l p ef +394 0 m 394 -256 l 425 -256 l 425 0 l 394 0 l p ef +497 -95 m 497 -70 501 -51 509 -39 ct 517 -27 529 -21 544 -21 ct 555 -21 565 -24 572 -30 ct +580 -36 584 -46 586 -58 ct 617 -56 l 615 -38 607 -24 594 -13 ct 581 -2 565 3 545 3 ct +519 3 499 -5 486 -22 ct 472 -38 465 -62 465 -94 ct 465 -125 472 -149 486 -166 ct +499 -182 519 -190 545 -190 ct 564 -190 580 -185 592 -175 ct 605 -166 613 -152 616 -135 ct +584 -132 l 583 -143 579 -151 572 -157 ct 565 -163 556 -166 544 -166 ct 528 -166 516 -161 508 -150 ct +501 -139 497 -120 497 -95 ct p ef +pom +pum +57637 8425 t +44.9 r 142 0 m 142 -118 l 142 -131 141 -140 139 -147 ct 136 -154 132 -159 127 -162 ct +122 -165 114 -166 104 -166 ct 89 -166 77 -161 68 -151 ct 60 -140 56 -126 56 -108 ct +56 0 l 24 0 l 24 -147 l 24 -168 24 -182 23 -187 ct 53 -187 l 53 -186 53 -184 53 -182 ct +53 -179 53 -176 54 -173 ct 54 -170 54 -164 54 -155 ct 55 -155 l 62 -168 70 -177 79 -182 ct +89 -187 100 -190 114 -190 ct 135 -190 150 -185 159 -175 ct 169 -165 173 -148 173 -124 ct +173 0 l 142 0 l p ef +256 3 m 238 3 224 -2 214 -12 ct 205 -22 200 -35 200 -53 ct 200 -72 206 -87 219 -97 ct +232 -107 252 -113 280 -114 ct 322 -114 l 322 -125 l 322 -140 319 -151 313 -157 ct +306 -164 296 -167 282 -167 ct 268 -167 258 -165 252 -160 ct 246 -155 242 -148 241 -137 ct +208 -140 l 214 -174 239 -191 283 -191 ct 307 -191 324 -185 336 -175 ct 348 -164 354 -148 354 -128 ct +354 -48 l 354 -38 355 -31 357 -27 ct 360 -22 364 -20 371 -20 ct 374 -20 378 -20 381 -21 ct +381 -2 l 374 0 366 1 357 1 ct 346 1 338 -2 332 -8 ct 327 -14 324 -23 323 -36 ct +322 -36 l 314 -22 305 -12 295 -6 ct 284 0 271 3 256 3 ct p +263 -20 m 275 -20 285 -23 294 -28 ct 303 -33 310 -40 315 -49 ct 320 -58 322 -67 322 -77 ct +322 -92 l 288 -92 l 274 -92 263 -91 255 -88 ct 248 -85 242 -81 238 -75 ct +234 -69 232 -62 232 -52 ct 232 -42 235 -34 240 -29 ct 246 -23 253 -20 263 -20 ct +p ef +502 0 m 502 -118 l 502 -136 500 -149 495 -156 ct 490 -163 481 -166 468 -166 ct +455 -166 445 -161 437 -151 ct 429 -141 425 -127 425 -108 ct 425 0 l 394 0 l +394 -147 l 394 -168 394 -182 393 -187 ct 423 -187 l 423 -186 423 -184 423 -182 ct +423 -179 423 -176 424 -173 ct 424 -170 424 -164 424 -155 ct 425 -155 l 431 -168 439 -177 448 -182 ct +456 -187 467 -190 479 -190 ct 493 -190 504 -187 513 -182 ct 521 -176 527 -167 530 -155 ct +530 -155 l 537 -167 545 -176 554 -182 ct 563 -187 574 -190 587 -190 ct 606 -190 619 -185 628 -175 ct +637 -164 641 -148 641 -124 ct 641 0 l 610 0 l 610 -118 l 610 -136 608 -149 603 -156 ct +598 -163 589 -166 576 -166 ct 562 -166 552 -161 544 -151 ct 537 -141 533 -127 533 -108 ct +533 0 l 502 0 l p ef +803 -30 m 797 -18 789 -10 780 -5 ct 770 0 758 3 744 3 ct 721 3 704 -5 692 -21 ct +681 -37 676 -61 676 -93 ct 676 -158 699 -190 744 -190 ct 759 -190 770 -187 780 -182 ct +789 -177 797 -169 803 -158 ct 803 -158 l 803 -179 l 803 -256 l 834 -256 l +834 -39 l 834 -19 834 -7 835 0 ct 805 0 l 805 -2 804 -7 804 -13 ct 803 -20 803 -26 803 -30 ct +803 -30 l p +708 -94 m 708 -68 712 -49 719 -38 ct 726 -27 737 -21 752 -21 ct 770 -21 783 -27 791 -39 ct +799 -51 803 -70 803 -96 ct 803 -120 799 -138 791 -150 ct 783 -161 770 -167 753 -167 ct +737 -167 726 -161 719 -150 ct 712 -138 708 -120 708 -94 ct p ef +pom +pum +57964 8760 t +44.9 r 182 -94 m 182 -61 174 -37 160 -21 ct 146 -5 125 3 97 3 ct 70 3 50 -5 36 -22 ct +22 -38 15 -62 15 -94 ct 15 -158 43 -190 98 -190 ct 127 -190 148 -182 161 -167 ct +175 -151 182 -127 182 -94 ct p +149 -94 m 149 -119 145 -138 137 -150 ct 130 -161 117 -167 99 -167 ct 81 -167 68 -161 60 -149 ct +51 -137 47 -119 47 -94 ct 47 -69 51 -51 59 -38 ct 67 -26 80 -20 97 -20 ct 116 -20 129 -26 137 -38 ct +145 -50 149 -68 149 -94 ct p ef +317 0 m 317 -118 l 317 -136 315 -149 310 -156 ct 305 -163 296 -166 283 -166 ct +270 -166 260 -161 252 -151 ct 244 -141 240 -127 240 -108 ct 240 0 l 209 0 l +209 -147 l 209 -168 209 -182 208 -187 ct 238 -187 l 238 -186 238 -184 238 -182 ct +238 -179 238 -176 239 -173 ct 239 -170 239 -164 239 -155 ct 240 -155 l 246 -168 254 -177 263 -182 ct +271 -187 282 -190 294 -190 ct 308 -190 319 -187 328 -182 ct 336 -176 342 -167 345 -155 ct +345 -155 l 352 -167 360 -176 369 -182 ct 378 -187 389 -190 402 -190 ct 421 -190 434 -185 443 -175 ct +452 -164 456 -148 456 -124 ct 456 0 l 425 0 l 425 -118 l 425 -136 423 -149 418 -156 ct +413 -163 404 -166 391 -166 ct 377 -166 367 -161 359 -151 ct 352 -141 348 -127 348 -108 ct +348 0 l 317 0 l p ef +618 0 m 618 -118 l 618 -131 617 -140 615 -147 ct 612 -154 608 -159 603 -162 ct +598 -165 590 -166 580 -166 ct 565 -166 553 -161 544 -151 ct 536 -140 532 -126 532 -108 ct +532 0 l 500 0 l 500 -147 l 500 -168 500 -182 499 -187 ct 529 -187 l 529 -186 529 -184 529 -182 ct +529 -179 529 -176 530 -173 ct 530 -170 530 -164 530 -155 ct 531 -155 l 538 -168 546 -177 555 -182 ct +565 -187 576 -190 590 -190 ct 611 -190 626 -185 635 -175 ct 645 -165 649 -148 649 -124 ct +649 0 l 618 0 l p ef +709 -87 m 709 -66 713 -49 722 -38 ct 731 -26 744 -20 761 -20 ct 774 -20 785 -23 793 -28 ct +801 -34 807 -41 809 -49 ct 837 -41 l 826 -12 800 3 761 3 ct 733 3 712 -5 698 -22 ct +683 -38 676 -62 676 -95 ct 676 -125 683 -149 698 -165 ct 712 -182 733 -190 759 -190 ct +814 -190 842 -157 842 -91 ct 842 -87 l 709 -87 l p +810 -111 m 808 -130 803 -145 795 -154 ct 786 -163 774 -167 759 -167 ct 744 -167 732 -162 723 -152 ct +714 -142 710 -128 709 -111 ct 810 -111 l p ef +942 -1 m 932 2 922 3 911 3 ct 886 3 874 -11 874 -39 ct 874 -164 l 852 -164 l +852 -187 l 875 -187 l 884 -228 l 905 -228 l 905 -187 l 939 -187 l +939 -164 l 905 -164 l 905 -46 l 905 -37 906 -31 909 -27 ct 912 -23 917 -22 925 -22 ct +929 -22 935 -22 942 -24 ct 942 -1 l p ef +1135 -94 m 1135 -29 1112 3 1066 3 ct 1037 3 1018 -8 1008 -29 ct 1007 -29 l +1008 -28 1008 -19 1008 0 ct 1008 73 l 977 73 l 977 -149 l 977 -168 976 -181 976 -187 ct +1006 -187 l 1006 -186 1006 -185 1006 -182 ct 1007 -179 1007 -175 1007 -169 ct +1007 -163 1007 -159 1007 -157 ct 1008 -157 l 1014 -168 1021 -177 1030 -182 ct +1039 -187 1051 -190 1066 -190 ct 1089 -190 1106 -182 1117 -167 ct 1129 -152 1135 -127 1135 -94 ct +p +1102 -94 m 1102 -120 1098 -138 1091 -149 ct 1084 -160 1073 -166 1058 -166 ct +1046 -166 1036 -163 1029 -158 ct 1022 -153 1017 -145 1013 -134 ct 1010 -123 1008 -109 1008 -91 ct +1008 -67 1012 -49 1020 -37 ct 1027 -26 1040 -20 1058 -20 ct 1073 -20 1084 -26 1091 -37 ct +1098 -48 1102 -67 1102 -94 ct p ef +1320 -94 m 1320 -29 1297 3 1251 3 ct 1222 3 1203 -8 1193 -29 ct 1192 -29 l +1193 -28 1193 -19 1193 0 ct 1193 73 l 1162 73 l 1162 -149 l 1162 -168 1161 -181 1161 -187 ct +1191 -187 l 1191 -186 1191 -185 1191 -182 ct 1192 -179 1192 -175 1192 -169 ct +1192 -163 1192 -159 1192 -157 ct 1193 -157 l 1199 -168 1206 -177 1215 -182 ct +1224 -187 1236 -190 1251 -190 ct 1274 -190 1291 -182 1302 -167 ct 1314 -152 1320 -127 1320 -94 ct +p +1287 -94 m 1287 -120 1283 -138 1276 -149 ct 1269 -160 1258 -166 1243 -166 ct +1231 -166 1221 -163 1214 -158 ct 1207 -153 1202 -145 1198 -134 ct 1195 -123 1193 -109 1193 -91 ct +1193 -67 1197 -49 1205 -37 ct 1212 -26 1225 -20 1243 -20 ct 1258 -20 1269 -26 1276 -37 ct +1283 -48 1287 -67 1287 -94 ct p ef +pom +pum +58984 8405 t +44.9 r 164 -52 m 164 -34 157 -21 144 -11 ct 131 -2 112 3 88 3 ct 65 3 47 -1 34 -8 ct +22 -16 14 -28 10 -44 ct 37 -50 l 40 -40 45 -32 54 -28 ct 62 -23 73 -21 88 -21 ct +104 -21 115 -23 123 -28 ct 130 -33 134 -40 134 -50 ct 134 -57 131 -63 126 -68 ct +121 -72 113 -76 102 -79 ct 79 -85 l 61 -89 49 -94 41 -98 ct 34 -103 28 -108 24 -114 ct +19 -121 17 -129 17 -138 ct 17 -155 23 -168 35 -177 ct 48 -186 65 -190 88 -190 ct +109 -190 125 -186 137 -179 ct 150 -172 157 -160 160 -144 ct 133 -141 l 131 -149 126 -156 119 -160 ct +111 -164 101 -167 88 -167 ct 74 -167 64 -164 57 -160 ct 51 -156 47 -149 47 -141 ct +47 -136 49 -131 52 -128 ct 54 -124 58 -121 64 -119 ct 69 -117 81 -113 98 -109 ct +114 -105 126 -101 133 -97 ct 141 -94 146 -90 151 -86 ct 155 -82 158 -77 160 -71 ct +163 -66 164 -59 164 -52 ct p ef +209 -226 m 209 -256 l 240 -256 l 240 -226 l 209 -226 l p +240 23 m 240 40 236 53 229 61 ct 222 69 212 73 198 73 ct 189 73 182 72 176 71 ct +176 47 l 187 49 l 195 49 201 46 204 42 ct 207 38 209 30 209 18 ct 209 -187 l +240 -187 l 240 23 l p ef +313 -87 m 313 -66 317 -49 326 -38 ct 335 -26 348 -20 365 -20 ct 378 -20 389 -23 397 -28 ct +405 -34 411 -41 413 -49 ct 441 -41 l 430 -12 404 3 365 3 ct 337 3 316 -5 302 -22 ct +287 -38 280 -62 280 -95 ct 280 -125 287 -149 302 -165 ct 316 -182 337 -190 363 -190 ct +418 -190 446 -157 446 -91 ct 446 -87 l 313 -87 l p +414 -111 m 412 -130 407 -145 399 -154 ct 390 -163 378 -167 363 -167 ct 348 -167 336 -162 327 -152 ct +318 -142 314 -128 313 -111 ct 414 -111 l p ef +592 0 m 592 -118 l 592 -131 591 -140 589 -147 ct 586 -154 582 -159 577 -162 ct +572 -165 564 -166 554 -166 ct 539 -166 527 -161 518 -151 ct 510 -140 506 -126 506 -108 ct +506 0 l 474 0 l 474 -147 l 474 -168 474 -182 473 -187 ct 503 -187 l 503 -186 503 -184 503 -182 ct +503 -179 503 -176 504 -173 ct 504 -170 504 -164 504 -155 ct 505 -155 l 512 -168 520 -177 529 -182 ct +539 -187 550 -190 564 -190 ct 585 -190 600 -185 609 -175 ct 619 -165 623 -148 623 -124 ct +623 0 l 592 0 l p ef +729 73 m 709 73 693 69 681 61 ct 669 53 661 42 658 27 ct 689 22 l 691 31 695 38 702 42 ct +710 47 719 49 730 49 ct 761 49 777 31 777 -5 ct 777 -35 l 776 -35 l 770 -23 762 -14 752 -8 ct +742 -2 730 1 716 1 ct 694 1 677 -7 666 -22 ct 655 -37 650 -61 650 -93 ct 650 -126 656 -151 667 -166 ct +679 -182 696 -190 720 -190 ct 733 -190 744 -187 754 -181 ct 764 -175 771 -166 777 -155 ct +777 -155 l 777 -159 777 -165 778 -173 ct 778 -182 779 -186 779 -186 ct 809 -186 l +808 -180 808 -167 808 -148 ct 808 -5 l 808 47 782 73 729 73 ct p +777 -94 m 777 -109 775 -122 770 -133 ct 766 -144 761 -152 753 -158 ct 745 -164 737 -167 727 -167 ct +712 -167 700 -161 693 -150 ct 686 -138 682 -120 682 -94 ct 682 -68 685 -50 692 -39 ct +699 -28 710 -22 727 -22 ct 737 -22 745 -25 753 -31 ct 760 -36 766 -45 770 -55 ct +775 -66 777 -79 777 -94 ct p ef +pom +pum +59517 8537 t +44.9 r 164 -52 m 164 -34 157 -21 144 -11 ct 131 -2 112 3 88 3 ct 65 3 47 -1 34 -8 ct +22 -16 14 -28 10 -44 ct 37 -50 l 40 -40 45 -32 54 -28 ct 62 -23 73 -21 88 -21 ct +104 -21 115 -23 123 -28 ct 130 -33 134 -40 134 -50 ct 134 -57 131 -63 126 -68 ct +121 -72 113 -76 102 -79 ct 79 -85 l 61 -89 49 -94 41 -98 ct 34 -103 28 -108 24 -114 ct +19 -121 17 -129 17 -138 ct 17 -155 23 -168 35 -177 ct 48 -186 65 -190 88 -190 ct +109 -190 125 -186 137 -179 ct 150 -172 157 -160 160 -144 ct 133 -141 l 131 -149 126 -156 119 -160 ct +111 -164 101 -167 88 -167 ct 74 -167 64 -164 57 -160 ct 51 -156 47 -149 47 -141 ct +47 -136 49 -131 52 -128 ct 54 -124 58 -121 64 -119 ct 69 -117 81 -113 98 -109 ct +114 -105 126 -101 133 -97 ct 141 -94 146 -90 151 -86 ct 155 -82 158 -77 160 -71 ct +163 -66 164 -59 164 -52 ct p ef +367 -94 m 367 -61 359 -37 345 -21 ct 331 -5 310 3 282 3 ct 255 3 235 -5 221 -22 ct +207 -38 200 -62 200 -94 ct 200 -158 228 -190 283 -190 ct 312 -190 333 -182 346 -167 ct +360 -151 367 -127 367 -94 ct p +334 -94 m 334 -119 330 -138 322 -150 ct 315 -161 302 -167 284 -167 ct 266 -167 253 -161 245 -149 ct +236 -137 232 -119 232 -94 ct 232 -69 236 -51 244 -38 ct 252 -26 265 -20 282 -20 ct +301 -20 314 -26 322 -38 ct 330 -50 334 -68 334 -94 ct p ef +552 -94 m 552 -29 529 3 483 3 ct 454 3 435 -8 425 -29 ct 424 -29 l 425 -28 425 -19 425 0 ct +425 73 l 394 73 l 394 -149 l 394 -168 393 -181 393 -187 ct 423 -187 l +423 -186 423 -185 423 -182 ct 424 -179 424 -175 424 -169 ct 424 -163 424 -159 424 -157 ct +425 -157 l 431 -168 438 -177 447 -182 ct 456 -187 468 -190 483 -190 ct 506 -190 523 -182 534 -167 ct +546 -152 552 -127 552 -94 ct p +519 -94 m 519 -120 515 -138 508 -149 ct 501 -160 490 -166 475 -166 ct 463 -166 453 -163 446 -158 ct +439 -153 434 -145 430 -134 ct 427 -123 425 -109 425 -91 ct 425 -67 429 -49 437 -37 ct +444 -26 457 -20 475 -20 ct 490 -20 501 -26 508 -37 ct 515 -48 519 -67 519 -94 ct +p ef +580 0 m 580 -256 l 611 -256 l 611 0 l 580 0 l p ef +683 -87 m 683 -66 687 -49 696 -38 ct 705 -26 718 -20 735 -20 ct 748 -20 759 -23 767 -28 ct +775 -34 781 -41 783 -49 ct 811 -41 l 800 -12 774 3 735 3 ct 707 3 686 -5 672 -22 ct +657 -38 650 -62 650 -95 ct 650 -125 657 -149 672 -165 ct 686 -182 707 -190 733 -190 ct +788 -190 816 -157 816 -91 ct 816 -87 l 683 -87 l p +784 -111 m 782 -130 777 -145 769 -154 ct 760 -163 748 -167 733 -167 ct 718 -167 706 -162 697 -152 ct +688 -142 684 -128 683 -111 ct 784 -111 l p ef +958 0 m 908 -77 l 857 0 l 824 0 l 890 -96 l 827 -187 l 861 -187 l +908 -114 l 954 -187 l 989 -187 l 925 -96 l 993 0 l 958 0 l p ef +pom +pum +60050 8666 t +44.9 r 164 -52 m 164 -34 157 -21 144 -11 ct 131 -2 112 3 88 3 ct 65 3 47 -1 34 -8 ct +22 -16 14 -28 10 -44 ct 37 -50 l 40 -40 45 -32 54 -28 ct 62 -23 73 -21 88 -21 ct +104 -21 115 -23 123 -28 ct 130 -33 134 -40 134 -50 ct 134 -57 131 -63 126 -68 ct +121 -72 113 -76 102 -79 ct 79 -85 l 61 -89 49 -94 41 -98 ct 34 -103 28 -108 24 -114 ct +19 -121 17 -129 17 -138 ct 17 -155 23 -168 35 -177 ct 48 -186 65 -190 88 -190 ct +109 -190 125 -186 137 -179 ct 150 -172 157 -160 160 -144 ct 133 -141 l 131 -149 126 -156 119 -160 ct +111 -164 101 -167 88 -167 ct 74 -167 64 -164 57 -160 ct 51 -156 47 -149 47 -141 ct +47 -136 49 -131 52 -128 ct 54 -124 58 -121 64 -119 ct 69 -117 81 -113 98 -109 ct +114 -105 126 -101 133 -97 ct 141 -94 146 -90 151 -86 ct 155 -82 158 -77 160 -71 ct +163 -66 164 -59 164 -52 ct p ef +367 -94 m 367 -29 344 3 298 3 ct 269 3 250 -8 240 -29 ct 239 -29 l 240 -28 240 -19 240 0 ct +240 73 l 209 73 l 209 -149 l 209 -168 208 -181 208 -187 ct 238 -187 l +238 -186 238 -185 238 -182 ct 239 -179 239 -175 239 -169 ct 239 -163 239 -159 239 -157 ct +240 -157 l 246 -168 253 -177 262 -182 ct 271 -187 283 -190 298 -190 ct 321 -190 338 -182 349 -167 ct +361 -152 367 -127 367 -94 ct p +334 -94 m 334 -120 330 -138 323 -149 ct 316 -160 305 -166 290 -166 ct 278 -166 268 -163 261 -158 ct +254 -153 249 -145 245 -134 ct 242 -123 240 -109 240 -91 ct 240 -67 244 -49 252 -37 ct +259 -26 272 -20 290 -20 ct 305 -20 316 -26 323 -37 ct 330 -48 334 -67 334 -94 ct +p ef +425 -155 m 431 -167 439 -176 449 -181 ct 458 -187 470 -190 484 -190 ct 505 -190 519 -185 529 -175 ct +539 -165 543 -148 543 -124 ct 543 0 l 512 0 l 512 -118 l 512 -131 511 -141 509 -148 ct +506 -154 502 -159 497 -162 ct 491 -165 484 -166 474 -166 ct 459 -166 447 -161 439 -151 ct +430 -141 426 -127 426 -110 ct 426 0 l 394 0 l 394 -256 l 426 -256 l 426 -189 l +426 -182 425 -175 425 -168 ct 425 -160 424 -156 424 -155 ct 425 -155 l p ef +580 -226 m 580 -256 l 611 -256 l 611 -226 l 580 -226 l p +580 0 m 580 -187 l 611 -187 l 611 0 l 580 0 l p ef +777 0 m 777 -118 l 777 -131 776 -140 774 -147 ct 771 -154 767 -159 762 -162 ct +757 -165 749 -166 739 -166 ct 724 -166 712 -161 703 -151 ct 695 -140 691 -126 691 -108 ct +691 0 l 659 0 l 659 -147 l 659 -168 659 -182 658 -187 ct 688 -187 l 688 -186 688 -184 688 -182 ct +688 -179 688 -176 689 -173 ct 689 -170 689 -164 689 -155 ct 690 -155 l 697 -168 705 -177 714 -182 ct +724 -187 735 -190 749 -190 ct 770 -190 785 -185 794 -175 ct 804 -165 808 -148 808 -124 ct +808 0 l 777 0 l p ef +958 0 m 908 -77 l 857 0 l 824 0 l 890 -96 l 827 -187 l 861 -187 l +908 -114 l 954 -187 l 989 -187 l 925 -96 l 993 0 l 958 0 l p ef +1186 -68 m 1186 -45 1179 -28 1164 -16 ct 1150 -3 1130 3 1103 3 ct 1079 3 1059 -3 1045 -14 ct +1030 -25 1021 -41 1018 -63 ct 1051 -66 l 1055 -37 1072 -23 1103 -23 ct 1119 -23 1131 -27 1140 -34 ct +1149 -42 1154 -54 1154 -69 ct 1154 -82 1148 -92 1138 -100 ct 1128 -107 1113 -111 1094 -111 ct +1077 -111 l 1077 -138 l 1094 -138 l 1111 -138 1124 -142 1133 -149 ct 1143 -156 1147 -167 1147 -180 ct +1147 -193 1143 -203 1136 -210 ct 1128 -218 1117 -221 1102 -221 ct 1088 -221 1077 -218 1069 -211 ct +1060 -204 1055 -194 1054 -182 ct 1023 -184 l 1025 -204 1033 -219 1047 -230 ct +1062 -241 1080 -247 1102 -247 ct 1126 -247 1145 -241 1159 -230 ct 1172 -219 1179 -203 1179 -183 ct +1179 -167 1175 -155 1166 -145 ct 1157 -135 1145 -129 1128 -125 ct 1128 -125 l +1146 -123 1161 -117 1171 -106 ct 1181 -96 1186 -83 1186 -68 ct p ef +pom +pum +60695 8685 t +44.9 r 14 0 m 14 -24 l 119 -163 l 20 -163 l 20 -187 l 155 -187 l 155 -163 l +51 -24 l 159 -24 l 159 0 l 14 0 l p ef +233 -87 m 233 -66 237 -49 246 -38 ct 255 -26 268 -20 285 -20 ct 298 -20 309 -23 317 -28 ct +325 -34 331 -41 333 -49 ct 361 -41 l 350 -12 324 3 285 3 ct 257 3 236 -5 222 -22 ct +207 -38 200 -62 200 -95 ct 200 -125 207 -149 222 -165 ct 236 -182 257 -190 283 -190 ct +338 -190 366 -157 366 -91 ct 366 -87 l 233 -87 l p +334 -111 m 332 -130 327 -145 319 -154 ct 310 -163 298 -167 283 -167 ct 268 -167 256 -162 247 -152 ct +238 -142 234 -128 233 -111 ct 334 -111 l p ef +424 -187 m 424 -69 l 424 -56 425 -47 428 -40 ct 430 -33 434 -28 439 -25 ct +445 -22 452 -21 463 -21 ct 478 -21 489 -26 498 -36 ct 507 -47 511 -61 511 -79 ct +511 -187 l 542 -187 l 542 -40 l 542 -19 542 -5 543 0 ct 514 0 l 513 -1 513 -3 513 -5 ct +513 -8 513 -11 513 -14 ct 513 -17 512 -23 512 -32 ct 512 -32 l 505 -19 496 -10 487 -5 ct +478 0 466 3 452 3 ct 432 3 417 -2 407 -12 ct 398 -22 393 -39 393 -63 ct 393 -187 l +424 -187 l p ef +720 -52 m 720 -34 713 -21 700 -11 ct 687 -2 668 3 644 3 ct 621 3 603 -1 590 -8 ct +578 -16 570 -28 566 -44 ct 593 -50 l 596 -40 601 -32 610 -28 ct 618 -23 629 -21 644 -21 ct +660 -21 671 -23 679 -28 ct 686 -33 690 -40 690 -50 ct 690 -57 687 -63 682 -68 ct +677 -72 669 -76 658 -79 ct 635 -85 l 617 -89 605 -94 597 -98 ct 590 -103 584 -108 580 -114 ct +575 -121 573 -129 573 -138 ct 573 -155 579 -168 591 -177 ct 604 -186 621 -190 644 -190 ct +665 -190 681 -186 693 -179 ct 706 -172 713 -160 716 -144 ct 689 -141 l 687 -149 682 -156 675 -160 ct +667 -164 657 -167 644 -167 ct 630 -167 620 -164 613 -160 ct 607 -156 603 -149 603 -141 ct +603 -136 605 -131 608 -128 ct 610 -124 614 -121 620 -119 ct 625 -117 637 -113 654 -109 ct +670 -105 682 -101 689 -97 ct 697 -94 702 -90 707 -86 ct 711 -82 714 -77 716 -71 ct +719 -66 720 -59 720 -52 ct p ef +873 0 m 873 -118 l 873 -136 871 -149 866 -156 ct 861 -163 852 -166 839 -166 ct +826 -166 816 -161 808 -151 ct 800 -141 796 -127 796 -108 ct 796 0 l 765 0 l +765 -147 l 765 -168 765 -182 764 -187 ct 794 -187 l 794 -186 794 -184 794 -182 ct +794 -179 794 -176 795 -173 ct 795 -170 795 -164 795 -155 ct 796 -155 l 802 -168 810 -177 819 -182 ct +827 -187 838 -190 850 -190 ct 864 -190 875 -187 884 -182 ct 892 -176 898 -167 901 -155 ct +901 -155 l 908 -167 916 -176 925 -182 ct 934 -187 945 -190 958 -190 ct 977 -190 990 -185 999 -175 ct +1008 -164 1012 -148 1012 -124 ct 1012 0 l 981 0 l 981 -118 l 981 -136 979 -149 974 -156 ct +969 -163 960 -166 947 -166 ct 933 -166 923 -161 915 -151 ct 908 -141 904 -127 904 -108 ct +904 0 l 873 0 l p ef +1214 -94 m 1214 -29 1191 3 1145 3 ct 1116 3 1097 -8 1087 -29 ct 1086 -29 l +1087 -28 1087 -19 1087 0 ct 1087 73 l 1056 73 l 1056 -149 l 1056 -168 1055 -181 1055 -187 ct +1085 -187 l 1085 -186 1085 -185 1085 -182 ct 1086 -179 1086 -175 1086 -169 ct +1086 -163 1086 -159 1086 -157 ct 1087 -157 l 1093 -168 1100 -177 1109 -182 ct +1118 -187 1130 -190 1145 -190 ct 1168 -190 1185 -182 1196 -167 ct 1208 -152 1214 -127 1214 -94 ct +p +1181 -94 m 1181 -120 1177 -138 1170 -149 ct 1163 -160 1152 -166 1137 -166 ct +1125 -166 1115 -163 1108 -158 ct 1101 -153 1096 -145 1092 -134 ct 1089 -123 1087 -109 1087 -91 ct +1087 -67 1091 -49 1099 -37 ct 1106 -26 1119 -20 1137 -20 ct 1152 -20 1163 -26 1170 -37 ct +1177 -48 1181 -67 1181 -94 ct p ef +pom +pum +46633 7473 t +183 -122 m 183 -81 175 -50 161 -29 ct 147 -8 126 3 98 3 ct 70 3 49 -8 35 -29 ct +21 -50 14 -81 14 -122 ct 14 -164 21 -195 34 -216 ct 48 -237 69 -247 99 -247 ct +127 -247 149 -236 162 -215 ct 176 -194 183 -163 183 -122 ct p +151 -122 m 151 -157 147 -182 139 -198 ct 131 -214 117 -222 99 -222 ct 80 -222 66 -214 58 -199 ct +49 -183 45 -158 45 -122 ct 45 -88 49 -62 58 -46 ct 66 -30 80 -22 98 -22 ct 116 -22 130 -31 138 -47 ct +147 -63 151 -88 151 -122 ct p ef +217 0 m 217 -38 l 251 -38 l 251 0 l 217 0 l p ef +474 -122 m 474 -81 466 -50 452 -29 ct 438 -8 417 3 389 3 ct 361 3 340 -8 326 -29 ct +312 -50 305 -81 305 -122 ct 305 -164 312 -195 325 -216 ct 339 -237 360 -247 390 -247 ct +418 -247 440 -236 453 -215 ct 467 -194 474 -163 474 -122 ct p +442 -122 m 442 -157 438 -182 430 -198 ct 422 -214 408 -222 390 -222 ct 371 -222 357 -214 349 -199 ct +340 -183 336 -158 336 -122 ct 336 -88 340 -62 349 -46 ct 357 -30 371 -22 389 -22 ct +407 -22 421 -31 429 -47 ct 438 -63 442 -88 442 -122 ct p ef +659 -122 m 659 -81 651 -50 637 -29 ct 623 -8 602 3 574 3 ct 546 3 525 -8 511 -29 ct +497 -50 490 -81 490 -122 ct 490 -164 497 -195 510 -216 ct 524 -237 545 -247 575 -247 ct +603 -247 625 -236 638 -215 ct 652 -194 659 -163 659 -122 ct p +627 -122 m 627 -157 623 -182 615 -198 ct 607 -214 593 -222 575 -222 ct 556 -222 542 -214 534 -199 ct +525 -183 521 -158 521 -122 ct 521 -88 525 -62 534 -46 ct 542 -30 556 -22 574 -22 ct +592 -22 606 -31 614 -47 ct 623 -63 627 -88 627 -122 ct p ef +962 -75 m 962 -50 958 -31 948 -18 ct 939 -5 925 2 907 2 ct 889 2 876 -4 867 -17 ct +857 -30 853 -50 853 -75 ct 853 -101 857 -121 866 -134 ct 875 -147 889 -153 908 -153 ct +927 -153 940 -146 949 -133 ct 958 -120 962 -101 962 -75 ct p +752 0 m 725 0 l 884 -243 l 911 -243 l 752 0 l p +729 -245 m 747 -245 761 -239 770 -226 ct 778 -213 783 -194 783 -168 ct 783 -143 778 -124 769 -111 ct +760 -97 746 -91 728 -91 ct 710 -91 696 -97 687 -110 ct 678 -124 674 -143 674 -168 ct +674 -194 678 -213 687 -226 ct 696 -239 710 -245 729 -245 ct p +937 -75 m 937 -96 935 -111 930 -120 ct 926 -129 918 -134 908 -134 ct 897 -134 890 -129 885 -120 ct +881 -111 878 -96 878 -75 ct 878 -55 880 -41 885 -31 ct 890 -22 897 -17 907 -17 ct +918 -17 925 -22 930 -31 ct 934 -41 937 -56 937 -75 ct p +758 -168 m 758 -188 755 -203 751 -212 ct 747 -222 739 -226 729 -226 ct 718 -226 710 -222 706 -213 ct +701 -204 699 -189 699 -168 ct 699 -148 701 -134 706 -124 ct 710 -115 718 -110 729 -110 ct +739 -110 746 -115 751 -124 ct 755 -134 758 -149 758 -168 ct p ef +pom +pum +46633 6647 t +182 -80 m 182 -54 174 -34 159 -19 ct 143 -4 122 3 95 3 ct 73 3 54 -2 41 -12 ct +27 -22 18 -36 14 -55 ct 46 -58 l 52 -34 69 -22 96 -22 ct 113 -22 126 -27 135 -37 ct +145 -47 149 -61 149 -79 ct 149 -94 145 -106 135 -116 ct 126 -125 113 -130 97 -130 ct +88 -130 80 -129 73 -126 ct 66 -123 59 -119 52 -113 ct 21 -113 l 29 -243 l 167 -243 l +167 -217 l 58 -217 l 53 -140 l 66 -150 83 -155 103 -155 ct 127 -155 146 -148 160 -134 ct +174 -120 182 -102 182 -80 ct p ef +217 0 m 217 -38 l 251 -38 l 251 0 l 217 0 l p ef +474 -122 m 474 -81 466 -50 452 -29 ct 438 -8 417 3 389 3 ct 361 3 340 -8 326 -29 ct +312 -50 305 -81 305 -122 ct 305 -164 312 -195 325 -216 ct 339 -237 360 -247 390 -247 ct +418 -247 440 -236 453 -215 ct 467 -194 474 -163 474 -122 ct p +442 -122 m 442 -157 438 -182 430 -198 ct 422 -214 408 -222 390 -222 ct 371 -222 357 -214 349 -199 ct +340 -183 336 -158 336 -122 ct 336 -88 340 -62 349 -46 ct 357 -30 371 -22 389 -22 ct +407 -22 421 -31 429 -47 ct 438 -63 442 -88 442 -122 ct p ef +659 -122 m 659 -81 651 -50 637 -29 ct 623 -8 602 3 574 3 ct 546 3 525 -8 511 -29 ct +497 -50 490 -81 490 -122 ct 490 -164 497 -195 510 -216 ct 524 -237 545 -247 575 -247 ct +603 -247 625 -236 638 -215 ct 652 -194 659 -163 659 -122 ct p +627 -122 m 627 -157 623 -182 615 -198 ct 607 -214 593 -222 575 -222 ct 556 -222 542 -214 534 -199 ct +525 -183 521 -158 521 -122 ct 521 -88 525 -62 534 -46 ct 542 -30 556 -22 574 -22 ct +592 -22 606 -31 614 -47 ct 623 -63 627 -88 627 -122 ct p ef +962 -75 m 962 -50 958 -31 948 -18 ct 939 -5 925 2 907 2 ct 889 2 876 -4 867 -17 ct +857 -30 853 -50 853 -75 ct 853 -101 857 -121 866 -134 ct 875 -147 889 -153 908 -153 ct +927 -153 940 -146 949 -133 ct 958 -120 962 -101 962 -75 ct p +752 0 m 725 0 l 884 -243 l 911 -243 l 752 0 l p +729 -245 m 747 -245 761 -239 770 -226 ct 778 -213 783 -194 783 -168 ct 783 -143 778 -124 769 -111 ct +760 -97 746 -91 728 -91 ct 710 -91 696 -97 687 -110 ct 678 -124 674 -143 674 -168 ct +674 -194 678 -213 687 -226 ct 696 -239 710 -245 729 -245 ct p +937 -75 m 937 -96 935 -111 930 -120 ct 926 -129 918 -134 908 -134 ct 897 -134 890 -129 885 -120 ct +881 -111 878 -96 878 -75 ct 878 -55 880 -41 885 -31 ct 890 -22 897 -17 907 -17 ct +918 -17 925 -22 930 -31 ct 934 -41 937 -56 937 -75 ct p +758 -168 m 758 -188 755 -203 751 -212 ct 747 -222 739 -226 729 -226 ct 718 -226 710 -222 706 -213 ct +701 -204 699 -189 699 -168 ct 699 -148 701 -134 706 -124 ct 710 -115 718 -110 729 -110 ct +739 -110 746 -115 751 -124 ct 755 -134 758 -149 758 -168 ct p ef +pom +pum +46448 5822 t +27 0 m 27 -26 l 89 -26 l 89 -213 l 34 -174 l 34 -204 l 91 -243 l +120 -243 l 120 -26 l 179 -26 l 179 0 l 27 0 l p ef +368 -122 m 368 -81 360 -50 346 -29 ct 332 -8 311 3 283 3 ct 255 3 234 -8 220 -29 ct +206 -50 199 -81 199 -122 ct 199 -164 206 -195 219 -216 ct 233 -237 254 -247 284 -247 ct +312 -247 334 -236 347 -215 ct 361 -194 368 -163 368 -122 ct p +336 -122 m 336 -157 332 -182 324 -198 ct 316 -214 302 -222 284 -222 ct 265 -222 251 -214 243 -199 ct +234 -183 230 -158 230 -122 ct 230 -88 234 -62 243 -46 ct 251 -30 265 -22 283 -22 ct +301 -22 315 -31 323 -47 ct 332 -63 336 -88 336 -122 ct p ef +402 0 m 402 -38 l 436 -38 l 436 0 l 402 0 l p ef +659 -122 m 659 -81 651 -50 637 -29 ct 623 -8 602 3 574 3 ct 546 3 525 -8 511 -29 ct +497 -50 490 -81 490 -122 ct 490 -164 497 -195 510 -216 ct 524 -237 545 -247 575 -247 ct +603 -247 625 -236 638 -215 ct 652 -194 659 -163 659 -122 ct p +627 -122 m 627 -157 623 -182 615 -198 ct 607 -214 593 -222 575 -222 ct 556 -222 542 -214 534 -199 ct +525 -183 521 -158 521 -122 ct 521 -88 525 -62 534 -46 ct 542 -30 556 -22 574 -22 ct +592 -22 606 -31 614 -47 ct 623 -63 627 -88 627 -122 ct p ef +844 -122 m 844 -81 836 -50 822 -29 ct 808 -8 787 3 759 3 ct 731 3 710 -8 696 -29 ct +682 -50 675 -81 675 -122 ct 675 -164 682 -195 695 -216 ct 709 -237 730 -247 760 -247 ct +788 -247 810 -236 823 -215 ct 837 -194 844 -163 844 -122 ct p +812 -122 m 812 -157 808 -182 800 -198 ct 792 -214 778 -222 760 -222 ct 741 -222 727 -214 719 -199 ct +710 -183 706 -158 706 -122 ct 706 -88 710 -62 719 -46 ct 727 -30 741 -22 759 -22 ct +777 -22 791 -31 799 -47 ct 808 -63 812 -88 812 -122 ct p ef +1148 -75 m 1148 -50 1144 -31 1134 -18 ct 1125 -5 1111 2 1093 2 ct 1075 2 1062 -4 1053 -17 ct +1043 -30 1039 -50 1039 -75 ct 1039 -101 1043 -121 1052 -134 ct 1061 -147 1075 -153 1094 -153 ct +1113 -153 1126 -146 1135 -133 ct 1144 -120 1148 -101 1148 -75 ct p +938 0 m 911 0 l 1070 -243 l 1097 -243 l 938 0 l p +915 -245 m 933 -245 947 -239 956 -226 ct 964 -213 969 -194 969 -168 ct 969 -143 964 -124 955 -111 ct +946 -97 932 -91 914 -91 ct 896 -91 882 -97 873 -110 ct 864 -124 860 -143 860 -168 ct +860 -194 864 -213 873 -226 ct 882 -239 896 -245 915 -245 ct p +1123 -75 m 1123 -96 1121 -111 1116 -120 ct 1112 -129 1104 -134 1094 -134 ct +1083 -134 1076 -129 1071 -120 ct 1067 -111 1064 -96 1064 -75 ct 1064 -55 1066 -41 1071 -31 ct +1076 -22 1083 -17 1093 -17 ct 1104 -17 1111 -22 1116 -31 ct 1120 -41 1123 -56 1123 -75 ct +p +944 -168 m 944 -188 941 -203 937 -212 ct 933 -222 925 -226 915 -226 ct 904 -226 896 -222 892 -213 ct +887 -204 885 -189 885 -168 ct 885 -148 887 -134 892 -124 ct 896 -115 904 -110 915 -110 ct +925 -110 932 -115 937 -124 ct 941 -134 944 -149 944 -168 ct p ef +pom +pum +46448 4996 t +27 0 m 27 -26 l 89 -26 l 89 -213 l 34 -174 l 34 -204 l 91 -243 l +120 -243 l 120 -26 l 179 -26 l 179 0 l 27 0 l p ef +367 -80 m 367 -54 359 -34 344 -19 ct 328 -4 307 3 280 3 ct 258 3 239 -2 226 -12 ct +212 -22 203 -36 199 -55 ct 231 -58 l 237 -34 254 -22 281 -22 ct 298 -22 311 -27 320 -37 ct +330 -47 334 -61 334 -79 ct 334 -94 330 -106 320 -116 ct 311 -125 298 -130 282 -130 ct +273 -130 265 -129 258 -126 ct 251 -123 244 -119 237 -113 ct 206 -113 l 214 -243 l +352 -243 l 352 -217 l 243 -217 l 238 -140 l 251 -150 268 -155 288 -155 ct +312 -155 331 -148 345 -134 ct 359 -120 367 -102 367 -80 ct p ef +402 0 m 402 -38 l 436 -38 l 436 0 l 402 0 l p ef +659 -122 m 659 -81 651 -50 637 -29 ct 623 -8 602 3 574 3 ct 546 3 525 -8 511 -29 ct +497 -50 490 -81 490 -122 ct 490 -164 497 -195 510 -216 ct 524 -237 545 -247 575 -247 ct +603 -247 625 -236 638 -215 ct 652 -194 659 -163 659 -122 ct p +627 -122 m 627 -157 623 -182 615 -198 ct 607 -214 593 -222 575 -222 ct 556 -222 542 -214 534 -199 ct +525 -183 521 -158 521 -122 ct 521 -88 525 -62 534 -46 ct 542 -30 556 -22 574 -22 ct +592 -22 606 -31 614 -47 ct 623 -63 627 -88 627 -122 ct p ef +844 -122 m 844 -81 836 -50 822 -29 ct 808 -8 787 3 759 3 ct 731 3 710 -8 696 -29 ct +682 -50 675 -81 675 -122 ct 675 -164 682 -195 695 -216 ct 709 -237 730 -247 760 -247 ct +788 -247 810 -236 823 -215 ct 837 -194 844 -163 844 -122 ct p +812 -122 m 812 -157 808 -182 800 -198 ct 792 -214 778 -222 760 -222 ct 741 -222 727 -214 719 -199 ct +710 -183 706 -158 706 -122 ct 706 -88 710 -62 719 -46 ct 727 -30 741 -22 759 -22 ct +777 -22 791 -31 799 -47 ct 808 -63 812 -88 812 -122 ct p ef +1148 -75 m 1148 -50 1144 -31 1134 -18 ct 1125 -5 1111 2 1093 2 ct 1075 2 1062 -4 1053 -17 ct +1043 -30 1039 -50 1039 -75 ct 1039 -101 1043 -121 1052 -134 ct 1061 -147 1075 -153 1094 -153 ct +1113 -153 1126 -146 1135 -133 ct 1144 -120 1148 -101 1148 -75 ct p +938 0 m 911 0 l 1070 -243 l 1097 -243 l 938 0 l p +915 -245 m 933 -245 947 -239 956 -226 ct 964 -213 969 -194 969 -168 ct 969 -143 964 -124 955 -111 ct +946 -97 932 -91 914 -91 ct 896 -91 882 -97 873 -110 ct 864 -124 860 -143 860 -168 ct +860 -194 864 -213 873 -226 ct 882 -239 896 -245 915 -245 ct p +1123 -75 m 1123 -96 1121 -111 1116 -120 ct 1112 -129 1104 -134 1094 -134 ct +1083 -134 1076 -129 1071 -120 ct 1067 -111 1064 -96 1064 -75 ct 1064 -55 1066 -41 1071 -31 ct +1076 -22 1083 -17 1093 -17 ct 1104 -17 1111 -22 1116 -31 ct 1120 -41 1123 -56 1123 -75 ct +p +944 -168 m 944 -188 941 -203 937 -212 ct 933 -222 925 -226 915 -226 ct 904 -226 896 -222 892 -213 ct +887 -204 885 -189 885 -168 ct 885 -148 887 -134 892 -124 ct 896 -115 904 -110 915 -110 ct +925 -110 932 -115 937 -124 ct 941 -134 944 -149 944 -168 ct p ef +pom +pum +46448 4170 t +18 0 m 18 -22 l 24 -35 31 -47 39 -58 ct 48 -68 57 -77 66 -85 ct 75 -94 84 -101 94 -109 ct +103 -116 111 -123 118 -130 ct 126 -137 132 -145 136 -152 ct 141 -160 143 -169 143 -179 ct +143 -192 139 -203 131 -210 ct 123 -217 113 -221 99 -221 ct 85 -221 74 -217 66 -210 ct +57 -203 52 -193 51 -180 ct 19 -183 l 21 -202 30 -218 44 -229 ct 58 -241 76 -247 99 -247 ct +123 -247 142 -241 155 -229 ct 168 -218 175 -201 175 -180 ct 175 -171 173 -161 168 -152 ct +164 -143 158 -133 149 -124 ct 141 -115 124 -100 100 -81 ct 87 -70 77 -60 69 -51 ct +61 -43 55 -34 52 -26 ct 179 -26 l 179 0 l 18 0 l p ef +368 -122 m 368 -81 360 -50 346 -29 ct 332 -8 311 3 283 3 ct 255 3 234 -8 220 -29 ct +206 -50 199 -81 199 -122 ct 199 -164 206 -195 219 -216 ct 233 -237 254 -247 284 -247 ct +312 -247 334 -236 347 -215 ct 361 -194 368 -163 368 -122 ct p +336 -122 m 336 -157 332 -182 324 -198 ct 316 -214 302 -222 284 -222 ct 265 -222 251 -214 243 -199 ct +234 -183 230 -158 230 -122 ct 230 -88 234 -62 243 -46 ct 251 -30 265 -22 283 -22 ct +301 -22 315 -31 323 -47 ct 332 -63 336 -88 336 -122 ct p ef +402 0 m 402 -38 l 436 -38 l 436 0 l 402 0 l p ef +659 -122 m 659 -81 651 -50 637 -29 ct 623 -8 602 3 574 3 ct 546 3 525 -8 511 -29 ct +497 -50 490 -81 490 -122 ct 490 -164 497 -195 510 -216 ct 524 -237 545 -247 575 -247 ct +603 -247 625 -236 638 -215 ct 652 -194 659 -163 659 -122 ct p +627 -122 m 627 -157 623 -182 615 -198 ct 607 -214 593 -222 575 -222 ct 556 -222 542 -214 534 -199 ct +525 -183 521 -158 521 -122 ct 521 -88 525 -62 534 -46 ct 542 -30 556 -22 574 -22 ct +592 -22 606 -31 614 -47 ct 623 -63 627 -88 627 -122 ct p ef +844 -122 m 844 -81 836 -50 822 -29 ct 808 -8 787 3 759 3 ct 731 3 710 -8 696 -29 ct +682 -50 675 -81 675 -122 ct 675 -164 682 -195 695 -216 ct 709 -237 730 -247 760 -247 ct +788 -247 810 -236 823 -215 ct 837 -194 844 -163 844 -122 ct p +812 -122 m 812 -157 808 -182 800 -198 ct 792 -214 778 -222 760 -222 ct 741 -222 727 -214 719 -199 ct +710 -183 706 -158 706 -122 ct 706 -88 710 -62 719 -46 ct 727 -30 741 -22 759 -22 ct +777 -22 791 -31 799 -47 ct 808 -63 812 -88 812 -122 ct p ef +1148 -75 m 1148 -50 1144 -31 1134 -18 ct 1125 -5 1111 2 1093 2 ct 1075 2 1062 -4 1053 -17 ct +1043 -30 1039 -50 1039 -75 ct 1039 -101 1043 -121 1052 -134 ct 1061 -147 1075 -153 1094 -153 ct +1113 -153 1126 -146 1135 -133 ct 1144 -120 1148 -101 1148 -75 ct p +938 0 m 911 0 l 1070 -243 l 1097 -243 l 938 0 l p +915 -245 m 933 -245 947 -239 956 -226 ct 964 -213 969 -194 969 -168 ct 969 -143 964 -124 955 -111 ct +946 -97 932 -91 914 -91 ct 896 -91 882 -97 873 -110 ct 864 -124 860 -143 860 -168 ct +860 -194 864 -213 873 -226 ct 882 -239 896 -245 915 -245 ct p +1123 -75 m 1123 -96 1121 -111 1116 -120 ct 1112 -129 1104 -134 1094 -134 ct +1083 -134 1076 -129 1071 -120 ct 1067 -111 1064 -96 1064 -75 ct 1064 -55 1066 -41 1071 -31 ct +1076 -22 1083 -17 1093 -17 ct 1104 -17 1111 -22 1116 -31 ct 1120 -41 1123 -56 1123 -75 ct +p +944 -168 m 944 -188 941 -203 937 -212 ct 933 -222 925 -226 915 -226 ct 904 -226 896 -222 892 -213 ct +887 -204 885 -189 885 -168 ct 885 -148 887 -134 892 -124 ct 896 -115 904 -110 915 -110 ct +925 -110 932 -115 937 -124 ct 941 -134 944 -149 944 -168 ct p ef +pom +pum +46448 3345 t +18 0 m 18 -22 l 24 -35 31 -47 39 -58 ct 48 -68 57 -77 66 -85 ct 75 -94 84 -101 94 -109 ct +103 -116 111 -123 118 -130 ct 126 -137 132 -145 136 -152 ct 141 -160 143 -169 143 -179 ct +143 -192 139 -203 131 -210 ct 123 -217 113 -221 99 -221 ct 85 -221 74 -217 66 -210 ct +57 -203 52 -193 51 -180 ct 19 -183 l 21 -202 30 -218 44 -229 ct 58 -241 76 -247 99 -247 ct +123 -247 142 -241 155 -229 ct 168 -218 175 -201 175 -180 ct 175 -171 173 -161 168 -152 ct +164 -143 158 -133 149 -124 ct 141 -115 124 -100 100 -81 ct 87 -70 77 -60 69 -51 ct +61 -43 55 -34 52 -26 ct 179 -26 l 179 0 l 18 0 l p ef +367 -80 m 367 -54 359 -34 344 -19 ct 328 -4 307 3 280 3 ct 258 3 239 -2 226 -12 ct +212 -22 203 -36 199 -55 ct 231 -58 l 237 -34 254 -22 281 -22 ct 298 -22 311 -27 320 -37 ct +330 -47 334 -61 334 -79 ct 334 -94 330 -106 320 -116 ct 311 -125 298 -130 282 -130 ct +273 -130 265 -129 258 -126 ct 251 -123 244 -119 237 -113 ct 206 -113 l 214 -243 l +352 -243 l 352 -217 l 243 -217 l 238 -140 l 251 -150 268 -155 288 -155 ct +312 -155 331 -148 345 -134 ct 359 -120 367 -102 367 -80 ct p ef +402 0 m 402 -38 l 436 -38 l 436 0 l 402 0 l p ef +659 -122 m 659 -81 651 -50 637 -29 ct 623 -8 602 3 574 3 ct 546 3 525 -8 511 -29 ct +497 -50 490 -81 490 -122 ct 490 -164 497 -195 510 -216 ct 524 -237 545 -247 575 -247 ct +603 -247 625 -236 638 -215 ct 652 -194 659 -163 659 -122 ct p +627 -122 m 627 -157 623 -182 615 -198 ct 607 -214 593 -222 575 -222 ct 556 -222 542 -214 534 -199 ct +525 -183 521 -158 521 -122 ct 521 -88 525 -62 534 -46 ct 542 -30 556 -22 574 -22 ct +592 -22 606 -31 614 -47 ct 623 -63 627 -88 627 -122 ct p ef +844 -122 m 844 -81 836 -50 822 -29 ct 808 -8 787 3 759 3 ct 731 3 710 -8 696 -29 ct +682 -50 675 -81 675 -122 ct 675 -164 682 -195 695 -216 ct 709 -237 730 -247 760 -247 ct +788 -247 810 -236 823 -215 ct 837 -194 844 -163 844 -122 ct p +812 -122 m 812 -157 808 -182 800 -198 ct 792 -214 778 -222 760 -222 ct 741 -222 727 -214 719 -199 ct +710 -183 706 -158 706 -122 ct 706 -88 710 -62 719 -46 ct 727 -30 741 -22 759 -22 ct +777 -22 791 -31 799 -47 ct 808 -63 812 -88 812 -122 ct p ef +1148 -75 m 1148 -50 1144 -31 1134 -18 ct 1125 -5 1111 2 1093 2 ct 1075 2 1062 -4 1053 -17 ct +1043 -30 1039 -50 1039 -75 ct 1039 -101 1043 -121 1052 -134 ct 1061 -147 1075 -153 1094 -153 ct +1113 -153 1126 -146 1135 -133 ct 1144 -120 1148 -101 1148 -75 ct p +938 0 m 911 0 l 1070 -243 l 1097 -243 l 938 0 l p +915 -245 m 933 -245 947 -239 956 -226 ct 964 -213 969 -194 969 -168 ct 969 -143 964 -124 955 -111 ct +946 -97 932 -91 914 -91 ct 896 -91 882 -97 873 -110 ct 864 -124 860 -143 860 -168 ct +860 -194 864 -213 873 -226 ct 882 -239 896 -245 915 -245 ct p +1123 -75 m 1123 -96 1121 -111 1116 -120 ct 1112 -129 1104 -134 1094 -134 ct +1083 -134 1076 -129 1071 -120 ct 1067 -111 1064 -96 1064 -75 ct 1064 -55 1066 -41 1071 -31 ct +1076 -22 1083 -17 1093 -17 ct 1104 -17 1111 -22 1116 -31 ct 1120 -41 1123 -56 1123 -75 ct +p +944 -168 m 944 -188 941 -203 937 -212 ct 933 -222 925 -226 915 -226 ct 904 -226 896 -222 892 -213 ct +887 -204 885 -189 885 -168 ct 885 -148 887 -134 892 -124 ct 896 -115 904 -110 915 -110 ct +925 -110 932 -115 937 -124 ct 941 -134 944 -149 944 -168 ct p ef +pom +pum +46448 2519 t +181 -68 m 181 -45 174 -28 159 -16 ct 145 -3 125 3 98 3 ct 74 3 54 -3 40 -14 ct +25 -25 16 -41 13 -63 ct 46 -66 l 50 -37 67 -23 98 -23 ct 114 -23 126 -27 135 -34 ct +144 -42 149 -54 149 -69 ct 149 -82 143 -92 133 -100 ct 123 -107 108 -111 89 -111 ct +72 -111 l 72 -138 l 89 -138 l 106 -138 119 -142 128 -149 ct 138 -156 142 -167 142 -180 ct +142 -193 138 -203 131 -210 ct 123 -218 112 -221 97 -221 ct 83 -221 72 -218 64 -211 ct +55 -204 50 -194 49 -181 ct 18 -184 l 20 -204 28 -219 42 -230 ct 57 -241 75 -247 97 -247 ct +121 -247 140 -241 154 -230 ct 167 -219 174 -203 174 -183 ct 174 -167 170 -155 161 -145 ct +152 -135 140 -129 123 -125 ct 123 -125 l 141 -123 156 -117 166 -106 ct 176 -96 181 -83 181 -68 ct +p ef +368 -122 m 368 -81 360 -50 346 -29 ct 332 -8 311 3 283 3 ct 255 3 234 -8 220 -29 ct +206 -50 199 -81 199 -122 ct 199 -164 206 -195 219 -216 ct 233 -237 254 -247 284 -247 ct +312 -247 334 -236 347 -215 ct 361 -194 368 -163 368 -122 ct p +336 -122 m 336 -157 332 -182 324 -198 ct 316 -214 302 -222 284 -222 ct 265 -222 251 -214 243 -199 ct +234 -183 230 -158 230 -122 ct 230 -88 234 -62 243 -46 ct 251 -30 265 -22 283 -22 ct +301 -22 315 -31 323 -47 ct 332 -63 336 -88 336 -122 ct p ef +402 0 m 402 -38 l 436 -38 l 436 0 l 402 0 l p ef +659 -122 m 659 -81 651 -50 637 -29 ct 623 -8 602 3 574 3 ct 546 3 525 -8 511 -29 ct +497 -50 490 -81 490 -122 ct 490 -164 497 -195 510 -216 ct 524 -237 545 -247 575 -247 ct +603 -247 625 -236 638 -215 ct 652 -194 659 -163 659 -122 ct p +627 -122 m 627 -157 623 -182 615 -198 ct 607 -214 593 -222 575 -222 ct 556 -222 542 -214 534 -199 ct +525 -183 521 -158 521 -122 ct 521 -88 525 -62 534 -46 ct 542 -30 556 -22 574 -22 ct +592 -22 606 -31 614 -47 ct 623 -63 627 -88 627 -122 ct p ef +844 -122 m 844 -81 836 -50 822 -29 ct 808 -8 787 3 759 3 ct 731 3 710 -8 696 -29 ct +682 -50 675 -81 675 -122 ct 675 -164 682 -195 695 -216 ct 709 -237 730 -247 760 -247 ct +788 -247 810 -236 823 -215 ct 837 -194 844 -163 844 -122 ct p +812 -122 m 812 -157 808 -182 800 -198 ct 792 -214 778 -222 760 -222 ct 741 -222 727 -214 719 -199 ct +710 -183 706 -158 706 -122 ct 706 -88 710 -62 719 -46 ct 727 -30 741 -22 759 -22 ct +777 -22 791 -31 799 -47 ct 808 -63 812 -88 812 -122 ct p ef +1148 -75 m 1148 -50 1144 -31 1134 -18 ct 1125 -5 1111 2 1093 2 ct 1075 2 1062 -4 1053 -17 ct +1043 -30 1039 -50 1039 -75 ct 1039 -101 1043 -121 1052 -134 ct 1061 -147 1075 -153 1094 -153 ct +1113 -153 1126 -146 1135 -133 ct 1144 -120 1148 -101 1148 -75 ct p +938 0 m 911 0 l 1070 -243 l 1097 -243 l 938 0 l p +915 -245 m 933 -245 947 -239 956 -226 ct 964 -213 969 -194 969 -168 ct 969 -143 964 -124 955 -111 ct +946 -97 932 -91 914 -91 ct 896 -91 882 -97 873 -110 ct 864 -124 860 -143 860 -168 ct +860 -194 864 -213 873 -226 ct 882 -239 896 -245 915 -245 ct p +1123 -75 m 1123 -96 1121 -111 1116 -120 ct 1112 -129 1104 -134 1094 -134 ct +1083 -134 1076 -129 1071 -120 ct 1067 -111 1064 -96 1064 -75 ct 1064 -55 1066 -41 1071 -31 ct +1076 -22 1083 -17 1093 -17 ct 1104 -17 1111 -22 1116 -31 ct 1120 -41 1123 -56 1123 -75 ct +p +944 -168 m 944 -188 941 -203 937 -212 ct 933 -222 925 -226 915 -226 ct 904 -226 896 -222 892 -213 ct +887 -204 885 -189 885 -168 ct 885 -148 887 -134 892 -124 ct 896 -115 904 -110 915 -110 ct +925 -110 932 -115 937 -124 ct 941 -134 944 -149 944 -168 ct p ef +pom +pum +46448 1694 t +181 -68 m 181 -45 174 -28 159 -16 ct 145 -3 125 3 98 3 ct 74 3 54 -3 40 -14 ct +25 -25 16 -41 13 -63 ct 46 -66 l 50 -37 67 -23 98 -23 ct 114 -23 126 -27 135 -34 ct +144 -42 149 -54 149 -69 ct 149 -82 143 -92 133 -100 ct 123 -107 108 -111 89 -111 ct +72 -111 l 72 -138 l 89 -138 l 106 -138 119 -142 128 -149 ct 138 -156 142 -167 142 -180 ct +142 -193 138 -203 131 -210 ct 123 -218 112 -221 97 -221 ct 83 -221 72 -218 64 -211 ct +55 -204 50 -194 49 -181 ct 18 -184 l 20 -204 28 -219 42 -230 ct 57 -241 75 -247 97 -247 ct +121 -247 140 -241 154 -230 ct 167 -219 174 -203 174 -183 ct 174 -167 170 -155 161 -145 ct +152 -135 140 -129 123 -125 ct 123 -125 l 141 -123 156 -117 166 -106 ct 176 -96 181 -83 181 -68 ct +p ef +367 -80 m 367 -54 359 -34 344 -19 ct 328 -4 307 3 280 3 ct 258 3 239 -2 226 -12 ct +212 -22 203 -36 199 -55 ct 231 -58 l 237 -34 254 -22 281 -22 ct 298 -22 311 -27 320 -37 ct +330 -47 334 -61 334 -79 ct 334 -94 330 -106 320 -116 ct 311 -125 298 -130 282 -130 ct +273 -130 265 -129 258 -126 ct 251 -123 244 -119 237 -113 ct 206 -113 l 214 -243 l +352 -243 l 352 -217 l 243 -217 l 238 -140 l 251 -150 268 -155 288 -155 ct +312 -155 331 -148 345 -134 ct 359 -120 367 -102 367 -80 ct p ef +402 0 m 402 -38 l 436 -38 l 436 0 l 402 0 l p ef +659 -122 m 659 -81 651 -50 637 -29 ct 623 -8 602 3 574 3 ct 546 3 525 -8 511 -29 ct +497 -50 490 -81 490 -122 ct 490 -164 497 -195 510 -216 ct 524 -237 545 -247 575 -247 ct +603 -247 625 -236 638 -215 ct 652 -194 659 -163 659 -122 ct p +627 -122 m 627 -157 623 -182 615 -198 ct 607 -214 593 -222 575 -222 ct 556 -222 542 -214 534 -199 ct +525 -183 521 -158 521 -122 ct 521 -88 525 -62 534 -46 ct 542 -30 556 -22 574 -22 ct +592 -22 606 -31 614 -47 ct 623 -63 627 -88 627 -122 ct p ef +844 -122 m 844 -81 836 -50 822 -29 ct 808 -8 787 3 759 3 ct 731 3 710 -8 696 -29 ct +682 -50 675 -81 675 -122 ct 675 -164 682 -195 695 -216 ct 709 -237 730 -247 760 -247 ct +788 -247 810 -236 823 -215 ct 837 -194 844 -163 844 -122 ct p +812 -122 m 812 -157 808 -182 800 -198 ct 792 -214 778 -222 760 -222 ct 741 -222 727 -214 719 -199 ct +710 -183 706 -158 706 -122 ct 706 -88 710 -62 719 -46 ct 727 -30 741 -22 759 -22 ct +777 -22 791 -31 799 -47 ct 808 -63 812 -88 812 -122 ct p ef +1148 -75 m 1148 -50 1144 -31 1134 -18 ct 1125 -5 1111 2 1093 2 ct 1075 2 1062 -4 1053 -17 ct +1043 -30 1039 -50 1039 -75 ct 1039 -101 1043 -121 1052 -134 ct 1061 -147 1075 -153 1094 -153 ct +1113 -153 1126 -146 1135 -133 ct 1144 -120 1148 -101 1148 -75 ct p +938 0 m 911 0 l 1070 -243 l 1097 -243 l 938 0 l p +915 -245 m 933 -245 947 -239 956 -226 ct 964 -213 969 -194 969 -168 ct 969 -143 964 -124 955 -111 ct +946 -97 932 -91 914 -91 ct 896 -91 882 -97 873 -110 ct 864 -124 860 -143 860 -168 ct +860 -194 864 -213 873 -226 ct 882 -239 896 -245 915 -245 ct p +1123 -75 m 1123 -96 1121 -111 1116 -120 ct 1112 -129 1104 -134 1094 -134 ct +1083 -134 1076 -129 1071 -120 ct 1067 -111 1064 -96 1064 -75 ct 1064 -55 1066 -41 1071 -31 ct +1076 -22 1083 -17 1093 -17 ct 1104 -17 1111 -22 1116 -31 ct 1120 -41 1123 -56 1123 -75 ct +p +944 -168 m 944 -188 941 -203 937 -212 ct 933 -222 925 -226 915 -226 ct 904 -226 896 -222 892 -213 ct +887 -204 885 -189 885 -168 ct 885 -148 887 -134 892 -124 ct 896 -115 904 -110 915 -110 ct +925 -110 932 -115 937 -124 ct 941 -134 944 -149 944 -168 ct p ef +pom +pum +46448 869 t +152 -55 m 152 0 l 123 0 l 123 -55 l 8 -55 l 8 -79 l 119 -243 l 152 -243 l +152 -79 l 186 -79 l 186 -55 l 152 -55 l p +123 -208 m 122 -207 121 -204 118 -199 ct 115 -193 113 -190 111 -187 ct 49 -96 l +39 -83 l 37 -79 l 123 -79 l 123 -208 l p ef +368 -122 m 368 -81 360 -50 346 -29 ct 332 -8 311 3 283 3 ct 255 3 234 -8 220 -29 ct +206 -50 199 -81 199 -122 ct 199 -164 206 -195 219 -216 ct 233 -237 254 -247 284 -247 ct +312 -247 334 -236 347 -215 ct 361 -194 368 -163 368 -122 ct p +336 -122 m 336 -157 332 -182 324 -198 ct 316 -214 302 -222 284 -222 ct 265 -222 251 -214 243 -199 ct +234 -183 230 -158 230 -122 ct 230 -88 234 -62 243 -46 ct 251 -30 265 -22 283 -22 ct +301 -22 315 -31 323 -47 ct 332 -63 336 -88 336 -122 ct p ef +402 0 m 402 -38 l 436 -38 l 436 0 l 402 0 l p ef +659 -122 m 659 -81 651 -50 637 -29 ct 623 -8 602 3 574 3 ct 546 3 525 -8 511 -29 ct +497 -50 490 -81 490 -122 ct 490 -164 497 -195 510 -216 ct 524 -237 545 -247 575 -247 ct +603 -247 625 -236 638 -215 ct 652 -194 659 -163 659 -122 ct p +627 -122 m 627 -157 623 -182 615 -198 ct 607 -214 593 -222 575 -222 ct 556 -222 542 -214 534 -199 ct +525 -183 521 -158 521 -122 ct 521 -88 525 -62 534 -46 ct 542 -30 556 -22 574 -22 ct +592 -22 606 -31 614 -47 ct 623 -63 627 -88 627 -122 ct p ef +844 -122 m 844 -81 836 -50 822 -29 ct 808 -8 787 3 759 3 ct 731 3 710 -8 696 -29 ct +682 -50 675 -81 675 -122 ct 675 -164 682 -195 695 -216 ct 709 -237 730 -247 760 -247 ct +788 -247 810 -236 823 -215 ct 837 -194 844 -163 844 -122 ct p +812 -122 m 812 -157 808 -182 800 -198 ct 792 -214 778 -222 760 -222 ct 741 -222 727 -214 719 -199 ct +710 -183 706 -158 706 -122 ct 706 -88 710 -62 719 -46 ct 727 -30 741 -22 759 -22 ct +777 -22 791 -31 799 -47 ct 808 -63 812 -88 812 -122 ct p ef +1148 -75 m 1148 -50 1144 -31 1134 -18 ct 1125 -5 1111 2 1093 2 ct 1075 2 1062 -4 1053 -17 ct +1043 -30 1039 -50 1039 -75 ct 1039 -101 1043 -121 1052 -134 ct 1061 -147 1075 -153 1094 -153 ct +1113 -153 1126 -146 1135 -133 ct 1144 -120 1148 -101 1148 -75 ct p +938 0 m 911 0 l 1070 -243 l 1097 -243 l 938 0 l p +915 -245 m 933 -245 947 -239 956 -226 ct 964 -213 969 -194 969 -168 ct 969 -143 964 -124 955 -111 ct +946 -97 932 -91 914 -91 ct 896 -91 882 -97 873 -110 ct 864 -124 860 -143 860 -168 ct +860 -194 864 -213 873 -226 ct 882 -239 896 -245 915 -245 ct p +1123 -75 m 1123 -96 1121 -111 1116 -120 ct 1112 -129 1104 -134 1094 -134 ct +1083 -134 1076 -129 1071 -120 ct 1067 -111 1064 -96 1064 -75 ct 1064 -55 1066 -41 1071 -31 ct +1076 -22 1083 -17 1093 -17 ct 1104 -17 1111 -22 1116 -31 ct 1120 -41 1123 -56 1123 -75 ct +p +944 -168 m 944 -188 941 -203 937 -212 ct 933 -222 925 -226 915 -226 ct 904 -226 896 -222 892 -213 ct +887 -204 885 -189 885 -168 ct 885 -148 887 -134 892 -124 ct 896 -115 904 -110 915 -110 ct +925 -110 932 -115 937 -124 ct 941 -134 944 -149 944 -168 ct p ef +pom +gs +59997 1324 m 59891 1324 l 59891 1114 l 60102 1114 l 60102 1324 l 59997 1324 l +p ef +gr +gs +59997 1821 m 59891 1821 l 59891 1611 l 60102 1611 l 60102 1821 l 59997 1821 l +eoclip newpath +59891 1611 m 60102 1611 l 60102 1821 l 59891 1821 l 59891 1611 l eoclip newpath +pum +59891 1822 t +212 212 s +[/Indexed /DeviceRGB +1 + +] setcolorspace +<< +/ImageType 1 +/Width 8 +/Height 8 +/BitsPerComponent 8 +/Decode[0 255] +/ImageMatrix[8 0 0 -8 0 8] +/DataSource currentfile +/ASCIIHexDecode filter +>> +image +0000000000000000010101010101010101010101010101010000000000000000000000 +0000000000010101010101010101010101010101010000000000000000> +pom +gr +pum +60202 1338 t +33 0 m 33 -243 l 66 -243 l 66 0 l 33 0 l p ef +325 -68 m 325 -45 316 -28 299 -15 ct 281 -3 257 3 225 3 ct 166 3 131 -18 122 -59 ct +154 -65 l 158 -51 165 -40 177 -33 ct 189 -26 206 -23 226 -23 ct 247 -23 264 -26 275 -34 ct +287 -41 293 -52 293 -66 ct 293 -74 291 -80 287 -85 ct 284 -90 279 -94 272 -97 ct +265 -101 258 -103 249 -105 ct 239 -108 229 -110 218 -113 ct 199 -117 185 -121 175 -125 ct +165 -130 157 -134 151 -140 ct 145 -145 141 -151 138 -158 ct 135 -165 133 -173 133 -182 ct +133 -203 141 -219 157 -230 ct 173 -241 196 -247 226 -247 ct 253 -247 274 -243 289 -234 ct +303 -226 314 -211 320 -191 ct 287 -185 l 284 -198 277 -208 267 -213 ct 257 -219 243 -222 225 -222 ct +206 -222 191 -219 181 -213 ct 171 -206 165 -196 165 -184 ct 165 -176 167 -170 171 -165 ct +175 -160 181 -156 189 -153 ct 196 -149 211 -145 233 -140 ct 241 -139 248 -137 256 -135 ct +263 -133 270 -131 277 -129 ct 284 -126 290 -123 296 -120 ct 302 -117 307 -113 311 -108 ct +316 -103 319 -97 322 -91 ct 324 -84 325 -76 325 -68 ct p ef +pom +pum +60202 1835 t +33 0 m 33 -243 l 66 -243 l 66 0 l 33 0 l p ef +325 -68 m 325 -45 316 -28 299 -15 ct 281 -3 257 3 225 3 ct 166 3 131 -18 122 -59 ct +154 -65 l 158 -51 165 -40 177 -33 ct 189 -26 206 -23 226 -23 ct 247 -23 264 -26 275 -34 ct +287 -41 293 -52 293 -66 ct 293 -74 291 -80 287 -85 ct 284 -90 279 -94 272 -97 ct +265 -101 258 -103 249 -105 ct 239 -108 229 -110 218 -113 ct 199 -117 185 -121 175 -125 ct +165 -130 157 -134 151 -140 ct 145 -145 141 -151 138 -158 ct 135 -165 133 -173 133 -182 ct +133 -203 141 -219 157 -230 ct 173 -241 196 -247 226 -247 ct 253 -247 274 -243 289 -234 ct +303 -226 314 -211 320 -191 ct 287 -185 l 284 -198 277 -208 267 -213 ct 257 -219 243 -222 225 -222 ct +206 -222 191 -219 181 -213 ct 171 -206 165 -196 165 -184 ct 165 -176 167 -170 171 -165 ct +175 -160 181 -156 189 -153 ct 196 -149 211 -145 233 -140 ct 241 -139 248 -137 256 -135 ct +263 -133 270 -131 277 -129 ct 284 -126 290 -123 296 -120 ct 302 -117 307 -113 311 -108 ct +316 -103 319 -97 322 -91 ct 324 -84 325 -76 325 -68 ct p ef +460 -105 m 460 -31 l 434 -31 l 434 -105 l 361 -105 l 361 -130 l 434 -130 l +434 -204 l 460 -204 l 460 -130 l 533 -130 l 533 -105 l 460 -105 l +p ef +794 -124 m 794 -99 789 -77 779 -58 ct 770 -39 756 -25 738 -15 ct 720 -5 699 0 676 0 ct +585 0 l 585 -243 l 665 -243 l 706 -243 738 -233 761 -212 ct 783 -191 794 -162 794 -124 ct +p +761 -124 m 761 -154 753 -177 736 -193 ct 720 -209 696 -217 665 -217 ct 618 -217 l +618 -26 l 672 -26 l 690 -26 705 -30 719 -38 ct 732 -46 743 -57 750 -72 ct +757 -87 761 -104 761 -124 ct p ef +827 0 m 827 -243 l 860 -243 l 860 0 l 827 0 l p ef +962 -216 m 962 -125 l 1097 -125 l 1097 -98 l 962 -98 l 962 1 l 929 1 l +929 -243 l 1102 -243 l 1102 -216 l 962 -216 l p ef +1235 -216 m 1235 0 l 1202 0 l 1202 -216 l 1119 -216 l 1119 -243 l +1319 -243 l 1319 -216 l 1235 -216 l p ef +pom +0 9000 t +pom +count op_count sub {pop} repeat countdictstack dict_count sub {end} repeat b4_inc_state restore +%%PageTrailer +%%Trailer +%%EOF diff --git a/thesis.bib b/thesis.bib index 35a3875..ddcbddb 100644 --- a/thesis.bib +++ b/thesis.bib @@ -835,8 +835,15 @@ This thesis highlights two aspects of the BOOM design: its industry-competitive title={{Fallout}: Reading Kernel Writes From User Space}, author={Minkin, Marina and Moghimi, Daniel and Lipp, Moritz and Schwarz, Michael and Van Bulck, Jo, and Genkin, Daniel and Gruss, Daniel and Sunar, Berk and Piessens, Frank and Yarom, Yuval}, year={2019}, - type={R}, + type={R}, } +@online{gem5-tutorial, + url={http://gem5.org/wiki/images/0/0e/ASPLOS2017_gem5_tutorial.pdf}, + author = {Andreas Sandberg and Stephan Diestelhorst and William Wang}, + year = {2017}, + month = 4, + type = {OL}, +} % vim:ts=4:sw=4 -- cgit v1.2.3