about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPatryk Niedźwiedziński <pniedzwiedzinski19@gmail.com>2021-05-29 18:30:43 +0200
committerPatryk Niedźwiedziński <pniedzwiedzinski19@gmail.com>2021-05-29 18:30:43 +0200
commit3db852857ff72cba70705638e4fd1e64710c8c37 (patch)
treed505aea42b6bcd0622f853ea7fdcc8a1e27083f3
parentf882bde0e89359e156d281532adcfc500c387083 (diff)
downloadniedzwiedzinski.cyou-3db852857ff72cba70705638e4fd1e64710c8c37.tar.gz
niedzwiedzinski.cyou-3db852857ff72cba70705638e4fd1e64710c8c37.zip
Add help
-rwxr-xr-xdeploy.sh2
-rw-r--r--src/help/index.gmi15
-rw-r--r--src/help/tech/hardware/asus-qm1.bios.jpgbin0 -> 72036 bytes
-rw-r--r--src/help/tech/hardware/asus-qm1.gmi22
-rw-r--r--src/help/tech/software/neatroff.gmi69
-rw-r--r--src/help/tech/software/neatroff_example.ms181
-rw-r--r--src/help/tech/software/neatroff_example.pdf1278
7 files changed, 1565 insertions, 2 deletions
diff --git a/deploy.sh b/deploy.sh
index ad22689..6fb5d52 100755
--- a/deploy.sh
+++ b/deploy.sh
@@ -32,8 +32,6 @@ body {
   margin: 0 auto;
   font-family: sans-serif;
   max-width: 80ex;
-}
-main {
   box-sizing: border-box;
   padding: 1ex;
 }
diff --git a/src/help/index.gmi b/src/help/index.gmi
new file mode 100644
index 0000000..0f08fdc
--- /dev/null
+++ b/src/help/index.gmi
@@ -0,0 +1,15 @@
+# Help
+
+On this site you'll find things that I've done. I tried to write down everything that I know, but if you have questions just contact me. I write in english as most of information on the internet is written in it, rip polish.
+
+=> niedzwiedzinski.cyou Contact info
+
+## Tech
+
+### Hardware
+
+=> tech/hardware/asus-qm1.gmi Asus QM1
+
+### Software
+
+=> tech/software/neatroff.gmi Neatroff
diff --git a/src/help/tech/hardware/asus-qm1.bios.jpg b/src/help/tech/hardware/asus-qm1.bios.jpg
new file mode 100644
index 0000000..b4ea78c
--- /dev/null
+++ b/src/help/tech/hardware/asus-qm1.bios.jpg
Binary files differdiff --git a/src/help/tech/hardware/asus-qm1.gmi b/src/help/tech/hardware/asus-qm1.gmi
new file mode 100644
index 0000000..b2eb8bd
--- /dev/null
+++ b/src/help/tech/hardware/asus-qm1.gmi
@@ -0,0 +1,22 @@
+# Asus QM1
+06 May 2021
+
+Asus QM1 is a tiny computer a.k.a. "compute stick". It's not very fast but it can do less intesive tasks like playing music or displaying slideshows.
+
+## Bios
+
+One of the weirdest I've ever seen. It only supports UEFI boot.
+
+Press `ESC` to enter
+
+=> asus-qm1.bios.jpg
+
+## Booting from USB
+
+After connecting usb hub to the stick you will be able to boot from pendrive. Downside of this tiny PC is small support. From my research I know that USB stick needs to be in exFAT filesystem and must be EUFI comptible (contain `/efi/boot/*.efi`). And of course only 32-bit systems are supported. This is the only setup that worked.
+
+To boot from USB select the device from Boot Manager menu.
+
+## Power consumption
+
+It consumes little over 3W on idle, and during stress test it was running on 6.5W.
diff --git a/src/help/tech/software/neatroff.gmi b/src/help/tech/software/neatroff.gmi
new file mode 100644
index 0000000..b296416
--- /dev/null
+++ b/src/help/tech/software/neatroff.gmi
@@ -0,0 +1,69 @@
+# neatroff
+12 May 2021
+
+Neatroff is a typesetting tool for creating documents. It is a modern rewrite of GNU's groff (which has it's roots in `troff` from 1973). So this software has a very rich history, yet there's not much resources on the internet (in comparison to latex). So why should you care? Because it is extremaly fast. And does not weight 2GB like latex.
+
+## Installing neatroff
+If you're using unix (macos is unix) or linux you probably have already groff or troff installed. You can use them mostly the same as neatroff.
+The easiest method of installing neatroff is by using the neatroff_make repository. Just clone it with git then run make and it will download all needed resources (fonts, tmacs). Then go to the `/demo` directory and you can now test things out.
+
+=> https://github.com/aligrudi/neatroff_make neatroff_make
+
+### NixOS
+
+If you're using NixOS you can easily download neatroff from my nur:
+
+```
+$ nix-shell -p nur.repos.pn.neatroff
+```
+
+In that package you will find these binaries: eqn pdf pic post refer roff soin tbl
+
+## Using neatroff
+
+Here's a basic demo.ms file:
+
+```
+.TL
+This is document title
+
+.AU
+Patryk Niedźwiedziński
+
+.NH
+Intro
+
+.PP
+This is an introductory paragraph describing what the document will be about.
+As this document is created for demonstratory purposes it will be short and trivial.
+```
+
+Then run: `roff -ms demo.ms | pdf > demo.pdf`
+(For groff: groff -ms demo.ms -Tpdf > demo.pdf)
+
+## Tool description
+
+Basically there are 3 types of tools in neatroff: preprocessors, text processor (a.k.a. roff) and postprocessors.
+All of them easily customizable pipeline:
+
+```
+cat $file | eqn | tbl | roff -ms | pdf
+```
+
+### Preprocessors
+
+Those are programs that run on source document. They prepare neatroff document for rendering i.e. render equations (eqn) or tables (tbl)
+
+Thanks to simplicity of neatroff design you can simply write your own preprocessor. For example this is a preprocessor for fixing em-dashes: `cat source.ms | sed 's/---/\(em/g' | roff`
+
+### Text processor
+roff - it's the main tool in neatroff pipeline. It executes macros and produces postscript document.
+
+### Postprocessors
+Those are programs that run on output of roff, on postscript document. The most basic is pdf postprocessor for converting postscript to pdf.
+
+
+## Example
+
+=> neatroff_example.pdf
+=> neatroff_example.ms
diff --git a/src/help/tech/software/neatroff_example.ms b/src/help/tech/software/neatroff_example.ms
new file mode 100644
index 0000000..a9a6479
--- /dev/null
+++ b/src/help/tech/software/neatroff_example.ms
@@ -0,0 +1,181 @@
+.TL
+Yet another neatroff demo
+
+.AU
+Patryk Niedźwiedziński
+
+.NH
+Intro
+
+.PP
+It's not much, but this showcases how to create a simple document. You can even skip heading macros (.TL, .AU) and just start writing.
+
+.NH
+Inspiring quotes in polish
+
+.LP
+To złota zasada w życiu wymagać mało od świata, a dużo od siebie.
+.B
+Józef Biegański
+
+.LP
+Harcerz wie, że trzeba zawsze wytrwać i przetrwać, by nareszcie
+zwyciężyć, a nie mówić przedwcześnie, że wszystko stracone.
+.B
+gen. Józef Haller
+
+.LP
+Aby zrobić cokolwiek dobrze, człowiek musi być przygotowany na to, że
+na początku będzie to robić źle.
+.B
+św. Josemaria Escriva de Balaguer
+
+.LP
+Bądź prosty i pobożny jak dziecko, a jednocześnie pełen mocy i silny
+jak przywódca.
+.B
+św. Josemaria Escriva de Balaguer
+
+.LP
+Czuwać, to znaczy dostrzegać i miłować drugiego człowieka, szanować
+jego godność i wartość. Czuwać - to znaczy otaczać odpowiednią troską
+całe dziedzictwo kulturowe przodków, które decyduje o naszej
+tożsamości chrześcijańskiej i narodowej.
+.B
+św. Jan Paweł II
+
+.LP
+Gdzie wszyscy myślą tak samo, nikt nie myśli zbyt wiele.
+.B
+Walter Lippmann
+
+.LP
+Powiedz mi, a zapomnę, pokaż mi, a zapamiętam, pozwól mi zrobić, a
+zrozumiem.
+.B
+Konfucjusz
+
+.LP
+Doskonalenie innych wymaga siły. Doskonalenie siebie wymaga mocy.
+.B
+Tao Te Ching
+
+.LP
+Człowiek dopiero wtedy jest szczęśliwy, gdy może służyć, a nie wtedy,
+gdy musi władać. Władza imponuje tylko małym ludziom, którzy jej
+pragną, by nadrobić swoją małość. Człowiek naprawdę wielki, nawet gdy
+włada, jest sługą.
+.B
+ks. kard. Stanisław Wyszyński
+
+.LP
+Trudności życia są błogosławieństwem, gdyż przezwyciężanie ich
+oznacza zwycięstwo.
+.B
+Olga Małkowska
+
+.LP
+Na miano harcerza trzeba sobie zasłużyć.
+.B
+hm. Tomasz Strzembosz
+
+.LP
+Nie można też zrezygnować z dokładności i staranności, nie można
+machnąć ręką na wysiłek, płynąć z falą szablonu. Tak jest łatwo, ale
+w harcerstwie zwłaszcza pamiętać trzeba, że im trudniej, tym lepiej.
+.B
+hm. Ewa Grodecka
+
+.LP
+Nic nie znaczą słowa Przyrzeczenia, jeśli się wielokrotnie nie
+przełamały w pryzmacie codziennego życia.
+.B
+hm. RP Jadwiga Falkowska
+
+.LP
+Jeśli chcemy być przekonujący, musimy być godni zaufania. Jeśli
+chcemy być godni zaufania, musimy być wiarygodni. Jeśli chcemy być
+wiarygodni, musimy być prawdomówni.
+.B
+Edward R. Murrow
+
+.LP
+Tylko w ogniu można wykuć miecz.
+.B
+Gwiezdne Wojny, Wojny Klonów
+
+.LP
+Tam gdzie jest wola, znajdzie się metoda.
+.B
+Autor nieznany
+
+.LP
+Przeciwności losu to najlepszy test dla przyjaźni.
+.B
+Autor nieznany
+
+.LP
+Uwierz w siebie, albo nikt inny tego nie zrobi.
+.B
+Autor nieznany
+
+.LP
+Kto nie chce ubrudzić się błotem, ściółką i ludzką marnością, nie
+powinien brać się za harcerstwo.
+.B
+Marek Kamecki
+
+.LP
+Być wychowawcą - znaczy: dawać, służyc, pomagać, inspirować.
+.B
+Aleksander Kamiński
+
+.LP
+Praca drużynowego podobna jest do gry w golfa, do żęcia sierpem lub
+łowienia ryb na wędkę. Nie uda się, gdy będziemy się śpieszyć, a
+przynajmniej nie uda się tak, jak przy lekkim, spokojnym, miarowym
+rozmachu. Ale rozmachu już nabraliście. Stanie w miejscu nie
+prowadzi do niczego. Są dwie możliwości: iść naprzód lub stać.
+Idziemy na przód i to z uśmiechem.
+.B
+gen. Robert Baden-Powell
+
+.LP
+W harcerstwie nie dzieje się nic, co nie ma wpływu wychowawczego!
+.B
+Aleksander Kamiński
+
+.LP
+Najbardziej twórczą ze wszystkich prac jest praca nad sobą, która
+pozwala odnajdywać urok młodości.
+.B
+św. Jan Paweł II
+
+.LP
+I po to właśnie jest harcerstwo i skauting - żeby każdego dnia
+stawać się silnym i pięknym.
+Andrzej Wysocki
+
+.LP
+Ruch jest radosnym braterstwem, tym bardziej radosnym, że w Grze
+Skautingu robisz wielką rzecz dla bliźnich, zwalczasz kulturę
+egoizmu.
+.B
+gen. Robert Baden-Powell
+
+.LP
+Trzy są cele ruchu skautowego:
+.IP 1. 2
+Wyrabianie indywidualnych charakterów u młodzieży
+.IP 2. 2
+Służenie innym
+.IP 3. 2
+Uczenie rzemiósł i sprawności skautowych.
+.B
+Andrzej Małkowski
+
+.LP
+Człowiek nie może być tylko wychowywany. Musi wychowywać samego
+siebie, być dla siebie wychowawcą.
+.B
+św. Jan Paweł II
diff --git a/src/help/tech/software/neatroff_example.pdf b/src/help/tech/software/neatroff_example.pdf
new file mode 100644
index 0000000..eb4cd29
--- /dev/null
+++ b/src/help/tech/software/neatroff_example.pdf
@@ -0,0 +1,1278 @@
+%PDF-1.6
+
+4 0 obj
+<<
+  /Type /FontDescriptor
+  /FontName /Times-Bold
+  /Flags 32
+  /FontBBox [-1000 -1000 1000 1000]
+  /MissingWidth 1000
+  /StemV 100
+  /ItalicAngle 0
+  /CapHeight 100
+  /Ascent 100
+  /Descent 100
+>>
+endobj
+
+7 0 obj
+<<
+  /Type /FontDescriptor
+  /FontName /Times-Italic
+  /Flags 32
+  /FontBBox [-1000 -1000 1000 1000]
+  /MissingWidth 1000
+  /StemV 100
+  /ItalicAngle 0
+  /CapHeight 100
+  /Ascent 100
+  /Descent 100
+>>
+endobj
+
+11 0 obj
+<<
+  /Type /FontDescriptor
+  /FontName /Times-Roman
+  /Flags 32
+  /FontBBox [-1000 -1000 1000 1000]
+  /MissingWidth 1000
+  /StemV 100
+  /ItalicAngle 0
+  /CapHeight 100
+  /Ascent 100
+  /Descent 100
+>>
+endobj
+
+16 0 obj
+<<
+  /Length 12863
+>>
+stream
+BT
+/Times-Bold.0 12 Tf
+1 0 0 1 220.80 670.00 Tm
+[<39> 91 <45> 8 <54> -250 <414e4f> 8 <54484552> -250 <4e4541> 8 <5452> 8 <4f>] TJ
+/Times-Bold.1 12 Tf
+[<f6>] TJ
+/Times-Bold.0 12 Tf
+[<> -250 <44454d4f>] TJ
+/Times-Italic.0 10 Tf
+1 0 0 1 241.50 630.00 Tm
+[<30> 60 <415452> -30 <594b> -250 <2e494544>] TJ
+/Times-Italic.3 10 Tf
+[<52>] TJ
+/Times-Italic.0 10 Tf
+[<57> 10 <494544> 10 <5a> 10 <49>] TJ
+/Times-Italic.2 10 Tf
+[<36>] TJ
+/Times-Italic.0 10 Tf
+[<53> 10 <4b49>] TJ
+/Times-Bold.0 10 Tf
+1 0 0 1 72.00 550.00 Tm
+[<110e> -500 <294e5452> 10 <4f>] TJ
+/Times-Roman.0 10 Tf
+1 0 0 1 97.00 522.40 Tm
+[<2954> 30 <07> 50 <53> -260 <4e4f> 10 <54> -260 <4d5543> 20 <480c> -260 <425554> -260 <54> -10 <484953> -260 <53484f> 40 <57> 30 <43> 10 <415345> 10 <53> -260 <484f> 40 <57> -260 <54> 10 <4f> -260 <4352> 10 <45> 10 <41> 10 <5445> -260 <41> -260 <53494d> 10 <504c45> -250 <444f43> 20 <554d454e540e> -250 <39> 100 <4f55> -250 <43> 10 <414e> -250 <45> 30 <56> 40 <454e> -250 <53> 20 <4b> -20 <4950> -250 <4845> 10 <4144494e> 30 <47> -250 <4d414352> 10 <4f53>] TJ
+1 0 0 1 72.00 510.40 Tm
+[<080e34> -20 <2c0c> -250 <0e21> 70 <3509> -250 <414e44> -250 <4a5553> 10 <54> -250 <53> 10 <54> -10 <4152> -20 <54> -250 <5752> -20 <4954> -10 <494e> 30 <47> 30 <0e>] TJ
+/Times-Bold.0 10 Tf
+1 0 0 1 72.00 474.40 Tm
+[<120e> -500 <294e53> 10 <504952> -10 <494e> 10 <47> -250 <51> 20 <554f> 10 <5445> -10 <53> -250 <494e> -250 <504f4c495348>] TJ
+/Times-Roman.0 10 Tf
+1 0 0 1 72.00 446.80 Tm
+[<34> 90 <4f> -250 <5a914f> 10 <54> -10 <41> -250 <5a4153> 10 <414441> -250 <57>] TJ
+/Times-Roman.3 10 Tf
+[<> -250 <54>] TJ
+/Times-Roman.0 10 Tf
+[<59> 40 <434955> -250 <57> -10 <594d41> 10 <47> 20 <41>] TJ
+/Times-Roman.1 10 Tf
+[<ca>] TJ
+/Times-Roman.0 10 Tf
+[<> -250 <4d41914f> -250 <4f44>] TJ
+/Times-Roman.2 10 Tf
+[<> -250 <6c>] TJ
+/Times-Roman.0 10 Tf
+[<> 20 <574941> 10 <54> -10 <41> -10 <0c> -250 <41> -250 <4455>] TJ
+/Times-Roman.3 10 Tf
+[<54>] TJ
+/Times-Roman.0 10 Tf
+[<4f> -250 <4f44> -250 <534945> 10 <424945> 10 <0e>] TJ
+/Times-Bold.0 10 Tf
+[<> -500 <2a>] TJ
+/Times-Bold.2 10 Tf
+[<41>] TJ
+/Times-Bold.0 10 Tf
+[<5a45> 10 <46> -250 <224945> 10 <47> 20 <41>] TJ
+/Times-Bold.2 10 Tf
+[<36>] TJ
+/Times-Bold.0 10 Tf
+[<53> 10 <4b> -10 <49>] TJ
+/Times-Roman.0 10 Tf
+1 0 0 1 72.00 419.20 Tm
+[<28> 10 <4152> 10 <4345525a> -280 <5749450c>] TJ
+/Times-Roman.3 10 Tf
+[<> -280 <54>] TJ
+/Times-Roman.0 10 Tf
+[<45> -280 <54> -10 <525a45> 10 <4241> -280 <5a41> 40 <57> 30 <53> 30 <5a45> -280 <57> -10 <5954> -10 <52> -20 <57> 40 <41>] TJ
+/Times-Roman.1 10 Tf
+[<ca>] TJ
+/Times-Roman.0 10 Tf
+[<> -280 <49> -280 <50525a45> 10 <54> -10 <52> -20 <57> 40 <41>] TJ
+/Times-Roman.1 10 Tf
+[<ca>] TJ
+/Times-Roman.0 10 Tf
+[<0c> -280 <42> 30 <59> -280 <4e4152> 10 <45> 10 <53> 30 <5a434945> -280 <5a57> -10 <59> 40 <4349>] TJ
+/Times-Roman.1 10 Tf
+[<eb>] TJ
+/Times-Roman.3 10 Tf
+[<> 20 <54>] TJ
+/Times-Roman.0 10 Tf
+[<59>] TJ
+/Times-Roman.1 10 Tf
+[<ca>] TJ
+/Times-Roman.0 10 Tf
+[<0c> -270 <41> -270 <4e4945> -270 <4d>] TJ
+/Times-Roman.2 10 Tf
+[<41>] TJ
+/Times-Roman.0 10 Tf
+[<> 40 <5749>] TJ
+/Times-Roman.1 10 Tf
+[<ca>] TJ
+/Times-Roman.0 10 Tf
+[<> -270 <50525a4544> 20 <57> 30 <435a45>] TJ
+/Times-Roman.2 10 Tf
+[<6c>] TJ
+/Times-Roman.0 10 Tf
+[<4e49450c>] TJ
+/Times-Roman.3 10 Tf
+[<> -270 <54>] TJ
+/Times-Roman.0 10 Tf
+[<45>] TJ
+1 0 0 1 72.00 407.20 Tm
+[<57> 30 <53> 30 <5a59> 30 <53> 10 <544b> 30 <4f> -250 <53> 10 <54> -10 <524143> 10 <4f4e45> 10 <0e>] TJ
+/Times-Bold.0 10 Tf
+[<> -500 <47> 20 <454e0e> -250 <2a>] TJ
+/Times-Bold.2 10 Tf
+[<41>] TJ
+/Times-Bold.0 10 Tf
+[<5a45> 10 <46> -250 <28414c4c4552>] TJ
+/Times-Roman.0 10 Tf
+1 0 0 1 72.00 379.60 Tm
+[<21> 20 <42> 30 <59> -340 <5a52> 10 <4f4249>] TJ
+/Times-Roman.1 10 Tf
+[<ca>] TJ
+/Times-Roman.0 10 Tf
+[<> -340 <43> 10 <4f4b> 30 <4f4c> 30 <574945> 10 <4b> -340 <444f42525a450c> -340 <435a914f> 40 <574945> 10 <4b> -340 <4d555349> -340 <42> 30 <59>] TJ
+/Times-Roman.1 10 Tf
+[<ca>] TJ
+/Times-Roman.0 10 Tf
+[<> -340 <50525a59> 50 <47> 30 <4f> 10 <54> 10 <4f> 40 <57> 40 <414e> 40 <59> -340 <4e41> -340 <54> 10 <4f> 10 <0c>] TJ
+/Times-Roman.3 10 Tf
+[<> -340 <54>] TJ
+/Times-Roman.0 10 Tf
+[<45> -340 <4e41> -340 <504f435a>] TJ
+/Times-Roman.1 10 Tf
+[<b5>] TJ
+/Times-Roman.0 10 Tf
+[<544b> -10 <55> -340 <42>] TJ
+/Times-Roman.1 10 Tf
+[<eb>] TJ
+/Times-Roman.0 10 Tf
+[<445a4945> -340 <54> 10 <4f> -330 <52> 10 <4f4249>] TJ
+/Times-Roman.1 10 Tf
+[<ca>] TJ
+/Times-Roman.3 10 Tf
+[<> -330 <52>] TJ
+/Times-Roman.0 10 Tf
+[<4c45> 10 <0e>] TJ
+/Times-Bold.2 10 Tf
+1 0 0 1 72.00 367.60 Tm
+[<6c>] TJ
+/Times-Bold.0 10 Tf
+[<> 10 <57> 50 <0e> -250 <2a4f53454d4152> -10 <4941> -250 <25534352> -10 <49> 20 <56> 20 <41> -250 <4445> -250 <22414c4147554552>] TJ
+/Times-Roman.0 10 Tf
+1 0 0 1 72.00 340.00 Tm
+[<22>] TJ
+/Times-Roman.1 10 Tf
+[<b5>] TJ
+/Times-Roman.0 10 Tf
+[<44>] TJ
+/Times-Roman.3 10 Tf
+[<52>] TJ
+/Times-Roman.0 10 Tf
+[<> -440 <5052> 10 <4f53> 10 <54> -10 <59> -440 <49> -440 <504f424f>] TJ
+/Times-Roman.3 10 Tf
+[<54>] TJ
+/Times-Roman.0 10 Tf
+[<4e> 40 <59> -440 <4a414b> -440 <445a494543> 20 <4b> 30 <4f> 10 <0c> -440 <41> -440 <4a45444e4f435a45>] TJ
+/Times-Roman.2 10 Tf
+[<6c>] TJ
+/Times-Roman.0 10 Tf
+[<4e4945> -440 <504591454e> -440 <4d4f43> 20 <59> -440 <49> -440 <53494c4e> 40 <59> -440 <4a414b> -440 <50525a5957>] TJ
+/Times-Roman.2 10 Tf
+[<> 40 <41>] TJ
+/Times-Roman.0 10 Tf
+[<4443> 10 <410e>] TJ
+/Times-Bold.2 10 Tf
+[<> -690 <6c>] TJ
+/Times-Bold.0 10 Tf
+[<> 10 <57> 50 <0e> -440 <2a4f53454d4152> -10 <4941>] TJ
+1 0 0 1 72.00 328.00 Tm
+[<25534352> -10 <49> 20 <56> 20 <41> -250 <4445> -250 <22414c4147554552>] TJ
+/Times-Roman.0 10 Tf
+1 0 0 1 72.00 300.40 Tm
+[<235a55> 20 <57> 40 <41>] TJ
+/Times-Roman.1 10 Tf
+[<ca>] TJ
+/Times-Roman.0 10 Tf
+[<0c> -280 <54> 10 <4f> -280 <5a4e41435a59> -280 <444f53> 10 <54> -10 <525a45> 20 <47> 20 <41>] TJ
+/Times-Roman.1 10 Tf
+[<ca>] TJ
+/Times-Roman.0 10 Tf
+[<> -270 <49> -270 <4d49914f> 40 <57> 40 <41>] TJ
+/Times-Roman.1 10 Tf
+[<ca>] TJ
+/Times-Roman.0 10 Tf
+[<> -270 <4452> -20 <55> 20 <474945> 20 <47> 30 <4f> -270 <435a914f> 40 <574945> 10 <4b41> -10 <0c> -270 <53> 30 <5a414e4f> 40 <57> 40 <41>] TJ
+/Times-Roman.1 10 Tf
+[<ca>] TJ
+/Times-Roman.0 10 Tf
+[<> -270 <4a45> 20 <47> 30 <4f> -270 <47> 30 <4f444e4f>] TJ
+/Times-Roman.2 10 Tf
+[<6c>] TJ
+/Times-Roman.1 10 Tf
+[<ca>] TJ
+/Times-Roman.0 10 Tf
+[<> -270 <49> -270 <57> 40 <4152> -20 <54> 10 <4f>] TJ
+/Times-Roman.2 10 Tf
+[<6c>] TJ
+/Times-Roman.1 10 Tf
+[<ca>] TJ
+/Times-Roman.0 10 Tf
+[<0e> -270 <235a55> 20 <57> 40 <41>] TJ
+/Times-Roman.1 10 Tf
+[<ca>] TJ
+/Times-Roman.0 10 Tf
+[<> -270 <0d> -270 <54> 10 <4f>] TJ
+1 0 0 1 72.00 288.40 Tm
+[<5a4e41435a59> -640 <4f> 10 <54> -10 <41435a41>] TJ
+/Times-Roman.1 10 Tf
+[<ca>] TJ
+/Times-Roman.0 10 Tf
+[<> -630 <4f44504f> 40 <574945444e49>] TJ
+/Times-Roman.1 10 Tf
+[<b5>] TJ
+/Times-Roman.0 10 Tf
+[<> -630 <54> -10 <52> 10 <4f53> 20 <4b>] TJ
+/Times-Roman.1 10 Tf
+[<b5>] TJ
+/Times-Roman.0 10 Tf
+[<> -630 <43> 10 <419145> -630 <445a4945445a4943> 10 <54> -10 <57> 40 <4f> -630 <4b> -10 <554c54> -10 <5552> 10 <4f> 40 <57> 30 <45> -630 <50525a4f444b>] TJ
+/Times-Roman.2 10 Tf
+[<> 30 <41>] TJ
+/Times-Roman.0 10 Tf
+[<> 40 <57> 70 <0c> -630 <4b> -10 <54>] TJ
+/Times-Roman.2 10 Tf
+[<> 10 <41>] TJ
+/Times-Roman.0 10 Tf
+[<52> 10 <45> -630 <444543> 20 <594455> 30 <4a45> -630 <4f> -630 <4e4153> 30 <5a45> 30 <4a>] TJ
+1 0 0 1 72.00 276.40 Tm
+[<54> 10 <4f>] TJ
+/Times-Roman.3 10 Tf
+[<54>] TJ
+/Times-Roman.0 10 Tf
+[<53> 10 <414d4f>] TJ
+/Times-Roman.2 10 Tf
+[<6c>] TJ
+/Times-Roman.0 10 Tf
+[<> 10 <4349> -250 <43> 20 <48525a45>] TJ
+/Times-Roman.2 10 Tf
+[<6c>] TJ
+/Times-Roman.0 10 Tf
+[<> 10 <4349> 30 <4a41>] TJ
+/Times-Roman.2 10 Tf
+[<36>] TJ
+/Times-Roman.0 10 Tf
+[<53> 20 <4b> -20 <4945> 30 <4a> -250 <49> -250 <4e4152> 10 <4f444f> 40 <57> 30 <45> 30 <4a0e>] TJ
+/Times-Bold.2 10 Tf
+[<> -500 <6c>] TJ
+/Times-Bold.0 10 Tf
+[<> 10 <57> 50 <0e> -250 <2a414e> -250 <30> 20 <41> 40 <57> 30 <4591> -250 <2929>] TJ
+/Times-Roman.0 10 Tf
+1 0 0 1 72.00 248.80 Tm
+[<27445a4945> -250 <57> 30 <53> 30 <5a59> 30 <5343> 20 <59> -250 <4d> 40 <59>] TJ
+/Times-Roman.2 10 Tf
+[<> 30 <6c>] TJ
+/Times-Roman.0 10 Tf
+[<4c>] TJ
+/Times-Roman.1 10 Tf
+[<b5>] TJ
+/Times-Roman.0 10 Tf
+[<> -250 <54> -10 <414b> -250 <53> 10 <414d4f> 10 <0c> -250 <4e494b> -10 <54> -250 <4e4945> -250 <4d> 40 <59>] TJ
+/Times-Roman.2 10 Tf
+[<> 30 <6c>] TJ
+/Times-Roman.0 10 Tf
+[<4c49> -250 <5a42> 30 <5954> -250 <574945> 20 <4c45> 10 <0e>] TJ
+/Times-Bold.0 10 Tf
+[<> -500 <37> 70 <414c544552> -250 <2c> 10 <4950504d414e4e>] TJ
+/Times-Roman.0 10 Tf
+1 0 0 1 72.00 221.20 Tm
+[<30> 30 <4f> 40 <574945445a> -250 <4d490c> -250 <41> -250 <5a41504f4d4e>] TJ
+/Times-Roman.1 10 Tf
+[<eb>] TJ
+/Times-Roman.0 10 Tf
+[<0c> -250 <504f4b41>] TJ
+/Times-Roman.3 10 Tf
+[<54>] TJ
+/Times-Roman.0 10 Tf
+[<> -250 <4d490c> -250 <41> -250 <5a4150414d49>] TJ
+/Times-Roman.1 10 Tf
+[<eb>] TJ
+/Times-Roman.0 10 Tf
+[<54> -10 <414d0c> -250 <504f> 20 <5a57>] TJ
+/Times-Roman.2 10 Tf
+[<> 40 <41>] TJ
+/Times-Roman.0 10 Tf
+[<4c> -250 <4d49> -250 <5a52> 10 <4f4249>] TJ
+/Times-Roman.1 10 Tf
+[<ca>] TJ
+/Times-Roman.0 10 Tf
+[<0c> -250 <41> -250 <5a52> 10 <4f> 20 <5a554d49454d0e>] TJ
+/Times-Bold.0 10 Tf
+[<> -500 <2b> 30 <4f4e465543> 30 <4a5553> 10 <5a>] TJ
+/Times-Roman.0 10 Tf
+1 0 0 1 72.00 193.60 Tm
+[<244f53> 20 <4b> 30 <4f4e414c454e4945> -250 <494e4e> 40 <59> 40 <43> 20 <48> -250 <57> -10 <594d41> 10 <47> 20 <41> -250 <53499159> 80 <0e> -250 <244f53> 20 <4b> 30 <4f4e414c454e4945> -250 <534945> 10 <424945> -250 <57> -10 <594d41> 10 <47> 20 <41> -250 <4d4f43> 20 <59> 80 <0e>] TJ
+/Times-Bold.0 10 Tf
+[<> -500 <34> 70 <414f> -250 <34> 80 <45> -250 <2348494e> 10 <47>] TJ
+/Times-Roman.0 10 Tf
+1 0 0 1 72.00 166.00 Tm
+[<235a914f> 40 <574945> 10 <4b> -280 <444f50494552> 10 <4f> -280 <57> -10 <544544> 20 <59> -280 <4a45> 10 <53> 10 <54> -280 <53> 30 <5a435a>] TJ
+/Times-Roman.1 10 Tf
+[<eb>] TJ
+/Times-Roman.2 10 Tf
+[<6c>] TJ
+/Times-Roman.0 10 Tf
+[<4c49> 30 <57> -10 <59> 70 <0c> -280 <47> 30 <44> 20 <59> -280 <4d4f>] TJ
+/Times-Roman.3 10 Tf
+[<54>] TJ
+/Times-Roman.0 10 Tf
+[<45> -280 <539155>] TJ
+/Times-Roman.3 10 Tf
+[<54>] TJ
+/Times-Roman.0 10 Tf
+[<59>] TJ
+/Times-Roman.1 10 Tf
+[<ca>] TJ
+/Times-Roman.0 10 Tf
+[<0c> -280 <41> -280 <4e4945> -280 <57> -10 <544544> 20 <59> 70 <0c> -280 <47> 30 <44> 20 <59> -280 <4d555349> -280 <5791414441>] TJ
+/Times-Roman.1 10 Tf
+[<ca>] TJ
+/Times-Roman.0 10 Tf
+[<0e> -280 <379141445a41> -280 <494d> 10 <504f4e55> 30 <4a45>] TJ
+1 0 0 1 72.00 154.00 Tm
+[<54> -10 <59> 30 <4c4b> 30 <4f> -330 <4d4191594d> -330 <4c55445a494f4d0c> -330 <4b> -10 <54>] TJ
+/Times-Roman.2 10 Tf
+[<> 10 <41>] TJ
+/Times-Roman.0 10 Tf
+[<525a59> -330 <4a45> 30 <4a> -320 <505241> 10 <474e>] TJ
+/Times-Roman.1 10 Tf
+[<b5>] TJ
+/Times-Roman.0 10 Tf
+[<0c> -320 <42> 30 <59> -320 <4e414452> 10 <4f4249>] TJ
+/Times-Roman.1 10 Tf
+[<ca>] TJ
+/Times-Roman.0 10 Tf
+[<> -320 <53> 20 <57> 40 <4f> 20 <4a>] TJ
+/Times-Roman.1 10 Tf
+[<b5>] TJ
+/Times-Roman.0 10 Tf
+[<> -320 <4d41914f>] TJ
+/Times-Roman.2 10 Tf
+[<6c>] TJ
+/Times-Roman.1 10 Tf
+[<ca>] TJ
+/Times-Roman.0 10 Tf
+[<0e> -320 <235a914f> 40 <574945> 10 <4b> -320 <4e41505241> 40 <5744>] TJ
+/Times-Roman.1 10 Tf
+[<eb>] TJ
+/Times-Roman.0 10 Tf
+[<> -320 <574945> 20 <4c4b> -20 <490c> -320 <4e41> 40 <57> 30 <45> 10 <54> -320 <47> 30 <44> 20 <59>] TJ
+1 0 0 1 72.00 142.00 Tm
+[<5791414441> -10 <0c> -250 <4a45> 10 <53> 10 <54> -250 <539155> 20 <47>] TJ
+/Times-Roman.1 10 Tf
+[<b5>] TJ
+/Times-Roman.0 10 Tf
+[<0e>] TJ
+/Times-Bold.0 10 Tf
+[<> -500 <4b53> -10 <0e> -250 <4b4152> 10 <440e> -250 <33> 10 <54> -10 <414e49539141> 40 <57> -250 <37> 40 <59> 20 <53> 10 <5a59>] TJ
+/Times-Bold.2 10 Tf
+[<36>] TJ
+/Times-Bold.0 10 Tf
+[<53> 10 <4b> -10 <49>] TJ
+/Times-Roman.0 10 Tf
+1 0 0 1 72.00 114.40 Tm
+[<34> 50 <52> -20 <55444e4f>] TJ
+/Times-Roman.2 10 Tf
+[<6c>] TJ
+/Times-Roman.0 10 Tf
+[<> 10 <4349>] TJ
+/Times-Roman.3 10 Tf
+[<> -250 <54>] TJ
+/Times-Roman.0 10 Tf
+[<59> 40 <434941> -250 <53>] TJ
+/Times-Roman.1 10 Tf
+[<b5>] TJ
+/Times-Roman.0 10 Tf
+[<> -250 <42914f> 20 <47> 30 <4f539141> 40 <574945>] TJ
+/Times-Roman.2 10 Tf
+[<36>] TJ
+/Times-Roman.0 10 Tf
+[<53> 10 <54> -10 <57> 30 <454d0c> -250 <47> 30 <44> 20 <59>] TJ
+/Times-Roman.3 10 Tf
+[<54>] TJ
+/Times-Roman.0 10 Tf
+[<> -250 <50525a45> 20 <5a57> -10 <59> 40 <4349>] TJ
+/Times-Roman.1 10 Tf
+[<eb>] TJ
+/Times-Roman.3 10 Tf
+[<> 20 <54>] TJ
+/Times-Roman.0 10 Tf
+[<414e4945> -250 <4943> 20 <48> -250 <4f> 20 <5a4e41435a41> -250 <5a57> -10 <59> 40 <4349>] TJ
+/Times-Roman.1 10 Tf
+[<eb>] TJ
+/Times-Roman.0 10 Tf
+[<53> 10 <54> -10 <57> 40 <4f> 20 <0e>] TJ
+/Times-Bold.0 10 Tf
+[<> -500 <2f4c> 10 <47> 20 <41> -250 <2d41914b> 40 <4f> 40 <57> 20 <53> 10 <4b41>] TJ
+/Times-Roman.0 10 Tf
+1 0 0 1 72.00 86.80 Tm
+[<2e> 30 <41> -250 <4d49414e4f> -250 <484152> 10 <4345525a41> -250 <54> -10 <525a45> 10 <4241> -250 <534f424945> -250 <5a41539155>] TJ
+/Times-Roman.3 10 Tf
+[<54>] TJ
+/Times-Roman.0 10 Tf
+[<59>] TJ
+/Times-Roman.1 10 Tf
+[<ca>] TJ
+/Times-Roman.0 10 Tf
+[<0e>] TJ
+/Times-Bold.0 10 Tf
+[<> -500 <484d0e> -250 <34> 90 <4f4d4153> 10 <5a> -250 <33> 10 <54525a454d424f53> 10 <5a>] TJ
+ET
+endstream
+endobj
+
+17 0 obj
+<<
+  /Type /Page
+  /Parent 2 0 R
+  /Resources <<
+    /Font << /Times-Bold.0 3 0 R /Times-Bold.1 5 0 R /Times-Italic.0 6 0 R /Times-Italic.3 8 0 R /Times-Italic.2 9 0 R /Times-Roman.0 10 0 R /Times-Roman.3 12 0 R /Times-Roman.1 13 0 R /Times-Roman.2 14 0 R /Times-Bold.2 15 0 R >>
+  >>
+  /Contents 16 0 R
+>>
+endobj
+
+18 0 obj
+<<
+  /Length 16352
+>>
+stream
+BT
+/Times-Roman.0 10 Tf
+1 0 0 1 279.70 744.00 Tm
+[<0d> -250 <12> -250 <0d>] TJ
+1 0 0 1 72.00 708.00 Tm
+[<2e4945> -290 <4d4f>] TJ
+/Times-Roman.3 10 Tf
+[<54>] TJ
+/Times-Roman.0 10 Tf
+[<4e41> -290 <5445>] TJ
+/Times-Roman.3 10 Tf
+[<54>] TJ
+/Times-Roman.0 10 Tf
+[<> -290 <5a52> 10 <45> 20 <5a59> 50 <474e4f> 40 <57> 40 <41>] TJ
+/Times-Roman.1 10 Tf
+[<ca>] TJ
+/Times-Roman.0 10 Tf
+[<> -290 <5a> -290 <444f4b9141444e4f>] TJ
+/Times-Roman.2 10 Tf
+[<6c>] TJ
+/Times-Roman.0 10 Tf
+[<> 10 <4349> -290 <49> -290 <53> 10 <54> -10 <4152414e4e4f>] TJ
+/Times-Roman.2 10 Tf
+[<6c>] TJ
+/Times-Roman.0 10 Tf
+[<> 10 <43490c> -290 <4e4945> -290 <4d4f>] TJ
+/Times-Roman.3 10 Tf
+[<54>] TJ
+/Times-Roman.0 10 Tf
+[<4e41> -290 <4d4143> 20 <484e>] TJ
+/Times-Roman.1 10 Tf
+[<b5ca>] TJ
+/Times-Roman.0 10 Tf
+[<> -290 <52>] TJ
+/Times-Roman.1 10 Tf
+[<eb>] TJ
+/Times-Roman.0 10 Tf
+[<4b>] TJ
+/Times-Roman.1 10 Tf
+[<b5>] TJ
+/Times-Roman.0 10 Tf
+[<> -290 <4e41> -290 <57> -10 <59> 30 <53499145> 10 <4b0c> -290 <5091594e>] TJ
+/Times-Roman.1 10 Tf
+[<b5ca>] TJ
+/Times-Roman.0 10 Tf
+[<> -290 <5a> -290 <46> 30 <414c>] TJ
+/Times-Roman.1 10 Tf
+[<b5>] TJ
+/Times-Roman.0 10 Tf
+1 0 0 1 72.00 696.00 Tm
+[<53> 30 <5a41424c4f4e55> 10 <0e> -280 <34> 80 <414b> -280 <4a45> 10 <53> 10 <54> -280 <9141> 10 <54> -10 <57> 40 <4f> 10 <0c> -280 <414c45> -280 <57> -280 <484152> 10 <43455253> 10 <54> -10 <574945> -270 <5a57914153> 30 <5a435a41> -270 <50414d49>] TJ
+/Times-Roman.1 10 Tf
+[<eb>] TJ
+/Times-Roman.0 10 Tf
+[<54> -10 <41>] TJ
+/Times-Roman.1 10 Tf
+[<ca>] TJ
+/Times-Roman.0 10 Tf
+[<> -270 <54> -10 <525a45> 10 <4241> -10 <0c>] TJ
+/Times-Roman.3 10 Tf
+[<> -270 <54>] TJ
+/Times-Roman.0 10 Tf
+[<45> -270 <494d> -270 <54> -10 <52> -20 <55444e4945> 30 <4a0c> -270 <54> -10 <594d> -270 <4c45504945> 30 <4a0e>] TJ
+/Times-Bold.0 10 Tf
+[<> -520 <484d0e> -270 <25> 30 <57> 20 <41>] TJ
+1 0 0 1 72.00 684.00 Tm
+[<2752> 10 <4f444543> 20 <4b41>] TJ
+/Times-Roman.0 10 Tf
+1 0 0 1 72.00 656.40 Tm
+[<2e4943> -320 <4e4945> -320 <5a4e41435a>] TJ
+/Times-Roman.1 10 Tf
+[<b5>] TJ
+/Times-Roman.0 10 Tf
+[<> -320 <53914f> 40 <57> 40 <41> -320 <30525a59525a45435a454e4941> -10 <0c> -320 <4a45>] TJ
+/Times-Roman.2 10 Tf
+[<6c>] TJ
+/Times-Roman.0 10 Tf
+[<4c49> -320 <5349>] TJ
+/Times-Roman.1 10 Tf
+[<eb>] TJ
+/Times-Roman.0 10 Tf
+[<> -310 <574945> 20 <4c4f4b> -30 <52> 10 <4f> 10 <54> -10 <4e4945> -310 <4e4945> -310 <50525a4591414d419159> -310 <57> -310 <5052> -20 <595a4d41434945> -310 <43> 10 <4f445a49454e4e45> 20 <47> 30 <4f>] TJ
+/Times-Roman.3 10 Tf
+[<> -310 <54>] TJ
+/Times-Roman.0 10 Tf
+[<59> 40 <4349410e>] TJ
+/Times-Bold.0 10 Tf
+1 0 0 1 72.00 644.40 Tm
+[<484d0e> -250 <32> -20 <30> -250 <2a4144> 30 <57> -10 <49> 10 <47> 20 <41> -250 <26> 50 <414c4b> 40 <4f> 40 <57> 20 <53> 10 <4b41>] TJ
+/Times-Roman.0 10 Tf
+1 0 0 1 72.00 616.80 Tm
+[<2a45>] TJ
+/Times-Roman.2 10 Tf
+[<6c>] TJ
+/Times-Roman.0 10 Tf
+[<4c49> -320 <43> 20 <4843454d> 40 <59> -320 <42> 30 <59>] TJ
+/Times-Roman.1 10 Tf
+[<ca>] TJ
+/Times-Roman.0 10 Tf
+[<> -320 <50525a45> 10 <4b> 30 <4f4e55> 30 <4a>] TJ
+/Times-Roman.1 10 Tf
+[<b5>] TJ
+/Times-Roman.0 10 Tf
+[<43> 20 <59> 70 <0c> -320 <4d5553494d> 40 <59> -320 <42> 30 <59>] TJ
+/Times-Roman.1 10 Tf
+[<ca>] TJ
+/Times-Roman.0 10 Tf
+[<> -310 <47> 30 <4f444e49> -310 <5a415546> 30 <414e49410e> -310 <2a45>] TJ
+/Times-Roman.2 10 Tf
+[<6c>] TJ
+/Times-Roman.0 10 Tf
+[<4c49> -310 <43> 20 <4843454d> 40 <59> -310 <42> 30 <59>] TJ
+/Times-Roman.1 10 Tf
+[<ca>] TJ
+/Times-Roman.0 10 Tf
+[<> -310 <47> 30 <4f444e49> -310 <5a415546> 30 <414e4941> -10 <0c> -310 <4d5553494d> 40 <59> -310 <42> 30 <59>] TJ
+/Times-Roman.1 10 Tf
+[<ca>] TJ
+/Times-Roman.0 10 Tf
+1 0 0 1 72.00 604.80 Tm
+[<57494152> -20 <59> 50 <47> 30 <4f444e490e> -250 <2a45>] TJ
+/Times-Roman.2 10 Tf
+[<6c>] TJ
+/Times-Roman.0 10 Tf
+[<4c49> -250 <43> 20 <4843454d> 40 <59> -250 <42> 30 <59>] TJ
+/Times-Roman.1 10 Tf
+[<ca>] TJ
+/Times-Roman.0 10 Tf
+[<> -250 <57494152> -20 <59> 50 <47> 30 <4f444e490c> -250 <4d5553494d> 40 <59> -250 <42> 30 <59>] TJ
+/Times-Roman.1 10 Tf
+[<ca>] TJ
+/Times-Roman.0 10 Tf
+[<> -250 <505241> 40 <57444f4d>] TJ
+/Times-Roman.2 10 Tf
+[<41>] TJ
+/Times-Roman.0 10 Tf
+[<> 40 <574e490e>] TJ
+/Times-Bold.0 10 Tf
+[<> -500 <2544> 30 <57> 20 <4152> 10 <44> -250 <320e> -250 <2d555252> 10 <4f> 40 <57>] TJ
+/Times-Roman.0 10 Tf
+1 0 0 1 72.00 577.20 Tm
+[<34> 100 <59> 30 <4c4b> 30 <4f> -250 <57> -250 <4f> 20 <474e4955> -250 <4d4f>] TJ
+/Times-Roman.3 10 Tf
+[<54>] TJ
+/Times-Roman.0 10 Tf
+[<4e41> -250 <57> -10 <594b> -10 <55>] TJ
+/Times-Roman.1 10 Tf
+[<ca>] TJ
+/Times-Roman.0 10 Tf
+[<> -250 <4d4945435a> -10 <0e>] TJ
+/Times-Bold.0 10 Tf
+[<> -500 <27> 40 <57> -10 <4945> 10 <5a444e45> -250 <37> 70 <4f> 30 <4a4e> 40 <59> 60 <0c> -250 <37> 70 <4f> 30 <4a4e> 40 <59> -250 <2b> -20 <4c4f4e>] TJ
+/Times-Bold.2 10 Tf
+[<41>] TJ
+/Times-Bold.0 10 Tf
+[<> 40 <57>] TJ
+/Times-Roman.0 10 Tf
+1 0 0 1 72.00 549.60 Tm
+[<34> 80 <414d> -250 <47> 30 <445a4945> -250 <4a45> 10 <53> 10 <54> -250 <57> 40 <4f4c41> -10 <0c> -250 <5a4e41> 30 <4a445a4945> -250 <5349>] TJ
+/Times-Roman.1 10 Tf
+[<eb>] TJ
+/Times-Roman.0 10 Tf
+[<> -250 <4d45> 10 <54> 10 <4f44410e>] TJ
+/Times-Bold.0 10 Tf
+[<> -500 <21> 30 <55544f52> -250 <4e4945> 10 <5a4e414e> 40 <59>] TJ
+/Times-Roman.0 10 Tf
+1 0 0 1 72.00 522.00 Tm
+[<30525a454349> 30 <574e4f>] TJ
+/Times-Roman.2 10 Tf
+[<6c>] TJ
+/Times-Roman.0 10 Tf
+[<> 10 <4349> -250 <4c4f5355> -250 <54> 10 <4f> -250 <4e41> 30 <4a4c455053> 30 <5a59> -250 <5445> 10 <53> 10 <54> -250 <444c41> -250 <50525a59> 10 <4a41>] TJ
+/Times-Roman.3 10 Tf
+[<52>] TJ
+/Times-Roman.0 10 Tf
+[<4e490e>] TJ
+/Times-Bold.0 10 Tf
+[<> -500 <21> 30 <55544f52> -250 <4e4945> 10 <5a4e414e> 40 <59>] TJ
+/Times-Roman.0 10 Tf
+1 0 0 1 72.00 494.40 Tm
+[<35> 30 <574945525a> -250 <57> -250 <534945> 10 <4249450c> -250 <414c424f> -250 <4e494b> -10 <54> -250 <494e4e> 40 <59> -250 <5445> 20 <47> 30 <4f> -250 <4e4945> -250 <5a52> 10 <4f42490e>] TJ
+/Times-Bold.0 10 Tf
+[<> -500 <21> 30 <55544f52> -250 <4e4945> 10 <5a4e414e> 40 <59>] TJ
+/Times-Roman.0 10 Tf
+1 0 0 1 72.00 466.80 Tm
+[<2b54> 10 <4f> -300 <4e4945> -300 <43> 20 <484345> -300 <554252> -20 <55445a49>] TJ
+/Times-Roman.1 10 Tf
+[<ca>] TJ
+/Times-Roman.0 10 Tf
+[<> -290 <5349>] TJ
+/Times-Roman.1 10 Tf
+[<eb>] TJ
+/Times-Roman.0 10 Tf
+[<> -290 <42914f> 10 <54454d0c>] TJ
+/Times-Roman.2 10 Tf
+[<> -290 <6c>] TJ
+/Times-Roman.0 10 Tf
+[<> 10 <4349>] TJ
+/Times-Roman.2 10 Tf
+[<41>] TJ
+/Times-Roman.0 10 Tf
+[<914b>] TJ
+/Times-Roman.1 10 Tf
+[<b5>] TJ
+/Times-Roman.0 10 Tf
+[<> -290 <49> -290 <4c55445a4b>] TJ
+/Times-Roman.1 10 Tf
+[<b5>] TJ
+/Times-Roman.0 10 Tf
+[<> -290 <4d4152> -20 <4e4f>] TJ
+/Times-Roman.2 10 Tf
+[<6c>] TJ
+/Times-Roman.0 10 Tf
+[<> 10 <4349>] TJ
+/Times-Roman.1 10 Tf
+[<b5>] TJ
+/Times-Roman.0 10 Tf
+[<0c> -290 <4e4945> -290 <504f> 40 <57494e49454e> -290 <425241>] TJ
+/Times-Roman.1 10 Tf
+[<ca>] TJ
+/Times-Roman.0 10 Tf
+[<> -290 <5349>] TJ
+/Times-Roman.1 10 Tf
+[<eb>] TJ
+/Times-Roman.0 10 Tf
+[<> -290 <5a41> -290 <484152> 10 <43455253> 10 <54> -10 <57> 40 <4f> 20 <0e>] TJ
+/Times-Bold.0 10 Tf
+[<> -540 <2d4152> 10 <45> 10 <4b>] TJ
+1 0 0 1 72.00 454.80 Tm
+[<2b414d4543> 20 <4b> -10 <49>] TJ
+/Times-Roman.0 10 Tf
+1 0 0 1 72.00 427.20 Tm
+[<22> 30 <59>] TJ
+/Times-Roman.1 10 Tf
+[<ca>] TJ
+/Times-Roman.0 10 Tf
+[<> -250 <57> -10 <59> 40 <43> 20 <484f> 40 <57> 40 <41> 40 <57> 30 <43>] TJ
+/Times-Roman.1 10 Tf
+[<b5>] TJ
+/Times-Roman.0 10 Tf
+[<> -250 <0d> -250 <5a4e41435a59> 20 <1a> -250 <4441> 40 <57> 40 <41>] TJ
+/Times-Roman.1 10 Tf
+[<ca>] TJ
+/Times-Roman.0 10 Tf
+[<0c> -250 <539155>] TJ
+/Times-Roman.3 10 Tf
+[<54>] TJ
+/Times-Roman.0 10 Tf
+[<59> 40 <43> 10 <0c> -250 <504f4d41> 10 <47> 20 <41>] TJ
+/Times-Roman.1 10 Tf
+[<ca>] TJ
+/Times-Roman.0 10 Tf
+[<0c> -250 <494e53> 10 <504952> 10 <4f> 40 <57> 40 <41>] TJ
+/Times-Roman.1 10 Tf
+[<ca>] TJ
+/Times-Roman.0 10 Tf
+[<0e>] TJ
+/Times-Bold.0 10 Tf
+[<> -500 <214c45> 10 <4b53414e444552> -250 <2b414d49>] TJ
+/Times-Bold.2 10 Tf
+[<36>] TJ
+/Times-Bold.0 10 Tf
+[<53> 10 <4b> -10 <49>] TJ
+/Times-Roman.0 10 Tf
+1 0 0 1 72.00 399.60 Tm
+[<30524143> 10 <41> -300 <4452> -20 <55>] TJ
+/Times-Roman.3 10 Tf
+[<54>] TJ
+/Times-Roman.0 10 Tf
+[<594e4f> 40 <57> 30 <45> 20 <47> 30 <4f> -300 <504f444f424e41> -300 <4a45> 10 <53> 10 <54> -300 <444f> -300 <47> -10 <52> -20 <59> -290 <57> -290 <47> 30 <4f4c46> 30 <41> -10 <0c> -290 <444f>] TJ
+/Times-Roman.3 10 Tf
+[<> -290 <54>] TJ
+/Times-Roman.1 10 Tf
+[<eb>] TJ
+/Times-Roman.0 10 Tf
+[<434941> -290 <53494552> -30 <50454d> -290 <4c5542> -290 <914f> 40 <5749454e4941> -290 <52> -20 <5942> -290 <4e41> -290 <57>] TJ
+/Times-Roman.1 10 Tf
+[<eb>] TJ
+/Times-Roman.0 10 Tf
+[<444b>] TJ
+/Times-Roman.1 10 Tf
+[<> 30 <eb>] TJ
+/Times-Roman.0 10 Tf
+[<0e> -290 <2e4945> -290 <554441> -290 <5349>] TJ
+/Times-Roman.1 10 Tf
+[<eb>] TJ
+/Times-Roman.0 10 Tf
+[<0c>] TJ
+1 0 0 1 72.00 387.60 Tm
+[<47> 30 <44> 20 <59> -390 <42>] TJ
+/Times-Roman.1 10 Tf
+[<eb>] TJ
+/Times-Roman.0 10 Tf
+[<445a49454d> 40 <59> -390 <5349>] TJ
+/Times-Roman.1 10 Tf
+[<eb>] TJ
+/Times-Roman.2 10 Tf
+[<> -390 <6c>] TJ
+/Times-Roman.0 10 Tf
+[<504945> 10 <53> 30 <5a59>] TJ
+/Times-Roman.1 10 Tf
+[<ca>] TJ
+/Times-Roman.0 10 Tf
+[<0c> -390 <41> -390 <50525a594e41> 30 <4a4d4e4945> 30 <4a> -390 <4e4945> -390 <554441> -390 <5349>] TJ
+/Times-Roman.1 10 Tf
+[<eb>] TJ
+/Times-Roman.0 10 Tf
+[<> -390 <54> -10 <414b0c> -380 <4a414b> -380 <50525a59> -380 <4c45> 10 <4b> -30 <4b> -20 <494d0c> -380 <53> 10 <504f4b> 30 <4f> 20 <4a4e> 40 <594d0c> -380 <4d494152> 10 <4f> 40 <57> -10 <594d> -380 <52> 10 <4f> 20 <5a0d>] TJ
+1 0 0 1 72.00 375.60 Tm
+[<4d4143> 20 <4855> 10 <0e> -340 <214c45> -340 <52> 10 <4f> 20 <5a4d4143> 20 <4855> -340 <4a55>] TJ
+/Times-Roman.3 10 Tf
+[<54>] TJ
+/Times-Roman.0 10 Tf
+[<> -340 <4e414252414c49>] TJ
+/Times-Roman.2 10 Tf
+[<6c>] TJ
+/Times-Roman.0 10 Tf
+[<> 10 <434945> 10 <0e> -340 <33> 20 <54> -10 <414e4945> -330 <57> -330 <4d4945> 30 <4a5343> 20 <55> -330 <4e4945> -330 <5052> 10 <4f> 40 <57> 40 <41445a49> -330 <444f> -330 <4e49435a45> 20 <47> 30 <4f> 20 <0e> -330 <33>] TJ
+/Times-Roman.1 10 Tf
+[<b5>] TJ
+/Times-Roman.0 10 Tf
+[<> -330 <44> 20 <574945> -330 <4d4f>] TJ
+/Times-Roman.3 10 Tf
+[<54>] TJ
+/Times-Roman.0 10 Tf
+[<4c49> 30 <57> 40 <4f>] TJ
+/Times-Roman.2 10 Tf
+[<6c>] TJ
+/Times-Roman.0 10 Tf
+[<> 10 <43491a> -330 <49>] TJ
+/Times-Roman.2 10 Tf
+[<6c>] TJ
+/Times-Roman.1 10 Tf
+[<ca>] TJ
+/Times-Roman.0 10 Tf
+1 0 0 1 72.00 363.60 Tm
+[<4e4150525a>] TJ
+/Times-Roman.2 10 Tf
+[<41>] TJ
+/Times-Roman.0 10 Tf
+[<44> -250 <4c5542> -250 <53> 10 <54> -10 <41>] TJ
+/Times-Roman.1 10 Tf
+[<ca>] TJ
+/Times-Roman.0 10 Tf
+[<0e> -500 <29445a49454d> 40 <59> -250 <4e41> -250 <50525a>] TJ
+/Times-Roman.2 10 Tf
+[<41>] TJ
+/Times-Roman.0 10 Tf
+[<44> -250 <49> -250 <54> 10 <4f> -250 <5a> -250 <55>] TJ
+/Times-Roman.2 10 Tf
+[<6c>] TJ
+/Times-Roman.0 10 Tf
+[<4d494543> 20 <48454d0e>] TJ
+/Times-Bold.0 10 Tf
+[<> -500 <47> 20 <454e0e> -250 <32> 30 <4f424552> -10 <54> -250 <224144454e0d30> 30 <4f> 40 <57> 30 <45> 10 <4c4c>] TJ
+/Times-Roman.0 10 Tf
+1 0 0 1 72.00 336.00 Tm
+[<37> -250 <484152> 10 <43455253> 10 <54> -10 <574945> -250 <4e4945> -250 <445a4945> 30 <4a45> -250 <5349>] TJ
+/Times-Roman.1 10 Tf
+[<eb>] TJ
+/Times-Roman.0 10 Tf
+[<> -250 <4e4943> 10 <0c> -250 <43> 10 <4f> -250 <4e4945> -250 <4d41> -250 <57> -10 <50915957> -10 <55> -250 <57> -10 <59> 40 <43> 20 <484f> 40 <57> 40 <41> 40 <57> 30 <435a45> 20 <47> 30 <4f01>] TJ
+/Times-Bold.0 10 Tf
+[<> -500 <214c45> 10 <4b53414e444552> -250 <2b414d49>] TJ
+/Times-Bold.2 10 Tf
+[<36>] TJ
+/Times-Bold.0 10 Tf
+[<53> 10 <4b> -10 <49>] TJ
+/Times-Roman.0 10 Tf
+1 0 0 1 72.00 308.40 Tm
+[<2e> 30 <41> 30 <4a424152> 10 <445a4945> 30 <4a> -310 <54> -10 <57>] TJ
+/Times-Roman.2 10 Tf
+[<> 40 <41>] TJ
+/Times-Roman.0 10 Tf
+[<52> 10 <435a>] TJ
+/Times-Roman.1 10 Tf
+[<b5>] TJ
+/Times-Roman.0 10 Tf
+[<> -310 <5a45> -310 <57> 30 <53> 30 <5a59> 30 <53> 10 <544b> -20 <4943> 20 <48> -310 <50524143> -310 <4a45> 10 <53> 10 <54> -310 <50524143> 10 <41> -300 <4e4144> -300 <534f42>] TJ
+/Times-Roman.1 10 Tf
+[<b5>] TJ
+/Times-Roman.0 10 Tf
+[<0c> -300 <4b> -10 <54>] TJ
+/Times-Roman.2 10 Tf
+[<> 10 <41>] TJ
+/Times-Roman.0 10 Tf
+[<5241> -300 <504f> 20 <5a57> 40 <414c41> -300 <4f444e41> 30 <4a44> 20 <5957> 40 <41>] TJ
+/Times-Roman.1 10 Tf
+[<ca>] TJ
+/Times-Roman.0 10 Tf
+[<> -300 <5552> 10 <4f4b> -300 <4d914f444f>] TJ
+/Times-Roman.2 10 Tf
+[<6c>] TJ
+/Times-Roman.0 10 Tf
+[<> 10 <43490e>] TJ
+/Times-Bold.2 10 Tf
+[<> -550 <6c>] TJ
+/Times-Bold.0 10 Tf
+[<> 10 <57> 50 <0e>] TJ
+1 0 0 1 72.00 296.40 Tm
+[<2a414e> -250 <30> 20 <41> 40 <57> 30 <4591> -250 <2929>] TJ
+/Times-Roman.0 10 Tf
+1 0 0 1 72.00 268.80 Tm
+[<29> -460 <504f> -460 <54> 10 <4f> -460 <579141>] TJ
+/Times-Roman.2 10 Tf
+[<6c>] TJ
+/Times-Roman.0 10 Tf
+[<4e4945> -460 <4a45> 10 <53> 10 <54> -460 <484152> 10 <43455253> 10 <54> -10 <57> 40 <4f> -450 <49> -450 <53> 20 <4b415554> -10 <494e> 30 <47> -450 <0d>] TJ
+/Times-Roman.3 10 Tf
+[<> -450 <54>] TJ
+/Times-Roman.0 10 Tf
+[<45> 10 <42> 30 <59> -450 <4b41>] TJ
+/Times-Roman.3 10 Tf
+[<54>] TJ
+/Times-Roman.0 10 Tf
+[<4445> 20 <47> 30 <4f> -450 <444e4941> -450 <53> 10 <54> -10 <41> 40 <57> 40 <41>] TJ
+/Times-Roman.1 10 Tf
+[<ca>] TJ
+/Times-Roman.0 10 Tf
+[<> -450 <5349>] TJ
+/Times-Roman.1 10 Tf
+[<eb>] TJ
+/Times-Roman.0 10 Tf
+[<> -450 <53494c4e> 40 <594d> -450 <49> -450 <5049>] TJ
+/Times-Roman.1 10 Tf
+[<eb>] TJ
+/Times-Roman.0 10 Tf
+[<4b> -20 <4e> 40 <594d0e> -700 <214e44525a45> 30 <4a>] TJ
+1 0 0 1 72.00 256.80 Tm
+[<37> 40 <59> 30 <534f43> 20 <4b> -20 <49>] TJ
+1 0 0 1 72.00 229.20 Tm
+[<32> 20 <5543> 20 <48> -430 <4a45> 10 <53> 10 <54> -430 <5241444f534e> 40 <594d> -430 <425241> 10 <54455253> 10 <54> -10 <57> 30 <454d0c> -420 <54> -10 <594d> -420 <424152> 10 <445a4945> 30 <4a> -420 <5241444f534e> 40 <594d0c>] TJ
+/Times-Roman.3 10 Tf
+[<> -420 <54>] TJ
+/Times-Roman.0 10 Tf
+[<45> -420 <57> -420 <27525a45> -420 <334b415554> -10 <494e> 30 <4755> -420 <52> 10 <4f424953> 30 <5a> -420 <574945> 20 <4c4b>] TJ
+/Times-Roman.1 10 Tf
+[<b5>] TJ
+/Times-Roman.0 10 Tf
+[<> -420 <525a45435a> -420 <444c41>] TJ
+1 0 0 1 72.00 217.20 Tm
+[<424c49>] TJ
+/Times-Roman.3 10 Tf
+[<52>] TJ
+/Times-Roman.0 10 Tf
+[<4e4943> 20 <480c> -250 <5a57> 40 <414c435a4153> 30 <5a> -250 <4b> -10 <554c54> -10 <5552>] TJ
+/Times-Roman.1 10 Tf
+[<eb>] TJ
+/Times-Roman.0 10 Tf
+[<> -250 <45> 20 <47> 30 <4f495a4d55> 10 <0e>] TJ
+/Times-Bold.0 10 Tf
+[<> -500 <47> 20 <454e0e> -250 <32> 30 <4f424552> -10 <54> -250 <224144454e0d30> 30 <4f> 40 <57> 30 <45> 10 <4c4c>] TJ
+/Times-Roman.0 10 Tf
+1 0 0 1 72.00 189.60 Tm
+[<34> 50 <525a59> -250 <53>] TJ
+/Times-Roman.1 10 Tf
+[<b5>] TJ
+/Times-Roman.0 10 Tf
+[<> -250 <4345> 20 <4c45> -250 <52> -20 <5543> 20 <4855> -250 <53> 20 <4b415554> 10 <4f> 40 <57> 30 <45> 20 <47> 30 <4f> -10 <1a>] TJ
+1 0 0 1 72.00 174.00 Tm
+[<110e> -250 <37> 40 <5952414249414e4945> -250 <494e44> 20 <5957494455414c4e> 40 <59> 40 <43> 20 <48> -250 <43> 20 <484152414b> -10 <544552>] TJ
+/Times-Roman.2 10 Tf
+[<> 10 <41>] TJ
+/Times-Roman.0 10 Tf
+[<> 40 <57> -250 <55> -250 <4d914f445a4945>] TJ
+/Times-Roman.3 10 Tf
+[<54>] TJ
+/Times-Roman.0 10 Tf
+[<59>] TJ
+1 0 0 1 72.00 158.40 Tm
+[<120e> -250 <339155>] TJ
+/Times-Roman.3 10 Tf
+[<54>] TJ
+/Times-Roman.0 10 Tf
+[<454e4945> -250 <494e4e> 40 <594d>] TJ
+1 0 0 1 72.00 142.80 Tm
+[<130e> -250 <35435a454e4945> -250 <525a454d49>] TJ
+/Times-Roman.2 10 Tf
+[<41>] TJ
+/Times-Roman.0 10 Tf
+[<5391> -250 <49> -250 <53> 10 <505241> 40 <574e4f>] TJ
+/Times-Roman.2 10 Tf
+[<6c>] TJ
+/Times-Roman.0 10 Tf
+[<> 10 <4349> -250 <53> 20 <4b415554> 10 <4f> 40 <57> -10 <59> 40 <43> 20 <480e>] TJ
+/Times-Bold.0 10 Tf
+[<> -500 <214e44525a45> 30 <4a> -250 <2d41914b> 40 <4f> 40 <57> 20 <53> 10 <4b> -10 <49>] TJ
+/Times-Roman.0 10 Tf
+1 0 0 1 72.00 115.20 Tm
+[<235a914f> 40 <574945> 10 <4b> -720 <4e4945> -720 <4d4f>] TJ
+/Times-Roman.3 10 Tf
+[<54>] TJ
+/Times-Roman.0 10 Tf
+[<45> -720 <42> 30 <59>] TJ
+/Times-Roman.1 10 Tf
+[<ca>] TJ
+/Times-Roman.0 10 Tf
+[<> -720 <54> -10 <59> 30 <4c4b> 30 <4f> -720 <57> -10 <59> 40 <43> 20 <484f> 40 <57> -10 <5957> 40 <414e> 40 <59> 80 <0e> -720 <2d555349> -720 <57> -10 <59> 40 <43> 20 <484f> 40 <57> -10 <5957> 40 <41>] TJ
+/Times-Roman.1 10 Tf
+[<ca>] TJ
+/Times-Roman.0 10 Tf
+[<> -720 <53> 10 <414d45> 20 <47> 30 <4f> -720 <534945> 10 <4249450c> -720 <42> 30 <59>] TJ
+/Times-Roman.1 10 Tf
+[<ca>] TJ
+/Times-Roman.0 10 Tf
+[<> -720 <444c41> -720 <534945> 10 <424945>] TJ
+1 0 0 1 72.00 103.20 Tm
+[<57> -10 <59> 40 <43> 20 <484f> 40 <57> 40 <41> 40 <57> 30 <43>] TJ
+/Times-Roman.1 10 Tf
+[<b5>] TJ
+/Times-Roman.0 10 Tf
+[<0e>] TJ
+/Times-Bold.2 10 Tf
+[<> -500 <6c>] TJ
+/Times-Bold.0 10 Tf
+[<> 10 <57> 50 <0e> -250 <2a414e> -250 <30> 20 <41> 40 <57> 30 <4591> -250 <2929>] TJ
+ET
+endstream
+endobj
+
+19 0 obj
+<<
+  /Type /Page
+  /Parent 2 0 R
+  /Resources <<
+    /Font << /Times-Bold.0 3 0 R /Times-Roman.0 10 0 R /Times-Roman.3 12 0 R /Times-Roman.1 13 0 R /Times-Roman.2 14 0 R /Times-Bold.2 15 0 R >>
+  >>
+  /Contents 18 0 R
+>>
+endobj
+
+2 0 obj
+<<
+  /Type /Pages
+  /MediaBox [ 0 0 612 792 ]
+  /Count 2
+  /Kids [ 17 0 R 19 0 R ]
+>>
+endobj
+
+1 0 obj
+<<
+  /Type /Catalog
+  /Pages 2 0 R
+>>
+endobj
+
+20 0 obj
+<<
+  /Type /Encoding
+  /Differences [ 12 /comma /hyphen /period /slash /zero /one /two /three /four /five /six /seven /eight /nine /colon /semicolon /less /equal /greater /question /at /A /B /C /D /E /F /G /H /I /J /K /L /M /N /O /P /Q /R /S /T /U /V /W /X /Y /Z /bracketleft /backslash /bracketright /asciicircum /underscore /quoteleft /a /b /c /d /e /f /g /h /i /j /k /l /m /n /o /p /q /r /s /t /u /v /w /x /y /z /braceleft /bar /braceright /asciitilde /exclamdown /cent /sterling /fraction /yen /florin /section /currency /quotesingle /quotedblleft /guillemotleft /guilsinglleft /guilsinglright /fi /fl /endash /dagger /daggerdbl /periodcentered /paragraph /bullet /quotesinglbase /quotedblbase /quotedblright /guillemotright /ellipsis /perthousand /questiondown /grave /acute /circumflex /tilde /macron /breve /dotaccent /dieresis /ring /cedilla /hungarumlaut /ogonek /caron /emdash /AE /ordfeminine /Lslash /Oslash /OE /ordmasculine /ae /dotlessi /lslash ]
+>>
+endobj
+
+3 0 obj
+<<
+  /Type /Font
+  /Subtype /Type1
+  /BaseFont /Times-Bold
+  /FirstChar 12
+  /LastChar 145
+  /Widths [ 250 330 250 280 500 500 500 500 500 500 500 500 500 500 330 330 570 570 570 500 930 720 670 720 720 670 610 780 780 390 500 780 670 940 720 780 610 780 720 560 670 720 720 1000 720 720 670 330 280 330 580 500 330 500 560 440 560 440 330 500 560 280 330 560 280 830 560 500 560 560 440 390 330 560 500 720 500 500 440 390 220 390 520 330 500 500 170 500 500 500 500 280 500 500 330 330 560 560 500 500 500 250 540 350 330 500 500 500 1000 1000 500 330 330 330 330 330 330 330 330 330 330 330 330 330 1000 1000 300 670 780 1000 330 720 280 280 ]
+  /FontDescriptor 4 0 R
+  /Encoding 20 0 R
+>>
+endobj
+
+21 0 obj
+<<
+  /Type /Encoding
+  /Differences [ 246 /ff ]
+>>
+endobj
+
+5 0 obj
+<<
+  /Type /Font
+  /Subtype /Type1
+  /BaseFont /Times-Bold
+  /FirstChar 246
+  /LastChar 246
+  /Widths [ 630 ]
+  /FontDescriptor 4 0 R
+  /Encoding 21 0 R
+>>
+endobj
+
+22 0 obj
+<<
+  /Type /Encoding
+  /Differences [ 46 /N /O /P /Q /R /S /T /U /V /W /X /Y /Z /bracketleft /backslash /bracketright /asciicircum /underscore /quoteleft /a /b /c /d /e /f /g /h /i /j /k /l /m /n /o /p /q /r /s /t /u /v /w /x /y /z ]
+>>
+endobj
+
+6 0 obj
+<<
+  /Type /Font
+  /Subtype /Type1
+  /BaseFont /Times-Italic
+  /FirstChar 46
+  /LastChar 90
+  /Widths [ 670 720 610 720 610 500 560 720 610 830 610 560 560 390 280 390 420 500 330 500 500 440 500 440 280 500 500 280 280 440 280 720 500 500 500 500 390 390 280 500 440 670 440 440 390 ]
+  /FontDescriptor 7 0 R
+  /Encoding 22 0 R
+>>
+endobj
+
+23 0 obj
+<<
+  /Type /Encoding
+  /Differences [ 82 /zacute ]
+>>
+endobj
+
+8 0 obj
+<<
+  /Type /Font
+  /Subtype /Type1
+  /BaseFont /Times-Italic
+  /FirstChar 82
+  /LastChar 82
+  /Widths [ 390 ]
+  /FontDescriptor 7 0 R
+  /Encoding 23 0 R
+>>
+endobj
+
+24 0 obj
+<<
+  /Type /Encoding
+  /Differences [ 54 /nacute ]
+>>
+endobj
+
+9 0 obj
+<<
+  /Type /Font
+  /Subtype /Type1
+  /BaseFont /Times-Italic
+  /FirstChar 54
+  /LastChar 54
+  /Widths [ 500 ]
+  /FontDescriptor 7 0 R
+  /Encoding 24 0 R
+>>
+endobj
+
+25 0 obj
+<<
+  /Type /Encoding
+  /Differences [ 1 /exclam /quotedbl /numbersign /dollar /percent /ampersand /quoteright /parenleft /parenright /asterisk /plus /comma /hyphen /period /slash /zero /one /two /three /four /five /six /seven /eight /nine /colon /semicolon /less /equal /greater /question /at /A /B /C /D /E /F /G /H /I /J /K /L /M /N /O /P /Q /R /S /T /U /V /W /X /Y /Z /bracketleft /backslash /bracketright /asciicircum /underscore /quoteleft /a /b /c /d /e /f /g /h /i /j /k /l /m /n /o /p /q /r /s /t /u /v /w /x /y /z /braceleft /bar /braceright /asciitilde /exclamdown /cent /sterling /fraction /yen /florin /section /currency /quotesingle /quotedblleft /guillemotleft /guilsinglleft /guilsinglright /fi /fl /endash /dagger /daggerdbl /periodcentered /paragraph /bullet /quotesinglbase /quotedblbase /quotedblright /guillemotright /ellipsis /perthousand /questiondown /grave /acute /circumflex /tilde /macron /breve /dotaccent /dieresis /ring /cedilla /hungarumlaut /ogonek /caron /emdash /AE /ordfeminine /Lslash /Oslash /OE /ordmasculine /ae /dotlessi /lslash ]
+>>
+endobj
+
+10 0 obj
+<<
+  /Type /Font
+  /Subtype /Type1
+  /BaseFont /Times-Roman
+  /FirstChar 1
+  /LastChar 145
+  /Widths [ 330 410 500 500 830 780 330 330 330 500 560 250 330 250 280 500 500 500 500 500 500 500 500 500 500 280 280 560 560 560 440 920 720 670 670 720 610 560 720 720 330 390 720 610 890 720 720 560 720 670 560 610 720 720 940 720 720 610 330 280 330 470 500 330 440 500 440 500 440 330 500 500 280 280 500 280 780 500 500 500 500 330 390 280 500 500 720 500 500 440 480 200 480 540 330 500 500 170 500 500 500 500 180 440 500 330 330 560 560 500 500 500 250 450 350 330 440 440 500 1000 1000 440 330 330 330 330 330 330 330 330 330 330 330 330 330 1000 890 280 610 720 890 310 670 280 280 ]
+  /FontDescriptor 11 0 R
+  /Encoding 25 0 R
+>>
+endobj
+
+26 0 obj
+<<
+  /Type /Encoding
+  /Differences [ 82 /zacute /zcaron /zdotaccent ]
+>>
+endobj
+
+12 0 obj
+<<
+  /Type /Font
+  /Subtype /Type1
+  /BaseFont /Times-Roman
+  /FirstChar 82
+  /LastChar 84
+  /Widths [ 440 440 440 ]
+  /FontDescriptor 11 0 R
+  /Encoding 26 0 R
+>>
+endobj
+
+27 0 obj
+<<
+  /Type /Encoding
+  /Differences [ 181 /aogonek /approxequal /aring /aringacute /arrowboth /arrowdblboth /arrowdbldown /arrowdblleft /arrowdblright /arrowdblup /arrowdown /arrowleft /arrowright /arrowup /arrowupdn /arrowupdnbse /asteriskmath /atilde /beta /block /brokenbar /cacute /carriagereturn /ccaron /ccedilla /ccircumflex /cdotaccent /chi /circle /circlemultiply /club /congruent /copyright /dcaron /dcroat /degree /delta /diamond /dieresistonos /divide /dkshade /dnblock /eacute /ebreve /ecaron /ecircumflex /edieresis /edotaccent /egrave /eightsuperior /element /emacron /emptyset /eng /eogonek ]
+>>
+endobj
+
+13 0 obj
+<<
+  /Type /Font
+  /Subtype /Type1
+  /BaseFont /Times-Roman
+  /FirstChar 181
+  /LastChar 235
+  /Widths [ 440 1000 440 440 720 720 720 720 720 720 720 720 720 720 720 720 1000 440 510 1000 200 440 1000 440 440 440 440 440 720 1000 1000 1000 760 610 500 400 470 1000 330 560 1000 1000 440 440 440 440 440 440 440 300 1000 440 1000 500 440 ]
+  /FontDescriptor 11 0 R
+  /Encoding 27 0 R
+>>
+endobj
+
+28 0 obj
+<<
+  /Type /Encoding
+  /Differences [ 54 /nacute /napostrophe /ncaron /ncommaaccent /ninesuperior /notelement /notequal /notsubset /nsuperior /ntilde /nu /oacute /obreve /ocircumflex /odieresis /ograve /ohungarumlaut /omacron /omega /omega1 /omegatonos /omicron /omicrontonos /oneeighth /onehalf /onequarter /onesuperior /openbullet /orthogonal /oslashacute /otilde /partialdiff /perpendicular /peseta /phi /phi1 /pi /plusminus /product /propersubset /propersuperset /proportional /psi /quotereversed /racute /radical /rcaron /rcommaaccent /reflexsubset /reflexsuperset /registered /revlogicalnot /rho /rtblock /sacute ]
+>>
+endobj
+
+14 0 obj
+<<
+  /Type /Font
+  /Subtype /Type1
+  /BaseFont /Times-Roman
+  /FirstChar 54
+  /LastChar 108
+  /Widths [ 500 600 500 500 300 1000 1000 1000 360 500 450 500 500 500 500 500 500 500 660 660 660 500 500 750 750 750 300 500 980 500 500 500 1000 850 580 530 510 560 1000 1000 1000 1000 630 330 330 720 330 330 1000 1000 760 890 500 1000 390 ]
+  /FontDescriptor 11 0 R
+  /Encoding 28 0 R
+>>
+endobj
+
+29 0 obj
+<<
+  /Type /Encoding
+  /Differences [ 54 /nacute /napostrophe /ncaron /ncommaaccent /ninesuperior /notelement /notequal /notsubset /nsuperior /ntilde /nu /oacute /obreve /ocircumflex /odieresis /ograve /ohungarumlaut /omacron /omega /omega1 /omegatonos /omicron /omicrontonos /oneeighth /onehalf /onequarter /onesuperior /openbullet /orthogonal /oslashacute /otilde /partialdiff /perpendicular /peseta /phi /phi1 /pi /plusminus /product /propersubset /propersuperset /proportional /psi /quotereversed /racute /radical /rcaron /rcommaaccent /reflexsubset /reflexsuperset /registered /revlogicalnot /rho /rtblock /sacute ]
+>>
+endobj
+
+15 0 obj
+<<
+  /Type /Font
+  /Subtype /Type1
+  /BaseFont /Times-Bold
+  /FirstChar 54
+  /LastChar 108
+  /Widths [ 560 730 560 560 300 1000 1000 1000 420 560 450 500 500 500 500 500 500 500 730 730 730 500 500 750 750 750 300 500 980 500 500 500 1000 970 620 620 550 570 1000 1000 1000 1000 690 330 440 720 440 440 1000 1000 750 890 540 1000 390 ]
+  /FontDescriptor 4 0 R
+  /Encoding 29 0 R
+>>
+endobj
+
+30 0 obj
+<<
+  /Creator (Neatroff)
+  /Producer (Neatpost)
+>>
+endobj
+
+xref
+0 31
+0000000000 65535 f 
+0000030652 00000 n 
+0000030550 00000 n 
+0000031688 00000 n 
+0000000010 00000 n 
+0000032465 00000 n 
+0000032891 00000 n 
+0000000225 00000 n 
+0000033310 00000 n 
+0000033553 00000 n 
+0000034815 00000 n 
+0000000442 00000 n 
+0000035658 00000 n 
+0000036468 00000 n 
+0000037512 00000 n 
+0000038554 00000 n 
+0000000659 00000 n 
+0000013579 00000 n 
+0000013903 00000 n 
+0000030312 00000 n 
+0000030706 00000 n 
+0000032397 00000 n 
+0000032637 00000 n 
+0000033239 00000 n 
+0000033482 00000 n 
+0000033725 00000 n 
+0000035567 00000 n 
+0000035839 00000 n 
+0000036871 00000 n 
+0000037913 00000 n 
+0000038953 00000 n 
+trailer
+<<
+  /Size 31
+  /Root 1 0 R
+  /Info 30 0 R
+>>
+startxref
+39021
+%%EOF