aboutsummaryrefslogtreecommitdiffstats
path: root/docs/devguide
diff options
context:
space:
mode:
Diffstat (limited to 'docs/devguide')
-rw-r--r--docs/devguide/aj.adoc38
-rw-r--r--docs/devguide/aj.xml55
-rw-r--r--docs/devguide/ajbrowser.adoc221
-rw-r--r--docs/devguide/ajc.adoc510
-rw-r--r--docs/devguide/ajc.xml835
-rw-r--r--docs/devguide/ajdb.adoc323
-rw-r--r--docs/devguide/ajdb.xml312
-rw-r--r--docs/devguide/ajdee.adoc246
-rw-r--r--docs/devguide/ajdee.gifbin0 -> 21193 bytes
-rw-r--r--docs/devguide/ajdee.xml455
-rw-r--r--docs/devguide/ajdeforte.adoc100
-rw-r--r--docs/devguide/ajdeforte.xml215
-rw-r--r--docs/devguide/ajdejbuilder.adoc148
-rw-r--r--docs/devguide/ajdejbuilder.xml268
-rw-r--r--docs/devguide/ajdoc.adoc61
-rw-r--r--docs/devguide/ajdoc.xml159
-rw-r--r--docs/devguide/antsupport.adoc878
-rw-r--r--docs/devguide/antsupport.xml1615
-rw-r--r--docs/devguide/aspectj-docs.css89
-rw-r--r--docs/devguide/aspectj-mode.adoc181
-rw-r--r--docs/devguide/aspectj-mode.gifbin0 -> 11988 bytes
-rw-r--r--docs/devguide/aspectj-mode.xml355
-rw-r--r--docs/devguide/aspectj-mode2.gifbin0 -> 20913 bytes
-rw-r--r--docs/devguide/compatibility.adoc112
-rw-r--r--docs/devguide/compatibility.xml125
-rw-r--r--docs/devguide/dd_arrow.gifbin0 -> 851 bytes
-rw-r--r--docs/devguide/devguide.adoc33
-rw-r--r--docs/devguide/devguide.pdf43689
-rw-r--r--docs/devguide/devguide.xml77
-rw-r--r--docs/devguide/index.adoc24
-rw-r--r--docs/devguide/jbuilder-buildOptions.gifbin0 -> 10064 bytes
-rw-r--r--docs/devguide/jbuilder-building.gifbin0 -> 27587 bytes
-rw-r--r--docs/devguide/jbuilder-configs.gifbin0 -> 24200 bytes
-rw-r--r--docs/devguide/jbuilder-structureNavigation.gifbin0 -> 30813 bytes
-rw-r--r--docs/devguide/ltw.adoc482
-rw-r--r--docs/devguide/ltw.xml608
-rw-r--r--docs/devguide/netbeans-buildOptions.gifbin0 -> 10273 bytes
-rw-r--r--docs/devguide/netbeans-building.gifbin0 -> 33075 bytes
-rw-r--r--docs/devguide/tools-intro.adoc127
-rw-r--r--docs/devguide/tools-intro.xml156
40 files changed, 52497 insertions, 0 deletions
diff --git a/docs/devguide/aj.adoc b/docs/devguide/aj.adoc
new file mode 100644
index 000000000..0a7b53108
--- /dev/null
+++ b/docs/devguide/aj.adoc
@@ -0,0 +1,38 @@
+== `aj`, the AspectJ load-time weaving launcher
+
+=== Name
+
+`aj` - command-line launcher for basic load-time weaving
+
+=== Synopsis
+
+[subs=+quotes]
+aj [_Options_] [_arg_...]
+
+[[aj]]
+=== Description
+
+The `aj` command runs Java programs in Java 1.4 or later by setting up
+`WeavingURLClassLoader` as the system class loader, to do load-time
+bytecode weaving.
+
+The arguments are the same as those used to launch the Java program.
+Users should define the environment variables `CLASSPATH` and
+`ASPECTPATH`.
+
+For more information and alternatives for load-time weaving, see
+xref:ltw.adoc#ltw[Load-Time Weaving].
+
+=== Examples
+
+Use ajc to build a library, then weave at load time
+
+[source, text]
+....
+REM compile library
+${ASPECTJ_HOME}\bin\ajc.bat -outjar lib\aspects.jar @aspects.lst
+
+REM run, weaving into application at load-time set
+ASPECTPATH=lib\aspects.jar set CLASSPATH=app\app.jar
+${ASPECTJ_HOME}\bin\aj.bat com.company.app.Main "Hello, World!"
+....
diff --git a/docs/devguide/aj.xml b/docs/devguide/aj.xml
new file mode 100644
index 000000000..fd250d055
--- /dev/null
+++ b/docs/devguide/aj.xml
@@ -0,0 +1,55 @@
+<refentry id="aj-ref" xreflabel="The aj Command-line Reference">
+
+ <refnamediv>
+ <refname>aj</refname>
+ <refpurpose>command-line launcher for basic load-time weaving</refpurpose>
+ </refnamediv>
+
+ <refsynopsisdiv>
+ <cmdsynopsis>
+ <command>aj</command>
+ <arg><replaceable>Options</replaceable></arg>
+ <group>
+ <arg><replaceable>arg...</replaceable></arg>
+ </group>
+ </cmdsynopsis>
+ </refsynopsisdiv>
+ <refsect1 id="aj" xreflabel="aj">
+ <title>Description</title>
+
+ <para>The
+ <command>aj</command> command runs Java programs in Java 1.4 or
+ later by setting up
+ <literal>WeavingURLClassLoader</literal> as the system class
+ loader, to do load-time bytecode weaving. </para>
+
+ <para> The arguments are the same as those used to launch the Java program.
+ Users should define the environment variables
+ <literal>CLASSPATH</literal> and
+ <literal>ASPECTPATH</literal>. </para>
+
+ <para>For more information and alternatives for load-time weaving,
+ see <xref linkend="ltw"/>.
+ </para>
+
+ <refsect2>
+ <title>Examples</title>
+
+ <example id="simpleajexample">
+ <title>A simple example</title>
+
+ <para>Use ajc to build a library, then weave at load time</para>
+
+ <programlisting><![CDATA[
+REM compile library
+${ASPECTJ_HOME}\bin\ajc.bat -outjar lib\aspects.jar @aspects.lst
+
+REM run, weaving into application at load-time set
+ASPECTPATH=lib\aspects.jar set CLASSPATH=app\app.jar
+${ASPECTJ_HOME}\bin\aj.bat com.company.app.Main "Hello, World!"
+]]> </programlisting>
+
+ </example>
+ </refsect2>
+ </refsect1>
+</refentry>
diff --git a/docs/devguide/ajbrowser.adoc b/docs/devguide/ajbrowser.adoc
new file mode 100644
index 000000000..734545496
--- /dev/null
+++ b/docs/devguide/ajbrowser.adoc
@@ -0,0 +1,221 @@
+[[ajbrowser]]
+== AspectJ Browser
+
+[[ajbrowser-intro]]
+=== Introduction
+
+AJBrowser presents a GUI for compiling programs with ajc and navigating
+crosscutting structure.
+
+The AspectJ Browser can edit program source files, compile using the
+AspectJ compiler `ajc` run a program, and graphically navigate the
+program's crosscutting structure. For more information on `ajc`, see
+xref:ajc.adoc[`ajc`, the AspectJ compiler/weaver].
+
+Launch the browser from the command line either by typing "ajbrowser" to
+invoke the script in `{aspectj}/bin` (if AspectJ is installed correctly)
+or by using the `aspectjtools.jar` directly, and specifying no arguments
+or some number of build configuration files (suffix `.lst`):
+
+[source, text]
+....
+java -jar aspectj1.1/lib/aspectjtools.jar aspectj1.1/doc/examples/spacewar/debug.lst
+....
+
+[[ajbrowser-building]]
+=== Building Programs
+
+==== Build Configurations
+
+A build configuration is a set of files to compile for a program (and
+optionally some additional compile arguments). Because `ajc` requires
+all sources to be specified (at least using the `-sourceroots` option),
+most users create `.lst` files that list the files to compile (one
+argument per line, globbing permitted - for more details, see
+xref:ajc.adoc[`ajc`, the AspectJ compiler/weaver]).
+
+To work with a particular program, select the corresponding ".lst" build
+configuration file from the GUI using the File menu, "open" item, or by
+using the "Open Build Configuration" button
+(image:openConfig.gif[image]). You can populate the build list from the
+command line by passing any number of ".lst" paths. (However, if you
+pass in any non-".lst" arguments, it will run the command-line compiler
+directly.)
+
+To switch between build configurations, select, add, or remove them
+using the corresponding toolbar buttons.
+
+Global build options are stored in an `.ajbrowser` file in your HOME
+directory. Edit these from the GUI by clicking the "Options" button or
+selecting the Tools menu item "Options...". This is how to set
+classpath, aspectpath, etc.
+
+The following sections walk through a build.
+
+==== Compiling a Program Build Configuration
+
+To compile click the "Build" button (image:build.gif[image]), or or use
+the tools menu.
+
+You may select from different build configurations in the GUI (see label
+1 in the graphic below). (If you get classpath or other errors, set up
+the global build options as described above.)
+
+image:ajbrowser-building.gif[image]
+
+[[ajbrowser-navigating]]
+=== Navigating Program Structure
+
+Select nodes in the program structure by clicking them (see label 2). If
+one node is related to one or more other nodes by an association the
+name of the association will appear below that node and will be
+displayed in italics. Links to other structure nodes appear in blue
+below the association. If there is no corresponding source for the link
+it will appear light-blue.
+
+image:ajbrowser-building.gif[image]
+
+[[example]]
+==== Example: Exploring the "Spacewar" sample code
+
+* Launch `ajbrowser`
+* Choose "File -> Open" or click the "Open Build Configuration" button
+(image:openConfig.gif[image]) and select the configuration file for
+debugging the spacewar example, in `examples/spacewar/debug.lst`.
+* Click the "Build" button (image:build.gif[image]) to compile. The left
+pane should fill with a spacewar declaration tree. If there is a
+compiler error, the clickable error message shows up as in label 4.
++
+Note: If you did not set up your classpath, the compile will fail with a
+message that you need to install aspectjrt.jar on your compile
+classpath. To do that, select "Tools -> Options" or click the "Options"
+button (image:browseroptions.gif[image]). Click the `Build Options` tab
+to view the Build Paths pane. Edit the classpath entry to use your
+install location. For example, if you ran from the base Aspectj
+directory, the classpath need only include `lib/aspectjrt.jar` (though
+the browser may populate the classpath with the bootclasspath and
+classpath initially.) Be sure to use the `lib/aspectjrt.jar` that came
+with the browser.
++
+image:ajbrowser-options.gif[image]
+* Different structure views: The structure tree at the left can display
+different orderings and granularity for structure:
+** The package hierarchy view shows the traditional hierarchy of
+package, class, and members.
+** The inheritance view shows the hierarchy from topmost parent classes
+through subclasses to members.
+** The crosscutting view shows the aspect members and the code they
+affect.
+** Additional buttons in the pane can be used to change the granularity
+and filter out items.
++
+Whenever you select an item in the tree view, the source pane scrolls to
+that item. If you select a leaf item representing another program
+element, then the tree selection will go to the corresponding node. (See
+below for how to use two panes to maintain your place.)
+* When working with aspects, it helps to be able to navigate between
+different program elements:
+** When looking at a method, find the advice that affects it.
+** When looking at a pointcut, find the advice that uses it.
+** When looking at advice, find what it advises - e.g., method calls or
+executions, initializers, etc.
+** When looking at a type, find any aspects that declare members or
+supertypes of the type, or vice-versa.
++
+You can view the advice on a particular method using the default,
+hierarchical view. Navigate to the tree item for
+`spacewar.Registry.register(SpaceObject)` in the `debug.lst` config
+file. Now, in the lower, file view, you can see and navigate to the
+advice using the subtree whose parent is the `method
+ affected by` relation.
++
+You can also use crosscutting view to see the advice using a pointcut or
+the methods affected by advice. For example, to see what advice uses a
+particular pointcut, navigate to the tree item for the pointcut
+`spacewar.Debug.allConstructorsCut()` in the `debug.lst` config file.
+You can see and navigate to the advice that uses the pointcut using the
+`pointcut used by` relation.
++
+As an example of seeing the methods affected by advice, while still in
+the same view, select the first `before` advice in `spacewar.Debug`. It
+has relation sub-trees for both `uses pointcut` and
+`affects constructions`. The `affects` relations will list different
+kinds of join points - constructor or method calls, etc.
++
+Note that the AspectJ browser can only display static structure (whether
+hierarchical or crosscutting). That means that dynamicly-determined
+pointcuts (like `cflow(pointcut)`) will not be shown as picking out
+static points in source code. Displayable pointcuts roughly correspond
+to those that can be used in a `declare error` statement.
+
+[[ajbrowser-running]]
+=== Running Programs
+
+The browser supports a limited form of running compiled programs. To run
+programs that have been built, click the run button or select one of the
+run menu items in the project menu. You can run in the same VM or spawn
+a new process; the latter is generally better for GUI programs.
+
+Both require that any classpath you set be specified using
+platform-specific paths and path separators (the compiler might be more
+tolerant). Output and error streams will be merged into the streams of
+the browser (using separate threads, so it may take a few seconds for
+the pipe threads to gain control.) Errors should be detected and
+displayed in a dialog.
+
+The GUI does not support killing a running program, so if your program
+might hang, be sure to save your files since you may need to kill the
+browser itself to kill its child processes.
+
+[[ajbrowser-problems]]
+=== Isolating problems running the AspectJ browser
+
+If you have problems with the browser not solved by the documentation,
+please try to see if you have the same problems when running ajc
+directly on the command line.
+
+* If the problem occurs on the command line also, then the problem is
+not in the browser. (It may be in the compiler; please send bug
+reports.)
+* If the problem does not occur on the command line, then it may lie in
+the parameters you are supplying in the build options.
+* If the build options look correct and the problem only occurs when
+building from the browser, then please submit a bug report.
+
+[[ajbrowser-knownProblems]]
+==== Known issues with the AspectJ browser
+
+For the most up-to-date information on known problems, see the
+https://bugs.eclipse.org/bugs[bug database] for unresolved
+https://bugs.eclipse.org/bugs/buglist.cgi?&product=AspectJ&component=Compiler&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED[compiler
+bugs] or
+https://bugs.eclipse.org/bugs/buglist.cgi?&product=AspectJ&component=IDE&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED[IDE
+bugs] .
+
+* Memory and forking: Users email most about the browser task running
+out of memory. This is not a problem with the browser; some compiles
+take a lot of memory, often more than similar compiles using javac. The
+browser does not support forking, so the only solution is to edit the
+java command line or script that launches the browser to add memory.
+* Editing build configuration files: this is not currently supported.
+* The structure model is incomplete after incremental compiles. To get a
+complete structure model requires a full build.
+* If you change the output directory, you must do a full build.
+
+[[ajbrowser-limitations]]
+==== Limitations
+
+* The AJBrowser expects the package and directory structure to match. If
+they do not it will be unable to browse to the corresponding file.
+* The "Run" feature launches applications in the same VM. As a result,
+if a Swing application is disposed the AJBrowser will be disposed as
+well.
+
+[[ajbrowser-feedback]]
+==== AspectJ Browser questions and bugs
+
+You can send email to aspectj-users@dev.eclipse.org. (Do join the list
+to participate!) We also welcome any bug reports, patches, and feature
+requests; you can submit them to the bug database at
+https://bugs.eclipse.org/bugs using the AspectJ product and IDE
+component.
diff --git a/docs/devguide/ajc.adoc b/docs/devguide/ajc.adoc
new file mode 100644
index 000000000..7fbc4053a
--- /dev/null
+++ b/docs/devguide/ajc.adoc
@@ -0,0 +1,510 @@
+[[ajc]]
+== `ajc`, the AspectJ compiler/weaver
+
+=== Name
+
+`ajc` - compiler and bytecode weaver for the AspectJ and Java languages
+
+=== Synopsis
+
+[subs=+quotes]
+ ajc [_option_...] [_file_... | @_file_... | -argfile _file_...]
+
+=== Description
+
+The `ajc` command compiles and weaves AspectJ and Java source and .class
+files, producing .class files compliant with any Java VM (1.1 or later).
+It combines compilation and bytecode weaving and supports incremental
+builds; you can also weave bytecode at run-time using xref:ltw.adoc#ltw[Load-Time Weaving].
+
+The arguments after the options specify the source file(s) to compile.
+To specify source classes, use `-inpath` (below). Files may be listed
+directly on the command line or in a file. The `-argfile file` and
+`@file` forms are equivalent, and are interpreted as meaning all the
+arguments listed in the specified file.
+
+`Note:` You must explicitly pass `ajc` all necessary sources. Be sure to
+include the source not only for the aspects or pointcuts but also for
+any affected types. Specifying all sources is necessary because, unlike
+javac, ajc does not search the sourcepath for classes. (For a discussion
+of what affected types might be required, see
+xref:../progguide/implementation.html[The AspectJ Programming Guide,
+Implementation Appendix].)
+
+To specify sources, you can list source files as arguments or use the
+options `-sourceroots` or `-inpath`. If there are multiple sources for
+any type, the result is undefined since ajc has no way to determine
+which source is correct. (This happens most often when users include the
+destination directory on the inpath and rebuild.)
+
+[[ajc_options]]
+==== Options
+
+`-injars <JarList>`::
+ deprecated: since 1.2, use -inpath, which also takes directories.
+`-inpath <Path>`::
+ Accept as source bytecode any .class files in the .jar files or
+ directories on Path. The output will include these classes, possibly
+ as woven with any applicable aspects. Path is a single argument
+ containing a list of paths to zip files or directories, delimited by
+ the platform-specific path delimiter.
+`-aspectpath <Path>`::
+ Weave binary aspects from jar files and directories on path into all
+ sources. The aspects should have been output by the same version of
+ the compiler. When running the output classes, the run classpath
+ should contain all aspectpath entries. Path, like classpath, is a
+ single argument containing a list of paths to jar files, delimited by
+ the platform- specific classpath delimiter.
+`-argfile <File>`::
+ The file contains a line-delimited list of arguments. Each line in the
+ file should contain one option, filename, or argument string (e.g., a
+ classpath or inpath). Arguments read from the file are inserted into
+ the argument list for the command. Relative paths in the file are
+ calculated from the directory containing the file (not the current
+ working directory). Comments, as in Java, start with `//` and extend
+ to the end of the line. Options specified in argument files may
+ override rather than extending existing option values, so avoid
+ specifying options like <-classpath> in argument files unlike the
+ argument file is the only build specification. The form <@file> is the
+ same as specifying <-argfile file>.
+`-outjar <output.jar>`::
+ Put output classes in zip file output.jar.
+`-outxml`::
+ Generate aop.xml file for load-time weaving with default name.
+`-outxmlfile <custom/aop.xml>`::
+ Generate aop.xml file for load-time weaving with custom name.
+`-incremental`::
+ Run the compiler continuously. After the initial compilation, the
+ compiler will wait to recompile until it reads a newline from the
+ standard input, and will quit when it reads a 'q'. It will only
+ recompile necessary components, so a recompile should be much faster
+ than doing a second compile. This requires -sourceroots.
+`-sourceroots <DirPaths>`::
+ Find and build all .java or .aj source files under any directory
+ listed in DirPaths. DirPaths, like classpath, is a single argument
+ containing a list of paths to directories, delimited by the platform-
+ specific classpath delimiter. Required by -incremental.
+`-crossrefs`::
+ Generate a build .ajsym file into the output directory. Used for
+ viewing crosscutting references by tools like the AspectJ Browser.
+`-emacssym`::
+ Generate .ajesym symbol files for emacs support (deprecated).
+`-Xlint`::
+ Same as -Xlint:warning (enabled by default)
+`-Xlint:{level}`::
+ Set default level for messages about potential programming mistakes in
+ crosscutting code. \{level} may be ignore, warning, or error. This
+ overrides entries in org/aspectj/weaver/XlintDefault.properties from
+ aspectjtools.jar, but does not override levels set using the
+ -Xlintfile option.
+`-Xlintfile <PropertyFile>`::
+ Specify properties file to set levels for specific crosscutting
+ messages. PropertyFile is a path to a Java .properties file that takes
+ the same property names and values as
+ org/aspectj/weaver/XlintDefault.properties from aspectjtools.jar,
+ which it also overrides.
+`-help`::
+ Emit information on compiler options and usage
+`-version`::
+ Emit the version of the AspectJ compiler
+`-classpath <Path>`::
+ Specify where to find user class files. Path is a single argument
+ containing a list of paths to zip files or directories, delimited by
+ the platform-specific path delimiter.
+`-bootclasspath <Path>`::
+ Override location of VM's bootclasspath for purposes of evaluating
+ types when compiling. Path is a single argument containing a list of
+ paths to zip files or directories, delimited by the platform-specific
+ path delimiter.
+`-extdirs <Path>`::
+ Override location of VM's extension directories for purposes of
+ evaluating types when compiling. Path is a single argument containing
+ a list of paths to directories, delimited by the platform-specific
+ path delimiter.
+`-d <Directory>`::
+ Specify where to place generated .class files. If not specified,
+ <Directory> defaults to the current working dir.
+`-target <[1.1 to 1.5]>`::
+ Specify classfile target setting (1.1 to 1.5, default is 1.2)
+`-1.3`::
+ Set compliance level to 1.3 This implies -source 1.3 and -target 1.1.
+`-1.4`::
+ Set compliance level to 1.4 (default) This implies -source 1.4 and
+ -target 1.2.
+`-1.5`::
+ Set compliance level to 1.5. This implies -source 1.5 and -target 1.5.
+`-source <[1.3|1.4|1.5]>`::
+ Toggle assertions (1.3, 1.4, or 1.5 - default is 1.4). When using
+ -source 1.3, an assert() statement valid under Java 1.4 will result in
+ a compiler error. When using -source 1.4, treat `assert` as a keyword
+ and implement assertions according to the 1.4 language spec. When
+ using -source 1.5, Java 5 language features are permitted.
+`-nowarn`::
+ Emit no warnings (equivalent to '-warn:none') This does not suppress
+ messages generated by `declare warning` or `Xlint`.
+`-warn: <items>`::
+ Emit warnings for any instances of the comma-delimited list of
+ questionable code (eg '-warn:unusedLocals,deprecation'):
++
+[source, text]
+....
+constructorName method with constructor name
+packageDefaultMethod attempt to override package-default method
+deprecation usage of deprecated type or member
+maskedCatchBlocks hidden catch block
+unusedLocals local variable never read
+unusedArguments method argument never read
+unusedImports import statement not used by code in file
+none suppress all compiler warnings
+....
++
+`-warn:none` does not suppress messages generated by `declare warning`
+ or `Xlint`.
+`-deprecation`::
+ Same as -warn:deprecation
+`-noImportError`::
+ Emit no errors for unresolved imports
+`-proceedOnError`::
+ Keep compiling after error, dumping class files with problem methods
+`-g<:[lines,vars,source]>`::
+ debug attributes level, that may take three forms:
++
+[source, text]
+....
+-g all debug info ('-g:lines,vars,source')
+-g:none no debug info
+-g:{items} debug info for any/all of [lines, vars, source], e.g.,
+ -g:lines,source
+....
+`-preserveAllLocals`::
+ Preserve all local variables during code generation (to facilitate
+ debugging).
+`-referenceInfo`::
+ Compute reference information.
+`-encoding <format>`::
+ Specify default source encoding format. Specify custom encoding on a
+ per file basis by suffixing each input source file/folder name with
+ '[encoding]'.
+`-verbose`::
+ Emit messages about accessed/processed compilation units
+`-showWeaveInfo`::
+ Emit messages about weaving
+`-log <file>`::
+ Specify a log file for compiler messages.
+`-progress`::
+ Show progress (requires -log mode).
+`-time`::
+ Display speed information.
+`-noExit`::
+ Do not call System.exit(n) at end of compilation (n=0 if no error)
+`-repeat <N>`::
+ Repeat compilation process N times (typically to do performance
+ analysis).
+`-XterminateAfterCompilation`::
+ Causes compiler to terminate before weaving
+`-XaddSerialVersionUID`::
+ Causes the compiler to calculate and add the SerialVersionUID field to
+ any type implementing Serializable that is affected by an aspect. The
+ field is calculated based on the class before weaving has taken place.
+`-Xreweavable[:compress]`::
+ (Experimental - deprecated as now default) Runs weaver in reweavable
+ mode which causes it to create woven classes that can be rewoven,
+ subject to the restriction that on attempting a reweave all the types
+ that advised the woven type must be accessible.
+`-XnoInline`::
+ (Experimental) do not inline around advice
+`-XincrementalFile <file>`::
+ (Experimental) This works like incremental mode, but using a file
+ rather than standard input to control the compiler. It will recompile
+ each time file is changed and and halt when file is deleted.
+`-XserializableAspects`::
+ (Experimental) Normally it is an error to declare aspects
+ Serializable. This option removes that restriction.
+`-XnotReweavable`::
+ (Experimental) Create class files that can't be subsequently rewoven
+ by AspectJ.
+`-Xajruntimelevel:1.2, ajruntimelevel:1.5`::
+ (Experimental) Allows code to be generated that targets a 1.2 or a 1.5
+ level AspectJ runtime (default 1.5)
+
+==== File names
+
+ajc accepts source files with either the `.java` extension or the `.aj`
+extension. We normally use `.java` for all of our files in an AspectJ
+system -- files that contain aspects as well as files that contain
+classes. However, if you have a need to mechanically distinguish files
+that use AspectJ's additional functionality from those that are pure
+Java we recommend using the `.aj` extension for those files.
+
+We'd like to discourage other means of mechanical distinction such as
+naming conventions or sub-packages in favor of the `.aj` extension.
+
+* Filename conventions are hard to enforce and lead to awkward names for
+your aspects. Instead of `TracingAspect.java` we recommend using
+`Tracing.aj` (or just `Tracing.java`) instead.
+* Sub-packages move aspects out of their natural place in a system and
+can create an artificial need for privileged aspects. Instead of adding
+a sub-package like `aspects` we recommend using the `.aj` extension and
+including these files in your existing packages instead.
+
+==== Compatibility
+
+AspectJ is a compatible extension to the Java programming language. The
+AspectJ compiler adheres to the
+http://java.sun.com/docs/books/jls/index.html[The Java Language
+Specification, Second Edition] and to the
+http://java.sun.com/docs/books/vmspec/index.html[The Java Virtual
+Machine Specification, Second Edition] and runs on any Java 2 compatible
+platform. The code it generates runs on any Java 1.1 or later compatible
+platform. For more information on compatibility with Java and with
+previous releases of AspectJ, see xref:compatibility.adoc#versionCompatibility[Version Compatibility].
+
+==== Examples
+
+Compile two files:
+
+[source, text]
+....
+ajc HelloWorld.java Trace.java
+....
+
+To avoid specifying file names on the command line, list source files in
+a line-delimited text argfile. Source file paths may be absolute or
+relative to the argfile, and may include other argfiles by @-reference.
+The following file `sources.lst` contains absolute and relative files
+and @-references:
+
+[source, text]
+....
+Gui.java
+/home/user/src/Library.java
+data/Repository.java
+data/Access.java
+@../../common/common.lst
+@/home/user/src/lib.lst
+view/body/ArrayView.java
+....
+
+Compile the files using either the -argfile or @ form:
+
+[source, text]
+....
+ajc -argfile sources.lst
+ajc @sources.lst
+....
+
+Argfiles are also supported by jikes and javac, so you can use the files
+in hybrid builds. However, the support varies:
+
+* Only ajc accepts command-line options
+* Jikes and Javac do not accept internal @argfile references.
+* Jikes and Javac only accept the @file form on the command line.
+
+Bytecode weaving using -inpath: AspectJ 1.2 supports weaving .class
+files in input zip/jar files and directories. Using input jars is like
+compiling the corresponding source files, and all binaries are emitted
+to output. Although Java-compliant compilers may differ in their output,
+ajc should take as input any class files produced by javac, jikes,
+eclipse, and, of course, ajc. Aspects included in -inpath will be woven
+into like other .class files, and they will affect other types as usual.
+
+Aspect libraries using -aspectpath: AspectJ 1.1 supports weaving from
+read-only libraries containing aspects. Like input jars, they affect all
+input; unlike input jars, they themselves are not affected or emitted as
+output. Sources compiled with aspect libraries must be run with the same
+aspect libraries on their classpath.
+
+The following example builds the tracing example in a command-line
+environment; it creates a read-only aspect library, compiles some
+classes for use as input bytecode, and compiles the classes and other
+sources with the aspect library.
+
+The tracing example is in the AspectJ distribution
+(\{aspectj}/doc/examples/tracing). This uses the following files:
+
+[source, text]
+....
+aspectj1.1/
+ bin/
+ ajc
+ lib/
+ aspectjrt.jar
+ examples/
+ tracing/
+ Circle.java
+ ExampleMain.java
+ lib/
+ AbstractTrace.java
+ TraceMyClasses.java
+ notrace.lst
+ Square.java
+ tracelib.lst
+ tracev3.lst
+ TwoDShape.java
+ version3/
+ Trace.java
+ TraceMyClasses.java
+....
+
+Below, the path separator is taken as ";", but file separators are "/".
+All commands are on one line. Adjust paths and commands to your
+environment as needed.
+
+Setup the path, classpath, and current directory:
+
+[source, text]
+....
+cd examples
+export ajrt=../lib/aspectjrt.jar
+export CLASSPATH="$ajrt"
+export PATH="../bin:$PATH"
+....
+
+Build a read-only tracing library:
+
+[source, text]
+....
+ajc -argfile tracing/tracelib.lst -outjar tracelib.jar
+....
+
+Build the application with tracing in one step:
+
+[source, text]
+....
+ajc -aspectpath tracelib.jar -argfile tracing/notrace.lst -outjar tracedapp.jar
+....
+
+Run the application with tracing:
+
+[source, text]
+....
+java -classpath "$ajrt;tracedapp.jar;tracelib.jar" tracing.ExampleMain
+....
+
+Build the application with tracing from binaries in two steps:
+
+* (a) Build the application classes (using javac for
+demonstration's sake):
++
+[source, text]
+....
+mkdir classes
+javac -d classes tracing/*.java
+jar cfM app.jar -C classes .
+....
+* (b) Build the application with tracing:
++
+[source, text]
+....
+ajc -inpath app.jar -aspectpath tracelib.jar -outjar tracedapp.jar
+....
+
+Run the application with tracing (same as above):
+
+[source, text]
+....
+java -classpath "$ajrt;tracedapp.jar;tracelib.jar" tracing.ExampleMain
+....
+
+Run the application without tracing:
+
+[source, text]
+....
+java -classpath "app.jar" tracing.ExampleMain
+....
+
+==== The AspectJ compiler API
+
+The AspectJ compiler is implemented completely in Java and can be called
+as a Java class. The only interface that should be considered public are
+the public methods in `org.aspectj.tools.ajc.Main`. E.g.,
+`main(String[] args)` takes the the standard `ajc` command line
+arguments. This means that an alternative way to run the compiler is
+
+[subs=+quotes]
+ java org.aspectj.tools.ajc.Main [_option_...] [_file_...]
+
+To access compiler messages programmatically, use the methods
+`setHolder(IMessageHolder holder)` and/or
+`run(String[] args, IMessageHolder holder)`. `ajc` reports each message
+to the holder using `IMessageHolder.handleMessage(..)`. If you just want
+to collect the messages, use `MessageHandler` as your `IMessageHolder`.
+For example, compile and run the following with `aspectjtools.jar` on
+the classpath:
+
+[source, java]
+....
+import org.aspectj.bridge.*;
+import org.aspectj.tools.ajc.Main;
+import java.util.Arrays;
+
+public class WrapAjc {
+ public static void main(String[] args) {
+ Main compiler = new Main();
+ MessageHandler m = new MessageHandler();
+ compiler.run(args, m);
+ IMessage[] ms = m.getMessages(null, true);
+ System.out.println("messages: " + Arrays.asList(ms));
+ }
+}
+....
+
+==== Stack Traces and the SourceFile attribute
+
+Unlike traditional java compilers, the AspectJ compiler may in certain
+cases generate classfiles from multiple source files. Unfortunately, the
+original Java class file format does not support multiple SourceFile
+attributes. In order to make sure all source file information is
+available, the AspectJ compiler may in some cases encode multiple
+filenames in the SourceFile attribute. When the Java VM generates stack
+traces, it uses this attribute to specify the source file.
+
+(The AspectJ 1.0 compiler also supports the .class file extensions of
+JSR-45. These permit compliant debuggers (such as jdb in Java 1.4.1) to
+identify the right file and line even given many source files for a
+single class. JSR-45 support is planned for ajc in AspectJ 1.1, but is
+not in the initial release. To get fully debuggable .class files, use
+the -XnoInline option.)
+
+Probably the only time you may see this format is when you view stack
+traces, where you may encounter traces of the format
+
+[source, text]
+....
+java.lang.NullPointerException
+ at Main.new$constructor_call37(Main.java;SynchAspect.java[1k]:1030)
+....
+
+where instead of the usual
+
+[source, text]
+....
+File:LineNumber
+....
+
+format, you see
+
+[source, text]
+....
+File0;File1[Number1];File2[Number2] ... :LineNumber
+....
+
+In this case, LineNumber is the usual offset in lines plus the "start
+line" of the actual source file. That means you use LineNumber both to
+identify the source file and to find the line at issue. The number in
+[brackets] after each file tells you the virtual "start line" for that
+file (the first file has a start of 0).
+
+In our example from the null pointer exception trace, the virtual start
+line is 1030. Since the file SynchAspect.java "starts" at line 1000
+[1k], the LineNumber points to line 30 of SynchAspect.java.
+
+So, when faced with such stack traces, the way to find the actual source
+location is to look through the list of "start line" numbers to find the
+one just under the shown line number. That is the file where the source
+location can actually be found. Then, subtract that "start line" from
+the shown line number to find the actual line number within that file.
+
+In a class file that comes from only a single source file, the AspectJ
+compiler generates SourceFile attributes consistent with traditional
+Java compilers.
diff --git a/docs/devguide/ajc.xml b/docs/devguide/ajc.xml
new file mode 100644
index 000000000..763c54fba
--- /dev/null
+++ b/docs/devguide/ajc.xml
@@ -0,0 +1,835 @@
+<refentry id="ajc-ref" xreflabel="The ajc Command-line Reference">
+
+ <refnamediv>
+ <refname>ajc</refname>
+ <refpurpose>compiler and bytecode weaver for the AspectJ and Java languages</refpurpose>
+ </refnamediv>
+
+ <refsynopsisdiv>
+ <cmdsynopsis>
+ <command>ajc</command>
+ <arg><replaceable>Options</replaceable></arg>
+ <group>
+ <arg><replaceable>file...</replaceable></arg>
+ <arg>@<replaceable>file...</replaceable></arg>
+ <arg>-argfile <replaceable>file...</replaceable></arg>
+ </group>
+ </cmdsynopsis>
+ </refsynopsisdiv>
+ <refsect1 id="ajc" xreflabel="ajc">
+ <title>Description</title>
+
+ <para>The <command>ajc</command> command compiles and weaves AspectJ and
+ Java source and .class files, producing .class files compliant with any
+ Java VM (1.1 or later). It combines compilation and bytecode weaving
+ and supports incremental builds; you can also weave bytecode
+ at run-time using <xref linkend="ltw"/>.
+ </para>
+
+ <para> The arguments after the options specify the source file(s) to compile.
+ To specify source classes, use <parameter>-inpath</parameter> (below).
+ Files may be listed directly on the command line or in a file.
+ The <parameter>-argfile <replaceable>file</replaceable></parameter>
+ and <parameter>@<replaceable>file</replaceable></parameter> forms
+ are equivalent, and are interpreted as meaning all the arguments
+ listed in the specified file.
+ </para>
+
+ <para>
+ <command>Note:</command>
+ You must explicitly pass <command>ajc</command> all necessary sources.
+ Be sure to include the source not only for the
+ aspects or pointcuts but also for any affected types.
+ Specifying all sources is necessary because, unlike javac, ajc does not
+ search the sourcepath for classes.
+ (For a discussion of what affected types might be required,
+ see <ulink url="../progguide/implementation.html">The AspectJ
+ Programming Guide, Implementation Appendix</ulink>.)
+ </para>
+ <para>
+ To specify sources, you can list source files as arguments or use the
+ options <parameter>-sourceroots</parameter> or <parameter>-inpath</parameter>.
+ If there are multiple sources for any type, the result is undefined
+ since ajc has no way to determine which source is correct. (This
+ happens most often when users include the destination directory
+ on the inpath and rebuild.)
+ </para>
+
+ <refsect2 id="ajc_options" xreflabel="ajc_options">
+ <title>Options</title>
+
+ <variablelist>
+
+ <varlistentry>
+ <term>-injars <replaceable>JarList</replaceable></term>
+ <listitem><para>
+ deprecated: since 1.2, use -inpath, which also takes
+ directories.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term>-inpath <replaceable>Path</replaceable></term>
+ <listitem><para>
+ Accept as source bytecode any .class files in the
+ .jar files or directories on Path.
+ The output will include these
+ classes, possibly as woven with any applicable aspects.
+ Path is a single argument containing
+ a list of paths to zip files or directories,
+ delimited by the platform-specific path delimiter.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term>-aspectpath <replaceable>Path</replaceable></term>
+ <listitem><para>
+ Weave binary aspects from jar files and directories on path into all sources.
+ The aspects should have been output by the same version
+ of the compiler.
+ When running the output classes, the run classpath should contain
+ all aspectpath entries.
+ Path, like classpath, is a single argument containing
+ a list of paths to jar files, delimited by the platform-
+ specific classpath delimiter.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term>-argfile <replaceable>File</replaceable></term>
+ <listitem><para>
+ The file contains a line-delimited list of arguments.
+ Each line in the file should contain one option, filename, or
+ argument string (e.g., a classpath or inpath).
+ Arguments read from the file are inserted into the argument list
+ for the command. Relative paths in the file are calculated from
+ the directory containing the file (not the current working directory).
+ Comments, as in Java, start with <literal>//</literal> and
+ extend to the end of the line. Options specified in argument
+ files may override rather than extending existing option values,
+ so avoid specifying options like <replaceable>-classpath</replaceable>
+ in argument files unlike the argument file is the only build
+ specification. The form <replaceable>@file</replaceable> is the same
+ as specifying <replaceable>-argfile file</replaceable>.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term>-outjar <replaceable>output.jar</replaceable></term>
+ <listitem><para>Put output classes in zip file output.jar.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term>-outxml</term>
+ <listitem><para>Generate aop.xml file for load-time weaving with default name.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term>-outxmlfile <replaceable>custom/aop.xml</replaceable></term>
+ <listitem><para>Generate aop.xml file for load-time weaving with custom name.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term>-incremental</term>
+ <listitem><para>Run the compiler continuously.
+ After the initial compilation, the compiler will
+ wait to recompile until it reads a newline from the standard
+ input, and will quit when it reads a 'q'.
+ It will only recompile necessary components, so a recompile
+ should be much faster than doing a second compile.
+ This requires -sourceroots.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term>-sourceroots <replaceable>DirPaths</replaceable></term>
+ <listitem><para>Find and build all .java or .aj source files under
+ any directory listed in DirPaths.
+ DirPaths, like classpath, is a single argument containing
+ a list of paths to directories, delimited by the platform-
+ specific classpath delimiter.
+ Required by -incremental.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term>-crossrefs</term>
+ <listitem><para>
+ Generate a build .ajsym file into the output directory. Used for
+ viewing crosscutting references by tools like the AspectJ
+ Browser.
+ </para></listitem>
+ </varlistentry>
+
+
+ <varlistentry>
+ <term>-emacssym</term>
+ <listitem><para>
+ Generate .ajesym symbol files for emacs support (deprecated).
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term>-Xlint</term>
+ <listitem><para>Same as -Xlint:warning (enabled by default)
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term>-Xlint:{level}</term>
+ <listitem><para>Set default level for messages about potential
+ programming mistakes in crosscutting code.
+ {level} may be ignore, warning, or error.
+ This overrides entries in
+ org/aspectj/weaver/XlintDefault.properties
+ from aspectjtools.jar, but does not override levels set
+ using the -Xlintfile option.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term>-Xlintfile <replaceable>PropertyFile</replaceable></term>
+ <listitem><para>Specify properties file to set levels for
+ specific crosscutting messages.
+ PropertyFile is a path to a Java .properties file that
+ takes the same property names and values as
+ org/aspectj/weaver/XlintDefault.properties
+ from aspectjtools.jar, which it also overrides.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term>-help</term>
+ <listitem><para>
+ Emit information on compiler options and usage
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term>-version</term>
+ <listitem><para>
+ Emit the version of the AspectJ compiler
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term>-classpath <replaceable>Path</replaceable></term>
+ <listitem><para>
+ Specify where to find user class files.
+ Path is a single argument containing
+ a list of paths to zip files or directories,
+ delimited by the platform-specific path delimiter.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term>-bootclasspath <replaceable>Path</replaceable></term>
+ <listitem><para>
+ Override location of VM's bootclasspath
+ for purposes of evaluating types when compiling.
+ Path is a single argument containing
+ a list of paths to zip files or directories,
+ delimited by the platform-specific path delimiter.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term>-extdirs <replaceable>Path</replaceable></term>
+ <listitem><para>
+ Override location of VM's extension directories
+ for purposes of evaluating types when compiling.
+ Path is a single argument containing
+ a list of paths to directories,
+ delimited by the platform-specific path delimiter.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term>-d <replaceable>Directory</replaceable></term>
+ <listitem><para>
+ Specify where to place generated .class files.
+ If not specified, <replaceable>Directory</replaceable>
+ defaults to the current working dir.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term>-target <replaceable>[1.1 to 1.5]</replaceable></term>
+ <listitem><para>Specify classfile target setting (1.1 to 1.5, default is 1.2)
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term>-1.3</term>
+ <listitem><para>Set compliance level to 1.3
+ This implies -source 1.3 and -target 1.1.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term>-1.4</term>
+ <listitem><para>Set compliance level to 1.4 (default)
+ This implies -source 1.4 and -target 1.2.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term>-1.5</term>
+ <listitem><para>Set compliance level to 1.5.
+ This implies -source 1.5 and -target 1.5.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term>-source <replaceable>[1.3|1.4|1.5]</replaceable></term>
+ <listitem><para>Toggle assertions (1.3, 1.4, or 1.5 - default is 1.4).
+ When using -source 1.3, an assert() statement valid under
+ Java 1.4 will result in a compiler error.
+ When using -source 1.4,
+ treat <literal>assert</literal> as a keyword and
+ implement assertions according to the 1.4 language spec.
+ When using -source 1.5,
+ Java 5 language features are permitted.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term>-nowarn</term>
+ <listitem><para>Emit no warnings (equivalent to '-warn:none')
+ This does not suppress messages
+ generated by <literal>declare warning</literal> or
+ <literal>Xlint</literal>.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term>-warn: <replaceable>items</replaceable></term>
+ <listitem><para>Emit warnings for any instances of
+ the comma-delimited list of questionable code
+ (eg '-warn:unusedLocals,deprecation'):
+ <programlisting><!-- unable to embed itemizedlist? -->
+constructorName method with constructor name
+packageDefaultMethod attempt to override package-default method
+deprecation usage of deprecated type or member
+maskedCatchBlocks hidden catch block
+unusedLocals local variable never read
+unusedArguments method argument never read
+unusedImports import statement not used by code in file
+none suppress all compiler warnings
+ </programlisting>
+ <literal>-warn:none</literal> does not suppress messages
+ generated by <literal>declare warning</literal> or
+ <literal>Xlint</literal>.
+
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term>-deprecation</term>
+ <listitem><para>Same as -warn:deprecation
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term>-noImportError</term>
+ <listitem><para>Emit no errors for unresolved imports
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term>-proceedOnError</term>
+ <listitem><para>Keep compiling after error,
+ dumping class files with problem methods
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term>-g<replaceable>:[lines,vars,source]</replaceable></term>
+ <listitem>
+ <para>debug attributes level, that may take three forms:
+ <programlisting>
+-g all debug info ('-g:lines,vars,source')
+-g:none no debug info
+-g:{items} debug info for any/all of [lines, vars, source], e.g.,
+ -g:lines,source
+ </programlisting>
+
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term>-preserveAllLocals</term>
+ <listitem><para>Preserve all local variables during code generation
+ (to facilitate debugging).
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term>-referenceInfo</term>
+ <listitem><para>Compute reference information.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term>-encoding <replaceable>format</replaceable></term>
+ <listitem><para>Specify default source encoding format.
+ Specify custom encoding on a per file basis by suffixing
+ each input source file/folder name with '[encoding]'.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term>-verbose</term>
+ <listitem><para>Emit messages about accessed/processed compilation units
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term>-showWeaveInfo</term>
+ <listitem><para>Emit messages about weaving
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term>-log <replaceable>file</replaceable></term>
+ <listitem><para>Specify a log file for compiler messages.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term>-progress</term>
+ <listitem><para>Show progress (requires -log mode).
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term>-time</term>
+ <listitem><para>Display speed information.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term>-noExit</term>
+ <listitem><para>Do not call System.exit(n) at end of compilation
+ (n=0 if no error)
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term>-repeat <replaceable>N</replaceable></term>
+ <listitem><para>Repeat compilation process N times
+ (typically to do performance analysis).
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term>-XterminateAfterCompilation</term>
+ <listitem><para>Causes compiler to terminate before weaving
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term>-XaddSerialVersionUID</term>
+ <listitem><para>Causes the compiler to calculate and add
+ the SerialVersionUID field to any type implementing
+ Serializable that is affected by an aspect. The field
+ is calculated based on the class before weaving has
+ taken place.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term>-Xreweavable[:compress]</term>
+ <listitem><para>(Experimental - deprecated as now default)
+ Runs weaver in reweavable mode which causes
+ it to create woven classes that can be rewoven, subject to the restriction that
+ on attempting a reweave all the types that advised the woven type must be accessible.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term>-XnoInline</term>
+ <listitem><para>(Experimental) do not inline around advice
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term>-XincrementalFile <replaceable>file</replaceable></term>
+ <listitem><para>(Experimental) This works like incremental mode,
+ but using a file rather than standard input to control the compiler.
+ It will recompile each time file is changed and
+ and halt when file is deleted.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term>-XserializableAspects</term>
+ <listitem><para>
+ (Experimental) Normally it is an error to declare
+ aspects Serializable. This option removes that restriction.
+ </para></listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>-XnotReweavable</term>
+ <listitem><para>
+ (Experimental) Create class files that can't be subsequently rewoven by AspectJ.
+ </para></listitem>
+ </varlistentry>
+ <!-- not documenting this feature yet -->
+ <!--
+ <varlistentry>
+ <term>-XhasMember</term>
+ <listitem><para>
+ (Experimental) Allow hasmethod() and hasfield type patterns in declare parents and declare @type.
+ </para></listitem>
+ </varlistentry>
+ -->
+ <varlistentry>
+ <term>-Xajruntimelevel:1.2, ajruntimelevel:1.5</term>
+ <listitem><para>
+ (Experimental) Allows code to be generated that targets a 1.2 or a 1.5 level AspectJ runtime (default 1.5)
+ </para></listitem>
+ </varlistentry>
+ </variablelist>
+
+ </refsect2>
+
+ <refsect2>
+ <title>File names</title>
+
+ <para>ajc accepts source files with either the <filename>.java</filename>
+ extension or the <filename>.aj</filename> extension. We normally use
+ <filename>.java</filename> for all of our files in an AspectJ system -- files
+ that contain aspects as well as files that contain classes. However, if
+ you have a need to mechanically distinguish files that use AspectJ's
+ additional functionality from those that are pure Java we recommend using
+ the <filename>.aj</filename> extension for those files.</para>
+
+ <para>We'd like to discourage other means of mechanical distinction such as
+ naming conventions or sub-packages in favor of the <filename>.aj</filename>
+ extension.</para>
+
+ <itemizedlist>
+
+ <listitem><para>Filename conventions are hard to enforce and lead to awkward names
+ for your aspects. Instead of <filename>TracingAspect.java</filename> we
+ recommend using <filename>Tracing.aj</filename> (or just
+ <filename>Tracing.java</filename>) instead.</para></listitem>
+
+ <listitem><para>Sub-packages move aspects out of their natural place in a system
+ and can create an artificial need for privileged aspects. Instead of
+ adding a sub-package like <filename>aspects</filename> we recommend using the
+ <filename>.aj</filename> extension and including these files in your existing
+ packages instead.</para></listitem>
+
+ </itemizedlist>
+
+ </refsect2>
+
+ <refsect2>
+ <title>Compatibility</title>
+
+ <para>
+ AspectJ is a compatible extension to the Java programming language. The
+ AspectJ compiler adheres to the <ulink
+ url="http://java.sun.com/docs/books/jls/index.html"> <citetitle
+ pubwork="book">The Java Language Specification, Second
+ Edition</citetitle></ulink> and to the <ulink
+ url="http://java.sun.com/docs/books/vmspec/index.html"><citetitle
+ pubwork="book">The Java Virtual Machine Specification, Second
+ Edition</citetitle></ulink> and runs on any Java 2 compatible
+ platform. The code it generates runs on any Java 1.1 or later
+ compatible platform.
+ For more information on compatibility with
+ Java and with previous releases of AspectJ,
+ see
+ <xref linkend="versionCompatibility"/>.
+ </para>
+
+ </refsect2>
+
+ <refsect2>
+ <title>Examples</title>
+
+ <example id="simpleexample">
+ <title>A simple example</title>
+
+ <para>Compile two files:</para>
+
+ <programlisting>
+ajc HelloWorld.java Trace.java
+ </programlisting>
+
+ </example>
+
+ <example id="exampleusingargfile">
+ <title>An example using -argfile/@</title>
+
+ <para>
+ To avoid specifying file names on the command line,
+ list source files in a line-delimited text argfile.
+ Source file paths may be absolute or relative to the argfile,
+ and may include other argfiles by @-reference.
+ The following file <literal>sources.lst</literal>
+ contains absolute and relative files and @-references:
+ </para>
+ <programlisting>
+Gui.java
+/home/user/src/Library.java
+data/Repository.java
+data/Access.java
+@../../common/common.lst
+@/home/user/src/lib.lst
+view/body/ArrayView.java
+ </programlisting>
+
+ <para>Compile the files using either the -argfile or @ form:</para>
+ <programlisting>
+ajc -argfile sources.lst
+ajc @sources.lst</programlisting>
+ <para>
+ Argfiles are also supported by jikes and javac, so you
+ can use the files in hybrid builds. However, the support varies:
+ </para>
+ <itemizedlist>
+ <listitem><para>Only ajc accepts command-line options</para></listitem>
+ <listitem><para>Jikes and Javac do not accept internal @argfile references.
+ </para></listitem>
+ <listitem><para>Jikes and Javac only accept the @file form on the command line.</para></listitem>
+ </itemizedlist>
+
+ </example>
+ <example id="examplebytecode">
+ <title>An example using -inpath and -aspectpath</title>
+ <para>Bytecode weaving using -inpath:
+ AspectJ 1.2 supports weaving .class files in input zip/jar files
+ and directories.
+ Using input jars is like compiling the corresponding
+ source files, and all binaries are emitted to output. Although
+ Java-compliant compilers may differ in their output, ajc should
+ take as input any class files produced by javac, jikes, eclipse,
+ and, of course, ajc. Aspects included in -inpath will be woven into
+ like other .class files, and they will affect other types as usual.
+ </para>
+ <para>Aspect libraries using -aspectpath:
+ AspectJ 1.1 supports weaving from read-only libraries containing
+ aspects. Like input jars, they affect all input; unlike input
+ jars, they themselves are not affected or emitted as output.
+ Sources compiled with aspect libraries must be run with the same
+ aspect libraries on their classpath.
+ </para>
+ <para>The following example builds the tracing example in a
+ command-line environment; it creates a read-only aspect library,
+ compiles some classes for use as input bytecode, and
+ compiles the classes and other sources with the aspect library.
+ </para>
+ <para>The tracing example is in the AspectJ distribution
+ ({aspectj}/doc/examples/tracing). This uses the following files:
+ </para>
+ <para><programlisting>
+aspectj1.1/
+ bin/
+ ajc
+ lib/
+ aspectjrt.jar
+ examples/
+ tracing/
+ Circle.java
+ ExampleMain.java
+ lib/
+ AbstractTrace.java
+ TraceMyClasses.java
+ notrace.lst
+ Square.java
+ tracelib.lst
+ tracev3.lst
+ TwoDShape.java
+ version3/
+ Trace.java
+ TraceMyClasses.java
+ </programlisting></para>
+
+<para>Below, the path separator is taken as ";", but file separators
+are "/". All commands are on one line. Adjust paths and
+commands to your environment as needed.
+
+</para><para>Setup the path, classpath, and current directory:</para>
+
+ <programlisting>
+cd examples
+export ajrt=../lib/aspectjrt.jar
+export CLASSPATH="$ajrt"
+export PATH="../bin:$PATH"
+ </programlisting>
+
+<para>Build a read-only tracing library:</para>
+ <programlisting>
+ ajc -argfile tracing/tracelib.lst -outjar tracelib.jar
+ </programlisting>
+
+<para>Build the application with tracing in one step:</para>
+
+ <programlisting>
+ajc -aspectpath tracelib.jar -argfile tracing/notrace.lst -outjar tracedapp.jar
+ </programlisting>
+
+<para>Run the application with tracing:</para>
+
+ <programlisting>
+java -classpath "$ajrt;tracedapp.jar;tracelib.jar" tracing.ExampleMain
+ </programlisting>
+
+<para>Build the application with tracing from binaries in two steps:</para>
+ <itemizedlist><listitem><para>
+(a) Build the application classes (using javac for demonstration's sake):</para>
+ <programlisting>
+mkdir classes
+javac -d classes tracing/*.java
+jar cfM app.jar -C classes .
+ </programlisting>
+
+ </listitem>
+ <listitem><para>
+(b) Build the application with tracing:</para>
+ <programlisting>
+ajc -inpath app.jar -aspectpath tracelib.jar -outjar tracedapp.jar
+ </programlisting>
+ </listitem></itemizedlist>
+
+<para>Run the application with tracing (same as above):</para>
+
+ <programlisting>
+java -classpath "$ajrt;tracedapp.jar;tracelib.jar" tracing.ExampleMain
+ </programlisting>
+
+<para>Run the application without tracing:</para>
+
+ <programlisting>
+java -classpath "app.jar" tracing.ExampleMain
+ </programlisting>
+
+ </example>
+
+ </refsect2>
+
+ <refsect2>
+ <title>The AspectJ compiler API</title>
+
+ <para>The AspectJ compiler is implemented completely in Java and can be
+ called as a Java class. The only interface that should be considered
+ public are the public methods in <literal>org.aspectj.tools.ajc.Main</literal>.
+ E.g., <literal>main(String[] args)</literal> takes the
+ the standard <command>ajc</command> command line arguments.
+ This means that an alternative way to run the
+ compiler is </para>
+
+ <cmdsynopsis>
+ <command><literal>java org.aspectj.tools.ajc.Main</literal></command>
+ <arg><replaceable>option...</replaceable></arg>
+ <arg><replaceable>file...</replaceable></arg>
+ </cmdsynopsis>
+ <para>To access compiler messages programmatically, use the methods
+ <literal>setHolder(IMessageHolder holder)</literal> and/or
+ <literal>run(String[] args, IMessageHolder holder)</literal>.
+ <literal>ajc</literal> reports each message to the holder
+ using <literal>IMessageHolder.handleMessage(..)</literal>.
+ If you just want to collect the messages, use
+ <literal>MessageHandler</literal> as your
+ <literal>IMessageHolder</literal>.
+ For example, compile and run the following with
+ <literal>aspectjtools.jar</literal> on the classpath:
+ </para>
+ <programlisting>
+import org.aspectj.bridge.*;
+import org.aspectj.tools.ajc.Main;
+import java.util.Arrays;
+
+public class WrapAjc {
+ public static void main(String[] args) {
+ Main compiler = new Main();
+ MessageHandler m = new MessageHandler();
+ compiler.run(args, m);
+ IMessage[] ms = m.getMessages(null, true);
+ System.out.println("messages: " + Arrays.asList(ms));
+ }
+}
+ </programlisting>
+ </refsect2>
+
+ <refsect2>
+ <title>Stack Traces and the SourceFile attribute</title>
+
+ <para>Unlike traditional java compilers, the AspectJ compiler may in
+ certain cases generate classfiles from multiple source files.
+ Unfortunately, the original Java class file format does not support
+ multiple
+ SourceFile attributes. In order to make sure all source file
+ information is available, the AspectJ compiler may in some cases
+ encode multiple filenames in the SourceFile attribute.
+ When the Java VM generates stack traces, it uses this attribute
+ to specify the source file.
+ </para>
+ <para>(The AspectJ 1.0 compiler also supports the .class file extensions of JSR-45.
+ These permit compliant debuggers (such as jdb in Java 1.4.1) to identify
+ the right file and line even given many source files for a single class.
+ JSR-45 support is planned for ajc in AspectJ 1.1, but is not in the initial
+ release. To get fully debuggable .class files, use the -XnoInline option.)
+ </para>
+
+ <para>Probably the only time you may see this format is when you view
+ stack traces, where you may encounter traces of the format
+ </para>
+
+<programlisting>
+java.lang.NullPointerException
+ at Main.new$constructor_call37(Main.java;SynchAspect.java[1k]:1030)
+</programlisting>
+
+ <para>where instead of the usual
+ </para>
+
+<programlisting>
+File:LineNumber
+</programlisting>
+
+ <para>format, you see
+ </para>
+
+<programlisting>
+File0;File1[Number1];File2[Number2] ... :LineNumber
+</programlisting>
+
+ <para>In this case, LineNumber is the usual offset in lines plus the
+ "start line" of the actual source file. That means you use LineNumber
+ both to identify the source file and to find the line at issue.
+ The number in [brackets] after each file tells you the
+ virtual "start line" for that file (the first file has a start of 0).
+ </para>
+
+ <para> In our example from the null pointer exception trace,
+ the virtual start line is 1030. Since the file SynchAspect.java
+ "starts" at line 1000 [1k], the LineNumber points to line 30 of
+ SynchAspect.java.
+ </para>
+
+ <para> So, when faced with such stack traces, the way to find the actual
+ source location is to look through the list of "start line" numbers to
+ find the one just under the shown line number. That is the file where
+ the source location can actually be found. Then, subtract that "start
+ line" from the shown line number to find the actual line number within
+ that file.
+ </para>
+
+ <para>In a class file that comes from only a single source file, the AspectJ
+ compiler generates SourceFile attributes consistent with
+ traditional Java compilers.
+ </para>
+
+ </refsect2>
+
+
+ </refsect1>
+</refentry>
diff --git a/docs/devguide/ajdb.adoc b/docs/devguide/ajdb.adoc
new file mode 100644
index 000000000..4e45cbc80
--- /dev/null
+++ b/docs/devguide/ajdb.adoc
@@ -0,0 +1,323 @@
+ajdb
+
+debugger for .class files produced by ajc (early-access)
+
+ajdb
+
+-classpath
+
+path
+
+-D
+
+name
+
+=
+
+value
+
+-help
+
+-gui
+
+-read
+
+file
+
+-sourcepath
+
+dir
+
+-v
+
+-verbose
+
+:class
+
+:gc
+
+:jni
+
+workingdir
+
+dir
+
+-X
+
+option
+
+class
+
+arguments
+
+== Description
+
+The command `ajdb` is used to debug AspectJ and Java programs. In
+addition to its command line interface, `adjb` also has a standalone,
+Swing-based GUI interface.
+
+Note: As of the 1.0.3 release, AspectJ supports JSR-45, which provides
+source-level debugging from many source files per class and non-Java
+source files. JSR-45 is implemented in the J2SE 1.4 debugger support, so
+you may be able to use your existing debugger to step through AspectJ
+source code if both the source and target VM's are running under Java
+1.4 or later. However, existing debuggers will display synthetic methods
+in the stack frame.
+
+-classpath
+
+path
+
+Specify where to find user class files.
+
+-D
+
+name
+
+=
+
+value
+
+Define the property
+
+name
+
+to have the value
+
+value
+
+.
+
+-help
+
+Print out
+
+ajdb
+
+'s usage summary.
+
+-read
+
+file
+
+Read this file for initializatoin commands.
+
+-sourcepath
+
+path
+
+Search this directory for source files.
+
+-gui
+
+-v | -verbose [:class | :gc | :jni]
+
+Print out class loading, garbage collection or dynamic library loading
+information. Defaults to class loading.
+
+-workingdir
+
+directory
+
+Set
+
+ajdb
+
+'s working directory.
+
+-X
+
+option
+
+Pass a non-standard option to the VM
+
+=== Capabilities
+
+The AspectJ debugger implements all of ``jdb``'s commands. In addition,
+the command `workingdir` allow you to set the AspectJ working directory,
+and the breakpoint command, `stop on`, has been extended to allow the
+setting of breakpoint on a source file line.
+
+=== Examples
+
+Suppose you want to debug the file spacewar/Ship.java found in the
+examples directory. At the command line start up the debugger: `
+ ajdb
+ `
+
+The debugger will first look for initialization files in your home or
+current directory called either `ajdb.ini` or `.ajdbrc` and execute the
+commands contained in them. A useful command to have in this file is the
+`source-path` command which tells the debugger where to find source
+files.
+
+For this example, we need to set the source path by: `
+ use C:\src
+ `
+
+To view the file to debug, type `list
+ spacewar/Ship.java` which generates the following output:
+
+[source, java]
+....
+/*209*/ void fire() {
+/*210*/ // firing a shot takes energy
+/*211*/ if (!expendEnergy(BULLET_ENERGY))
+/*212*/ return;
+/*213*/
+/*214*/ //create a bullet object so it doesn't hit the ship that's firing it
+/*215*/ double xV = getXVel() + BULLET_SPEED * (Math.cos(orientation));
+/*216*/ double yV = getYVel() + BULLET_SPEED * (Math.sin(orientation));
+/*217*/
+/*218*/ // create the actual bullet
+/*219*/ new Bullet(
+/*220*/ getGame(),
+/*221*/ (getXPos() + ((getSize()/2 + 2) * (Math.cos(orientation))) + xV),
+/*222*/ (getYPos() + ((getSize()/2 + 2) * (Math.sin(orientation))) + yV),
+/*223*/ xV,
+/*224*/ yV);
+/*225*/ }
+....
+
+This is different from `jdb` because it allows one to view files before
+the debugger has started. The `list` command has the following syntax:
+
+list
+
+list the source containing the location at which we are currently
+stopped (can only be used with a running VM)
+
+list
+
+source
+
+list the entire file source
+
+list
+
+source line
+
+list source line line of file source
+
+list
+
+source start-line end-line
+
+list the lines from
+
+start-line
+
+to
+
+end-line
+
+of file
+
+source
+
+To set a breakpoint in the method `Ship.fire`, we would could type
+`stop in spacewar.Ship.fire`.
+
+The following message appears notifying the user that the breakpoint has
+been noted but will not be set until the class has been loaded by the
+VM:
+
+[source, text]
+....
+Deferring breakpoint spacewar.Ship.fire()
+It will be set after the class is loaded.
+....
+
+To start Spacewar we type `run spacewar.Game`.
+
+When the breakpoint is set, the following message appears:
+
+[source, text]
+....
+Set deferred breakpoint spacewar.Ship.fire()
+....
+
+We are notified that we've hit the breakpoint:
+
+[source, text]
+....
+Breakpoint hit: thread="Thread-2", spacewar.Ship.fire(), line=174, bci=0 209 void fire() {
+....
+
+The prompt changes to present the thread that has broken, and we can
+view the current stack with the `where` command, as follows:
+
+[source, text]
+....
+Thread-2[1] where
+[1] fire (spacewar\Ship.java:209)
+[2] run (spacewar\Robot.java:100)
+[3] run [class java.lang.Thread]
+....
+
+Next, to stop on line 216 we type `stop on spacewar/Ship.java:216`
+
+The following message tells us the breakpoint was set:
+
+[source, text]
+....
+Set breakpoint Ship.java:216
+....
+
+To continue execution, we type `cont` and the breakpoint at line 216 is
+hit
+
+[source, text]
+....
+Breakpoint hit: thread="Thread-2", spacewar.Ship.fire(), line=216, bci=28
+216 double yV = getYVel() + BULLET_SPEED * (Math.sin(orientation));
+....
+
+To view the visible local variables, we type `locals` and ajdb responds
+with:
+
+[source, text]
+....
+Local variables
+xV = 12.242462584304468
+....
+
+To change the value of the local variable i to 15, we type
+`set xV = 16.1`
+
+[source, text]
+....
+Changed 'xV' from '12.242462584304468' to '16.1'
+....
+
+To see our changes we can print the value of `i` by the following:
+
+[source, text]
+....
+print xV
+Value for printing 'xV' = 12.242462584304468
+....
+
+We can now type exit or quit to leave the debugger, and we receive the
+following message:
+
+[source, text]
+....
+The application has exited.
+....
+
+=== The AspectJ debugger API
+
+The AspectJ debugger is implemented completely in Java and can be called
+as a Java class. The only interface that should be considered public is
+the method `org.aspectj.tools.debugger.Main.main(String[]
+ args)` where `args` are the standard `ajc` command line arguments.
+This means that an alternative way to run the compiler is
+
+[source, text]
+....
+java org.aspectj.tools.debugger.Main options class arguments
+....
+
+You must additionally include `tools.jar` from your Java developer's kit
+in your classpath.
diff --git a/docs/devguide/ajdb.xml b/docs/devguide/ajdb.xml
new file mode 100644
index 000000000..3af587e4c
--- /dev/null
+++ b/docs/devguide/ajdb.xml
@@ -0,0 +1,312 @@
+<refentry>
+ <refnamediv>
+ <refname>ajdb</refname>
+ <refpurpose>debugger for .class files produced by ajc (early-access)</refpurpose>
+ </refnamediv>
+
+ <refsynopsisdiv>
+ <cmdsynopsis>
+ <command>ajdb</command>
+ <arg>-classpath <replaceable>path</replaceable></arg>
+ <arg>-D<replaceable>name</replaceable>=<replaceable>value</replaceable></arg>
+ <arg>-help</arg>
+ <arg>-gui</arg>
+ <arg>-read <replaceable>file</replaceable></arg>
+ <arg>-sourcepath <replaceable>dir</replaceable></arg>
+ <arg>
+ <group>
+ <arg>-v</arg>
+ <arg>-verbose</arg>
+ <group>
+ <arg>:class</arg>
+ <arg>:gc</arg>
+ <arg>:jni</arg>
+ </group>
+ </group>
+ </arg>
+ <arg>workingdir <replaceable>dir</replaceable></arg>
+ <arg>-X<replaceable>option</replaceable></arg>
+ <arg><replaceable>class</replaceable></arg>
+ <arg><replaceable>arguments</replaceable>
+ </arg>
+ </cmdsynopsis>
+ </refsynopsisdiv>
+
+ <refsect1>
+ <title>Description</title>
+
+ <para>The command <command>ajdb</command> is used to debug AspectJ and
+ Java programs. In addition to its command line interface,
+ <command>adjb</command> also has a standalone, Swing-based GUI
+ interface.
+ </para>
+ <para>
+ Note: As of the 1.0.3 release, AspectJ supports JSR-45, which provides
+ source-level debugging from many source files per class
+ and non-Java source files.
+ JSR-45 is implemented in the J2SE 1.4 debugger support, so
+ you may be able to use your existing debugger to step through
+ AspectJ source code if both the source and target VM's are
+ running under Java 1.4 or later.
+ However, existing debuggers will display synthetic methods
+ in the stack frame.
+ </para> <!-- todo find docs on JSR-45 -->
+
+ <simplelist>
+ <member>-classpath <emphasis>path</emphasis></member>
+ <member>Specify where to find user class files.</member>
+
+ <member>
+ -D<replaceable>name</replaceable>=<replaceable>value</replaceable>
+ </member>
+ <member>Define the property <literal>name</literal> to have the value
+ <literal>value</literal>.</member>
+
+ <member>-help</member>
+ <member>Print out <command>ajdb</command>'s usage summary.</member>
+
+ <member>-read <emphasis>file</emphasis></member>
+ <member>Read this file for initializatoin commands.</member>
+
+ <member>-sourcepath <emphasis>path</emphasis></member>
+ <member>Search this directory for source files.</member>
+
+ <member>-gui</member>
+ <member></member>
+
+ <member>-v | -verbose [:class | :gc | :jni]</member>
+ <member>Print out class loading, garbage collection or dynamic library
+ loading information. Defaults to class loading.
+ </member>
+
+ <member>-workingdir <emphasis>directory</emphasis></member>
+ <member>Set <command>ajdb</command>'s working directory.</member>
+
+ <member>-X<emphasis>option</emphasis></member>
+ <member>Pass a non-standard option to the VM</member>
+ </simplelist>
+
+ <refsect2>
+ <title>Capabilities</title>
+ <para>
+ The AspectJ debugger implements all of <command>jdb</command>'s
+ commands. In addition, the command <literal>workingdir</literal>
+ allow you to set the AspectJ working directory, and the breakpoint
+ command, <literal>stop on</literal>, has been extended to allow the
+ setting of breakpoint on a source file line.
+ </para>
+ </refsect2>
+
+ <refsect2>
+ <title>Examples</title>
+
+ <example id="ajdbcommandline">
+ <title>Command line use</title>
+
+ <para>Suppose you want to debug the file spacewar/Ship.java found in
+ the examples directory. At the command line start up the debugger:
+
+ <computeroutput>
+ ajdb
+ </computeroutput>
+ </para>
+
+
+ <para>
+ The debugger will first look for initialization files in your
+ home or current directory called either
+ <filename>ajdb.ini</filename> or <filename>.ajdbrc</filename> and
+ execute the commands contained in them. A useful command to have
+ in this file is the <literal>source-path</literal> command which
+ tells the debugger where to find source files.
+ </para>
+
+ <para>For this example, we need to set the source path by:
+
+ <userinput>
+ use C:\src
+ </userinput>
+ </para>
+
+ <para>To view the file to debug, type <userinput>list
+ spacewar/Ship.java</userinput> which generates the following
+ output:
+ <programlisting>
+209 void fire() {
+210 // firing a shot takes energy
+211 if (!expendEnergy(BULLET_ENERGY))
+212 return;
+213
+214 //create a bullet object so it doesn't hit the ship that's firing it
+215 double xV = getXVel() + BULLET_SPEED * (Math.cos(orientation));
+216 double yV = getYVel() + BULLET_SPEED * (Math.sin(orientation));
+217
+218 // create the actual bullet
+219 new Bullet(
+220 getGame(),
+221 (getXPos() + ((getSize()/2 + 2) * (Math.cos(orientation))) + xV),
+222 (getYPos() + ((getSize()/2 + 2) * (Math.sin(orientation))) + yV),
+223 xV,
+224 yV);
+225 }
+ </programlisting>
+ </para>
+ <para>This is different from <command>jdb</command> because it allows
+ one to view files before the debugger has started. The
+ <literal>list</literal> command has the following syntax: </para>
+
+ <simplelist>
+ <member><literal>list</literal></member>
+ <member>list the source containing the location at which we are
+ currently stopped (can only be used with a running VM)</member>
+
+ <member><literal>list</literal>
+ <emphasis><literal>source</literal></emphasis></member>
+ <member>list the entire file source</member>
+
+ <member><literal>list</literal> source line</member>
+ <member>list source line line of file source</member>
+
+ <member>
+ list <emphasis><literal>source start-line
+ end-line</literal></emphasis>
+ </member>
+ <member>
+ list the lines from <emphasis>start-line</emphasis> to
+ <emphasis>end-line</emphasis> of file
+ <emphasis>source</emphasis>
+ </member>
+ </simplelist>
+
+ <para>
+ To set a breakpoint in the method <literal>Ship.fire</literal>, we
+ would could type <userinput>stop in spacewar.Ship.fire</userinput>.
+ </para>
+
+ <para>The following message appears notifying the user that the
+ breakpoint has been noted but will not be set until the class has
+ been loaded by the VM: </para>
+ <programlisting>
+Deferring breakpoint spacewar.Ship.fire()
+It will be set after the class is loaded.
+ </programlisting>
+
+ <para>
+ To start Spacewar we type <userinput>run spacewar.Game</userinput>.
+ </para>
+
+ <para>
+ When the breakpoint is set, the following message appears:
+ <programlisting>
+Set deferred breakpoint spacewar.Ship.fire()
+ </programlisting>
+ </para>
+
+ <para> We are notified that we've hit the breakpoint:
+
+ <programlisting>
+Breakpoint hit: thread="Thread-2", spacewar.Ship.fire(), line=174, bci=0 209 void fire() {
+ </programlisting></para>
+
+ <para>
+ The prompt changes to present the thread that has broken, and we
+ can view the current stack with the <literal>where</literal>
+ command, as follows:
+ <programlisting>
+Thread-2[1] where
+[1] fire (spacewar\Ship.java:209)
+[2] run (spacewar\Robot.java:100)
+[3] run [class java.lang.Thread]
+ </programlisting>
+ </para>
+
+ <para>
+ Next, to stop on line 216 we
+ type <userinput>stop on spacewar/Ship.java:216</userinput>
+ </para>
+
+ <para>
+ The following message tells us the breakpoint was set:
+ <programlisting>
+Set breakpoint Ship.java:216
+ </programlisting>
+ </para>
+ <para>
+ To continue execution, we type <userinput>cont</userinput> and the
+ breakpoint at line 216 is hit
+ <programlisting>
+Breakpoint hit: thread="Thread-2", spacewar.Ship.fire(), line=216, bci=28
+216 double yV = getYVel() + BULLET_SPEED * (Math.sin(orientation));
+ </programlisting></para>
+
+ <para>
+ To view the visible local variables, we type
+ <userinput>locals</userinput> and ajdb responds with:
+ <programlisting>
+Local variables
+xV = 12.242462584304468
+ </programlisting></para>
+
+ <para>
+ To change the value of the local variable i to 15, we type
+ <userinput>set xV = 16.1</userinput>
+
+ <programlisting>
+Changed 'xV' from '12.242462584304468' to '16.1'
+ </programlisting></para>
+
+ <para>
+ To see our changes we can print the value of <literal>i</literal>
+ by the following:
+ <programlisting>
+print xV
+Value for printing 'xV' = 12.242462584304468
+ </programlisting></para>
+
+ <para>We can now type exit or quit to leave the debugger, and we
+ receive the following message:
+
+ <programlisting>
+The application has exited.
+ </programlisting></para>
+ </example>
+
+ </refsect2>
+
+ <refsect2>
+ <title>The AspectJ debugger API</title>
+
+ <para>
+ The AspectJ debugger is implemented completely in Java and can be
+ called as a Java class. The only interface that should be
+ considered public is the method
+ <literal>org.aspectj.tools.debugger.Main.main(String[]
+ args)</literal> where <literal>args</literal> are the standard
+ <command>ajc</command> command line arguments. This means that an
+ alternative way to run the compiler is </para>
+
+ <cmdsynopsis>
+ <command>
+ <literal>java org.aspectj.tools.debugger.Main</literal>
+ </command>
+ <arg><replaceable>option</replaceable></arg>
+ <arg><replaceable>class</replaceable></arg>
+ <arg><replaceable>arguments</replaceable></arg>
+ </cmdsynopsis>
+
+<!-- <note> -->
+ <para>
+ You must additionally include <filename>tools.jar</filename> from
+ your Java developer's kit in your classpath.
+ </para>
+<!-- </note> -->
+
+ </refsect2>
+ </refsect1>
+</refentry>
+
+<!-- Local variables: -->
+<!-- fill-column: 79 -->
+<!-- sgml-local-ecat-files: devguide.ced -->
+<!-- sgml-parent-document:("devguide.sgml" "book" "refentry") -->
+<!-- End: -->
diff --git a/docs/devguide/ajdee.adoc b/docs/devguide/ajdee.adoc
new file mode 100644
index 000000000..ca6df3d66
--- /dev/null
+++ b/docs/devguide/ajdee.adoc
@@ -0,0 +1,246 @@
+AJDEE
+
+JDEE support for XEmacs and GNU Emacs
+
+== AJDE for Emacs User's Guide
+
+This guide describes AspectJ-mode extensions of JDEE for GNU Emacs and
+XEmacs, which provides enhanced editing and management of AspectJ code
+via a minor mode extension of JDE mode. AJDEE's AspectJ support builds
+on xref:#aspectj-mode[aspectj-mode's] extension of java-mode, also
+provided with the release. Included in this document are guidance for
+AJDEE's xref:#ajdee-featuresandusage[use], including an
+xref:#exploringspacewar[exploration of spacewar], and
+xref:#ajdee-installationetc[installation and compatibility]. See the
+README file in AJDEE's distribution directory for release-specific
+details.
+
+In addition to the java-mode extensions provided by
+xref:#aspectj-mode[aspectj-mode], AJDEE provides (see graphic):
+
+* Viewing and navigation of aspect structures via the the speedbar and
+Classes menu.
+* Basic support for completion.
+* Integrated Javadoc support.
+
+image:ajdee.gif[image]
+
+[[ajdee-featuresandusage]]
+== AJDEE Features and Usage
+
+The AJDEE extensions of JDE require no special effort to use. The
+speedbar and Classes menus provide additional sublists showing
+crosscutting structure. Selecting items in those lists navigates to the
+referenced item.
+
+=== Aspect Structure and Navigation
+
+==== Enhancements to Speedbar in JDE Mode
+
+As a minor mode of JDE mode, AJDEE enhances the speedbar to show the
+location of aspect, advice, and inter-type declarations. The
+affects/affected-by relationships are shown in the speedbar rather than
+embedding tags in the text (available as an option), and selecting the
+items in the speedbar will perform the expected navigation. The speedbar
+symbols have been extended for AspectJ as follows (see right side of
+xref:#ajdeemacsscreenshot[figure)]:
+
+.Enhancements to Speedbar in JDE Mode
+[cols=",",options="header",]
+|===
+|Indication |Meaning
+|`(+) ` _`name`_ |A class, interface, or aspect; double mouse-1 will
+display its declarations
+|`+ ` _`methodSignature`_ |Method has an advice that applies to it;
+double mouse-1 will display the relevant advice.
+|`+ ` _`adviceSignature`_ |Advice declared by the containing aspect;
+double mouse-1 will display affected methods.
+|`+ ` _`introductionSig`_ |Inter-type declaration declared by the
+containing class; double mouse-1 will display affected methods or
+classes.
+|`| | ` _`methodOrFieldSig`_ |Method or field has been declared by an
+aspect; double mouse-1 on text will navigate to the declaration; a +
+within the bars means that it has an advice that applies to it.
+|===
+
+A minus (`-`) is displayed on the item when the crosscutting items are
+displayed. AspectJ structure information is derived from the last
+compile of your AspectJ program.
+
+=== Compilation and JavaDoc
+
+The option `AspectJ Compile File Specification` can be customized from
+the Customize options under the AspectJ menu, changing the default
+compile specification given to `ajc`. See
+xref:#ajdee-installationetc[installation instructions] for examples and
+other customizations.
+
+AspectJ JavaDoc support is enabled by setting `Jde Javadoc Command Path`
+to invoke `ajdoc`. These are the default settings provided in the
+installation instructions.
+
+[[exploringspacewar]]
+== Exploring the Spacewar Source Code
+
+To begin exploring Spacewar within emacs using JDE and AspectJ mode:
+
+* Compile spacewar.
+* Change into the `spacewar` directory.
+* Type `emacs Ship.java`.
+* Pull down the JDE menu and select the Speedbar entry to show the
+AspectJ files in the directory. Note that `Ship.java` is shown in red to
+denote that it is currently shown in the main buffer.
+* Double-click with the left mouse button on the `+` in front of the
+`Ship.java` entry. It should display an entry for the class `Ship`.
+* Double-clicking on Ship will navigate to its declaration in the
+buffer. Note that declarations of advice are annotated to note the types
+of objects that they advise, declarations of methods that are advised
+are annotated with the aspects that advise them, and so forth.
+* Double-clicking on the `+` in front of either will show the declared
+fields, methods, inter-type declarations, and advice. A `+` in front of
+any field or method means that it is introduced or advised;
+double-clicking will list entries for the introducers/advisers;
+double-clicking on them will navigate to their declarations. A `+` in
+front of any inter-type declarations or advice will will display its
+targets.
+
+[[ajdee-installationetc]]
+== Installation and Compatibility
+
+AJDEE requires the installation of http://sunsite.auc.dk/jde[JDE
+2.2.9beta4] or higher and small edits to your `.emacs` file to configure
+AJDEE and enable autoloading AJDEE when a `.java` file is loaded.
+
+=== Installation for enhancement of JDE mode
+
+The first and last steps, with enhancements, can be found in the example
+Emacs initialization file `sample.emacs` and the sample JDE project file
+`sample.prj` in the distribution. The latter also demonstrates a way to
+enable AspectJ mode on a per-project basis.
+
+[arabic]
+. Make sure AJDEE, aspectj-mode, JDE, and supporting packages are on
+your `load-path` and are ``required''. This is an example for the 1.0
+release:
++
+[source, text]
+....
+ ;; I keep my emacs packages in C:/Emacs
+ (setq load-path
+ (append
+'(
+ "C:/Emacs/aspectj-emacsMode-1.0" ; for AJDEE
+ "C:/Emacs/aspectj-emacsAJDEE-1.0"
+ "C:/Emacs/jde-2.2.9beta6/lisp"
+ "C:/Emacs/elib-1.0" ; for JDEE
+ "C:/Emacs/speedbar-0.14beta2" ; for JDEE
+ "C:/Emacs/semantic-1.4beta12" ; for JDEE/speedbar
+ "C:/Emacs/eieio-0.17beta3" ; for JDEE
+ )
+load-path))
+
+ (require 'jde)
+ (require 'ajdee) ; can also appear in prj.el
+....
+. _[Optional]_ add `-emacssym` switch to the `ajc` and `ajc.bat` files
+in your AspectJ tools installations (in the `/bin` directory). If you
+invoke the compiler outside Emacs, this will ensure that your compiles
+always generate information for annotations and the jump menu in the
+form of `.ajesym` files.
+. Customize AJDEE's compile options by putting a version of the
+following in your `.emacs` file or in a JDE project file `prj.el` in
+your project's hierarchy (see the `JDE Project File Name` option for the
+latter). Here is a simple example:
++
+[source, text]
+....
+;; A default version for simple projects, maybe good for
+;;; .emacs file.
+(custom-set-variables
+'(jde-compiler '("ajc" "ajc"))
+'(jde-javadoc-command-path "ajdoc")
+
+;; ajc requires all files to be named for a compile
+'(aspectj-compile-file-specification "*.java"))
+....
++
+Here is an example for spacewar, in `examples/spacewar`.
++
+[source, text]
+....
+;;; These options are for the spacewar, in examples/spacewar.
+(custom-set-variables
+'(jde-compiler '("ajc" "ajc"))
+'(jde-javadoc-command-path "ajdoc")
+
+;; ajc provides an ``argfile'' mechanism for specifying all files.
+'(aspectj-compile-file-specification "-argfile demo.lst")
+
+;; *if* compiling packages, name root dir for package hierarchy
+;; to tell ajc where .class files should go.
+'(jde-compile-option-directory "..")
+'(jde-run-working-directory ".."))
+'(jde-run-application-class "spacewar.Game")
+....
+. _[XEmacs only]_ If you're installing JDE yourself, be sure to closely
+follow the JDE installation directions for XEmacs, otherwise you may get
+out of date JDE `.jar` files.
+
+=== Customizing Options
+
+Selecting Customize options from the AspectJ menu displays a number of
+options that customize AspectJ mode. These control whether annotations
+are shown by default, and whether the bovinator set up by JDE runs.
+`AspectJ Compile File Specification`, specifies a compilation argument
+as an alternative to the current buffer's file or the run class's file.
+Example customizations are shown above and in the sample files discussed
+above.
+
+== Usage and Upgrade Problems
+
+Please see the documentation for
+
+aspectj-mode
+
+for problems not specific to AJDEE's features.
+
+* _Symptom_: Get standard speedbar menus in JDE; no annotations display.
+Message:
++
+[source, text]
+....
+AspectJ Mode Warning: Can't find declarations file for...
+....
++
+AspectJ file has not been compiled with ajc and the `-emacssym` flag, or
+was compiled with an obsolete version of ajc. After compilation, there
+should be a <file>.ajesym for every <file>.java in the build. If .ajsym
+files are present but error persists, recompile. Note that aspectj-mode
+for JDE has a fallback view for uncompiled files.
+* _Symptom_: Navigations via the speedbar and the jump menu are off,
+annotations are misplaced in the code.
++
+AspectJ mode operates by querying data derived from the most recent
+compile that includes the `-emacssym` flag. Recompile the entire program
+with ajc including the switch. Consider permanently installing the
+switch by editing the ajc and ajc.bat files in the /bin file in your
+distribution.
+* _Symptom_: Java files that are part of a Java project not written in
+AspectJ come up in aspectj-mode.
++
+Emacs uses the file suffix (.java) to determine which mode to invoke.
+You can either globally toggle the AspectJ features from the AspectJ
+menu, or you can prevent AJDEE from coming up by moving the (require
+'ajdee) expression from your .emacs file to a prj.el file in each
+AspectJ project's directory (see sample.prj in the distribution).
+* _Symptom_: Reported bug fixes and new features to AJDEE are not seen,
+or ajdee.el cannot be found or loaded, with message:
++
+[source, text]
+....
+Error in init file: File error: "Cannot open load file", "ajdee"
+....
++
+Your load-path variable (set in your .emacs) is referring to an old
+release. Change your load-path to point at the directory for the current
+release. See the sample.emacs files in the distribution, for example.
diff --git a/docs/devguide/ajdee.gif b/docs/devguide/ajdee.gif
new file mode 100644
index 000000000..e50832d0a
--- /dev/null
+++ b/docs/devguide/ajdee.gif
Binary files differ
diff --git a/docs/devguide/ajdee.xml b/docs/devguide/ajdee.xml
new file mode 100644
index 000000000..652a82f7b
--- /dev/null
+++ b/docs/devguide/ajdee.xml
@@ -0,0 +1,455 @@
+<refentry id="ajdee">
+ <refnamediv>
+ <refname>AJDEE</refname>
+ <refpurpose>JDEE support for XEmacs and GNU Emacs </refpurpose>
+ </refnamediv>
+
+ <refsect1>
+ <title>AJDE for Emacs User's Guide</title>
+ <para>
+ This guide describes AspectJ-mode extensions of JDEE for GNU Emacs and
+ XEmacs, which
+ provides enhanced editing and management of AspectJ code via a minor
+ mode extension of JDE mode. AJDEE's AspectJ support builds on
+ <link linkend="aspectj-mode">aspectj-mode's</link> extension of
+ java-mode, also provided with the release.
+ Included in this document are guidance for AJDEE's <link
+ linkend="ajdee-featuresandusage">use</link>, including an <link
+ linkend="exploringspacewar">exploration of spacewar</link>, and <link
+ linkend="ajdee-installationetc">installation and compatibility</link>. See
+ the README file in AJDEE's distribution directory for
+ release-specific details.
+ </para>
+
+ <para>
+ In addition to the java-mode extensions provided by
+ <link linkend="aspectj-mode">aspectj-mode</link>, AJDEE provides
+ (see graphic):
+ <itemizedlist>
+ <listitem>
+ <para>
+ Viewing and navigation of aspect structures via the
+ the speedbar and Classes menu.
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ Basic support for completion.
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ Integrated Javadoc support.
+ </para>
+ </listitem>
+
+ </itemizedlist>
+ </para>
+
+ <para>
+ <inlinemediaobject id="ajdeemacsscreenshot">
+ <imageobject>
+ <imagedata fileref="ajdee.gif"/>
+ </imageobject>
+ </inlinemediaobject>
+ </para>
+ </refsect1>
+
+ <refsect1 id="ajdee-featuresandusage"><!-- Features and Usage -->
+ <title>AJDEE Features and Usage</title>
+ <para>
+ The AJDEE extensions of JDE require no special effort to use.
+ The speedbar and Classes menus provide additional sublists showing
+ crosscutting structure. Selecting items in those lists navigates to
+ the referenced item.
+ </para>
+
+ <refsect2>
+ <title>Aspect Structure and Navigation</title>
+
+ <refsect3>
+ <title>Enhancements to Speedbar in JDE Mode</title>
+ <para>
+ As a minor mode of JDE mode, AJDEE enhances the speedbar to
+ show the location of aspect, advice, and inter-type declarations.
+ The affects/affected-by relationships are shown in the speedbar
+ rather than embedding tags in the text (available as an option),
+ and selecting the items in the speedbar will perform the expected
+ navigation. The speedbar symbols have been extended for AspectJ as
+ follows (see right side of <link
+ linkend="ajdeemacsscreenshot">figure)</link>:
+ </para>
+
+ <table id="speedbarenhancements">
+ <title>Enhancements to Speedbar in JDE Mode</title>
+ <tgroup cols="2" colsep="1" rowsep="1" align="left">
+ <thead>
+ <row>
+ <entry>Indication</entry>
+ <entry>Meaning</entry>
+ </row>
+ </thead>
+
+ <tbody>
+ <row>
+ <entry>
+ <literal>(+) </literal>
+ <emphasis><literal>name</literal></emphasis>
+ </entry>
+ <entry>
+ A class, interface, or aspect; double mouse-1 will
+ display its declarations
+ </entry>
+ </row>
+
+ <row>
+ <entry><literal>+ </literal>
+ <emphasis><literal>methodSignature</literal></emphasis>
+ </entry>
+ <entry>
+ Method has an advice that applies to it; double mouse-1
+ will display the relevant advice.
+ </entry>
+ </row>
+
+ <row>
+ <entry><literal>+ </literal>
+ <emphasis><literal>adviceSignature</literal></emphasis>
+ </entry>
+ <entry>
+ Advice declared by the containing aspect; double mouse-1
+ will display affected methods.
+ </entry>
+ </row>
+
+ <row>
+ <entry><literal>+ </literal>
+ <emphasis><literal>introductionSig</literal></emphasis>
+ </entry>
+ <entry>
+ Inter-type declaration declared by the containing class; double
+ mouse-1 will display affected methods or classes.
+ </entry>
+ </row>
+
+ <row>
+ <entry><literal>| | </literal>
+ <emphasis><literal>methodOrFieldSig</literal></emphasis>
+ </entry>
+ <entry>
+ Method or field has been declared by an aspect;
+ double mouse-1 on text will navigate to the declaration; a +
+ within the bars means that it has an advice that applies
+ to it.
+ </entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </table>
+
+ <para>
+ A minus (<literal>-</literal>) is displayed on the item when the
+ crosscutting items are displayed. AspectJ structure information is
+ derived from the last compile of your AspectJ program.
+ </para>
+ </refsect3>
+ </refsect2>
+
+ <refsect2>
+ <title>Compilation and JavaDoc</title>
+
+ <para>
+ The option <option>AspectJ Compile File Specification</option>
+ can be customized from the <guisubmenu>Customize options</guisubmenu>
+ under the <guimenu>AspectJ</guimenu> menu, changing the default
+ compile specification given to <command>ajc</command>.
+ See <link linkend="ajdee-installationetc">installation instructions</link>
+ for examples and other customizations.
+ </para>
+
+ <para>
+ AspectJ JavaDoc support is
+ enabled by setting <option>Jde Javadoc Command Path</option> to
+ invoke <command>ajdoc</command>. These are the default settings
+ provided in the installation instructions.
+ </para>
+ </refsect2>
+
+ </refsect1>
+
+ <refsect1 id="exploringspacewar"><!-- Exploring the Spacewar Source Code -->
+ <title>Exploring the Spacewar Source Code</title>
+ <para>
+ To begin exploring Spacewar within emacs using JDE and AspectJ mode:
+ </para>
+ <itemizedlist>
+ <listitem>
+ <para>Compile spacewar.</para>
+ </listitem>
+
+ <listitem>
+ <para>Change into the <filename>spacewar</filename>
+ directory.</para>
+ </listitem>
+
+ <listitem>
+ <para>Type <userinput>emacs Ship.java</userinput>.</para>
+ </listitem>
+
+ <listitem>
+ <para>
+ Pull down the <guimenu>JDE</guimenu> menu and select the
+ <guimenuitem>Speedbar</guimenuitem> entry to show the AspectJ
+ files in the directory. Note that <filename>Ship.java</filename>
+ is shown in red to denote that it is currently shown in the main
+ buffer.
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ Double-click with the left mouse button on the
+ <literal>+</literal> in front of the
+ <filename>Ship.java</filename> entry. It should display an entry
+ for the class <classname>Ship</classname>.
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ Double-clicking on Ship will navigate to its declaration in
+ the buffer. Note that declarations of advice are annotated to
+ note the types of objects that they advise, declarations of
+ methods that are advised are annotated with the aspects that
+ advise them, and so forth.
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ Double-clicking on the <literal>+</literal> in front of either
+ will show the declared fields, methods, inter-type declarations, and
+ advice. A <literal>+</literal> in front of any field or method
+ means that it is introduced or advised; double-clicking will list
+ entries for the introducers/advisers; double-clicking on them
+ will navigate to their declarations. A <literal>+</literal> in
+ front of any inter-type declarations or advice will will display its
+ targets.
+ </para>
+ </listitem>
+
+ </itemizedlist>
+ </refsect1>
+
+ <refsect1 id="ajdee-installationetc"><!-- Installation and Compatibility -->
+ <title>Installation and Compatibility</title>
+
+ <para> AJDEE requires the installation of
+ <ulink url="http://sunsite.auc.dk/jde">JDE 2.2.9beta4</ulink> or
+ higher and small edits to your <filename>.emacs</filename> file to
+ configure AJDEE and enable autoloading AJDEE when a
+ <filename>.java</filename> file is loaded.
+ </para>
+
+ <refsect2>
+ <title>Installation for enhancement of JDE mode</title>
+
+<!-- <note> -->
+ <para>
+ The first and last steps, with enhancements, can be found in the
+ example Emacs initialization file
+ <filename>sample.emacs</filename> and the sample JDE project
+ file <filename>sample.prj</filename> in the distribution. The
+ latter also demonstrates a way to enable AspectJ mode on a
+ per-project basis.
+ </para>
+<!-- </note> -->
+
+ <orderedlist>
+ <listitem>
+ <para>
+ Make sure AJDEE, aspectj-mode, JDE, and supporting packages are on
+ your <literal>load-path</literal> and are ``required''. This is an
+ example for the 1.0 release:
+ <programlisting>
+ ;; I keep my emacs packages in C:/Emacs
+ (setq load-path
+ (append
+'(
+ "C:/Emacs/aspectj-emacsMode-1.0" ; for AJDEE
+ "C:/Emacs/aspectj-emacsAJDEE-1.0"
+ "C:/Emacs/jde-2.2.9beta6/lisp"
+ "C:/Emacs/elib-1.0" ; for JDEE
+ "C:/Emacs/speedbar-0.14beta2" ; for JDEE
+ "C:/Emacs/semantic-1.4beta12" ; for JDEE/speedbar
+ "C:/Emacs/eieio-0.17beta3" ; for JDEE
+ )
+load-path))
+
+ (require 'jde)
+ (require 'ajdee) ; can also appear in prj.el
+ </programlisting>
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ <emphasis>[Optional]</emphasis> add <literal>-emacssym</literal>
+ switch to the <filename>ajc</filename> and <filename>ajc.bat</filename>
+ files in your AspectJ tools installations (in the
+ <filename>/bin</filename> directory). If you invoke the compiler
+ outside Emacs, this will
+ ensure that your compiles always generate information for annotations
+ and the jump menu in the form of <literal>.ajesym</literal> files.
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ Customize AJDEE's compile options by
+ putting a version of the following in your
+ <filename>.emacs</filename> file or in a JDE project file
+ <filename>prj.el</filename> in your project's hierarchy (see the
+ <option>JDE Project File Name</option> option for the latter).
+ Here is a simple example:
+
+ <programlisting>
+;; A default version for simple projects, maybe good for
+;;; .emacs file.
+(custom-set-variables
+'(jde-compiler '("ajc" "ajc"))
+'(jde-javadoc-command-path "ajdoc")
+
+;; ajc requires all files to be named for a compile
+'(aspectj-compile-file-specification "*.java"))
+ </programlisting>
+
+ Here is an example for spacewar, in
+ <filename>examples/spacewar</filename>.
+ <programlisting>
+;;; These options are for the spacewar, in examples/spacewar.
+(custom-set-variables
+'(jde-compiler '("ajc" "ajc"))
+'(jde-javadoc-command-path "ajdoc")
+
+;; ajc provides an ``argfile'' mechanism for specifying all files.
+'(aspectj-compile-file-specification "-argfile demo.lst")
+
+;; *if* compiling packages, name root dir for package hierarchy
+;; to tell ajc where .class files should go.
+'(jde-compile-option-directory "..")
+'(jde-run-working-directory ".."))
+'(jde-run-application-class "spacewar.Game")
+ </programlisting>
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <emphasis>[XEmacs only]</emphasis> If you're installing JDE
+ yourself, be sure to closely follow the JDE installation
+ directions for XEmacs, otherwise you may get out of date JDE
+ <filename>.jar</filename> files.
+ </para>
+ </listitem>
+ </orderedlist>
+
+ </refsect2>
+
+ <refsect2>
+ <title>Customizing Options</title>
+ <para>
+ Selecting <guimenuitem>Customize options</guimenuitem> from the
+ <guimenu>AspectJ</guimenu> menu displays a number of options that
+ customize AspectJ mode. These control whether annotations are shown
+ by default, and whether the bovinator set up by JDE runs.
+ <option>AspectJ Compile File Specification</option>, specifies a
+ compilation argument as
+ an alternative to the current buffer's file or the run class's file.
+ Example customizations are shown above and in the sample files
+ discussed above.
+ </para>
+ </refsect2>
+
+ </refsect1>
+
+
+ <refsect1>
+ <title>Usage and Upgrade Problems</title>
+
+ Please see the documentation for
+ <link linkend="aspectj-mode">aspectj-mode</link> for problems not
+ specific to AJDEE's features.
+
+ <itemizedlist>
+
+ <listitem>
+ <para><emphasis>Symptom</emphasis>: Get
+ standard speedbar menus in JDE; no annotations display. Message:
+
+<screen>
+AspectJ Mode Warning: Can't find declarations file for...
+</screen>
+
+</para>
+
+ <para>AspectJ file has not been compiled with ajc and the <literal>-emacssym</literal>
+ flag,
+ or was compiled with an obsolete version of ajc. After compilation,
+ there should be a &lt;file&gt;.ajesym for every &lt;file&gt;.java in the
+ build. If .ajsym files are present but error persists, recompile. Note
+ that aspectj-mode for JDE has a fallback view for uncompiled files.
+ </para>
+ </listitem>
+
+ <listitem>
+ <para><emphasis>Symptom</emphasis>: Navigations via the speedbar and
+ the jump menu are off, annotations are misplaced in the code. </para>
+
+ <para>AspectJ mode operates by querying data
+ derived from the most recent compile that includes the
+ <literal>-emacssym</literal> flag. Recompile the entire program with
+ ajc including the switch. Consider permanently installing the switch
+ by editing the ajc and ajc.bat files in the /bin file in your
+ distribution.</para>
+ </listitem>
+
+ <listitem>
+ <para><emphasis>Symptom</emphasis>: Java files that are part of a Java project not written
+ in AspectJ come up in aspectj-mode. </para>
+
+ <para>Emacs uses the file suffix (.java) to
+ determine which mode to invoke. You can either globally toggle the
+ AspectJ features from the AspectJ menu, or you can prevent AJDEE
+ from coming up by moving the (require 'ajdee) expression from
+ your .emacs file to a prj.el file in each AspectJ project's directory
+ (see sample.prj in the distribution).
+ </para>
+ </listitem>
+
+ <listitem>
+ <para><emphasis>Symptom</emphasis>: Reported bug fixes and new features
+ to AJDEE are not seen, or ajdee.el cannot be found or loaded, with
+ message:
+
+<screen>
+Error in init file: File error: "Cannot open load file", "ajdee"
+</screen>
+
+</para>
+ <para>Your load-path variable (set in your .emacs)
+ is referring to an old release. Change your load-path to
+ point at the directory for the current release. See the sample.emacs
+ files in the distribution, for example.</para>
+ </listitem>
+ </itemizedlist>
+ </refsect1>
+</refentry>
+
+<!-- Local variables: -->
+<!-- fill-column: 79 -->
+<!-- compile-command: "ant -quiet dev-html" -->
+<!-- sgml-local-ecat-files: devguide.ced -->
+<!-- sgml-parent-document:("devguide.sgml" "book" "refentry") -->
+<!-- End: -->
diff --git a/docs/devguide/ajdeforte.adoc b/docs/devguide/ajdeforte.adoc
new file mode 100644
index 000000000..a03946aae
--- /dev/null
+++ b/docs/devguide/ajdeforte.adoc
@@ -0,0 +1,100 @@
+AspectJ Development Environment (AJDE) support for Forte
+
+Module extension to Sun's
+
+Forte for Java
+
+and
+
+NetBeans
+
+IDEs.
+
+== Overview
+
+For release-specific documentation refer to the
+http://aspectj.org/doc/dist/changes.html[changes file].
+
+AJDE for Forte will allow you to:
+
+* compile AspectJ and Java files within the IDE
+* browse the structure of your AspectJ program
+* set up a compile configuration that determine which files will be
+passed to the compiler
+
+== Installation
+
+* use the installer to place the "ajdeForForte.jar" and "aspectjrt.jar"
+into the modules directory. This will also install the two html files
+"LICENCE-AJDEFORTE.html" and "README-AJDEFORTE.html".
+* start up, and in the "Tools" menu select "Global Options"
+* right-click the "Modules" item and select "New Module from File..."
+* find the ajdeForForte.jar in the directory that you installed into
+(e.g. c:/forte4j/modules) and select it
+
+To uninstall follow Forte's documentation on un-installing modules, or
+simply remove the file modules/aspectjForForte.jar from Forte's install
+directory.
+
+== Running AJDE for Forte
+
+*3.1 Setting up the AspectJ Examples (in NetBeans 3.3.1)*
+
+* in the "Project" menu select "Project Manager"
+* Click "New..." and enter "AspectJ Examples" as the projects' name and
+click "OK".
+* In the "Filesystems" Explorer tab right click "Filesystems", then
+select "Mount -> Local Directory".
+* browse into the AspectJ install directory (e.g. "C:/apps/aspectj1.0")
+* select "examples" and click "Finish"
+* In the "Tools" menu select "AspectJ -> Start AJDE" or just click on
+the "AJDE" (image:startAjde.gif[image]) button (shown as label 1 of the
+screenshot).
+
+*3.2 Compiling the Spacewar Example*
+
+* After AJDE is started, a new "AspectJ" tab is added to the explorer
+window. Click it. The next thing to do is to choose a particular build,
+since there are many in the examples distribution. To the right of the
+"Build" button (image:build.gif[image]) there is a downward arrow. Click
+it, and select "spacewar/demo.lst" (as in label 2 of the screenshot).
+This will start a build of the demo configuration of spacewar. Clicking
+the "Build" button will rebuild.
+* When the compile is finished and the "AspectJ Explorer" structure is
+present navigate the structure by clicking nodes (as shown in label 3 of
+the screenshot). Note that associations between nodes appear with
+UML-style arrow icons and italicized names and reperesent how a
+particular node in the structure relates to others. In order to navigate
+these associations expand the notes and click the corresponding links
+(in blue). These links represent structure nodes elsewhere in the tree.
+* If there are compilation errors, clickable messages will appear (as in
+label 4 of the screenshot).
+
+*3.3 Running the Spacewar Example*
+
+* In the "Filesystems" Explorer tab open the "spacewar" directory, right
+click "spacewar/Game.java", and the select "Execute".
+* When finished executing switch back to the "Editing" mode.
+* Select and build the "debug.lst" configuration as described in 3.2 and
+execute again--you will notice that the debug configuration adds a debug
+window used for tracing by including the "Debug.java" aspect in the
+compile.
+
+3.4 Debugging the Spacewar Example
+
+* You must first add the filesystem to the project so that the debugger
+can see the main class. Do this in the "Project AspectJ Examples" tab in
+the explorer by right clicking the root node and selecting "Add
+Existing...".
+* You may now need to add the AspectJ Runtime to the project so that the
+debugger can see it. In the same way as described in 3.1 select "Mount
+-> Archive (JAR, Zip)".
+* Browse to the your lib/ext/aspectjrt.jar file within your NetBeans
+install directory and click "Finish".
+* Select "Project -> Set Project Main Class..." in the menu bar, browse
+to "spacewar/Game.java" in the examples directory that you created and
+click "OK".
+* In the "Filesystems" Explorer tab open the "spacewar" directory, click
+"Game.java", and the select "Debug -> Strat" from the menu bar.
+
+AspectJ-related options can be modified in the AJDE settings window.
diff --git a/docs/devguide/ajdeforte.xml b/docs/devguide/ajdeforte.xml
new file mode 100644
index 000000000..910f62d81
--- /dev/null
+++ b/docs/devguide/ajdeforte.xml
@@ -0,0 +1,215 @@
+<refentry>
+ <refnamediv>
+ <refname>
+ AspectJ Development Environment (AJDE) support for Forte
+ </refname>
+ <refpurpose>
+ Module extension to Sun's <ulink url="http://www.sun.com/forte/ffj">Forte
+ for Java</ulink> and
+ <ulink url="http://netbeans.org">NetBeans</ulink> IDEs.
+ </refpurpose>
+ </refnamediv>
+
+ <refsect1>
+ <title>Overview</title>
+ <para>
+ For release-specific documentation refer to the <ulink
+ url="http://aspectj.org/doc/dist/changes.html"> changes file</ulink>.
+ </para>
+
+ <para>
+ AJDE for Forte will allow you to:
+ <itemizedlist>
+
+ <listitem><para>compile AspectJ and Java files within the
+ IDE</para></listitem>
+
+ <listitem><para>browse the structure of your AspectJ
+ program</para></listitem>
+
+ <listitem><para>set up a compile configuration that determine which
+ files will be passed to the compiler</para></listitem>
+
+ </itemizedlist>
+ </para>
+ </refsect1>
+
+ <refsect1>
+ <title>Installation</title>
+ <para>
+
+ <itemizedlist>
+ <listitem><para>use the installer to place the "ajdeForForte.jar" and
+ "aspectjrt.jar" into the modules directory. This will also install
+ the two html files "LICENCE-AJDEFORTE.html" and
+ "README-AJDEFORTE.html".</para></listitem>
+
+ <listitem><para>start up, and in the "Tools" menu select "Global
+ Options" </para></listitem>
+
+ <listitem><para>right-click the "Modules" item and select "New Module
+ from File..." </para></listitem>
+
+ <listitem><para>find the ajdeForForte.jar in the directory that you
+ installed into (e.g. c:/forte4j/modules) and select it
+ </para></listitem>
+ </itemizedlist>
+
+ </para>
+ <para>
+ To uninstall follow Forte's documentation on un-installing modules, or
+ simply remove the file modules/aspectjForForte.jar from Forte's
+ install directory.
+ </para>
+ </refsect1>
+
+ <refsect1>
+ <title>Running AJDE for Forte</title>
+ <para>
+ <emphasis role="strong">3.1 Setting up the AspectJ Examples (in
+ NetBeans 3.3.1)</emphasis>
+
+ <imageobject>
+ <imagedata fileref="netbeans-building.gif"/>
+ </imageobject>
+
+ <itemizedlist>
+
+ <listitem><para>in the "Project" menu select "Project Manager"
+ </para></listitem>
+
+ <listitem><para>Click "New..." and enter "AspectJ Examples" as the
+ projects' name and click "OK". </para></listitem>
+
+ <listitem><para>In the "Filesystems" Explorer tab right click
+ "Filesystems", then select "Mount -&gt; Local Directory".
+ </para></listitem>
+
+ <listitem><para>browse into the AspectJ install directory (e.g.
+ "C:/apps/aspectj1.0") </para></listitem>
+
+ <listitem><para>select "examples" and click "Finish"
+ </para></listitem>
+
+
+ <listitem><para>In the "Tools" menu select "AspectJ -&gt; Start AJDE"
+ or just click on the "AJDE"
+ (<inlinemediaobject>
+ <imageobject>
+ <imagedata fileref="startAjde.gif"/>
+ </imageobject>
+ </inlinemediaobject>)
+ button (shown as label 1 of the screenshot).
+ </para></listitem>
+
+ </itemizedlist>
+ </para>
+ <para>
+ <emphasis role="strong">3.2 Compiling the Spacewar Example</emphasis>
+
+ <itemizedlist>
+
+ <listitem><para>After AJDE is started, a new "AspectJ" tab is added
+ to the explorer window. Click it. The next thing to do is to choose
+ a particular build, since there are many in the examples
+ distribution. To the right of the "Build" button
+ (<inlinemediaobject>
+ <imageobject>
+ <imagedata fileref="build.gif"/>
+ </imageobject>
+ </inlinemediaobject>)
+ there is a downward arrow. Click it, and select "spacewar/demo.lst"
+ (as in label 2 of the screenshot). This will start a build of the
+ demo configuration of spacewar. Clicking the "Build" button will
+ rebuild. </para></listitem>
+
+ <listitem><para>When the compile is finished and the "AspectJ
+ Explorer" structure is present navigate the structure by clicking
+ nodes (as shown in label 3 of the screenshot). Note that
+ associations between nodes appear with UML-style arrow icons and
+ italicized names and reperesent how a particular node in the
+ structure relates to others. In order to navigate these associations
+ expand the notes and click the corresponding links (in blue). These
+ links represent structure nodes elsewhere in the tree.
+ </para></listitem>
+
+ <listitem><para>If there are compilation errors, clickable messages
+ will appear (as in label 4 of the screenshot).
+ </para></listitem>
+
+ </itemizedlist>
+
+ </para>
+ <para>
+
+ <emphasis role="strong">3.3 Running the Spacewar Example</emphasis>
+ <itemizedlist>
+ <listitem><para>
+ In the "Filesystems" Explorer tab open the "spacewar"
+ directory, right click "spacewar/Game.java", and the select
+ "Execute".
+ </para></listitem>
+
+ <listitem><para>When finished executing switch back to the "Editing"
+ mode.</para></listitem>
+
+ <listitem><para>Select and build the "debug.lst" configuration as
+ described in 3.2 and execute again--you will notice that the debug
+ configuration adds a debug window used for tracing by including the
+ "Debug.java" aspect in the compile.</para></listitem>
+ </itemizedlist>
+
+ </para>
+
+ <emphasis role="strong">3.4 Debugging the Spacewar Example</emphasis>
+
+ <itemizedlist>
+ <listitem><para>
+ You must first add the filesystem to the project so
+ that the debugger can see the main class. Do this in
+ the "Project AspectJ Examples" tab in the explorer by
+ right clicking the root node and selecting "Add
+ Existing...".
+ </para></listitem>
+
+ <listitem><para>You may now need to add the AspectJ Runtime to the
+ project so that the debugger can see it. In the same way as described
+ in 3.1 select "Mount -&gt; Archive (JAR, Zip)". </para></listitem>
+
+ <listitem><para>Browse to the your lib/ext/aspectjrt.jar file within
+ your NetBeans install directory and click "Finish".</para></listitem>
+
+ <listitem><para>
+ Select "Project -&gt; Set Project Main Class..." in the
+ menu bar, browse to "spacewar/Game.java" in the
+ examples directory that you created and click "OK".
+ </para></listitem>
+
+ <listitem><para>
+ In the "Filesystems" Explorer tab open the "spacewar"
+ directory, click "Game.java", and the select "Debug
+ -&gt; Strat" from the menu bar.
+ </para></listitem>
+ </itemizedlist>
+
+ <para>
+ AspectJ-related options can be modified in the AJDE settings window.
+ </para>
+ <imageobject>
+ <imagedata fileref="netbeans-buildOptions.gif"/>
+ </imageobject>
+
+
+
+
+
+
+ </refsect1>
+</refentry>
+
+<!-- Local variables: -->
+<!-- fill-column: 79 -->
+<!-- compile-command: "ant -quiet dev-html" -->
+<!-- sgml-local-ecat-files: devguide.ced -->
+<!-- sgml-parent-document:("devguide.sgml" "book" "refentry") -->
+<!-- End: -->
diff --git a/docs/devguide/ajdejbuilder.adoc b/docs/devguide/ajdejbuilder.adoc
new file mode 100644
index 000000000..facfc766f
--- /dev/null
+++ b/docs/devguide/ajdejbuilder.adoc
@@ -0,0 +1,148 @@
+r
+
+AspectJ Development Environment (AJDE) support for JBuilder
+
+OpenTool extension Borland's
+
+JBuilder IDE
+
+.
+
+== Overview
+
+For release-specific documentation refer to the
+http://aspectj.org/doc/dist/changes.html[changes file].
+
+AJDE for JBuilder will allow you to:
+
+* compile AspectJ and Java files within the IDE
+* browse the structure of your AspectJ program
+* set up a compile configuration that determine which files will be
+passed to the compiler
+
+== Installation and Project Setup
+
+`Install procedure:` use the installer to place the
+"ajdeForJBuilder.jar" and "aspectjrt.jar" into JBuilder's lib/ext
+directory. This will also install the two html files
+"LICENCE-AJDEJBUILDER.html" and "README-AJDEJBUILDER.html".
+
+`Uninstall procedure:` remove "ajdeForJBuilder.jar" and "aspectjrt.jar"
+(and the two html files, if you like) from the "lib/ext" directory.
+
+`Project setup:` follow the normal procedure for JBuilder project setup
+(for an example of this please refer to the example below). However,
+note that all of the source files to be passed to the compiler must be
+added to your project either as files or within a package that is added
+to the project. This is necessary because -- unlike a pure Java compiler
+-- ajc does not search the SOURCEPATH for classes.
+
+`Starting and stopping AJDE:` select "Start AJDE" in the "AspectJ"
+section of the "Tools" menu, or just click on the "AJDE"
+(image:startAjde.gif[image]) button (label 1 in the first screenshot).
+This will enable AJDE commands and will replace JBuilder's structure
+view with the AspectJ Browser. To disable AJDE select "Stop AJDE" in the
+same menu, or click the "AJDE" button again.
+
+== Compiling and Running the Project
+
+To compile the project select "Build project with ajc" from the AspectJ
+toolbar, or click <ctrl>F11 while the editor pane is active. All of the
+files contained in your project and within any packages and subpackages
+that have been added to your project will be compiled. You may also
+select a different configuration (as with label 2 in the first
+screenshot). Then, structure of the currently visited file is shown (see
+label 3 in the first scrrenshot). If there is a compile error, the
+clickable error message is available (as with label 4 in the first
+screenshot).
+
+To run the project select "Run Project" from the AspectJ toolbar, or
+click <ctrl>F12 while the editor pane is active. Note that the "AspectJ
+Runtime" library must be added to your project in order to run. If the
+library is not added you will see a "java.lang.NoClassDefFoundError:
+org/aspectj/lang/Signature" error. The library is created automatically
+for you from the runtime in "jbuilderdir/lib/ext". You can also create a
+new library to use the runtime from a different location. If you have
+not added the library to the "Required Libraries" of your project it
+will be added automatically when you restart JBuilder.
+
+JBuilder7 users please note: when you set up a run/debug configuration
+you must select the "Build Target" (at the bottom of the "Runtime
+Properties" dialog) to be "<None>". This will ensure that the Java
+compiler is not invoked on your AspectJ sources before running or
+debugging the project.
+
+== Navigating the Program Structure
+
+Navigation of program structure is provided by the xref:ajbrowser.adoc#ajbrowser[AspectJ Browser],
+so apart from a JBuilder look and feel, the extra navigation AspectJ
+allows work as described there. In particular, you can use views with
+labels 1, 2 and 4 of the second screenshot to navigate structure using
+the blue links, and you can set filtering and navigate history using the
+toolbar shown by label 3 of the second screenshot.
+
+== Manipulating Build Configurations
+
+Build configurations can be manipulated adding, removing, and editing
+build configuration files. The xref:ajbrowser.adoc#ajbrowser[AspectJ Browser] is used to select
+the current build configuration. Configurations are represented by
+".lst" files which are described in the xref:ajc.adoc[`ajc`, the AspectJ compiler/weaver] documentation.
+
+=== Adding and Removing Build Configurations
+
+By default all of the files contained in your project and within any
+packages and subpackages that have been added to your project will be
+compiled. In order to compile a different configuration first add it to
+the project (by selecting "Add Files / Packages..." in the "Project"
+menu, and selecting the desired build configuration file (see label 1 in
+the third screenshot).
+
+=== Editing Build Configurations
+
+Double click a build configuration file in JBuilder's "Project Pane" in
+order to edit it. Configurations can be edited as either text or in the
+graphical designer (see labels 2 and 3 in the third screenshot)
+
+== Example: Setting up the "Spacewar" Sample Project
+
+To set up the Spacewar example first download it the
+http://aspectj.org/dl[examples distribution]. Then
+
+[arabic]
+. launch JBuilder
+. in the "File" menu select "New project"
+. Select the location of the "aspectj/examples" directory for the
+project. This is because the Spacewar example uses both the "spacewar"
+and "coordination" packages, so we set up the project where it can get
+at both packages.
+. Choose a "jpr" project, either by typing in "Spacewar.jpr" as the
+project name, or by typing "Spacewar" as the project name and "jpr" as
+the type. Make sure "aspectj/examples" is still the directory for the
+project.
+. click "Finish"
+. in the "Project" menu select "Project properties..."
+. set the "Output path" entry to be the directory where you want your
+classes to go
+. set the "Output path" entry to be the directory where you want your
+classes to go
+. add "aspectjrt.jar" as a required library for the project. This
+library is located in "<jbuilder-install-directory>/lib/ext".
+. in the "Source" tab select the entry and click "Edit" (by default
+JBuilder will set this directory to be "examples/src" which does not
+exist)
+. Select the "examples" directory for the Souce.
+. click "OK" to close the "Project Properties"dialog
+. in the leftmost pane you will notice "Spacewar.jpr", right click this
+and select "Add to project" in the popup, then "Add class/package..." in
+thenext popup. Or directly choose "Add files/packages".
+. <ctrl> select the "spacewar" and "coordination" packages and then
+click "OK"; this will add the two packages to your project
+. click the "Build Project" button (image:jbuilder-build.gif[image]) to
+compile the project
+. open the Structure View to browse the structure of the program
+. click the "Run Project" button to play Spacewar (make sure that you
+have set up the runtime library as described above)
+. if you have not selected a class to run, you will be prompted to do
+so: select the class "spacewar.Game".
+. AspectJ related build options can be manipulated in the "AJDE
+settings" window
diff --git a/docs/devguide/ajdejbuilder.xml b/docs/devguide/ajdejbuilder.xml
new file mode 100644
index 000000000..f8071acc1
--- /dev/null
+++ b/docs/devguide/ajdejbuilder.xml
@@ -0,0 +1,268 @@
+r<refentry>
+ <refnamediv>
+ <refname>
+ AspectJ Development Environment (AJDE) support for JBuilder
+ </refname>
+ <refpurpose>
+ OpenTool extension Borland's <ulink url="http://www.borland.com/jbuilder">JBuilder IDE</ulink>.
+ </refpurpose>
+ </refnamediv>
+ <refsect1>
+ <title>Overview</title>
+ <para>
+ For release-specific documentation refer to the <ulink url="http://aspectj.org/doc/dist/changes.html"> changes file</ulink>.
+ </para>
+ <para>
+ AJDE for JBuilder will allow you to:
+ <itemizedlist>
+ <listitem>
+ <para>compile AspectJ and Java files within the
+ IDE</para>
+ </listitem>
+ <listitem>
+ <para>browse the structure of your AspectJ
+ program</para>
+ </listitem>
+ <listitem>
+ <para>set up a compile configuration that determine which
+ files will be passed to the compiler</para>
+ </listitem>
+ </itemizedlist>
+ </para>
+ </refsect1>
+ <refsect1>
+ <title>Installation and Project Setup</title>
+ <para>
+ <command>Install procedure:</command> use the installer to place the
+ "ajdeForJBuilder.jar" and "aspectjrt.jar" into JBuilder's lib/ext
+ directory. This will also install the two html files
+ "LICENCE-AJDEJBUILDER.html" and "README-AJDEJBUILDER.html".
+ </para>
+ <para>
+ <command>Uninstall procedure:</command> remove "ajdeForJBuilder.jar"
+ and "aspectjrt.jar" (and the two html files, if you like) from the
+ "lib/ext" directory.
+ </para>
+ <para>
+ <command>Project setup:</command> follow the normal procedure for
+ JBuilder project setup (for an example of this please refer to the
+ example below). However, note that all of the source files to be
+ passed to the compiler must be added to your project either as files or
+ within a package that is added to the project. This is necessary
+ because -- unlike a pure Java compiler -- ajc does not search the
+ SOURCEPATH for classes.
+ </para>
+ <imageobject>
+ <imagedata fileref="jbuilder-building.gif" />
+ </imageobject>
+ <para>
+ <command>Starting and stopping AJDE:</command> select "Start AJDE" in
+ the "AspectJ" section of the "Tools" menu, or just click on the "AJDE"
+ (<inlinemediaobject id="ajdebutton">
+ <imageobject>
+ <imagedata fileref="startAjde.gif" />
+ </imageobject>
+ </inlinemediaobject>) button (label 1 in the first screenshot). This
+ will enable AJDE commands and will replace JBuilder's structure view
+ with the AspectJ Browser. To disable AJDE select "Stop AJDE" in the
+ same menu, or click the "AJDE" button again.
+ </para>
+ </refsect1>
+ <refsect1>
+ <title>Compiling and Running the Project</title>
+ <para>
+ To compile the project select "Build project with ajc" from the AspectJ
+ toolbar, or click &lt;ctrl&gt;F11 while the editor pane is active. All
+ of the files contained in your project and within any packages and
+ subpackages that have been added to your project will be compiled. You
+ may also select a different configuration (as with label 2 in the first
+ screenshot). Then, structure of the currently visited file is shown
+ (see label 3 in the first scrrenshot). If there is a compile error,
+ the clickable error message is available (as with label 4 in the first
+ screenshot).
+ </para>
+ <para>
+ To run the project select "Run Project" from the AspectJ toolbar, or
+ click &lt;ctrl&gt;F12 while the editor pane is active. Note that the
+ "AspectJ Runtime" library must be added to your project in order to
+ run. If the library is not added you will see a
+ "java.lang.NoClassDefFoundError: org/aspectj/lang/Signature" error.
+ The library is created automatically for you from the runtime
+ in "jbuilderdir/lib/ext". You can also create a new library
+ to use the runtime from a different location. If you have not added the
+ library to the "Required Libraries" of your project it will be added
+ automatically when you restart JBuilder.
+ </para>
+ <para>
+ JBuilder7 users please note: when you set up a run/debug configuration
+ you must select the "Build Target" (at the bottom of the
+ "Runtime Properties" dialog) to be "&lt;None&gt;". This will ensure
+ that the Java compiler is not invoked on your AspectJ sources
+ before running or debugging the project.
+ </para>
+ </refsect1>
+ <refsect1>
+ <title>Navigating the Program Structure</title>
+ <imageobject>
+ <imagedata fileref="jbuilder-structureNavigation.gif" />
+ </imageobject>
+ <para>
+ Navigation of program structure is provided by the AspectJ Browser, so apart from a JBuilder
+ look and feel, the extra navigation AspectJ allows work as described
+ there. In particular, you can use views with labels 1, 2 and 4 of the
+ second screenshot to navigate structure using the blue links, and you
+ can set filtering and navigate history using the toolbar shown by label
+ 3 of the second screenshot.
+ </para>
+ </refsect1>
+ <refsect1>
+ <title>Manipulating Build Configurations</title>
+ <para>
+ Build configurations can be manipulated adding, removing, and
+ editing build configuration files. The AspectJ Browser is used to select the
+ current build configuration. Configurations are represented by
+ ".lst" files which are described in the <xref linkend="ajc">ajc</xref> documentation.
+ </para>
+ <imageobject>
+ <imagedata fileref="jbuilder-configs.gif" />
+ </imageobject>
+ <refsect2>
+ <title>Adding and Removing Build Configurations</title>
+ <para>
+ By default all of the files contained in your project and
+ within any packages and subpackages that have been added to
+ your project will be compiled. In order to compile a different
+ configuration first add it to the project (by selecting
+ "Add Files / Packages..." in the "Project"
+ menu, and selecting the desired build configuration file (see
+ label 1 in the third screenshot).
+ </para>
+ </refsect2>
+ <refsect2>
+ <title>Editing Build Configurations</title>
+ <para>
+ Double click a build configuration file in JBuilder's
+ "Project Pane" in order to edit it. Configurations
+ can be edited as either text or in the graphical designer (see
+ labels 2 and 3 in the third screenshot)
+ </para>
+ </refsect2>
+ </refsect1>
+ <refsect1>
+ <title>Example: Setting up the "Spacewar" Sample Project</title>
+ <para>
+ To set up the Spacewar example first download it the <ulink url="http://aspectj.org/dl">examples distribution</ulink>. Then
+
+ <orderedlist>
+ <listitem>
+ <para>launch JBuilder</para>
+ </listitem>
+ <listitem>
+ <para>in the "File" menu select "New
+ project"</para>
+ </listitem>
+ <listitem>
+ <para>Select the location of the "aspectj/examples"
+ directory for the project. This is because the Spacewar
+ example uses both the "spacewar" and "coordination"
+ packages, so we set up the project where it can get at both
+ packages.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Choose a "jpr" project, either by typing in "Spacewar.jpr"
+ as the project name, or by typing "Spacewar" as the project
+ name and "jpr" as the type. Make sure "aspectj/examples"
+ is still the directory for the project. </para>
+ </listitem>
+ <listitem>
+ <para>click "Finish"</para>
+ </listitem>
+ <listitem>
+ <para>in the "Project" menu select "Project
+ properties..."</para>
+ </listitem>
+ <listitem>
+ <para>set the "Output path" entry to be the directory
+ where you want your classes to go</para>
+ </listitem>
+ <listitem>
+ <para>set the "Output path" entry to be the directory
+ where you want your classes to go</para>
+ </listitem>
+ <listitem>
+ <para>add "aspectjrt.jar" as a required library for
+ the project. This library is located in
+ "&lt;jbuilder-install-directory&gt;/lib/ext".
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ in the "Source" tab select the entry and click
+ "Edit" (by default JBuilder will set this directory to be
+ "examples/src" which does not exist)</para>
+ </listitem>
+ <listitem>
+ <para>
+ Select the "examples" directory for the
+ Souce. </para>
+ </listitem>
+ <listitem>
+ <para>click "OK" to close the "Project
+ Properties"dialog</para>
+ </listitem>
+ <listitem>
+ <para>in the leftmost pane you will notice
+ "Spacewar.jpr", right click this and select "Add to
+ project" in the popup, then "Add class/package..." in
+ thenext popup. Or directly choose "Add
+ files/packages". </para>
+ </listitem>
+ <listitem>
+ <para>&lt;cntrl&gt; select the "spacewar" and
+ "coordination" packages and then click "OK"; this will add
+ the two packages to your project</para>
+ </listitem>
+ <listitem>
+ <para>click the "Build Project" button
+ (<inlinemediaobject>
+ <imageobject>
+ <imagedata fileref="jbuilder-build.gif" />
+ </imageobject>
+ </inlinemediaobject>)
+ to compile the project</para>
+ </listitem>
+ <listitem>
+ <para>open the Structure View to browse the structure
+ of the program</para>
+ </listitem>
+ <listitem>
+ <para>click the "Run Project" button to play
+ Spacewar (make sure that you have set up the runtime
+ library as described above)</para>
+ </listitem>
+ <listitem>
+ <para>if you have not selected a class to run, you
+ will be prompted to do so: select the class
+ "spacewar.Game". </para>
+ </listitem>
+ <listitem>
+ <para>AspectJ related build options can be
+ manipulated in the "AJDE settings" window
+ </para>
+ <imageobject>
+ <imagedata fileref="jbuilder-buildOptions.gif" />
+ </imageobject>
+ </listitem>
+ </orderedlist>
+ </para>
+ </refsect1>
+</refentry>
+
+<!-- Local variables: -->
+<!-- fill-column: 79 -->
+<!-- compile-command: "ant -quiet dev-html" -->
+<!-- sgml-local-ecat-files: devguide.ced -->
+<!-- sgml-parent-document:("devguide.sgml" "book" "refentry") -->
+<!-- End: -->
diff --git a/docs/devguide/ajdoc.adoc b/docs/devguide/ajdoc.adoc
new file mode 100644
index 000000000..6bea2ff16
--- /dev/null
+++ b/docs/devguide/ajdoc.adoc
@@ -0,0 +1,61 @@
+== `ajdoc`, the AspectJ API documentation generator
+
+=== Name
+
+`ajdoc` - generate HTML API documentation, including crosscutting structure
+
+=== Synopsis
+
+[subs=+quotes]
+ ajdoc [ -bootclasspath _classpathlist_ ] [ -classpath _classpathlist_ ] [-d _path_] [-help] [-package] [-protected] [-private] [-public] [-overview _overviewFile_] [ -sourcepath _sourcepathlist_ ] [-verbose] [-version] [_sourcefiles_... | _packages_... | @_file_... | -argfile _file_...] [ _ajc options_ ]
+
+=== Description
+
+`ajdoc` renders HTML documentation for AspectJ constructs as well as the
+Java constructs that `javadoc` renders. In addition `ajdoc` displays the
+crosscutting nature in the form of links. That means, for example, that
+you can see everything affecting a method when reading the documentation
+for the method.
+
+To run `ajdoc`, use one of the scripts in the AspectJ `bin` directory.
+The `ajdoc` implementation builds on Sun's `javadoc` command line tool,
+and you use it in the same way with many of the same options (`javadoc`
+options are not documented here; for more information on `javadoc`
+usage, see the http://java.sun.com/j2se/javadoc/[Javadoc homepage].)
+
+As with `ajc` (but unlike `javadoc`), you pass `ajdoc` all your aspect
+source files and any files containing types affected by the aspects;
+it's often easiest to just pass all the `.java` and `.aj` files in your
+system. Unlike `ajc`, `ajdoc` will try to find package sources using the
+specified sourcepath if you list packages on the command line.
+
+To provide an argfile listing the source files, you can use use the same
+argfile (`@filename`) conventions as with `ajc`. For example, the
+following documents all the source files listed in `argfile.lst`,
+sending the output to the `docDir` output directory.
+
+[source, text]
+....
+ajdoc -d docDir @argfile.lst
+....
+
+See xref:ajc.adoc[`ajc`, the AspectJ compiler/weaver] for details on the text file
+format.
+
+`ajdoc` honours `ajc` options. See the xref:ajc.adoc#ajc_options[ajc
+documentation] for details on these options.
+
+`ajdoc` currently requires the `tools.jar` from J2SE 1.3 to be on the
+classpath. Normally the scripts set this up, assuming that your
+`JAVA_HOME` variable points to an appropriate installation of Java. You
+may need to provide this jar when using a different version of Java or a
+JRE.
+
+=== Examples
+
+* Change into the `examples` directory.
+* Type `mkdir doc` to create the destination directory for the documentation.
+* Type `ajdoc -private -d doc spacewar coordination` to generate the documentation. (Use `-private` to get all members,
+ since many of the interesting ones in spacewar are not public.)
+* Type `ajdoc -private -d doc @spacewar/demo.lst` to use the argfile associated with Spacewar.
+* To view the documentation, open the file `index.html` in the `doc` directory using a web browser.
diff --git a/docs/devguide/ajdoc.xml b/docs/devguide/ajdoc.xml
new file mode 100644
index 000000000..d2a763d59
--- /dev/null
+++ b/docs/devguide/ajdoc.xml
@@ -0,0 +1,159 @@
+<refentry id="ajdoc-ref" xreflabel="The ajdoc Command-line Reference">
+<refnamediv>
+ <refname>ajdoc</refname>
+ <refpurpose>generate HTML API documentation, including crosscutting structure
+ </refpurpose>
+ </refnamediv>
+
+ <refsynopsisdiv>
+ <cmdsynopsis>
+ <command>ajdoc</command>
+ <arg choice="opt">
+ -bootclasspath <replaceable>classpathlist</replaceable>
+ </arg>
+ <arg choice="opt">
+ -classpath <replaceable>classpathlist</replaceable>
+ </arg>
+ <arg choice="opt">-d <replaceable>path</replaceable></arg>
+ <arg choice="opt">-help</arg>
+ <arg choice="opt">-package</arg>
+ <arg choice="opt">-protected</arg>
+ <arg choice="opt">-private</arg>
+ <arg choice="opt">-public</arg>
+ <arg choice="opt">-overview <replaceable>overviewFile</replaceable></arg>
+ <arg choice="opt">
+ -sourcepath <replaceable>sourcepathlist</replaceable>
+ </arg>
+ <arg>-verbose</arg>
+ <arg>-version</arg>
+ <group>
+ <arg><replaceable>sourcefiles...</replaceable></arg>
+ <arg><replaceable>packages...</replaceable></arg>
+ <arg>@<replaceable>file...</replaceable></arg>
+ <arg>-argfile <replaceable>file...</replaceable></arg>
+ </group>
+ <arg choice="opt">
+ <replaceable>ajc options</replaceable>
+ </arg>
+ </cmdsynopsis>
+ </refsynopsisdiv>
+
+ <refsect1>
+ <title>Description</title>
+ <para>
+ <command>ajdoc</command> renders HTML documentation for AspectJ
+ constructs as well as the Java constructs that
+ <command>javadoc</command> renders.
+ In addition <command>ajdoc</command> displays the crosscutting
+ nature in the form of links. That means, for example, that
+ you can see everything affecting a method when reading
+ the documentation for the method.
+ </para>
+
+ <para>
+ To run <command>ajdoc</command>, use one of the scripts in the
+ AspectJ <filename>bin</filename> directory.
+ The <command>ajdoc</command> implementation builds on Sun's <command>javadoc</command>
+ command line tool, and you use it in the same way with many of
+ the same options
+ (<command>javadoc</command> options are not documented here;
+ for more information on <command>javadoc</command> usage, see the
+ <ulink url="http://java.sun.com/j2se/javadoc/">Javadoc homepage</ulink>.)
+ </para>
+
+ <para>
+ As with <command>ajc</command> (but unlike <command>javadoc</command>),
+ you pass <command>ajdoc</command> all your aspect source files
+ and any files containing types affected by the aspects;
+ it's often easiest to just pass all the <filename>.java</filename>
+ and <filename>.aj</filename> files in your system.
+ Unlike <command>ajc</command>,
+ <command>ajdoc</command> will try to find package sources using the
+ specified sourcepath if you list packages on the command line.
+ </para>
+
+
+ <para>
+ To provide an argfile listing the source files, you can use
+ use the same argfile (<filename>@filename</filename>) conventions
+ as with <command>ajc</command>.
+ For example, the following documents all the source files listed
+ in <filename>argfile.lst</filename>, sending the output to
+ the <literal>docDir</literal> output directory.
+
+ <programlisting>ajdoc -d docDir @argfile.lst</programlisting>
+
+ See the <link linkend="ajc">ajc documentation</link>
+ for details on the text file format.
+ </para>
+
+ <para>
+ <command>ajdoc</command> honours <command>ajc</command> options. See
+ the <link linkend="ajc_options">ajc documentation</link> for details on
+ these options.
+ </para>
+
+ <para>
+ <command>ajdoc</command> currently requires the
+ <filename>tools.jar</filename> from J2SE 1.3 to be on the classpath.
+ Normally the scripts set this up, assuming that your <literal>JAVA_HOME</literal>
+ variable points to an appropriate installation of Java.
+ You may need to provide this jar when using a different
+ version of Java or a JRE.
+ </para>
+
+ </refsect1>
+
+ <refsect1>
+ <title>Examples</title>
+ <example id="ajdocdocumentingspacewar"> <!-- docbook bug - rendering this as example 4? -->
+ <title>Documenting Spacewar</title>
+ <itemizedlist>
+ <listitem>
+ <para>
+ Change into the <filename>examples</filename> directory.
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ Type <userinput>mkdir doc</userinput> to create the
+ destination directory for the documentation.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Type <userinput>ajdoc -private -d doc spacewar
+ coordination</userinput> to generate the documentation.
+ </para>
+ <itemizedlist>
+ <listitem>
+ <para>
+ (Use <literal>-private</literal> to get all members, since
+ may of the interesting ones in spacewar are not public.)
+ </para>
+ </listitem>
+ </itemizedlist>
+ </listitem>
+ <listitem>
+ <para>
+ Type <userinput>ajdoc -private -d doc @spacewar/demo.lst</userinput>
+ to use the argfile associated with Spacewar.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ To view the documentation, open the file <filename>index.html</filename>
+ in the <filename>doc</filename> directory using a web browser.
+ </para>
+ </listitem>
+ </itemizedlist>
+ </example>
+ </refsect1>
+</refentry>
+
+<!-- Local variables: -->
+<!-- fill-column: 79 -->
+<!-- sgml-local-ecat-files: devguide.ced -->
+<!-- sgml-parent-document:("devguide.sgml" "book" "refentry") -->
+<!-- End: -->
diff --git a/docs/devguide/antsupport.adoc b/docs/devguide/antsupport.adoc
new file mode 100644
index 000000000..6c8217930
--- /dev/null
+++ b/docs/devguide/antsupport.adoc
@@ -0,0 +1,878 @@
+[[antTasks]]
+== AspectJ Ant Tasks
+
+[[antTasks-intro]]
+=== Introduction
+
+AspectJ contains a compiler, `ajc`, that can be run from Ant. Included
+in the `aspectjtools.jar` are Ant binaries to support three ways of
+running the compiler:
+
+[arabic]
+. xref:#antTasks-iajc[AjcTask (iajc)], a task to run the AspectJ
+post-1.1 compiler, which supports all the eclipse and ajc options,
+including incremental mode.
+. xref:#antTasks-adapter[Ajc11CompilerAdapter (javac)], an adapter class
+to run the new compiler using Javac tasks by setting the build.compiler
+property
+. xref:#antTasks-ajc[Ajc10 (ajc)], a task to run build scripts
+compatible with the AspectJ 1.0 tasks
+
+This describes how to install and use the tasks and the adapter. For an
+example Ant script, see xref:../examples/build.xml[examples/build.xml].
+
+[[antTasks-install]]
+=== Installing Ant Tasks
+
+Install Jakarta Ant 1.5.1: Please see the official Jakarta Ant website
+for more information and the 1.5.1 distribution. This release is
+source-compatible with Ant 1.3 and Ant 1.4, but the task sources must be
+compiled with those versions of the Ant libraries to be used under those
+versions of Ant. Sources are available under the Eclipse Public License
+v 2.0 at https://eclipse.org/aspectj.
+
+In Ant 1.5, third-party tasks can be declared using a taskdef entry in
+the build script, to identify the name and classes. When declaring a
+task, include the `aspectjtools.jar` either in the taskdef classpath or
+in `${ANT_HOME}/lib` where it will be added to the system class path by
+the ant script. You may specify the task script names directly, or use
+the "resource" attribute to specify the default names:
+
+[source, xml]
+....
+<taskdef resource="org/aspectj/tools/ant/taskdefs/aspectjTaskdefs.properties"/>
+....
+
+The current resource file retains the name "ajc" for the Ajc10 task, and
+uses "iajc" for the AspectJ post-1.1 task.
+
+In Ant 1.6, third-party tasks are declared in their own namespace using
+`antlib.xml`. For example, the following script would build and run the
+spacewar example, if you put the script in the examples directory and
+`aspectjtools.jar` in the `${ANT_HOME}/lib` directory.
+
+[source, xml]
+....
+<project name="aspectj-ant1.6" default="spacewar"
+ xmlns:aspectj="antlib:org.aspectj" basedir=".">
+ <target name="spacewar">
+ <aspectj:iajc
+ argfiles="spacewar/debug.lst"
+ outjar="spacewar.jar"
+ classpath="../../lib/aspectjrt.jar"
+ />
+ <java classname="spacewar.Game"
+ classpath="spacewar.jar:../../lib/aspectjrt.jar"/>
+ </target>
+</project>
+....
+
+For more information on using Ant, please refer to Jakarta's
+documentation on integrating user-defined Ant tasks into builds.
+
+[[antTasks-iajc]]
+=== AjcTask (iajc)
+
+This task uses the AspectJ post-1.1 compiler ajc. The AspectJ compiler
+can be used like Javac to compile Java sources, but it can also compile
+AspectJ sources or weave binary aspects with Java bytecode. It can run
+in normal "batch" mode or in an "incremental" mode, where it only
+recompiles files it has to revisit. For more information on ajc, see
+xref:ajc.adoc[`ajc`, the AspectJ compiler/weaver]. Unlike Javac or the Javac Ant task, this task always
+compiles the specified files since aspects can apply to other (updated)
+files. For a workaround, see xref:#antTasks-iajc-uptodate[Avoiding clean
+compiles].
+
+Beyond the normal ajc compiler options, this task also supports an
+experimental option for an incremental "tag" file, and it can copy
+resources from source directories or input jars to the output jar or
+directory.
+
+This task is named iajc to avoid conflict with the 1.0 task ajc.
+
+[[antTasks-iajc-options]]
+==== AjcTask (iajc) Options
+
+The following tables list the supported parameters. For any parameter
+specified as a Path, a single path can be specified directly as an
+attribute, multiple paths can be specified using a nested element of the
+same name, and a common path can be reused by defining it as a global
+and passing the id to the corresponding \{name}ref attribute. See
+xref:#antTasks-iajc-paths[Path] below for more details.
+
+Most attributes and nested elements are optional. The compiler requires
+that the same version of `aspectjrt.jar` be specified on the classpath,
+and that some sources be be specified (using one or more of
+`sourceroots`, `injars`, `inpath`, `argfiles`, and/or `srcdir` (with
+patterns)). When in incremental mode, only `sourceroots` may be
+specified.
+
+Boolean parameters default to `false` unless otherwise stated.
+
+*AjcTask (iajc) options for specifying sources*
+
+[cols=",",options="header",]
+|===
+|Attribute |Description
+|argfiles, argfilesRef (xref:#antTasks-iajc-paths[Path]) |An argument
+file contains a list of arguments read by the compiler. Each line is
+read into one element of the argument array and may include another
+argfile by reference.
+
+|sourceRoots, sourceRootsRef (xref:#antTasks-iajc-paths[Path])
+|Directories containing source files (ending with .java or .aj) to
+compile.
+
+|srcdir (xref:#antTasks-iajc-paths[Path]) |Base directory of sources to
+compile, assuming there are xref:#antTasks-nested-includes[nested
+matches]. This approach uses the Ant process for matching .java files
+and is not compatible with incremental mode. Unless using filters to
+limit the sources included, use sourceroots instead.
+
+|injars, injarsRef (xref:#antTasks-iajc-paths[Path]) |Deprecated - use
+inpath instead. Read .class files for bytecode weaving from zip files
+(only).
+
+|inpath, inpathRef (xref:#antTasks-iajc-paths[Path]) |Read .class files
+for bytecode weaving from directories or zip files (like classpath).
+
+|classpath, classpathRef (xref:#antTasks-iajc-paths[Path]) |The
+classpath used by the sources being compiled. When compiling aspects,
+include the same version of the `aspectjrt.jar`.
+
+|bootclasspath, bootclasspathRef (xref:#antTasks-iajc-paths[Path]) |The
+bootclasspath specifies types to use instead of the invoking VM's when
+seeking types during compilation.
+
+|extDirs, extDirsRef (xref:#antTasks-iajc-paths[Path]) |The extension
+directories to use instead of those in the invoking VM when seeking
+types during compilation.
+
+|aspectPath, aspectPathRef (xref:#antTasks-iajc-paths[Path]) |Similar to
+classpath, aspectpath contains read-only, binary aspect libraries that
+are woven into sources but not included in the output. `aspectpath`
+accepts jar/zip files (but, unlike classpath, not directories).
+|===
+
+*AjcTask (iajc) options for specifying output*
+
+[cols=",",options="header",]
+|===
+|Attribute |Description
+|destDir |The directory in which to place the generated class files.
+Only one of `destDir` and `outJar` may be set.
+
+|outJar |The zip file in which to place the generated output class
+files. Only one of `destDir` and `outJar` may be set.
+
+|copyInjars |(Deprecated/ignored; ajc does this.) If true, copy all
+non-.class files from input jar(s) to the output jar or destination
+directory after the compile (or incremental compile) completes. In
+forked mode, this copies only after the process completes, not after
+incremental compiles.
+
+|sourceRootCopyFilter |When set, copy all files from the sourceroot
+directories to the output jar or destination directory except those
+specified in the filter pattern. The pattern should be compatible with
+an Ant fileset excludes filter; when using this, most developers pass
+`**/CVS/*,**/*.java` to exclude any CVS directories or source files. See
+`inpathDirCopyFilter`. Requires `destDir` or `outJar`.
+
+|inpathDirCopyFilter |When set, copy all files from the inpath
+directories to the output jar or destination directory except those
+specified in the filter pattern. The pattern should be compatible with
+an Ant fileset excludes filter; when using this, most developers pass
+`**/CVS/*,**/*.java,**/*.class` to exclude any CVS directories, source
+files, or unwoven .class files. (If `**/*.class` is not specified, it
+will be prepended to the filter.) See `sourceRootCopyFilter`. (Note that
+ajc itself copies all resources from input jar/zip files on the inpath.)
+Requires `destDir` or `outJar`.
+|===
+
+*AjcTask (iajc) options for specifying compiler behavior*
+
+[cols=",",options="header",]
+|===
+|Attribute |Description
+|fork |Run process in another VM. This gets the forking classpath either
+explicitly from a `forkclasspath` entry or by searching the task or
+system/Ant classpath for the first readable file with a name of the form
+`aspectj{-}tools{.*}.jar`. When forking you can specify the amount of
+memory used with `maxmem`. Fork cannot be used in incremental mode,
+unless using a tag file.
+
+|forkclasspath, forkclasspathRef (xref:#antTasks-iajc-paths[Path])
+|Specify the classpath to use for the compiler when forking.
+
+|maxmem |The maximum memory to use for the new VM when fork is true.
+Values should have the same form as accepted by the VM, e.g., "128m".
+
+|incremental |incremental mode: Build once, then recompile only required
+source files when user provides input. Requires that source files be
+specified only using `sourceroots`. Incompatible with forking.
+
+|tagfile |incremental mode: Build once, then recompile only required
+source files when the tag file is updated, finally exiting when tag file
+is deleted. Requires that source files be specified only using
+`sourceroots`.
+
+|X |Set experimental option(s), using comma-separated list of accepted
+options Options should not contain the leading X. Some commonly-used
+experimental options have their own entries. The other permitted ones
+(currently) are serializableAspects, incrementalFile, lazyTjp,
+reweavable, notReweavable, noInline, terminateAfterCompilation,
+ajruntimelevel:1.2, and ajruntimelevel:1.5. Of these, some were
+deprecated in AspectJ 5 (reweavable, terminateAfterCompilation, etc.).
+
+|XterminateAfterCompilation |Terminates before the weaving process,
+dumping out unfinished class files.
+|===
+
+*AjcTask (iajc) options for specifying compiler side-effects and
+messages*
+
+[cols=",",options="header",]
+|===
+|Attribute |Description
+|emacssym |If true, emit `.ajesym` symbol files for Emacs support.
+
+|crossref |If true, emit `.ajsym` file into the output directory.
+
+|verbose |If true, log compiler verbose messages as Project.INFO during
+the compile.
+
+|logCommand |If true, log compiler command elements as Project.INFO
+(rather than the usual Project.VERBOSE level).
+
+|Xlistfileargs |If true, emit list of file arguments during the compile
+(but behaves now like verbose).
+
+|version |If true, do not compile - just print AspectJ version.
+
+|help |If true, just print help for the command-line compiler.
+
+|Xlintwarnings |Same as `xlint:warning`: if true, set default level of
+all language usage messages to warning.
+
+|Xlint |Specify default level of all language usage messages to one of
+[`error warning ignore`].
+
+|XlintFile |Specify property file containing `name:level` associations
+setting level for language messages emitted during compilation. Any
+levels set override the default associations in
+`org/aspectj/weaver/XLintDefault.properties`.
+
+|failonerror |If true, throw BuildException to halt build if there are
+any compiler errors. If false, continue notwithstanding compile errors.
+Defaults to `true`.
+
+|messageHolderClass |Specify a class to use as the message holder for
+the compile process. The entry must be a fully-qualified name of a class
+resolveable from the task classpath complying with the
+`org.aspectj.bridge.IMessageHolder` interface and having a public
+no-argument constructor.
+
+|showWeaveInfo |If true, emit weaver messages. Defaults to `false`.
+|===
+
+*AjcTask (iajc) options for specifying Eclipse compiler options*
+
+[cols=",",options="header",]
+|===
+|Attribute |Description
+|nowarn |If true, same as `warn:none`.
+
+|deprecation |If true, same as `warn:deprecation`
+
+|warn |One or more comma-separated warning specifications from
+[`constructorName packageDefaultMethod deprecation,
+ maskedCatchBlocks unusedLocals unusedArguments,
+ unusedImports syntheticAccess assertIdentifier`].
+
+|debug |If true, same as `debug:lines,vars,source`
+
+|debugLevel |One or more comma-separated debug specifications from
+[`lines vars source`].
+
+|PreserveAllLocals |If true, code gen preserves all local variables (for
+debug purposes).
+
+|noimporterror |If true, emit no errors for unresolved imports.
+
+|referenceinfo |If true, compute reference info.
+
+|log |File to log compiler messages to.
+
+|encoding |Default source encoding format (per-file encoding not
+supported in Ant tasks).
+
+|proceedOnError |If true, keep compiling after errors encountered,
+dumping class files with problem methods.
+
+|progress |If true, emit progress (requires log).
+
+|time |If true, display speed information.
+
+|target |Specify target class file format as one of [`1.1 1.2`].
+Defaults to 1.1 class file.
+
+|source |Set source compliance level to one of [`1.3 1.4 1.5`] (default
+is 1.4). 1.3 implies -source 1.3 and -target 1.1. 1.4 implies -source
+1.4 and -target 1.2. 1.5 implies -source 1.5 and -target 1.5.
+
+|source |Set source assertion mode to one of [`1.3 1.4`]. Default
+depends on compliance mode.
+|===
+
+[[antTasks-nested-includes]]
+==== AjcTask matching parameters specified as nested elements
+
+This task forms an implicit FileSet and supports all attributes of
+`fileset` (dir becomes srcdir) as well as the nested `include`,
+`exclude`, and `patternset` elements. These can be used to specify
+source files. However, it is better to use `sourceroots` to specify
+source directories unless using filters to exclude some files from
+compilation.
+
+[[antTasks-iajc-paths]]
+==== AjcTask Path-like Structures
+
+Some parameters are path-like structures containing one or more
+elements; these are `sourceroots`, `argfiles`, `injars`, `inpath`,
+`classpath`, `bootclasspath`, `forkclasspath`, and `aspectpath`. In all
+cases, these may be specified as nested elements, something like this:
+
+[source, xml]
+....
+<iajc {attributes..} />
+ <{name}>
+ <pathelement path="{first-location}"/>
+ <pathelement path="{second-location}"/>
+ ...
+ <{name}>
+ ...
+</iajc>
+....
+
+As with other Path-like structures, they may be defined elsewhere and
+specified using the refid attribute:
+
+[source, xml]
+....
+<path id="aspect.path">
+ <pathelement path="${home}/lib/persist.jar"/>
+ <pathelement path="${home}/lib/trace.jar"/>
+</path>
+...
+<iajc {attributes..} />
+ <aspectpath refid="aspect.path"/>
+ ...
+</iajc>
+....
+
+The task also supports an attribute `{name}ref` for each such parameter.
+E.g., for `aspectpath`:
+
+[source, xml]
+....
+<iajc {attributes..} aspectpathref="aspect.path"/>
+....
+
+[[antTasks-iajc-sample]]
+==== Sample of iajc task
+
+A minimal build script defines the task and runs it, specifying the
+sources:
+
+[source, xml]
+....
+<project name="simple-example" default="compile" >
+ <taskdef
+ resource="org/aspectj/tools/ant/taskdefs/aspectjTaskdefs.properties">
+ <classpath>
+ <pathelement location="${home.dir}/tools/aspectj/lib/aspectjtools.jar"/>
+ </classpath>
+ </taskdef>
+
+ <target name="compile" >
+ <iajc sourceroots="${home.dir}/ec/project/src"
+ classpath="${home.dir}/tools/aspectj/lib/aspectjrt.jar"/>
+ </target>
+</project>
+....
+
+Below is script with most everything in it. The compile process...
+
+[arabic]
+. Runs in incremental mode, recompiling when the user hits return;
+. Reads all the source files from two directories;
+. Reads binary .class files from input jar and directory;
+. Uses a binary aspect library for persistence;
+. Outputs to an application jar; and
+. Copies resources from the source directories and binary input jar and
+directories to the application jar.
+
+When this target is built, the compiler will build once and then wait
+for input from the user. Messages are printed as usual. When the user
+has quit, then this runs the application.
+
+[source, xml]
+....
+<target name="build-test" >
+ <iajc outjar="${home.dir}/output/application.jar"
+ sourceRootCopyFilter="**/CVS/*,**/*.java"
+ inpathDirCopyFilter="**/CVS/*,**/*.java,**/*.class"
+ incremental="true" >
+ <sourceroots>
+ <pathelement location="${home.dir}/ec/project/src"/>
+ <pathelement location="${home.dir}/ec/project/testsrc"/>
+ </sourceroots>
+ <inpath>
+ <pathelement location="${home.dir}/build/module.jar"/>
+ <pathelement location="${home.dir}/build/binary-input"/>
+ </inpath>
+ <aspectpath>
+ <pathelement location="${home.dir}/ec/int/persist.jar"/>
+ </aspectpath>
+ <classpath>
+ <pathelement location="${home.dir}/tools/aspectj/lib/aspectjrt.jar"/>
+ </classpath>
+ </iajc>
+
+ <java classname="org.smart.app.Main">
+ <classpath>
+ <pathelement location="${home.dir}/tools/aspectj/lib/aspectjrt.jar"/>
+ <pathelement location="${home.dir}/ec/int/persist.jar"/>
+ <pathelement location="${home.dir}/output/application.jar"/>
+ </classpath>
+ </java>
+</target>
+....
+
+For an example of a build script, see ../examples/build.xml.
+
+[[antTasks-iajc-uptodate]]
+==== Avoiding clean compiles
+
+Unlike javac, the ajc compiler always processes all input because new
+aspects can apply to updated classes and vice-versa. However, in the
+case where no files have been updated, there is no reason to recompile
+sources. One way to implement that is with an explicit dependency check
+using the uptodate task:
+
+[source, xml]
+....
+<target name="check.aspects.jar">
+ <uptodate property="build.unnecessary"
+ targetfile="${aspects.module-jar}" >
+ <srcfiles dir="${src1}" includes="**/*.aj"/>
+ <srcfiles dir="${src2}/" includes="**/*.aj"/>
+ </uptodate>
+</target>
+
+<target name="compile.aspects" depends="prepare,check.aspects.jar"
+ unless="build.unnecessary">
+ <iajc ...
+....
+
+When using this technique, be careful to verify that binary input jars
+are themselves up-to-date after they would have been modified by any
+build commands.
+
+==== Programmatically handling compiler messages
+
+Users may specify a message holder to which the compiler will pass all
+messages as they are generated. This will override all of the normal
+message printing, but does not prevent the task from failing if
+exceptions were thrown or if failonerror is true and the compiler
+detected errors in the sources.
+
+Handling messages programmatically could be useful when using the
+compiler to verify code. If aspects consist of declare [error|warning],
+then the compiler can act to detect invariants in the code being
+processed. For code to compare expected and actual messages, see the
+AspectJ testing module (which is not included in the binary
+distribution).
+
+[[antTasks-adapter]]
+=== Ajc11CompilerAdapter (javac)
+
+This CompilerAdapter can be used in javac task calls by setting the
+`build.compiler` property. This enables users to to easily switch
+between the Javac and AspectJ compilers. However, because there are
+differences in source file handling between the Javac task and the ajc
+compiler, not all Javac task invocations can be turned over to iajc.
+However, ajc can compile anything that Javac can, so it should be
+possible for any given compile job to restate the Javac task in a way
+that can be handled by iajc/ajc.
+
+[[antTasks-adapter-sample]]
+==== Sample of compiler adapter
+
+To build using the adapter, put the `aspectjtools.jar` on the system/ant
+classpath (e.g., in `${ANT_HOME}/lib`) and define the `build.compiler`
+property as the fully-qualified name of the class,
+`org.aspectj.tools.ant.taskdefs.Ajc11CompilerAdapter`.
+
+The AspectJ compiler should run for any compile using the Javac task
+(for options, see the Ant documentation for the Javac task). For
+example, the call below passes all out-of-date source files in the
+`src/org/aspectj` subdirectories to the `ajc` command along with the
+destination directory:
+
+[source, text]
+....
+-- command:
+
+ cp aspectj1.1/lib/aspectjtools.jar ant/lib
+ ant/bin/ant -Dbuild.compiler=org.aspectj.tools.ant.taskdefs.Ajc11CompilerAdapter ...
+
+-- task invocation in the build script:
+
+ <javac srcdir="src" includes="org/aspectj/**/*.java" destdir="dest" />
+....
+
+To pass ajc-specific arguments, use a compilerarg entry.
+
+[source, text]
+....
+-- command
+
+ Ant -Dbuild.compiler=org.aspectj.tools.ant.taskdefs.Ajc11CompilerAdapter
+
+-- build script
+
+ <property name="ajc"
+ value="org.aspectj.tools.ant.taskdefs.Ajc11CompilerAdapter"/>
+
+ <javac srcdir="src" includes="org/aspectj/**/*.java" destdir="dest" >
+ <compilerarg compiler="${ajc}" line="-argfile src/args.lst"/>
+ <javac/>
+....
+
+The Javac task does special handling of source files that can interfere
+with ajc. It removes any files that are not out-of-date with respect to
+the corresponding .class files. But ajc requires all source files, since
+an aspect may affect a source file that is not out of date. (For a
+solution to this, see the `build.compiler.clean` property described
+below.) Conversely, developers sometimes specify a source directory to
+javac, and let it search for files for types it cannot find. AspectJ
+will not do this kind of searching under the source directory (since the
+programmer needs to control which sources are affected). (Don't confuse
+the source directory used by Javac with the source root used by ajc; if
+you specify a source root to ajc, it will compile any source file under
+that source root (without exception or filtering).) To replace source
+dir searching in Javac, use an Ant filter to specify the source files.
+
+[[antTasks-adapter-options]]
+==== Compiler adapter compilerarg options
+
+The adapter supports any ajc command-line option passed using
+compilerarg, as well as the following options available only in AjcTask.
+Find more details on the following options in
+xref:#antTasks-iajc[AjcTask (iajc)].
+
+* `-Xmaxmem`: set maximum memory for forking (also settable in javac).
+* `-Xlistfileargs`: list file arguments (also settable in javac).
+* `-Xfailonerror`: throw BuildException on compiler error (also settable
+in javac).
+* `-Xmessageholderclass`: specify fully-qualified name of class to use
+as the message holder.
+* `-Xcopyinjars`: copy resources from any input jars to output (default
+behavior since 1.1.1)
+* `-Xsourcerootcopyfilter {filter}`: copy resources from source
+directories to output (minus files specified in filter)
+* `-Xtagfile {file}`: use file to control incremental compilation
+* `-Xsrcdir {dir}`: add to list of ajc source roots (all source files
+will be included).
+
+Special considerations when using Javac and compilerarg:
+
+* The names above may differ slightly from what you might expect from
+AjcTask; use these forms when specifying compilerarg.
+
+* By default the adapter will mimic the Javac task's copying of resource
+files by specifying `"**/CVS/*,**/*.java,**/*.aj"` for the sourceroot
+copy filter. To change this behavior, supply your own value (e.g.,
+`"**/*"` to copy nothing).
+
+* Warning - define the system property `build.compiler.clean` to compile
+all files, when available. Javac prunes the source file list of
+"up-to-date" source files based on the timestamps of corresponding
+.class files, and will not compile if no sources are out of date. This
+is wrong for ajc which requires all the files for each compile and which
+may refer indirectly to sources using argument files.
++
+To work around this, set the global property `build.compiler.clean`.
+This tells the compiler adapter to delete all .class files in the
+destination directory and re-execute the javac task so javac can
+recalculate the list of source files. e.g.,
++
+[source, text]
+....
+Ant -Dbuild.compiler=org.aspectj.tools.ant.taskdefs.Ajc11CompilerAdapter
+ -Dbuild.compiler.clean=anything ...
+....
++
+Caveats to consider when using this global `build.compiler.clean`
+property:
+[arabic]
+. If javac believes there are no out-of-date source files, then the
+adapter is never called and cannot clean up, and the "compile" will
+appear to complete successfully though it did nothing.
+. Cleaning will makes stepwise build processes fail if they depend on
+the results of the prior compilation being in the same directory, since
+cleaning deletes all .class files.
+. This clean process only permits one compile process at a time for each
+destination directory because it tracks recursion by writing a tag file
+to the destination directory.
+. When running incrementally, the clean happens only before the initial
+compile.
+
+[[antTasks-ajc]]
+=== Ajc10 (ajc)
+
+This task handles the same arguments as those used by the AspectJ 1.0
+task. This should permit those with existing build scripts using the Ajc
+Ant task to continue using the same scripts when compiling with 1.1.
+This will list any use of options no longer supported in 1.1 (e.g.,
+`lenient, strict, workingdir, preprocess, usejavac`,...), and does not
+provide access to the new features of AspectJ 1.1. (Developers using
+AspectJ 1.1 only should upgrade their scripts to use AjcTask instead.
+This will not work for AspectJ 1.2 or later.)
+
+[[antTasks-ajc-options]]
+==== Ajc10 (ajc) Options
+
+Most attributes and nested elements are optional. The compiler requires
+that the same version of `aspectjrt.jar` be specified on the classpath,
+and that some sources be be specified (using one or more of `argfiles`
+and `srcdir` (with patterns)).
+
+Boolean parameters default to `false` unless otherwise stated.
+
+.AjcTask (ajc) options for specifying sources
+[cols=",",options="header",]
+|===
+|Attribute |Description
+|srcdir |The base directory of the java files. See
+
+|destdir |The target directory for the output .class files
+
+|includes |Comma-separated list of patterns of files that must be
+included. No files are included when omitted.
+
+|includesfile |The path to a file containing include patterns.
+
+|excludes |Comma-separated list of patterns of files that must be
+excluded. No files (except default excludes) are excluded when omitted.
+
+|excludesfile |The path to a file containing exclude patterns.
+
+|defaultexcludes |If true, then default excludes are used. Default
+excludes are used when omitted (i.e., defaults to `true`).
+
+|classpath, classpathref |The classpath to use, optionally given as a
+reference to a classpath Path element defined elsewhere.
+
+|bootclasspath, bootclasspathref |The bootclasspath to use, optionally
+given as a reference to a bootclasspath Path element defined elsewhere.
+
+|extdirs |Paths to directories containting installed extensions.
+
+|debug |If true, emit debug info in the .class files.
+
+|deprecation |If true, emit messages about use of deprecated API.
+
+|verbose |Emit compiler status messages during the compile.
+
+|version |Emit version information and quit.
+
+|failonerror |If true, throw BuildException to halt build if there are
+any compiler errors. If false, continue notwithstanding compile errors.
+Defaults to `true`.
+
+|source |Value of -source option - ignored unless `1.4`.
+|===
+
+.Parameters ignored by the old ajc taskdef, but now supported or buggy
+[cols=",,",options="header",]
+|===
+|Attribute |Description |Supported?
+|encoding |Default encoding of source files. |yes
+
+|optimize |Whether source should be compiled with optimization. |yes?
+
+|target |Generate class files for specific VM version, one of
+[`1.1 1.2`]. |yes
+
+|depend |Enables dependency-tracking. |no
+
+|includeAntRuntime |Whether to include the Ant run-time libraries. |no
+
+|includeJavaRuntime |Whether to include the run-time libraries from the
+executing VM. |no
+
+|threads |Multi-threaded compilation |no
+|===
+
+The following table shows that many of the unique parameters in AspectJ
+1.0 are no longer supported.
+
+.Parameters unique to ajc
+[cols=",",options="header",]
+|===
+|Attribute |Description
+|X |deprecated X options include reweavable (on by default)
+reweavable:compress (compressed by default)
+
+|emacssym |Generate symbols for Emacs IDE support.
+
+|argfiles |A comma-delimited list of argfiles that contain a
+line-delimited list of source file paths (absolute or relative to the
+argfile).
+|===
+
+===== argfiles - argument list files
+
+An argument file is a file (usually `{file}.lst`) containing a list of
+source file paths (absolute or relative to the argfile). You can use it
+to specify all source files to be compiled, which ajc requires to avoid
+searching every possible source file in the source path when building
+aspects. If you specify an argfile to the ajc task, it will not include
+all files in any specified source directory (which is the default
+behavior for the Javac task when no includes are specified). Conversely,
+if you specify excludes, they will be removed from the list of files
+compiled even if they were specified in an argument file.
+
+The compiler also accepts arguments that are not source files, but the
+IDE support for such files varies, and Javac does not support them. Be
+sure to include exactly one argument on each line.
+
+[[antTasks-ajc-nested]]
+==== Ajc10 parameters specified as nested elements
+
+This task forms an implicit FileSet and supports all attributes of
+`fileset` (dir becomes srcdir) as well as the nested `include`,
+`exclude`, and `patternset` elements. These can be used to specify
+source files.
+
+``ajc``'s `srcdir`, `classpath`, `bootclasspath`, `extdirs`, and `jvmarg`
+attributes are path-like structures and can also be set via nested
+`src`, `classpath`, `bootclasspath`, `extdirs`, and `jvmargs`
+elements, respectively.
+
+[[antTasks-ajc-sample]]
+==== Sample of ajc task
+
+Following is a declaration for the ajc task and a sample invocation that
+uses the ajc compiler to compile the files listed in `default.lst` into
+the dest dir:
+
+[source, xml]
+....
+<project name="example" default="compile" >
+ <taskdef name="ajc"
+ classname="org.aspectj.tools.ant.taskdefs.Ajc10" >
+ <!-- declare classes needed to run the tasks and tools -->
+ <classpath>
+ <pathelement location="${home.dir}/tools/aspectj/lib/aspectjtools.jar"/>
+ </classpath>
+ </taskdef>
+
+ <target name="compile" >
+ <mkdir dir="dest" />
+ <ajc destdir="dest" argfiles="default.lst" >
+ <!-- declare classes needed to compile the target files -->
+ <classpath>
+ <pathelement location="${home.dir}/tools/aspectj/lib/aspectjrt.jar"/>
+ </classpath>
+ </ajc>
+ </target>
+</project>
+....
+
+This build script snippet
+
+[source, xml]
+....
+<ajc srcdir="${src}"
+ destdir="${build}"
+ argfiles="demo.lst"
+/>
+....
+
+compiles all .java files specified in the demo.lst and stores the .class
+files in the $\{build} directory. Unlike the Javac task, the includes
+attribute is empty by default, so only those files specified in demo.lst
+are included.
+
+This next example
+
+[source, xml]
+....
+<ajc srcdir="${src}"
+ destdir="${build}"
+ includes="spacewar/*,coordination/*"
+ excludes="spacewar/Debug.java"
+/>
+....
+
+compiles .java files under the `${src}` directory in the spacewar and
+coordination packages, and stores the .class files in the `${build}`
+directory. All source files under spacewar/ and coordination/ are used,
+except Debug.java.
+
+See ../examples/build.xml for an example build script.
+
+[[antTasks-problems]]
+=== Isolating problems running the Ant tasks
+
+If you have problems with the tasks not solved by the documentation,
+please try to see if you have the same problems when running ajc
+directly on the command line.
+
+* If the problem occurs on the command line also, then the problem is
+not in the task. (It may be in the tools; please send bug reports.)
+* If the problem does not occur on the command line, then it may lie in
+the parameters you are supplying in Ant or in the task's handling of
+them.
+* If the build script looks correct and the problem only occurs when
+building from Ant, then please send a report (including your build file,
+if possible).
+
+[[antTasks-knownProblems]]
+==== Known issues with the Ant tasks
+
+For the most up-to-date information on known problems, see the
+https://bugs.eclipse.org/bugs[bug database] for unresolved
+https://bugs.eclipse.org/bugs/buglist.cgi?&product=AspectJ&component=Compiler&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED[compiler
+bugs] or
+https://bugs.eclipse.org/bugs/buglist.cgi?&product=AspectJ&component=Ant&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED[taskdef
+bugs] .
+
+When running Ant build scripts under Eclipse 2.x variants, you will get
+a VerifyError because the Eclipse Ant support fails to isolate the Ant
+runtime properly. To run in this context, set up iajc to fork (and use
+forkclasspath). Eclipse 3.0 will fork Ant processes to avoid problems
+like this.
+
+Memory and forking: Users email most often about the ajc task running
+out of memory. This is not a problem with the task; some compiles take a
+lot of memory, often more than similar compiles using javac.
+
+Forking is now supported in both the
+xref:#antTasks-adapter[Ajc11CompilerAdapter (javac)] and
+xref:#antTasks-iajc[AjcTask (iajc)], and you can set the maximum memory
+available. You can also not fork and increase the memory available to
+Ant (see the Ant documentation, searching for ANT_OPTS, the variable
+they use in their scripts to pass VM options, e.g., ANT_OPTS=-Xmx128m).
+
+[[antTasks-feedback]]
+==== Ant task questions and bugs
+
+For questions, you can send email to aspectj-users@dev.eclipse.org. (Do
+join the list to participate!) We also welcome any bug reports, patches,
+and features; you can submit them to the bug database at
+https://bugs.eclipse.org/bugs using the AspectJ product and Ant
+component.
diff --git a/docs/devguide/antsupport.xml b/docs/devguide/antsupport.xml
new file mode 100644
index 000000000..85f856e1a
--- /dev/null
+++ b/docs/devguide/antsupport.xml
@@ -0,0 +1,1615 @@
+<chapter id="antTasks" xreflabel="AspectJ Ant Tasks">
+
+ <title>AspectJ Ant Tasks</title>
+
+ <sect1 id="antTasks-intro">
+ <title>Introduction</title>
+
+ <para>
+ AspectJ contains a compiler, <literal>ajc</literal>,
+ that can be run from Ant.
+ Included in the <literal>aspectjtools.jar</literal>
+ are Ant binaries to support three
+ ways of running the compiler:
+ <orderedlist>
+ <listitem>
+ <para>
+ <xref linkend="antTasks-iajc"/>,
+ a task to run the AspectJ post-1.1 compiler,
+ which supports all the eclipse and ajc options, including incremental mode.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <xref linkend="antTasks-adapter"/>,
+ an adapter class to run the new compiler using Javac tasks
+ by setting the build.compiler property
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <xref linkend="antTasks-ajc"/>,
+ a task to run build scripts compatible with the AspectJ 1.0 tasks
+ </para>
+ </listitem>
+ </orderedlist>
+ </para>
+
+ <para>
+ This describes how to install and use the tasks and the adapter.
+ For an example Ant script, see
+ <ulink url="../examples/build.xml">examples/build.xml</ulink>.
+ </para>
+ </sect1>
+
+ <!-- . . . . . . . . . . . . . . . . . . . . . . . . . . . install -->
+ <sect1 id="antTasks-install" xreflabel="Installing Ant Tasks">
+ <title>Installing Ant Tasks</title>
+ <para>
+ Install Jakarta Ant 1.5.1:
+ Please see the official Jakarta Ant website for more information
+ and the 1.5.1 distribution. This release is source-compatible
+ with Ant 1.3 and Ant 1.4, but the task sources must be
+ compiled with those versions of the Ant libraries to be used
+ under those versions of Ant.
+ Sources are available under the Eclipse Public License v 2.0
+ at <ulink url="https://eclipse.org/aspectj">https://eclipse.org/aspectj</ulink>.
+ </para>
+ <para>
+ In Ant 1.5, third-party tasks can be declared using a taskdef entry in
+ the build script, to identify the name and classes.
+ When declaring a task, include the
+ <literal>aspectjtools.jar</literal> either in the
+ taskdef classpath or in <literal>${ANT_HOME}/lib</literal> where it will be added
+ to the system class path by the ant script.
+ You may specify the task script names directly,
+ or use the "resource" attribute to specify the default names:
+ </para>
+ <programlisting><![CDATA[
+<taskdef resource="org/aspectj/tools/ant/taskdefs/aspectjTaskdefs.properties"/>
+]]></programlisting>
+
+ <para>
+ The current resource file retains the name "ajc" for the Ajc10 task,
+ and uses "iajc" for the AspectJ post-1.1 task.
+ </para>
+ <para>
+ In Ant 1.6, third-party tasks are declared in their own namespace
+ using <literal>antlib.xml</literal>. For example, the following
+ script would build and run the spacewar example, if you put the
+ script in the examples directory and <literal>aspectjtools.jar</literal>
+ in the <literal>${ANT_HOME}/lib</literal> directory.
+ </para>
+ <programlisting><![CDATA[
+<project name="aspectj-ant1.6" default="spacewar"
+ xmlns:aspectj="antlib:org.aspectj" basedir=".">
+ <target name="spacewar">
+ <aspectj:iajc
+ argfiles="spacewar/debug.lst"
+ outjar="spacewar.jar"
+ classpath="../../lib/aspectjrt.jar"
+ />
+ <java classname="spacewar.Game"
+ classpath="spacewar.jar:../../lib/aspectjrt.jar"/>
+ </target>
+</project>
+]]></programlisting>
+ <para>
+ For more information on using Ant, please refer to Jakarta's
+ documentation on integrating user-defined Ant tasks into builds.
+ </para>
+
+ </sect1>
+ <!-- . . . . . . . . . . . . . . . . . . . . . . . . . . . iajc -->
+ <sect1 id="antTasks-iajc" xreflabel="AjcTask (iajc)">
+ <title>AjcTask (iajc)</title>
+ <para>
+ This task uses the AspectJ post-1.1 compiler ajc.
+ The AspectJ compiler can be used like Javac to compile Java sources,
+ but it can also compile AspectJ sources or weave binary aspects
+ with Java bytecode.
+ It can run in normal "batch" mode or in an "incremental" mode,
+ where it only recompiles files it has to revisit.
+ For more information on ajc, see <xref linkend="ajc-ref"/>.
+ Unlike Javac or the Javac Ant task, this task always compiles the
+ specified files since aspects can apply to other (updated) files.
+ For a workaround, see <xref linkend="antTasks-iajc-uptodate"/>.
+ </para>
+ <para>
+ Beyond the normal ajc compiler options, this task also supports
+ an experimental option for an incremental "tag" file, and it
+ can copy resources from source directories or
+ input jars to the output jar or directory.
+ </para>
+
+ <para>
+ This task is named iajc to avoid conflict with the 1.0 task ajc.
+ </para>
+
+ <sect2 id="antTasks-iajc-options" xreflabel="AjcTask (iajc) Options">
+ <title>AjcTask (iajc) Options</title>
+ <para>
+ The following tables list the supported parameters.
+ For any parameter specified as a Path, a single path can be
+ specified directly as an attribute,
+ multiple paths can be specified using a nested element of
+ the same name, and a common path can be reused by defining it as a
+ global and passing the id to the corresponding {name}ref attribute.
+ See <xref linkend="antTasks-iajc-paths"/>
+ below for more details.
+ </para>
+ <para>
+ Most attributes and nested elements are optional.
+ The compiler requires that the same version of
+ <literal>aspectjrt.jar</literal>
+ be specified on the classpath, and that some sources be
+ be specified
+ (using one or more of
+ <literal>sourceroots</literal>,
+ <literal>injars</literal>,
+ <literal>inpath</literal>,
+ <literal>argfiles</literal>, and/or
+ <literal>srcdir</literal> (with patterns)).
+ When in incremental mode, only
+ <literal>sourceroots</literal> may be specified.
+ </para>
+ <para>Boolean parameters default to <literal>false</literal>
+ unless otherwise stated.
+ </para>
+
+ <!-- . . . . . . . . . . . . . . . . iajc options table -->
+ <!-- table (and caption/title) not supported by fop -->
+ <para>
+ <emphasis role="strong">
+ AjcTask (iajc) options for specifying sources
+ </emphasis>
+ </para>
+ <informaltable>
+
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>Attribute</entry>
+ <entry>Description</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry><para>argfiles, argfilesRef
+ (<xref linkend="antTasks-iajc-paths"/>)
+ </para></entry>
+ <entry><para>
+ An argument file contains a list of arguments read by the compiler.
+ Each line is read into one element of the argument array
+ and may include another argfile by reference.
+ </para></entry>
+ </row>
+ <row>
+ <entry><para>sourceRoots, sourceRootsRef
+ (<xref linkend="antTasks-iajc-paths"/>)
+ </para></entry>
+ <entry><para>
+ Directories containing source files (ending with .java or .aj) to compile.
+ </para></entry>
+ </row>
+ <row>
+ <entry><para>srcdir
+ (<xref linkend="antTasks-iajc-paths"/>)
+ </para></entry>
+ <entry><para>
+ Base directory of sources to compile, assuming there are
+ <xref linkend="antTasks-nested-includes"/>.
+ This approach uses the Ant process
+ for matching .java files and is not compatible with incremental
+ mode. Unless using filters to limit the sources included,
+ use sourceroots instead.
+ </para></entry>
+ </row>
+ <row>
+ <entry><para>injars, injarsRef
+ (<xref linkend="antTasks-iajc-paths"/>)
+ </para></entry>
+ <entry><para>
+ Deprecated - use inpath instead.
+ Read .class files for bytecode weaving
+ from zip files (only).
+ </para></entry>
+ </row>
+ <row>
+ <entry><para>inpath, inpathRef
+ (<xref linkend="antTasks-iajc-paths"/>)
+ </para></entry>
+ <entry><para>
+ Read .class files for bytecode weaving
+ from directories or zip files (like classpath).
+ </para></entry>
+ </row>
+ <row>
+ <entry><para>classpath, classpathRef
+ (<xref linkend="antTasks-iajc-paths"/>)
+ </para></entry>
+ <entry><para>
+ The classpath used by the sources being compiled.
+ When compiling aspects, include the same version of the
+ <literal>aspectjrt.jar</literal>.
+ </para></entry>
+ </row>
+ <row>
+ <entry><para>bootclasspath, bootclasspathRef
+ (<xref linkend="antTasks-iajc-paths"/>)
+ </para></entry>
+ <entry><para>
+ The bootclasspath specifies types to use instead of the
+ invoking VM's when seeking types during compilation.
+ </para></entry>
+ </row>
+ <row>
+ <entry><para>extDirs, extDirsRef
+ (<xref linkend="antTasks-iajc-paths"/>)
+ </para></entry>
+ <entry><para>
+ The extension directories to use instead of those in the
+ invoking VM when seeking types during compilation.
+ </para></entry>
+ </row>
+ <row>
+ <entry><para>aspectPath, aspectPathRef
+ (<xref linkend="antTasks-iajc-paths"/>)
+ </para></entry>
+ <entry><para>
+ Similar to classpath, aspectpath contains read-only,
+ binary aspect libraries that are woven into sources
+ but not included in the output.
+ <literal>aspectpath</literal> accepts jar/zip files
+ (but, unlike classpath, not directories).
+ </para></entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </informaltable>
+
+ <para>
+ <emphasis role="strong">
+ AjcTask (iajc) options for specifying output
+ </emphasis>
+ </para>
+ <informaltable>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>Attribute</entry>
+ <entry>Description</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry><para>destDir
+ </para></entry>
+ <entry><para>
+ The directory in which to place the generated class files.
+ Only one of <literal>destDir</literal> and
+ <literal>outJar</literal> may be set.
+ </para></entry>
+ </row>
+ <row>
+ <entry><para>outJar
+ </para></entry>
+ <entry><para>
+ The zip file in which to place the generated output class files.
+ Only one of <literal>destDir</literal> and
+ <literal>outJar</literal> may be set.
+ </para></entry>
+ </row>
+ <row>
+ <entry><para>copyInjars
+ </para></entry>
+ <entry><para>
+ (Deprecated/ignored; ajc does this.)
+ If true, copy all non-.class files from input jar(s)
+ to the output jar or destination directory after the
+ compile (or incremental compile) completes.
+ In forked mode, this copies only after the process
+ completes, not after incremental compiles.
+ </para></entry>
+ </row>
+ <row>
+ <entry><para>sourceRootCopyFilter
+ </para></entry>
+ <entry><para>
+ When set, copy all files from the sourceroot directories to the output jar
+ or destination directory except those specified in the filter pattern.
+ The pattern should be compatible with an Ant fileset excludes filter;
+ when using this, most developers pass
+ <literal>**/CVS/*,**/*.java</literal> to exclude any CVS directories
+ or source files.
+ See <literal>inpathDirCopyFilter</literal>.
+ Requires <literal>destDir</literal> or <literal>outJar</literal>.
+ </para></entry>
+ </row>
+ <row>
+ <entry><para>inpathDirCopyFilter
+ </para></entry>
+ <entry>
+ <para> When set, copy all files from the inpath directories
+ to the output jar or destination directory except those
+ specified in the filter pattern. The pattern should be
+ compatible with an Ant fileset excludes filter; when
+ using this, most developers pass
+ <literal>**/CVS/*,**/*.java,**/*.class</literal> to
+ exclude any CVS directories, source files, or unwoven
+ .class files. (If <literal>**/*.class</literal> is not
+ specified, it will be prepended to the filter.) See
+ <literal>sourceRootCopyFilter</literal>. (Note that ajc
+ itself copies all resources from input jar/zip files on
+ the inpath.) Requires <literal>destDir</literal> or
+ <literal>outJar</literal>.</para>
+ </entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </informaltable>
+
+ <para>
+ <emphasis role="strong">
+ AjcTask (iajc) options for specifying compiler behavior
+ </emphasis>
+ </para>
+ <informaltable>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>Attribute</entry>
+ <entry>Description</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry><para>fork
+ </para></entry>
+ <entry><para>
+ Run process in another VM.
+ This gets the forking classpath either explicitly
+ from a <literal>forkclasspath</literal> entry
+ or by searching the task or system/Ant classpath for the
+ first readable file with a name of the form
+ <literal>aspectj{-}tools{.*}.jar</literal>.
+ When forking you can specify the amount of memory used
+ with <literal>maxmem</literal>.
+ Fork cannot be used in incremental mode,
+ unless using a tag file.
+ </para></entry>
+ </row>
+ <row>
+ <entry><para>forkclasspath, forkclasspathRef
+ (<xref linkend="antTasks-iajc-paths"/>)
+ </para></entry>
+ <entry><para>
+ Specify the classpath to use for the compiler when forking.
+ </para></entry>
+ </row>
+ <row>
+ <entry><para>maxmem
+ </para></entry>
+ <entry><para>
+ The maximum memory to use for the new VM when fork is true.
+ Values should have the same form as accepted by the VM, e.g., "128m".
+ </para></entry>
+ </row>
+ <row>
+ <entry><para>incremental
+ </para></entry>
+ <entry><para>
+ incremental mode: Build once, then recompile only required source
+ files when user provides input.
+ Requires that source files be specified only using
+ <literal>sourceroots</literal>.
+ Incompatible with forking.
+ </para></entry>
+ </row>
+ <row>
+ <entry><para>tagfile
+ </para></entry>
+ <entry><para>
+ incremental mode: Build once, then recompile only required source
+ files when the tag file is updated, finally exiting when tag file
+ is deleted.
+ Requires that source files be specified only using
+ <literal>sourceroots</literal>.
+ </para></entry>
+ </row>
+ <row>
+ <entry><para>X
+ </para></entry>
+ <entry><para>
+ Set experimental option(s), using comma-separated list of accepted options
+ Options should not contain the leading X.
+ Some commonly-used experimental options have their
+ own entries. The other permitted ones (currently) are
+ serializableAspects, incrementalFile, lazyTjp,
+ reweavable, notReweavable, noInline,
+ terminateAfterCompilation,
+ ajruntimelevel:1.2, and ajruntimelevel:1.5.
+ Of these, some were deprecated in AspectJ 5
+ (reweavable, terminateAfterCompilation, etc.).
+ </para></entry>
+ </row>
+ <row>
+ <entry><para>XterminateAfterCompilation
+ </para></entry>
+ <entry><para>
+ Terminates before the weaving process, dumping out unfinished class files.
+ </para></entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </informaltable>
+
+ <para>
+ <emphasis role="strong">
+ AjcTask (iajc) options for specifying compiler side-effects and messages
+ </emphasis>
+ </para>
+ <informaltable>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>Attribute</entry>
+ <entry>Description</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry><para>emacssym
+ </para></entry>
+ <entry><para>
+ If true, emit <literal>.ajesym</literal> symbol files for Emacs support.
+ </para></entry>
+ </row>
+ <row>
+ <entry><para>crossref
+ </para></entry>
+ <entry><para>
+ If true, emit <literal>.ajsym</literal> file into the output directory.
+ </para></entry>
+ </row>
+ <row>
+ <entry><para>verbose
+ </para></entry>
+ <entry><para>
+ If true, log compiler verbose messages as Project.INFO during the compile.
+ </para></entry>
+ </row>
+ <row>
+ <entry><para>logCommand
+ </para></entry>
+ <entry><para>
+ If true, log compiler command elements as Project.INFO
+ (rather than the usual Project.VERBOSE level).
+ </para></entry>
+ </row>
+ <row>
+ <entry><para>Xlistfileargs
+ </para></entry>
+ <entry><para>
+ If true, emit list of file arguments during
+ the compile (but behaves now like verbose).
+ </para></entry>
+ </row>
+ <row>
+ <entry><para>version
+ </para></entry>
+ <entry><para>
+ If true, do not compile - just print AspectJ version.
+ </para></entry>
+ </row>
+ <row>
+ <entry><para>help
+ </para></entry>
+ <entry><para>
+ If true, just print help for the command-line compiler.
+ </para></entry>
+ </row>
+ <row>
+ <entry><para>Xlintwarnings
+ </para></entry>
+ <entry><para>
+ Same as <literal>xlint:warning</literal>:
+ if true, set default level of all language
+ usage messages to warning.
+ </para></entry>
+ </row>
+ <row>
+ <entry><para>Xlint
+ </para></entry>
+ <entry><para>
+ Specify default level of all language usage messages to one of
+ [<literal>error warning ignore</literal>].
+ </para></entry>
+ </row>
+ <row>
+ <entry><para>XlintFile
+ </para></entry>
+ <entry><para>
+ Specify property file containing <literal>name:level</literal> associations
+ setting level for language messages emitted during compilation.
+ Any levels set override the default associations in
+ <literal>org/aspectj/weaver/XLintDefault.properties</literal>.
+ </para></entry>
+ </row>
+ <row>
+ <entry><para>failonerror
+ </para></entry>
+ <entry><para>
+ If true, throw BuildException to halt build if there
+ are any compiler errors.
+ If false, continue notwithstanding compile errors.
+ Defaults to <literal>true</literal>.
+ </para></entry>
+ </row>
+ <row>
+ <entry><para>messageHolderClass
+ </para></entry>
+ <entry><para>
+ Specify a class to use as the message holder for the compile process.
+ The entry must be a fully-qualified name of a class resolveable from
+ the task classpath complying with the
+ <literal>org.aspectj.bridge.IMessageHolder</literal> interface
+ and having a public no-argument constructor.
+ </para></entry>
+ </row>
+ <row>
+ <entry><para>showWeaveInfo
+ </para></entry>
+ <entry><para>
+ If true, emit weaver messages.
+ Defaults to <literal>false</literal>.
+ </para></entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </informaltable>
+
+
+ <para>
+ <emphasis role="strong">
+ AjcTask (iajc) options for specifying Eclipse compiler options
+ </emphasis>
+ </para>
+ <informaltable>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>Attribute</entry>
+ <entry>Description</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry><para>nowarn
+ </para></entry>
+ <entry><para>
+ If true, same as <literal>warn:none</literal>.
+ </para></entry>
+ </row>
+ <row>
+ <entry><para>deprecation
+ </para></entry>
+ <entry><para>
+ If true, same as <literal>warn:deprecation</literal>
+ </para></entry>
+ </row>
+ <row>
+ <entry><para>warn
+ </para></entry>
+ <entry><para>
+ One or more comma-separated warning specifications from
+ [<literal>constructorName packageDefaultMethod deprecation,
+ maskedCatchBlocks unusedLocals unusedArguments,
+ unusedImports syntheticAccess assertIdentifier</literal>].
+ </para></entry>
+ </row>
+ <row>
+ <entry><para>debug
+ </para></entry>
+ <entry><para>
+ If true, same as <literal>debug:lines,vars,source</literal>
+ </para></entry>
+ </row>
+ <row>
+ <entry><para>debugLevel
+ </para></entry>
+ <entry><para>
+ One or more comma-separated debug specifications from
+ [<literal>lines vars source</literal>].
+ </para></entry>
+ </row>
+ <row>
+ <entry><para>PreserveAllLocals
+ </para></entry>
+ <entry><para>
+ If true, code gen preserves all local variables (for debug purposes).
+ </para></entry>
+ </row>
+ <row>
+ <entry><para>noimporterror
+ </para></entry>
+ <entry><para>
+ If true, emit no errors for unresolved imports.
+ </para></entry>
+ </row>
+ <row>
+ <entry><para>referenceinfo
+ </para></entry>
+ <entry><para>
+ If true, compute reference info.
+ </para></entry>
+ </row>
+ <row>
+ <entry><para>log
+ </para></entry>
+ <entry><para>
+ File to log compiler messages to.
+ </para></entry>
+ </row>
+ <row>
+ <entry><para>encoding
+ </para></entry>
+ <entry><para>Default source encoding format
+ (per-file encoding not supported in Ant tasks).
+ </para></entry>
+ </row>
+ <row>
+ <entry><para>proceedOnError
+ </para></entry>
+ <entry><para>
+ If true, keep compiling after errors encountered,
+ dumping class files with problem methods.
+ </para></entry>
+ </row>
+ <row>
+ <entry><para>progress
+ </para></entry>
+ <entry><para>
+ If true, emit progress (requires log).
+ </para></entry>
+ </row>
+ <row>
+ <entry><para>time
+ </para></entry>
+ <entry><para>
+ If true, display speed information.
+ </para></entry>
+ </row>
+ <row>
+ <entry><para>target
+ </para></entry>
+ <entry><para>
+ Specify target class file format as one of
+ [<literal>1.1 1.2</literal>].
+ Defaults to 1.1 class file.
+ </para></entry>
+ </row>
+ <row>
+ <entry><para>source
+ </para></entry>
+ <entry><para>
+ Set source compliance level to one of
+ [<literal>1.3 1.4 1.5</literal>]
+ (default is 1.4).
+ 1.3 implies -source 1.3 and -target 1.1.
+ 1.4 implies -source 1.4 and -target 1.2.
+ 1.5 implies -source 1.5 and -target 1.5.
+ </para></entry>
+ </row>
+ <row>
+ <entry><para>source
+ </para></entry>
+ <entry><para>
+ Set source assertion mode to one of
+ [<literal>1.3 1.4</literal>].
+ Default depends on compliance mode.
+ </para></entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </informaltable>
+
+ <!-- . . . . . . . . . . . . . . . . iajc options table -->
+ </sect2>
+
+ <sect2 id="antTasks-nested-includes" xreflabel="nested matches">
+ <title>AjcTask matching parameters specified as nested elements</title>
+ <para>
+ This task forms an implicit FileSet and supports all attributes of
+ <literal>&lt;fileset&gt;</literal> (dir becomes srcdir) as well as
+ the nested
+ <literal>&lt;include&gt;</literal>,
+ <literal>&lt;exclude&gt;</literal>, and
+ <literal>&lt;patternset&gt;</literal> elements.
+ These can be used to specify source files.
+ However, it is better to use <literal>sourceroots</literal>
+ to specify source directories unless using filters to exclude
+ some files from compilation.
+ </para>
+ </sect2>
+
+ <sect2 id="antTasks-iajc-paths" xreflabel="Path">
+ <title>AjcTask Path-like Structures</title>
+ <para>
+ Some parameters are path-like structures containing one or more
+ elements; these are
+ <literal>sourceroots</literal>,
+ <literal>argfiles</literal>,
+ <literal>injars</literal>,
+ <literal>inpath</literal>,
+ <literal>classpath</literal>,
+ <literal>bootclasspath</literal>,
+ <literal>forkclasspath</literal>, and
+ <literal>aspectpath</literal>.
+ In all cases, these may be specified as nested elements, something
+ like this:
+ </para>
+ <programlisting><![CDATA[
+<iajc {attributes..} />
+ <{name}>
+ <pathelement path="{first-location}"/>
+ <pathelement path="{second-location}"/>
+ ...
+ <{name}>
+ ...
+</iajc>
+]]></programlisting>
+ <para>
+ As with other Path-like structures, they may be defined elsewhere
+ and specified using the refid attribute:
+ </para>
+ <programlisting><![CDATA[
+<path id="aspect.path">
+ <pathelement path="${home}/lib/persist.jar"/>
+ <pathelement path="${home}/lib/trace.jar"/>
+</path>
+...
+<iajc {attributes..} />
+ <aspectpath refid="aspect.path"/>
+ ...
+</iajc>
+]]></programlisting>
+ <para>
+ The task also supports an attribute <literal>{name}ref</literal>
+ for each such parameter. E.g., for <literal>aspectpath</literal>:
+ </para>
+ <programlisting><![CDATA[
+<iajc {attributes..} aspectpathref="aspect.path"/>
+]]></programlisting>
+ </sect2>
+
+ <sect2 id="antTasks-iajc-sample" xreflabel="Sample of iajc task">
+ <title>Sample of iajc task</title>
+ <para>
+ A minimal build script defines the task and runs it, specifying the sources:
+ </para>
+ <programlisting><![CDATA[
+<project name="simple-example" default="compile" >
+ <taskdef
+ resource="org/aspectj/tools/ant/taskdefs/aspectjTaskdefs.properties">
+ <classpath>
+ <pathelement location="${home.dir}/tools/aspectj/lib/aspectjtools.jar"/>
+ </classpath>
+ </taskdef>
+
+ <target name="compile" >
+ <iajc sourceroots="${home.dir}/ec/project/src"
+ classpath="${home.dir}/tools/aspectj/lib/aspectjrt.jar"/>
+ </target>
+</project>
+]]></programlisting>
+ <para>
+ Below is script with most everything in it. The compile process...
+ </para>
+ <orderedlist>
+ <listitem>
+ <para>Runs in incremental mode, recompiling when the user hits return;
+ </para>
+ </listitem>
+ <listitem>
+ <para>Reads all the source files from two directories;
+ </para>
+ </listitem>
+ <listitem>
+ <para>Reads binary .class files from input jar and directory;
+ </para>
+ </listitem>
+ <listitem>
+ <para>Uses a binary aspect library for persistence;
+ </para>
+ </listitem>
+ <listitem>
+ <para>Outputs to an application jar; and
+ </para>
+ </listitem>
+ <listitem>
+ <para>Copies resources from the source directories and binary input
+ jar and directories to the application jar. </para>
+ </listitem>
+ </orderedlist>
+ <para>
+ When this target is built, the compiler will build once and then
+ wait for input from the user.
+ Messages are printed as usual.
+ When the user has quit, then this runs the application.
+ </para>
+ <!-- if program changed, test in docs/test/antScriptTest -->
+
+ <programlisting><![CDATA[
+<target name="build-test" >
+ <iajc outjar="${home.dir}/output/application.jar"
+ sourceRootCopyFilter="**/CVS/*,**/*.java"
+ inpathDirCopyFilter="**/CVS/*,**/*.java,**/*.class"
+ incremental="true" >
+ <sourceroots>
+ <pathelement location="${home.dir}/ec/project/src"/>
+ <pathelement location="${home.dir}/ec/project/testsrc"/>
+ </sourceroots>
+ <inpath>
+ <pathelement location="${home.dir}/build/module.jar"/>
+ <pathelement location="${home.dir}/build/binary-input"/>
+ </inpath>
+ <aspectpath>
+ <pathelement location="${home.dir}/ec/int/persist.jar"/>
+ </aspectpath>
+ <classpath>
+ <pathelement location="${home.dir}/tools/aspectj/lib/aspectjrt.jar"/>
+ </classpath>
+ </iajc>
+
+ <java classname="org.smart.app.Main">
+ <classpath>
+ <pathelement location="${home.dir}/tools/aspectj/lib/aspectjrt.jar"/>
+ <pathelement location="${home.dir}/ec/int/persist.jar"/>
+ <pathelement location="${home.dir}/output/application.jar"/>
+ </classpath>
+ </java>
+</target>
+]]></programlisting>
+ <para>
+ For an example of a build script,
+ see <ulink url="../examples/build.xml">
+ ../examples/build.xml</ulink>.
+ </para>
+ </sect2>
+
+ <sect2 id="antTasks-iajc-uptodate" xreflabel="Avoiding clean compiles">
+ <title>Avoiding clean compiles</title>
+ <para>
+ Unlike javac, the ajc compiler always processes all input because
+ new aspects can apply to updated classes and vice-versa.
+ However, in the case where no files have been updated, there
+ is no reason to recompile sources. One way to implement that
+ is with an explicit dependency check using the uptodate task:
+ </para>
+ <programlisting><![CDATA[
+<target name="check.aspects.jar">
+ <uptodate property="build.unnecessary"
+ targetfile="${aspects.module-jar}" >
+ <srcfiles dir="${src1}" includes="**/*.aj"/>
+ <srcfiles dir="${src2}/" includes="**/*.aj"/>
+ </uptodate>
+</target>
+
+<target name="compile.aspects" depends="prepare,check.aspects.jar"
+ unless="build.unnecessary">
+ <iajc ...
+]]></programlisting>
+ <para>
+ When using this technique, be careful to verify that binary
+ input jars are themselves up-to-date after they would have been
+ modified by any build commands.
+ </para>
+ </sect2>
+
+ <sect2 id="programmatically-handling-compiler-messages" xreflabel="programmatically-handling-compiler-messages">
+ <title>Programmatically handling compiler messages</title>
+ <para>
+ Users may specify a message holder to which the compiler will pass
+ all messages as they are generated. This will override all of the
+ normal message printing, but does not prevent the task from failing
+ if exceptions were thrown or if failonerror is true and the compiler
+ detected errors in the sources.
+ </para>
+ <para>
+ Handling messages programmatically could be useful when using the
+ compiler to verify code. If aspects consist of declare [error|warning],
+ then the compiler can act to detect invariants in the code being
+ processed. For code to compare expected and actual messages, see the
+ AspectJ testing module (which is not included in the binary
+ distribution).
+ </para>
+ </sect2>
+ </sect1>
+
+ <!-- . . . . . . . . . . . . . . . . . . . . . . . . . . . adapter -->
+ <sect1 id="antTasks-adapter" xreflabel="Ajc11CompilerAdapter (javac)">
+ <title>Ajc11CompilerAdapter (javac)</title>
+ <para>
+ This CompilerAdapter can be used in javac task calls by setting the
+ <literal>build.compiler</literal> property.
+ This enables users to to easily switch between the Javac and AspectJ
+ compilers. However, because there are differences in source file
+ handling between the Javac task and the ajc compiler, not all
+ Javac task invocations can be turned over to iajc. However, ajc can
+ compile anything that Javac can, so it should be possible for any
+ given compile job to restate the Javac task in a way that can be
+ handled by iajc/ajc.
+ </para>
+ <sect2 id="antTasks-adapter-sample" xreflabel="Sample of compiler adapter">
+ <title>Sample of compiler adapter</title>
+ <para>
+ To build using the adapter, put the
+ <literal>aspectjtools.jar</literal>
+ on the system/ant classpath (e.g., in
+ <literal>${ANT_HOME}/lib</literal>)
+ and define the
+ <literal>build.compiler</literal>
+ property as the fully-qualified name of the class,
+ <literal>org.aspectj.tools.ant.taskdefs.Ajc11CompilerAdapter</literal>.
+ </para>
+ <para>
+ The AspectJ compiler should run for any compile using the Javac task
+ (for options, see the Ant documentation for the Javac task).
+ For example, the call below passes all out-of-date source files in the
+ <literal>src/org/aspectj</literal> subdirectories to the
+ <literal>ajc</literal> command along with the destination directory:
+ </para>
+ <programlisting><![CDATA[
+-- command:
+
+ cp aspectj1.1/lib/aspectjtools.jar ant/lib
+ ant/bin/ant -Dbuild.compiler=org.aspectj.tools.ant.taskdefs.Ajc11CompilerAdapter ...
+
+-- task invocation in the build script:
+
+ <javac srcdir="src" includes="org/aspectj/**/*.java" destdir="dest" />
+]]></programlisting>
+
+ <para>
+ To pass ajc-specific arguments, use a compilerarg entry.
+ </para>
+ <programlisting><![CDATA[
+-- command
+
+ Ant -Dbuild.compiler=org.aspectj.tools.ant.taskdefs.Ajc11CompilerAdapter
+
+-- build script
+
+ <property name="ajc"
+ value="org.aspectj.tools.ant.taskdefs.Ajc11CompilerAdapter"/>
+
+ <javac srcdir="src" includes="org/aspectj/**/*.java" destdir="dest" >
+ <compilerarg compiler="${ajc}" line="-argfile src/args.lst"/>
+ <javac/>
+]]></programlisting>
+ <para>The Javac task does special handling of source files that
+ can interfere with ajc. It removes any files that are not out-of-date
+ with respect to the corresponding .class files. But ajc requires all
+ source files, since an aspect may affect a source file that is not out
+ of date. (For a solution to this, see the <literal>build.compiler.clean</literal>
+ property described below.) Conversely, developers sometimes specify a source directory
+ to javac, and let it search for files for types it cannot find.
+ AspectJ will not do this kind of searching under the source directory
+ (since the programmer needs to control which sources are affected).
+ (Don't confuse the source directory used by Javac with the source root
+ used by ajc; if you specify a source root to ajc, it will compile
+ any source file under that source root (without exception or filtering).)
+ To replace source dir searching in Javac, use an Ant filter to specify
+ the source files.
+ </para>
+ </sect2>
+
+ <sect2 id="antTasks-adapter-options" xreflabel="Compiler adapter compilerarg options">
+ <title>Compiler adapter compilerarg options</title>
+ <para>
+ The adapter supports any ajc command-line option passed using compilerarg,
+ as well as the following options available only in AjcTask.
+ Find more details on the following options in <xref linkend="antTasks-iajc"/>.
+ </para>
+ <itemizedlist>
+ <listitem><para>
+ <literal>-Xmaxmem</literal>:
+ set maximum memory for forking (also settable in javac).
+ </para></listitem>
+ <listitem><para>
+ <literal>-Xlistfileargs</literal>:
+ list file arguments (also settable in javac).
+ </para></listitem>
+ <listitem><para>
+ <literal>-Xfailonerror</literal>:
+ throw BuildException on compiler error (also settable in javac).
+ </para></listitem>
+ <listitem><para>
+ <literal>-Xmessageholderclass</literal>:
+ specify fully-qualified name of class to use as the message holder.
+ </para></listitem>
+ <listitem><para>
+ <literal>-Xcopyinjars</literal>:
+ copy resources from any input jars to output
+ (default behavior since 1.1.1)
+ </para></listitem>
+ <listitem><para>
+ <literal>-Xsourcerootcopyfilter {filter}</literal>:
+ copy resources from source directories to output (minus files specified in filter)
+ </para></listitem>
+ <listitem><para>
+ <literal>-Xtagfile {file}</literal>:
+ use file to control incremental compilation
+ </para></listitem>
+ <listitem><para>
+ <literal>-Xsrcdir {dir}</literal>:
+ add to list of ajc source roots (all source files will be included).
+ </para></listitem>
+ </itemizedlist>
+ <para>
+ Special considerations when using Javac and compilerarg:
+ </para>
+ <itemizedlist>
+ <listitem><para>
+ The names above may differ slightly from what you might expect
+ from AjcTask; use these forms when specifying compilerarg.
+ </para></listitem>
+ </itemizedlist>
+ <itemizedlist>
+ <listitem><para>
+ By default the adapter will mimic the Javac task's copying of resource
+ files by specifying
+ <literal>"**/CVS/*,**/*.java,**/*.aj"</literal>
+ for the sourceroot copy filter.
+ To change this behavior, supply your own value
+ (e.g., <literal>"**/*"</literal> to copy nothing).
+ </para></listitem>
+ </itemizedlist>
+ <itemizedlist>
+ <listitem><para>
+ Warning - define the system property
+ <literal>build.compiler.clean</literal> to compile all files,
+ when available.
+ Javac prunes the source file list of "up-to-date" source files
+ based on the timestamps of corresponding .class files,
+ and will not compile if no sources are out of date.
+ This is wrong for ajc which requires all the files for each compile
+ and which may refer indirectly to sources using argument files.
+ </para>
+ <para>
+ To work around this, set the global property
+ <literal>build.compiler.clean</literal>.
+ This tells the compiler adapter to delete all .class files
+ in the destination directory and re-execute the javac
+ task so javac can recalculate the list of source files. e.g.,
+ </para>
+ <programlisting><![CDATA[
+Ant -Dbuild.compiler=org.aspectj.tools.ant.taskdefs.Ajc11CompilerAdapter
+ -Dbuild.compiler.clean=anything ...
+]]></programlisting>
+ <para>
+ Caveats to consider when using this global
+ <literal>build.compiler.clean</literal> property:
+ </para>
+ <orderedlist>
+ <listitem><para>
+ If javac believes there are no out-of-date source files,
+ then the adapter is never called and cannot clean up,
+ and the "compile" will appear to complete successfully
+ though it did nothing.
+ </para></listitem>
+ <listitem><para>
+ Cleaning will makes stepwise build processes fail if
+ they depend on the results of the prior compilation being
+ in the same directory, since cleaning deletes all .class files.
+ </para></listitem>
+ <listitem><para>
+ This clean process only permits one compile process at a
+ time for each destination directory because it tracks
+ recursion by writing a tag file to the destination directory.
+ </para></listitem>
+ <listitem><para>
+ When running incrementally, the clean happens only before
+ the initial compile.
+ </para></listitem>
+ </orderedlist>
+ </listitem>
+ </itemizedlist>
+ </sect2>
+ </sect1>
+
+ <!-- . . . . . . . . . . . . . . . . . . . . . . . . . . . Ajc10 -->
+ <sect1 id="antTasks-ajc" xreflabel="Ajc10 (ajc)">
+ <title>Ajc10 (ajc)</title>
+ <para>
+ This task handles the same arguments as those used by the AspectJ 1.0 task.
+ This should permit those with existing build scripts using the Ajc Ant
+ task to continue using the same scripts when compiling with 1.1.
+ This will list any use of options no longer supported in 1.1
+ (e.g., <literal>lenient, strict, workingdir, preprocess, usejavac</literal>,...),
+ and does not provide access to the new features of AspectJ 1.1.
+ (Developers using AspectJ 1.1 only should upgrade their scripts
+ to use AjcTask instead. This will not work for AspectJ 1.2 or later.)
+ </para>
+
+ <sect2 id="antTasks-ajc-options" xreflabel="Ajc10 (ajc) Options">
+ <title>Ajc10 (ajc) Options</title>
+ <para>
+ </para>
+ <para>
+ Most attributes and nested elements are optional.
+ The compiler requires that the same version of
+ <literal>aspectjrt.jar</literal>
+ be specified on the classpath, and that some sources be
+ be specified
+ (using one or more of
+ <literal>argfiles</literal> and
+ <literal>srcdir</literal> (with patterns)).
+ </para>
+ <para>Boolean parameters default to <literal>false</literal>
+ unless otherwise stated.
+ </para>
+
+ <!-- . . . . . . . . . . . . . . . . ajc options table -->
+ <table>
+ <title>AjcTask (ajc) options for specifying sources</title>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>Attribute</entry>
+ <entry>Description</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry><para>srcdir
+ </para></entry>
+ <entry><para>
+ The base directory of the java files.
+ See
+ </para></entry>
+ </row>
+ <row>
+ <entry><para>destdir
+ </para></entry>
+ <entry><para>
+ The target directory for the output .class files
+ </para></entry>
+ </row>
+ <row>
+ <entry><para>includes
+ </para></entry>
+ <entry><para>
+ Comma-separated list of patterns of files that must be included.
+ No files are included when omitted.
+ </para></entry>
+ </row>
+ <row>
+ <entry><para>includesfile
+ </para></entry>
+ <entry><para>
+ The path to a file containing include patterns.
+ </para></entry>
+ </row>
+ <row>
+ <entry><para>excludes
+ </para></entry>
+ <entry><para>
+ Comma-separated list of patterns of files that must be excluded.
+ No files (except default excludes) are excluded when omitted.
+ </para></entry>
+ </row>
+ <row>
+ <entry><para>excludesfile
+ </para></entry>
+ <entry><para>
+ The path to a file containing exclude patterns.
+ </para></entry>
+ </row>
+ <row>
+ <entry><para>defaultexcludes
+ </para></entry>
+ <entry><para>
+ If true, then default excludes are used.
+ Default excludes are used when omitted
+ (i.e., defaults to <literal>true</literal>).
+ </para></entry>
+ </row>
+ <row>
+ <entry><para>classpath, classpathref
+ </para></entry>
+ <entry><para>
+ The classpath to use,
+ optionally given as a reference to a classpath Path
+ element defined elsewhere.
+ </para></entry>
+ </row>
+ <row>
+ <entry><para>bootclasspath, bootclasspathref
+ </para></entry>
+ <entry><para>
+ The bootclasspath to use,
+ optionally given as a reference to a bootclasspath Path
+ element defined elsewhere.
+ </para></entry>
+ </row>
+ <row>
+ <entry><para>extdirs
+ </para></entry>
+ <entry><para>
+ Paths to directories containting installed extensions.
+ </para></entry>
+ </row>
+ <row>
+ <entry><para>debug
+ </para></entry>
+ <entry><para>
+ If true, emit debug info in the .class files.
+ </para></entry>
+ </row>
+ <row>
+ <entry><para>deprecation
+ </para></entry>
+ <entry><para>
+ If true, emit messages about use of deprecated API.
+ </para></entry>
+ </row>
+ <row>
+ <entry><para>verbose
+ </para></entry>
+ <entry><para>
+ Emit compiler status messages during the compile.
+ </para></entry>
+ </row>
+ <row>
+ <entry><para>version
+ </para></entry>
+ <entry><para>
+ Emit version information and quit.
+ </para></entry>
+ </row>
+ <row>
+ <entry><para>failonerror
+ </para></entry>
+ <entry><para>
+ If true, throw BuildException to halt build if there
+ are any compiler errors.
+ If false, continue notwithstanding compile errors.
+ Defaults to <literal>true</literal>.
+ </para></entry>
+ </row>
+ <row>
+ <entry><para>source
+ </para></entry>
+ <entry><para>
+ Value of -source option - ignored unless <literal>1.4</literal>.
+ </para></entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </table>
+
+ <table>
+ <title>Parameters ignored by the old ajc taskdef,
+ but now supported or buggy</title>
+ <tgroup cols="3">
+ <thead>
+ <row>
+ <entry>Attribute</entry>
+ <entry>Description</entry>
+ <entry>Supported?</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry><para>encoding
+ </para></entry>
+ <entry><para>Default encoding of source files.
+ </para></entry>
+ <entry><para>yes
+ </para></entry>
+ </row>
+ <row>
+ <entry><para>optimize
+ </para></entry>
+ <entry><para>
+ Whether source should be compiled with optimization.
+ </para></entry>
+ <entry><para>yes?
+ </para></entry>
+ </row>
+ <row>
+ <entry><para>target
+ </para></entry>
+ <entry><para>
+ Generate class files for specific VM version, one of
+ [<literal>1.1 1.2</literal>].
+ </para></entry>
+ <entry><para>yes
+ </para></entry>
+ </row>
+ <row>
+ <entry><para>depend
+ </para></entry>
+ <entry><para>
+ Enables dependency-tracking.
+ </para></entry>
+ <entry><para>no
+ </para></entry>
+ </row>
+ <row>
+ <entry><para>includeAntRuntime
+ </para></entry>
+ <entry><para>
+ Whether to include the Ant run-time libraries.
+ </para></entry>
+ <entry><para>no
+ </para></entry>
+ </row>
+ <row>
+ <entry><para>includeJavaRuntime
+ </para></entry>
+ <entry><para>
+ Whether to include the run-time libraries from the executing VM.
+ </para></entry>
+ <entry><para>no
+ </para></entry>
+ </row>
+ <row>
+ <entry><para>threads
+ </para></entry>
+ <entry><para>Multi-threaded compilation
+ </para></entry>
+ <entry><para>no
+ </para></entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </table>
+
+ <para>
+ The following table shows that many of the unique parameters in
+ AspectJ 1.0 are no longer supported.
+ </para>
+ <table>
+ <title>Parameters unique to ajc</title>
+ <tgroup cols="3">
+ <thead>
+ <row>
+ <entry>Attribute</entry>
+ <entry>Description</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry><para>X
+ </para></entry>
+ <entry><para>
+ deprecated X options include
+ reweavable (on by default)
+ reweavable:compress (compressed by default)
+ </para></entry>
+ </row>
+ <row>
+ <entry><para>emacssym
+ </para></entry>
+ <entry><para>
+ Generate symbols for Emacs IDE support.
+ </para></entry>
+ </row>
+ <row>
+ <entry><para>argfiles
+ </para></entry>
+ <entry><para>
+ A comma-delimited list of argfiles that contain a line-delimited
+ list of source file paths (absolute or relative to the argfile).
+ </para></entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </table>
+
+
+ <sect3>
+ <title>argfiles - argument list files</title>
+ <para>
+ An argument file is a file (usually <literal>{file}.lst</literal>)
+ containing a list of source file paths
+ (absolute or relative to the argfile).
+ You can use it to specify all source files to be compiled,
+ which ajc requires to avoid searching every possible source file
+ in the source path when building aspects.
+ If you specify an argfile to the ajc task, it will not include all
+ files in any specified source directory (which is the default
+ behavior for the Javac task when no includes are specified).
+ Conversely, if you specify excludes, they will be removed from
+ the list of files compiled even if they were specified
+ in an argument file.
+ </para>
+ <para>
+ The compiler also accepts arguments that are not source files,
+ but the IDE support for such files varies, and Javac does not
+ support them. Be sure to include exactly one argument on each line.
+ </para>
+ </sect3>
+ </sect2>
+
+ <sect2 id="antTasks-ajc-nested">
+ <title>Ajc10 parameters specified as nested elements</title>
+ <para>
+ This task forms an implicit FileSet and supports all attributes of
+ <literal>&lt;fileset&gt;</literal> (dir becomes srcdir) as well as
+ the nested
+ <literal>&lt;include&gt;</literal>,
+ <literal>&lt;exclude&gt;</literal>, and
+ <literal>&lt;patternset&gt;</literal> elements.
+ These can be used to specify source files.
+ </para>
+ <para>
+ <literal>ajc</literal>'s
+ <literal>srcdir</literal>,
+ <literal>classpath</literal>,
+ <literal>bootclasspath</literal>,
+ <literal>extdirs</literal>, and
+ <literal>jvmarg</literal>
+ attributes are path-like structures and can also be set via nested
+ <literal>&lt;src&gt;</literal>,
+ <literal>&lt;classpath&gt;</literal>,
+ <literal>&lt;bootclasspath&gt;</literal>,
+ <literal>&lt;extdirs&gt;</literal>, and
+ <literal>&lt;jvmargs&gt;</literal> elements, respectively.
+ </para>
+
+ </sect2>
+
+ <sect2 id="antTasks-ajc-sample" xreflabel="Sample of ajc task">
+ <title>Sample of ajc task</title>
+ <para>
+ Following is a declaration for the ajc task and a sample invocation
+ that uses the ajc compiler to compile the files listed in
+ <literal>default.lst</literal> into the dest dir:
+ </para>
+ <programlisting><![CDATA[
+<project name="example" default="compile" >
+ <taskdef name="ajc"
+ classname="org.aspectj.tools.ant.taskdefs.Ajc10" >
+ <!-- declare classes needed to run the tasks and tools -->
+ <classpath>
+ <pathelement location="${home.dir}/tools/aspectj/lib/aspectjtools.jar"/>
+ </classpath>
+ </taskdef>
+
+ <target name="compile" >
+ <mkdir dir="dest" />
+ <ajc destdir="dest" argfiles="default.lst" >
+ <!-- declare classes needed to compile the target files -->
+ <classpath>
+ <pathelement location="${home.dir}/tools/aspectj/lib/aspectjrt.jar"/>
+ </classpath>
+ </ajc>
+ </target>
+</project>
+]]></programlisting>
+ <para>
+ This build script snippet
+ </para>
+ <programlisting><![CDATA[
+<ajc srcdir="${src}"
+ destdir="${build}"
+ argfiles="demo.lst"
+/>
+]]></programlisting>
+ <para>
+ compiles all .java files specified in the demo.lst and stores the .class files in the ${build} directory. Unlike the Javac task, the includes attribute is empty by default, so only those files specified in demo.lst are included.
+ </para>
+ <para>
+ This next example
+ </para>
+ <programlisting><![CDATA[
+<ajc srcdir="${src}"
+ destdir="${build}"
+ includes="spacewar/*,coordination/*"
+ excludes="spacewar/Debug.java"
+/>
+]]></programlisting>
+ <para>
+ compiles .java files under the <literal>${src}</literal> directory in the
+ spacewar and coordination packages, and stores the .class files in the
+ <literal>${build}</literal> directory.
+ All source files under spacewar/ and coordination/ are used, except Debug.java.
+ </para>
+ <para>
+ See <ulink url="../examples/build.xml">../examples/build.xml</ulink>
+ for an example build script.
+ </para>
+ </sect2>
+
+ </sect1>
+
+ <!-- . . . . . . . . . . . . . . . . . . . . . . . . . . . problems -->
+ <sect1 id="antTasks-problems">
+ <title>Isolating problems running the Ant tasks</title>
+
+ <para>
+ If you have problems with the tasks not solved by the documentation,
+ please try to see if you have the same problems when running ajc
+ directly on the command line.
+ </para>
+ <itemizedlist>
+ <listitem><para>
+ If the problem occurs on the command line also, then the problem
+ is not in the task.
+ (It may be in the tools; please send bug reports.)
+ </para></listitem>
+ <listitem><para>
+ If the problem does not occur on the command line, then it may
+ lie in the parameters you are supplying in Ant or in the task's
+ handling of them.
+ </para></listitem>
+ <listitem><para>
+ If the build script looks correct and the problem only occurs when
+ building from Ant, then please send a report
+ (including your build file, if possible).
+ </para></listitem>
+ </itemizedlist>
+
+ <sect2 id="antTasks-knownProblems">
+ <title>Known issues with the Ant tasks</title>
+ <para>
+ For the most up-to-date information on known problems,
+ see the
+ <ulink url="https://bugs.eclipse.org/bugs">bug database</ulink>
+ for unresolved
+ <ulink url="https://bugs.eclipse.org/bugs/buglist.cgi?&amp;product=AspectJ&amp;component=Compiler&amp;bug_status=NEW&amp;bug_status=ASSIGNED&amp;bug_status=REOPENED">
+ compiler bugs
+ </ulink> or
+ <ulink url="https://bugs.eclipse.org/bugs/buglist.cgi?&amp;product=AspectJ&amp;component=Ant&amp;bug_status=NEW&amp;bug_status=ASSIGNED&amp;bug_status=REOPENED">
+ taskdef bugs
+ </ulink>.
+ </para>
+ <para>
+ When running Ant build scripts under Eclipse 2.x variants, you will get a
+ VerifyError because the Eclipse Ant support fails to isolate the Ant runtime
+ properly. To run in this context, set up iajc to fork (and use forkclasspath).
+ Eclipse 3.0 will fork Ant processes to avoid problems like this.
+ </para>
+ <para>
+ Memory and forking: Users email most often about the ajc task running
+ out of memory.
+ This is not a problem with the task; some compiles take a lot of
+ memory, often more than similar compiles using javac.
+ </para>
+ <para>
+ Forking is now supported in both the
+ <xref linkend="antTasks-adapter"/> and
+ <xref linkend="antTasks-iajc"/>,
+ and you can set the maximum memory available.
+ You can also not fork and increase the memory available to Ant
+ (see the Ant documentation, searching for ANT_OPTS,
+ the variable they use in their scripts to pass VM options,
+ e.g., ANT_OPTS=-Xmx128m).
+ </para>
+ </sect2>
+ <sect2 id="antTasks-feedback">
+ <title>Ant task questions and bugs</title>
+ <para>
+ For questions, you can send email to
+ <ulink url="mailto:aspectj-users@dev.eclipse.org">
+ aspectj-users@dev.eclipse.org</ulink>.
+ (Do join the list to participate!)
+ We also welcome any bug reports, patches, and features;
+ you can submit them to the bug database at
+ <ulink url="https://bugs.eclipse.org/bugs">
+ https://bugs.eclipse.org/bugs</ulink>
+ using the AspectJ product and Ant component.
+ </para>
+ </sect2>
+ </sect1>
+</chapter>
+
+<!-- Local variables: -->
+<!-- fill-column: 79 -->
+<!-- sgml-local-ecat-files: devguide.ced -->
+<!-- sgml-parent-document:("devguide.sgml" "book" "refentry") -->
+<!-- End: -->
diff --git a/docs/devguide/aspectj-docs.css b/docs/devguide/aspectj-docs.css
new file mode 100644
index 000000000..9c2f5d4fc
--- /dev/null
+++ b/docs/devguide/aspectj-docs.css
@@ -0,0 +1,89 @@
+body {
+ font-family: "Lucida Grande", "Trebuchet MS", sans-serif;
+ line-height: 1.1em;
+ }
+
+h1 {
+ margin-bottom: 3px;
+ padding-bottom: 0px;
+ line-height: 1.1em;
+}
+
+h2 {
+ font-size: 130%;
+ font-weight: bold ;
+ line-height: 16px;
+ color: #FFFFFF;
+ background-color: #0080C0;
+ padding: 5px;
+}
+
+h3 {
+ font-size: 110%;
+ font-weight: bold ;
+ line-height: 14px;
+ color: #FFFFFF;
+ background-color: orange;
+ padding: 5px;
+}
+
+tt {
+ font-size: 120%;
+ color: #00AAF0;
+ }
+
+tt tt {
+ font-size: 100%;
+ }
+
+.programlisting {
+ padding-top: 5px;
+ border: 2px solid #ccc;
+ background: #eee;
+ font-size: 120%;
+ color: #111199;
+
+ }
+
+.term {
+ color: #111199;
+ }
+
+.variablelist dd {
+ margin-left: 18px;
+ padding-left: 20px;
+ background: url(dd_arrow.gif) no-repeat 0 2px;
+ }
+
+.toc dt {
+ font-size: 110%;
+ padding-bottom: 0px;
+ margin-bottom: 5px;
+ }
+
+.toc dl dd dt {
+ font-size: 100%;
+ }
+
+.toc dt {
+ font-size: 100%
+ margin-bottom: 0;
+ }
+
+.informaltable table {
+ margin-left: 5%;
+ }
+
+.informaltable th {
+ background-color: orange;
+ padding: 1px;
+ }
+
+ul li {
+ line-height: 1.2em;
+ }
+
+.keyword {
+ font-weight: bold;
+ color: purple;
+ } \ No newline at end of file
diff --git a/docs/devguide/aspectj-mode.adoc b/docs/devguide/aspectj-mode.adoc
new file mode 100644
index 000000000..4c585ed2c
--- /dev/null
+++ b/docs/devguide/aspectj-mode.adoc
@@ -0,0 +1,181 @@
+AspectJ-mode
+
+support for XEmacs and GNU Emacs
+
+== AspectJ-mode User's Guide
+
+This guide describes aspectj-mode for GNU Emacs and XEmacs, which
+provides enhanced editing and management of AspectJ code via a minor
+mode extension of java-mode. Included in this document are guidance for
+aspectj-mode's xref:#ajmode-featuresandusage[use], and
+xref:#ajmode-installationetc[installation and compatibility]. See the
+README file in the aspectj-mode's distribution directory for
+release-specific details.
+
+AspectJ minor mode provides (see graphic):
+
+* Viewing and navigation of aspect structures, permitting navigation
+between aspect code and the code that it affects, via a `jump' menu (and
+in the speedbar and Classes menu for JDE users).
+* Source code annotation of inter-type and advice declarations, as well
+as the code they affect.
+* AspectJ-style compilation, using .lst files to generate a compilation
+submenu.
+* Highlighting of AspectJ keywords and declaration names.
+
+The first two are derived from ajc's last build of the AspectJ program.
+An example usage is given below.
+
+image:aspectj-mode.gif[image]
+
+[[ajmode-featuresandusage]]
+== Features and Usage
+
+All commands governing AspectJ mode are available from the AspectJ menu
+on the toolbar. Besides those described below, there is a menu item
+Customize options for viewing and customizing the options of the mode
+and AJ Mode user guide to view this file. Keyword and declaration
+highlighting is enabled above the minimal level of highlighting.
+
+By default, AspectJ mode is automatically turned on when a buffer named
+with a `.java` suffix is entered. The command
+`M-x aspectj-mode-in-force-toggle` globally toggles the features of the
+mode, easing quickly moving between AspectJ and Java projects (also
+available as AspectJ mode extensions in the AspectJ menu).
+
+=== Aspect Structure and Navigation
+
+AspectJ minor mode highlights aspect relationships in the text with
+textual annotations on the program source (optionally can be turned
+off), such as the `[Player, Robot, Ship]` marking after the advice in
+EnsureShipIsAlive at the bottom of the
+xref:#aspectjmodescreenshot[figure], which indicates that the advice
+refers to join points within Ship objects. The following commands (also
+available from the menu) manage annotations and navigation:
+
+.AspectJ Minor Mode Commands for Annotations and Navigation
+[cols=",",options="header",]
+|===
+|Command (keyboard shortcut) |Description
+|M-x aspectj-jump-menu (C-x C-j) |Display popup menu of advisers,
+advisees, and inter-type declarations. Navigate to item by selecting
+with mouse (see xref:#aspectjmodescreenshot2[figure] below).
+
+|M-x aspectj-show-annotations |Add crosscut annotations on the text on
+current buffer.
+
+|M-x aspectj-dont-show-annotations |Remove crosscut annotations from
+text on current buffer.
+|===
+
+The default for whether annotations are shown or not can be customized
+by selecting Customize options from the AspectJ menu.
+
+image:aspectj-mode2.gif[image]
+
+=== Compilation
+
+The Compile submenu accessible from the AspectJ menu presents the
+known` .lst` files for the project. Selecting one compiles the project
+with that `.lst` file and remembers that for future compiles. The
+Compile... command accessible from the Emacs Tools menu is customized
+through the project customization option `Aspectj Tools Compile
+ Command`, customizable from the AspectJ menu.
+
+[[ajmode-installationetc]]
+== Installation and Compatibility
+
+AspectJ mode requires the installation of
+http://www.gnu.org/software/emacs/[GNU Emacs 20.3.1] or
+http://www.xemacs.org/[XEmacs 21.1.14 (Unix/Linux)], or
+http://www.xemacs.org/[XEmacs 21.4 (Windows)], or higher. In general,
+the most recent non-alpha/beta versions of these are recommended. A web
+browser is required to view this documentation via Emacs. Small
+modifications to the `.emacs` file configures AspectJ mode and enables
+autoloading AspectJ mode when a `.java` file is loaded.
+
+=== Installation
+
+Step 1, with enhancements, can be found in the example Emacs
+initialization file `sample.emacs` in the distribution.
+
+[arabic]
+. The files in this package need to be in the load-path and
+``required''. For example, for the 1.0 release:
++
+[source, text]
+....
+;; I keep my emacs packages in C:/Emacs
+(setq load-path (cons "C:/Emacs/aspectj-emacsMode-1.0" load-path))
+(require 'aspectj-mode)
+....
+. _[Optional]_ add `-emacssym` switch to the `ajc` and `ajc.bat` files
+in your AspectJ tools installations (in the `/bin` directory). If you
+invoke the compiler outside Emacs, this will ensure that your compiles
+always generate information for annotations and the jump menu in the
+form of `.ajesym` files.
+. _[XEmacs only]_ Go to the `xemacs-packages/lisp` directory of your
+XEmacs distribution and move the `jde` directory to someplace harmless.
+Otherwise, Java files will come up in JDE mode.
+
+=== Customizing Options
+
+Selecting Customize options from the AspectJ menu displays a number of
+options that customize AspectJ mode. These control whether annotations
+are shown by default, as well as a number of options controlling
+compilation and beanshell for java-mode. Example customizations are
+given in the file `sample.emacs` in the distribution.
+
+== Usage and Upgrade Problems
+
+* _Symptom_: No annotations show. Message:
++
+[source, text]
+....
+AspectJ Mode Warning: Can't find declarations file for...
+....
++
+AspectJ file has not been compiled with ajc and the `-emacssym` flag, or
+was compiled with an obsolete version of ajc. After compilation, there
+should be a <file>.ajesym for every <file>.java in the build. If .ajsym
+files are present but error persists, recompile. Note that aspectj-mode
+for JDE has a fallback view for uncompiled files.
+* _Symptom_: Annotations are misplaced in the code.
++
+AspectJ mode operates by querying data derived from the most recent
+compile that includes the `-emacssym` flag. Recompile the entire program
+with ajc including the switch. Consider permanently installing the
+switch by editing the ajc and ajc.bat files in the /bin file in your
+distribution.
+* _Symptom_: New customization option settings were saved for future
+sessions, but do not show up when Emacs is restarted.
++
+You may have two sets of saved settings in your .emacs file, and Emacs
+updated the first one, which may be shadowed by the second.
+* _Symptom_: Java files that are part of a Java project not written in
+AspectJ come up in aspectj-mode.
++
+Emacs uses the file suffix (.java) to determine which mode to invoke.
+You can either globally toggle the AspectJ features from the AspectJ
+menu.
+* _Symptom_: Reported bug fixes and new features to aspectj-mode are not
+seen, or aspectj-mode.el cannot be found or loaded, with message:
++
+[source, text]
+....
+Error in init file: File error: "Cannot open load file", "aspectj-mode"
+....
++
+Your load-path variable (set in your .emacs) is referring to an old
+release. Change your load-path to point at the directory for the current
+release. See the sample.emacs files in the distribution, for example.
+* _Symptom_: When trying to get a jump menu, I get the message "No
+crosscut elements at point" even though there is a [list] on the same
+line.
++
+The caret (point) is probably on or after the list. To see the crosscut
+elements you need to hit the jump menu on the same line that the
+annotated elements appear as a list of items surrounded by '[' and ']'
+on the same line as the affected declaration. If the caret is on the
+same line as the elements and before the list (i.e. not at the end of
+the list of elements) the jump menu should work.
diff --git a/docs/devguide/aspectj-mode.gif b/docs/devguide/aspectj-mode.gif
new file mode 100644
index 000000000..9b07fdb33
--- /dev/null
+++ b/docs/devguide/aspectj-mode.gif
Binary files differ
diff --git a/docs/devguide/aspectj-mode.xml b/docs/devguide/aspectj-mode.xml
new file mode 100644
index 000000000..e2ee862db
--- /dev/null
+++ b/docs/devguide/aspectj-mode.xml
@@ -0,0 +1,355 @@
+<refentry id="aspectj-mode">
+ <refnamediv>
+ <refname>AspectJ-mode</refname>
+ <refpurpose>support for XEmacs and GNU Emacs
+ </refpurpose>
+ </refnamediv>
+
+ <refsect1>
+ <title>AspectJ-mode User's Guide</title>
+ <para>
+ This guide describes aspectj-mode for GNU Emacs and XEmacs, which
+ provides enhanced editing and management of AspectJ code via a minor
+ mode extension of java-mode. Included in this document
+ are guidance for aspectj-mode's <link
+ linkend="ajmode-featuresandusage">use</link>, and
+ <link linkend="ajmode-installationetc">installation and compatibility</link>.
+ See the README file in the aspectj-mode's distribution directory for
+ release-specific details.
+ </para>
+
+ <para>
+ AspectJ minor mode provides (see graphic):
+ <itemizedlist>
+ <listitem>
+ <para>
+ Viewing and navigation of aspect structures, permitting
+ navigation between aspect code and the code that it affects, via
+ a `jump' menu (and in the speedbar and Classes menu for JDE
+ users).
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ Source code annotation of inter-type and advice declarations,
+ as well as the code they affect.
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ AspectJ-style compilation, using .lst files to generate a
+ compilation submenu.
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ Highlighting of AspectJ keywords and declaration names.
+ </para>
+ </listitem>
+
+ </itemizedlist>
+ </para>
+
+ <para>
+ The first two are derived from ajc's last build of the AspectJ program.
+ An example usage is given below.
+ </para>
+
+ <para>
+ <inlinemediaobject id="aspectjmodescreenshot">
+ <imageobject>
+ <imagedata fileref="aspectj-mode.gif"/>
+ </imageobject>
+ </inlinemediaobject>
+ </para>
+ </refsect1>
+
+ <refsect1 id="ajmode-featuresandusage"><!-- Features and Usage -->
+ <title>Features and Usage</title>
+ <para>
+ All commands governing AspectJ mode are available from the AspectJ menu
+ on the toolbar. Besides those described below, there is a menu item
+ <guimenuitem>Customize options</guimenuitem> for viewing and customizing
+ the options of the mode and <guimenuitem>AJ Mode user guide</guimenuitem>
+ to view this file. Keyword and declaration highlighting is enabled above
+ the minimal level of highlighting.
+ </para>
+
+ <para>
+ By default, AspectJ mode is automatically turned on when a buffer
+ named with a <filename>.java</filename> suffix is entered.
+ The command
+ <command>M-x aspectj-mode-in-force-toggle</command> globally toggles
+ the features of the mode, easing quickly moving between
+ AspectJ and Java projects (also available as <guimenuitem>AspectJ mode
+ extensions</guimenuitem> in the AspectJ menu).
+ </para>
+
+ <refsect2>
+ <title>Aspect Structure and Navigation</title>
+
+ <para>
+ AspectJ minor mode highlights aspect relationships in the text with
+ textual annotations on the program source (optionally can be turned
+ off), such as the <literal>[Player, Robot, Ship]</literal> marking after the advice in EnsureShipIsAlive
+ at the bottom of the <link linkend="aspectjmodescreenshot">figure</link>,
+ which indicates that the advice refers to join points within Ship
+ objects. The following commands (also available from the menu) manage
+ annotations and navigation:
+ </para>
+
+ <table id="minormodecommands">
+ <title>
+ AspectJ Minor Mode Commands for Annotations and Navigation
+ </title>
+ <tgroup cols="2" colsep="1" rowsep="1" align="left">
+ <thead>
+ <row>
+ <entry>Command (keyboard shortcut)</entry>
+ <entry>Description</entry>
+ </row>
+ </thead>
+
+ <tbody>
+ <row>
+ <entry>M-x aspectj-jump-menu (C-x C-j)</entry>
+ <entry>
+ Display popup menu of advisers, advisees, and inter-type declarations.
+ Navigate to item by selecting with mouse
+ (see <link linkend="aspectjmodescreenshot2">figure</link> below).
+ </entry>
+ </row>
+ <row>
+ <entry>M-x aspectj-show-annotations</entry>
+ <entry>
+ Add crosscut annotations on the text on current buffer.
+ </entry>
+ </row>
+
+ <row>
+ <entry>M-x aspectj-dont-show-annotations</entry>
+ <entry>
+ Remove crosscut annotations from text on current buffer.
+ </entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </table>
+
+ <para>
+ The default for whether annotations are shown or not can be
+ customized by selecting <guimenuitem>Customize options</guimenuitem>
+ from the <guimenu>AspectJ</guimenu> menu.
+ </para>
+
+ <para>
+ <inlinemediaobject id="aspectjmodescreenshot2">
+ <imageobject>
+ <imagedata fileref="aspectj-mode2.gif"/>
+ </imageobject>
+ </inlinemediaobject>
+ </para>
+
+ </refsect2>
+
+ <refsect2>
+ <title>Compilation</title>
+
+ <para>
+ The <guisubmenu>Compile</guisubmenu> submenu
+ accessible from the <guimenu>AspectJ</guimenu> menu presents the
+ known<filename> .lst</filename> files for the project. Selecting
+ one compiles the project with that <filename>.lst</filename> file
+ and remembers that for future compiles. The
+ <guimenuitem>Compile...</guimenuitem> command accessible from the
+ Emacs <guimenu>Tools</guimenu> menu is customized through the
+ project customization option <option>Aspectj Tools Compile
+ Command</option>, customizable from the
+ <guimenu>AspectJ</guimenu> menu.
+ </para>
+
+ </refsect2>
+
+ </refsect1>
+
+ <refsect1 id="ajmode-installationetc"><!-- Installation and Compatibility -->
+ <title>Installation and Compatibility</title>
+
+ <para> AspectJ mode requires the installation of <ulink
+ url="http://www.gnu.org/software/emacs/">GNU Emacs 20.3.1</ulink>
+ or <ulink url="http://www.xemacs.org/">XEmacs 21.1.14 (Unix/Linux)</ulink>,
+ or <ulink url="http://www.xemacs.org/">XEmacs 21.4 (Windows)</ulink>,
+ or higher. In general, the most recent non-alpha/beta versions of these
+ are recommended. A web browser is required to view this documentation
+ via Emacs. Small modifications to the <filename>.emacs</filename> file
+ configures AspectJ mode and enables autoloading AspectJ mode when a
+ <filename>.java</filename> file is loaded.
+ </para>
+
+ <refsect2>
+ <title>
+ Installation
+ </title>
+
+<!-- <note> -->
+ <para>
+ Step 1, with enhancements, can be found in the example Emacs
+ initialization file <filename>sample.emacs</filename> in the
+ distribution.
+ </para>
+<!-- </note> -->
+
+ <orderedlist>
+ <listitem>
+ <para>
+ The files in this package need to be in the load-path and
+ ``required''. For example, for the 1.0 release:
+ <programlisting>
+;; I keep my emacs packages in C:/Emacs
+(setq load-path (cons "C:/Emacs/aspectj-emacsMode-1.0" load-path))
+(require 'aspectj-mode)
+ </programlisting>
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ <emphasis>[Optional]</emphasis> add <literal>-emacssym</literal>
+ switch to the <filename>ajc</filename> and <filename>ajc.bat</filename>
+ files in your AspectJ tools installations (in the
+ <filename>/bin</filename> directory). If you invoke the compiler
+ outside Emacs, this will
+ ensure that your compiles always generate information for annotations
+ and the jump menu in the form of <literal>.ajesym</literal> files.
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ <!-- TBD: Change to something less bogus. -->
+ <emphasis>[XEmacs only]</emphasis> Go to the
+ <filename>xemacs-packages/lisp</filename> directory of your
+ XEmacs distribution and move the <filename>jde</filename>
+ directory to someplace harmless. Otherwise, Java files will come
+ up in JDE mode.
+ </para>
+ </listitem>
+
+ </orderedlist>
+ </refsect2>
+
+ <refsect2>
+ <title>Customizing Options</title>
+ <para>
+ Selecting <guimenuitem>Customize options</guimenuitem> from the
+ <guimenu>AspectJ</guimenu> menu displays a number of options that
+ customize AspectJ mode. These control whether annotations are shown
+ by default, as well as a
+ number of options controlling compilation and beanshell for
+ java-mode.
+ Example customizations are given in the file
+ <filename>sample.emacs</filename> in the distribution.
+ </para>
+ </refsect2>
+
+ </refsect1>
+
+ <refsect1>
+ <title>Usage and Upgrade Problems</title>
+
+ <itemizedlist>
+
+ <listitem>
+ <para><emphasis>Symptom</emphasis>: No annotations show. Message:
+
+<screen>
+AspectJ Mode Warning: Can't find declarations file for...
+</screen>
+
+</para>
+
+ <para>AspectJ file has not been compiled with ajc and the <literal>-emacssym</literal>
+ flag,
+ or was compiled with an obsolete version of ajc. After compilation,
+ there should be a &lt;file&gt;.ajesym for every &lt;file&gt;.java in the
+ build. If .ajsym files are present but error persists, recompile. Note
+ that aspectj-mode for JDE has a fallback view for uncompiled files.
+ </para>
+ </listitem>
+
+ <listitem>
+ <para><emphasis>Symptom</emphasis>: Annotations are misplaced in the
+ code. </para>
+
+ <para>AspectJ mode operates by querying data
+ derived from the most recent compile that includes the
+ <literal>-emacssym</literal> flag. Recompile the entire program with
+ ajc including the switch. Consider permanently installing the switch
+ by editing the ajc and ajc.bat files in the /bin file in your
+ distribution.</para>
+ </listitem>
+
+ <listitem>
+ <para><emphasis>Symptom</emphasis>: New customization option settings were saved
+ for future sessions, but do not show up when Emacs is restarted.
+ </para>
+
+ <para>You may have two sets of saved settings in
+ your .emacs file, and Emacs updated the first one, which may be shadowed
+ by the second.</para>
+ </listitem>
+
+ <listitem>
+ <para><emphasis>Symptom</emphasis>: Java files that are part of a Java project not written
+ in AspectJ come up in aspectj-mode. </para>
+
+ <para>Emacs uses the file suffix (.java) to
+ determine which mode to invoke. You can either globally toggle the
+ AspectJ features from the AspectJ menu.
+ </para>
+ </listitem>
+
+ <listitem>
+ <para><emphasis>Symptom</emphasis>: Reported bug fixes and new features
+ to aspectj-mode are not seen, or aspectj-mode.el cannot be found or
+ loaded, with message:
+
+<screen>
+Error in init file: File error: "Cannot open load file", "aspectj-mode"
+</screen>
+
+</para>
+ <para>Your load-path variable (set in your .emacs)
+ is referring to an old release. Change your load-path to
+ point at the directory for the current release. See the sample.emacs
+ files in the distribution, for example.</para>
+ </listitem>
+
+ <listitem>
+ <para><emphasis>Symptom</emphasis>: When trying to get a jump menu,
+ I get the message "No crosscut elements at point" even though
+ there is a [list] on the same line.
+ </para>
+
+ <para>The caret (point) is probably on or after the list.
+ To see the crosscut elements you need to hit the jump menu
+ on the same line that the annotated elements appear as a list
+ of items surrounded by '[' and ']' on the same line as the
+ affected declaration. If the caret is on the same line as the
+ elements and before the list (i.e. not at the end of the
+ list of elements) the jump menu should work.
+ </para>
+ </listitem>
+ </itemizedlist>
+ </refsect1>
+</refentry>
+
+<!-- Local variables: -->
+<!-- fill-column: 79 -->
+<!-- compile-command: "ant -quiet dev-html" -->
+<!-- sgml-local-ecat-files: devguide.ced -->
+<!-- sgml-parent-document:("devguide.sgml" "book" "refentry") -->
+<!-- End: -->
diff --git a/docs/devguide/aspectj-mode2.gif b/docs/devguide/aspectj-mode2.gif
new file mode 100644
index 000000000..f9e718385
--- /dev/null
+++ b/docs/devguide/aspectj-mode2.gif
Binary files differ
diff --git a/docs/devguide/compatibility.adoc b/docs/devguide/compatibility.adoc
new file mode 100644
index 000000000..63822e003
--- /dev/null
+++ b/docs/devguide/compatibility.adoc
@@ -0,0 +1,112 @@
+[[compatibility]]
+== AspectJ version compatibility
+
+[[versionCompatibility]]
+=== Version Compatibility
+
+Systems, code, and build tools change over time, often not in step.
+Generally, later versions of the build tools understand earlier versions
+of the code, but systems should include versions of the runtime used to
+build the AspectJ program.
+
+[[javaCompatibility]]
+==== Java compatibility
+
+AspectJ programs can run on any Java VM of the required version. The
+AspectJ tools produce Java bytecode .class files that run on Java
+compatible VM's. If a Java class is changed by an aspect, the resulting
+class is binary compatible (as defined in the Java Language
+Specification). Further, the AspectJ compiler and weaving do all the
+exception checking required of Java compilers by the Java
+specifications.
+
+Like other Java compilers, the AspectJ compiler can target particular
+Java versions. Obviously, code targeted at one version cannot be run in
+a VM of a lesser version. The `aspectjrt.jar` is designed to take
+advantage of features available in Java 2 or Java 5, but will run in a
+JDK 1.1.x environment, so you can use AspectJ to target older or
+restricted versions of Java. However, there may be restricted variants
+of JDK 1.1.x that do not have API's used by the AspectJ runtime. If you
+deploy to one of those, you can email aspectj-dev@eclipse.org or
+download the runtime code to modify it for your environment.
+
+Aside from the runtime, running the AspectJ tools themselves will
+require a more recent version of Java. You might use Java 5 to run the
+AspectJ compiler to produce code for Java 1.1.8.
+
+[[runtimeCompatibility]]
+==== Runtime library compatibility
+
+When deploying AspectJ programs, include on the classpath the classes,
+aspects, and the AspectJ runtime library (`aspectjrt.jar`). Use the
+version of the runtime that came with the tools used to build the
+program. If the runtime is earlier than the build tools used, it's very
+likely to fail. If the runtime is later than the build tools used, it's
+possible (but not guaranteed) that it will work.
+
+Given that, three scenarios cause problems. First, you deploy new
+aspects into an an existing system that already has aspects that were
+built with a different version. Second, the runtime is already deployed
+in your system and cannot be changed (e.g., some application servers put
+`aspectjrt.jar` on the bootclasspath). Third, you (unintentionally)
+deploy two versions of the runtime, and the one loaded by a parent
+loader is used).
+
+In earlier versions of AspectJ, these problems present in obscure ways
+(e.g., unable to resolve a class). In later versions, a stack trace
+might even specify that the runtime version is out of sync with an
+aspect. To find out if the runtime you deployed is the one actually
+being used, log the defining class loader for the aspects and runtime.
+
+[[binaryCompatibility]]
+==== Aspect binary compatibility
+
+Generally, binary aspects can be read by later versions of the weaver if
+the aspects were built by version 1.2.1 or later. (Some future weavers
+might have documented limitations in how far back they go.) If a
+post-1.2.1 weaver reads an aspect built by a later version, it will emit
+a message. If the weaver reads in a binary aspect and writes it out
+again, the result will be in the form produced by that weaver, not the
+original form of the aspect (just like other weaver output).
+
+With unreleased or development versions of the tools, there are no
+guarantees for binary compatibility, unless they are stated in the
+release notes. If you use aspects built with development versions of the
+weaver, be careful to rebuild and redeploy with the next released
+version.
+
+[[sourceCompatibility]]
+==== Aspect source compatibility
+
+Generally, AspectJ source files can be read by later versions of the
+compiler. Language features do not change in dot releases (e.g., from
+1.2.1 to 1.2.2). In some very rare cases, a language feature will no
+longer be supported or may change its meaning; these cases are
+documented in the release notes for that version. Some changes like this
+were necessary when moving to binary weaving in the 1.1 release, but at
+this time we don't anticipate more in the future. You might also find
+that the program behaves differently if you relied on behavior specific
+to that compiler/weaver, but which is not specified in the
+xref:../progguide/semantics.html[Semantics appendix to the Programming
+Guide].
+
+[[upgrading]]
+==== Problems when upgrading to new AspectJ versions
+
+Let's say your program behaves differently after being built with a new
+version of the AspectJ tools. It could be a bug that was introduced by
+the tools, but often it results from relying on behavior that was not
+guaranteed by the compiler. For example, the order of advice across two
+aspects is not guaranteed unless there is a precedence relationship
+between the aspects. If the program implicitly relies on a certain order
+that obtains in one compiler, it can fail when built with a different
+compiler.
+
+Another trap is deploying into the same system, when the `aspectjrt.jar`
+has not been changed accordingly.
+
+Finally, when updating to a version that has new language features,
+there is a temptation to change both the code and the tools at the same
+time. It's best to validate the old code with the new tools before
+updating the code to use new features. That distinguishes problems of
+new engineering from those of new semantics.
diff --git a/docs/devguide/compatibility.xml b/docs/devguide/compatibility.xml
new file mode 100644
index 000000000..cbdacefde
--- /dev/null
+++ b/docs/devguide/compatibility.xml
@@ -0,0 +1,125 @@
+<chapter id="compatibility" xreflabel="AspectJ version compatibility">
+
+ <title>AspectJ version compatibility</title>
+
+<sect1 id="versionCompatibility" xreflabel="AspectJ Version Compatibility">
+ <title>Version Compatibility</title>
+
+ <para>Systems, code, and build tools change over time, often not in step.
+ Generally, later versions of the build tools understand earlier
+ versions of the code, but systems should include versions of the runtime
+ used to build the AspectJ program. </para>
+ <sect2 id="javaCompatibility" xreflabel="Java compatibility">
+ <title>Java compatibility</title>
+ <para>
+ AspectJ programs can run on any Java VM of the required version.
+ The AspectJ tools produce Java bytecode .class files that run on
+ Java compatible VM's. If a Java class is changed by an aspect,
+ the resulting class is binary compatible
+ (as defined in the Java Language Specification). Further, the
+ AspectJ compiler and weaving do all the exception checking
+ required of Java compilers by the Java specifications.
+ </para>
+ <para>Like other Java compilers,
+ the AspectJ compiler can target particular Java versions. Obviously, code
+ targeted at one version cannot be run in a VM of a lesser version. The
+ <literal>aspectjrt.jar</literal> is designed to take advantage
+ of features available in Java 2 or Java 5, but will run in a JDK 1.1.x
+ environment, so you can use AspectJ to target older or restricted
+ versions of Java. However, there may be restricted variants of
+ JDK 1.1.x that do not have API's used by the AspectJ runtime. If
+ you deploy to one of those, you can email
+ <ulink url="mailto:aspectj-dev@eclipse.org">aspectj-dev@eclipse.org</ulink>
+ or download the runtime code to modify it for your environment.
+ </para>
+ <para>
+ Aside from the runtime, running the AspectJ tools themselves will
+ require a more recent version of Java.
+ You might use Java 5 to run the AspectJ compiler to produce code
+ for Java 1.1.8.
+ </para>
+ </sect2>
+
+ <sect2 id="runtimeCompatibility"
+ xreflabel="Runtime library compatibility">
+ <title>Runtime library compatibility</title>
+
+ <para> When deploying AspectJ programs, include on the classpath the
+ classes, aspects, and the AspectJ runtime library
+ (<literal>aspectjrt.jar</literal>). Use the version of the
+ runtime that came with the tools used to build the program. If the
+ runtime is earlier than the build tools used, it's very likely to
+ fail. If the runtime is later than the build tools used, it's possible
+ (but not guaranteed) that it will work. </para>
+ <para> Given that, three scenarios cause problems. First, you deploy new
+ aspects into an an existing system that already has aspects that were
+ built with a different version. Second, the runtime is already
+ deployed in your system and cannot be changed (e.g., some
+ application servers put <literal>aspectjrt.jar</literal> on the
+ bootclasspath). Third, you (unintentionally) deploy two versions
+ of the runtime, and the one loaded by a parent loader is used). </para>
+ <para> In earlier versions of AspectJ, these problems present in obscure
+ ways (e.g., unable to resolve a class). In later versions, a stack
+ trace might even specify that the runtime version is out of sync with
+ an aspect. To find out if the runtime you deployed is the one actually
+ being used, log the defining class loader for the aspects and
+ runtime. </para>
+ </sect2>
+ <sect2 id="binaryCompatibility"
+ xreflabel="Aspect binary compatibility">
+ <title>Aspect binary compatibility</title>
+
+ <para>Generally, binary aspects can be read by later versions of the
+ weaver if the aspects were built by version 1.2.1 or later. (Some
+ future weavers might have documented limitations in how far back
+ they go.) If a post-1.2.1 weaver reads an aspect built by a later
+ version, it will emit a message. If the weaver reads in a binary aspect
+ and writes it out again, the result will be in the form produced by that
+ weaver, not the original form of the aspect (just like other weaver
+ output). </para>
+ <para>With unreleased or development versions of the tools, there are no
+ guarantees for binary compatibility, unless they are stated in the
+ release notes. If you use aspects built with development versions of
+ the weaver, be careful to rebuild and redeploy with the next released
+ version. </para>
+ </sect2>
+ <sect2 id="sourceCompatibility"
+ xreflabel="Aspect source compatibility">
+ <title>Aspect source compatibility</title>
+
+ <para>Generally, AspectJ source files can be read by later versions of
+ the compiler. Language features do not change in dot releases (e.g.,
+ from 1.2.1 to 1.2.2). In some very rare cases, a language feature will
+ no longer be supported or may change its meaning; these cases are
+ documented in the release notes for that version. Some changes like
+ this were necessary when moving to binary weaving in the 1.1 release,
+ but at this time we don't anticipate more in the future. You might
+ also find that the program behaves differently if you relied on behavior
+ specific to that compiler/weaver, but which is not specified in the
+ <ulink url="../progguide/semantics.html">Semantics appendix to the
+ Programming Guide</ulink>.</para>
+ </sect2>
+ <sect2 id="upgrading"
+ xreflabel="Problems when upgrading to new AspectJ versions">
+ <title>Problems when upgrading to new AspectJ versions</title>
+ <para> Let's say your program behaves differently after being built with
+ a new version of the AspectJ tools. It could be a bug that was
+ introduced by the tools, but often it results from relying on
+ behavior that was not guaranteed by the compiler. For example, the
+ order of advice across two aspects is not guaranteed unless there is a
+ precedence relationship between the aspects. If the program
+ implicitly relies on a certain order that obtains in one compiler, it
+ can fail when built with a different compiler. </para>
+ <para> Another trap is deploying into the same system, when the
+ <literal>aspectjrt.jar</literal> has not been changed
+ accordingly. </para>
+ <para> Finally, when updating to a version that has new language
+ features, there is a temptation to change both the code and the tools
+ at the same time. It's best to validate the old code with the new tools
+ before updating the code to use new features. That distinguishes
+ problems of new engineering from those of new semantics. </para>
+ </sect2>
+</sect1>
+</chapter>
+
+
diff --git a/docs/devguide/dd_arrow.gif b/docs/devguide/dd_arrow.gif
new file mode 100644
index 000000000..a16b34c95
--- /dev/null
+++ b/docs/devguide/dd_arrow.gif
Binary files differ
diff --git a/docs/devguide/devguide.adoc b/docs/devguide/devguide.adoc
new file mode 100644
index 000000000..2602b29da
--- /dev/null
+++ b/docs/devguide/devguide.adoc
@@ -0,0 +1,33 @@
+= The AspectJ^TM^ Development Environment Guide
+
+:doctype: book
+
+_by the AspectJ Team_
+
+_Copyright (c) 1998-2001 Xerox Corporation, 2002 Palo Alto Research Center, Incorporated, 2003-2005 Contributors.
+All rights reserved._
+
+This guide describes how to build and deploy AspectJ programs using the AspectJ tools and facilities. See also the
+xref:../progguide/progguide.adoc[AspectJ Programming Guide], the documentation available with the AspectJ support
+available for various integrated development environments (e.g. https://www.eclipse.org/ajdt/[Eclipse AJDT]), and the
+most-recent documentation available from the https://eclipse.org/aspectj[AspectJ project page].
+
+////
+ATTENTION: Please do not remove blank lines in between 'include::' statements. Otherwise, section numbers in the
+table of contents (TOC) can be wrong and the first section of each document missing completely.
+////
+include::tools-intro.adoc[Introduction to the AspectJ tools]
+
+include::ajc.adoc[`ajc`, the AspectJ compiler/weaver]
+
+include::ajdoc.adoc[`ajdoc`, the AspectJ API documentation generator]
+
+include::aj.adoc[`aj`, the AspectJ load-time weaving launcher]
+
+include::ajbrowser.adoc[AspectJ Browser]
+
+include::antsupport.adoc[AspectJ Ant Tasks]
+
+include::ltw.adoc[Load-Time Weaving]
+
+include::compatibility.adoc[AspectJ version compatibility]
diff --git a/docs/devguide/devguide.pdf b/docs/devguide/devguide.pdf
new file mode 100644
index 000000000..6bc12d82c
--- /dev/null
+++ b/docs/devguide/devguide.pdf
@@ -0,0 +1,43689 @@
+%PDF-1.4
+%ÿÿÿÿ
+1 0 obj
+<< /Title (The AspectJTM Development Environment Guide)
+/Creator (Asciidoctor PDF 1.6.0, based on Prawn 2.4.0)
+/Producer (Asciidoctor PDF 1.6.0, based on Prawn 2.4.0)
+/ModDate (D:20210628164344+07'00')
+/CreationDate (D:20210628165337+07'00')
+>>
+endobj
+2 0 obj
+<< /Type /Catalog
+/Pages 3 0 R
+/Names 14 0 R
+/Outlines 322 0 R
+/PageLabels 359 0 R
+/PageMode /UseOutlines
+/OpenAction [7 0 R /FitH 841.89]
+/ViewerPreferences << /DisplayDocTitle true
+>>
+>>
+endobj
+3 0 obj
+<< /Type /Pages
+/Count 48
+/Kids [7 0 R 10 0 R 12 0 R 20 0 R 31 0 R 38 0 R 46 0 R 49 0 R 51 0 R 53 0 R 55 0 R 64 0 R 66 0 R 68 0 R 72 0 R 77 0 R 84 0 R 89 0 R 100 0 R 104 0 R 108 0 R 118 0 R 129 0 R 136 0 R 148 0 R 152 0 R 154 0 R 156 0 R 160 0 R 163 0 R 166 0 R 172 0 R 177 0 R 180 0 R 184 0 R 188 0 R 191 0 R 203 0 R 209 0 R 217 0 R 219 0 R 223 0 R 226 0 R 229 0 R 232 0 R 238 0 R 242 0 R 250 0 R]
+>>
+endobj
+4 0 obj
+<< /Length 2
+>>
+stream
+q
+
+endstream
+endobj
+5 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/CropBox [0 0 595.28 841.89]
+/BleedBox [0 0 595.28 841.89]
+/TrimBox [0 0 595.28 841.89]
+/ArtBox [0 0 595.28 841.89]
+/Contents 4 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+>>
+>>
+endobj
+6 0 obj
+<< /Length 562
+>>
+stream
+q
+/DeviceRGB cs
+0.6 0.6 0.6 scn
+/DeviceRGB CS
+0.6 0.6 0.6 SCN
+
+BT
+194.4722 361.6965 Td
+/F1.0 27 Tf
+<546865204173706563744a> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6 0.6 0.6 scn
+0.6 0.6 0.6 SCN
+
+BT
+344.1602 375.9862 Td
+/F1.0 15.741 Tf
+<544d> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6 0.6 0.6 scn
+0.6 0.6 0.6 SCN
+
+BT
+368.543 361.6965 Td
+/F1.0 27 Tf
+<20446576656c6f706d656e74> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6 0.6 0.6 scn
+0.6 0.6 0.6 SCN
+
+BT
+293.024 327.6765 Td
+/F1.0 27 Tf
+<456e7669726f6e6d656e74204775696465> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+Q
+
+endstream
+endobj
+7 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/CropBox [0 0 595.28 841.89]
+/BleedBox [0 0 595.28 841.89]
+/TrimBox [0 0 595.28 841.89]
+/ArtBox [0 0 595.28 841.89]
+/Contents 6 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+/Font << /F1.0 8 0 R
+>>
+>>
+>>
+endobj
+8 0 obj
+<< /Type /Font
+/BaseFont /18afab+NotoSerif
+/Subtype /TrueType
+/FontDescriptor 363 0 R
+/FirstChar 32
+/LastChar 255
+/Widths 365 0 R
+/ToUnicode 364 0 R
+>>
+endobj
+9 0 obj
+<< /Length 24774
+>>
+stream
+q
+/DeviceRGB cs
+0.2 0.2 0.2 scn
+/DeviceRGB CS
+0.2 0.2 0.2 SCN
+
+BT
+48.24 782.394 Td
+/F2.0 22 Tf
+[<54> 29.7852 <61626c65206f6620436f6e74656e7473>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 751.856 Td
+/F1.0 10.5 Tf
+<312e20496e74726f64756374696f6e20746f20746865204173706563744a20746f6f6c73> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6627 0.6627 0.6627 scn
+0.6627 0.6627 0.6627 SCN
+
+BT
+225.1651 751.856 Td
+/F1.0 10.5 Tf
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+BT
+540.4906 751.856 Td
+/F1.0 2.625 Tf
+<ca> Tj
+ET
+
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+541.1705 751.856 Td
+/F1.0 10.5 Tf
+<32> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+60.24 733.376 Td
+/F1.0 10.5 Tf
+<312e312e205468652045636c69707365204173706563744a20696d706c656d656e746174696f6e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6627 0.6627 0.6627 scn
+0.6627 0.6627 0.6627 SCN
+
+BT
+262.5766 733.376 Td
+/F1.0 10.5 Tf
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+BT
+540.4906 733.376 Td
+/F1.0 2.625 Tf
+<ca> Tj
+ET
+
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+541.1705 733.376 Td
+/F1.0 10.5 Tf
+<32> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+60.24 714.896 Td
+/F1.0 10.5 Tf
+[<312e322e2042> 20.0195 <797465636f64652077656176696e672c20696e6372656d656e74616c20636f6d70696c6174696f6e2c20616e64206d656d6f7279207573616765>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6627 0.6627 0.6627 scn
+0.6627 0.6627 0.6627 SCN
+
+BT
+401.5336 714.896 Td
+/F1.0 10.5 Tf
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+BT
+540.4906 714.896 Td
+/F1.0 2.625 Tf
+<ca> Tj
+ET
+
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+541.1705 714.896 Td
+/F1.0 10.5 Tf
+<32> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+60.24 696.416 Td
+/F1.0 10.5 Tf
+<312e332e204e616d65> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6627 0.6627 0.6627 scn
+0.6627 0.6627 0.6627 SCN
+
+BT
+112.9306 696.416 Td
+/F1.0 10.5 Tf
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+BT
+540.4906 696.416 Td
+/F1.0 2.625 Tf
+<ca> Tj
+ET
+
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+541.1705 696.416 Td
+/F1.0 10.5 Tf
+<34> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+60.24 677.936 Td
+/F1.0 10.5 Tf
+[<312e342e2053> 20.0195 <796e6f70736973>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6627 0.6627 0.6627 scn
+0.6627 0.6627 0.6627 SCN
+
+BT
+123.6196 677.936 Td
+/F1.0 10.5 Tf
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+BT
+540.4906 677.936 Td
+/F1.0 2.625 Tf
+<ca> Tj
+ET
+
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+541.1705 677.936 Td
+/F1.0 10.5 Tf
+<34> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+60.24 659.456 Td
+/F1.0 10.5 Tf
+<312e352e204465736372697074696f6e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6627 0.6627 0.6627 scn
+0.6627 0.6627 0.6627 SCN
+
+BT
+139.6531 659.456 Td
+/F1.0 10.5 Tf
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+BT
+540.4906 659.456 Td
+/F1.0 2.625 Tf
+<ca> Tj
+ET
+
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+541.1705 659.456 Td
+/F1.0 10.5 Tf
+<34> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+60.24 640.976 Td
+/F1.0 10.5 Tf
+<312e362e204e616d65> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6627 0.6627 0.6627 scn
+0.6627 0.6627 0.6627 SCN
+
+BT
+112.4056 640.976 Td
+/F1.0 10.5 Tf
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+BT
+534.6211 640.976 Td
+/F1.0 2.625 Tf
+<ca> Tj
+ET
+
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+535.301 640.976 Td
+/F1.0 10.5 Tf
+<3133> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+60.24 622.496 Td
+/F1.0 10.5 Tf
+[<312e372e2053> 20.0195 <796e6f70736973>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6627 0.6627 0.6627 scn
+0.6627 0.6627 0.6627 SCN
+
+BT
+128.4391 622.496 Td
+/F1.0 10.5 Tf
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+BT
+534.6211 622.496 Td
+/F1.0 2.625 Tf
+<ca> Tj
+ET
+
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+535.301 622.496 Td
+/F1.0 10.5 Tf
+<3133> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+60.24 604.016 Td
+/F1.0 10.5 Tf
+<312e382e204465736372697074696f6e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6627 0.6627 0.6627 scn
+0.6627 0.6627 0.6627 SCN
+
+BT
+139.1281 604.016 Td
+/F1.0 10.5 Tf
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+BT
+534.6211 604.016 Td
+/F1.0 2.625 Tf
+<ca> Tj
+ET
+
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+535.301 604.016 Td
+/F1.0 10.5 Tf
+<3133> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+60.24 585.536 Td
+/F1.0 10.5 Tf
+<312e392e204578616d706c6573> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6627 0.6627 0.6627 scn
+0.6627 0.6627 0.6627 SCN
+
+BT
+128.4391 585.536 Td
+/F1.0 10.5 Tf
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+BT
+534.6211 585.536 Td
+/F1.0 2.625 Tf
+<ca> Tj
+ET
+
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+535.301 585.536 Td
+/F1.0 10.5 Tf
+<3134> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 567.056 Td
+/F1.0 10.5 Tf
+<322e204465736372697074696f6e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6627 0.6627 0.6627 scn
+0.6627 0.6627 0.6627 SCN
+
+BT
+117.7501 567.056 Td
+/F1.0 10.5 Tf
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+BT
+534.6211 567.056 Td
+/F1.0 2.625 Tf
+<ca> Tj
+ET
+
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+535.301 567.056 Td
+/F1.0 10.5 Tf
+<3135> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+60.24 548.576 Td
+/F1.0 10.5 Tf
+<322e312e204578616d706c6573> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6627 0.6627 0.6627 scn
+0.6627 0.6627 0.6627 SCN
+
+BT
+128.4391 548.576 Td
+/F1.0 10.5 Tf
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+BT
+534.6211 548.576 Td
+/F1.0 2.625 Tf
+<ca> Tj
+ET
+
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+535.301 548.576 Td
+/F1.0 10.5 Tf
+<3135> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 530.096 Td
+/F1.0 10.5 Tf
+<332e204173706563744a2042726f77736572> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6627 0.6627 0.6627 scn
+0.6627 0.6627 0.6627 SCN
+
+BT
+144.4726 530.096 Td
+/F1.0 10.5 Tf
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+BT
+534.6211 530.096 Td
+/F1.0 2.625 Tf
+<ca> Tj
+ET
+
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+535.301 530.096 Td
+/F1.0 10.5 Tf
+<3136> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+60.24 511.616 Td
+/F1.0 10.5 Tf
+<332e312e20496e74726f64756374696f6e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6627 0.6627 0.6627 scn
+0.6627 0.6627 0.6627 SCN
+
+BT
+144.4726 511.616 Td
+/F1.0 10.5 Tf
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+BT
+534.6211 511.616 Td
+/F1.0 2.625 Tf
+<ca> Tj
+ET
+
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+535.301 511.616 Td
+/F1.0 10.5 Tf
+<3136> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+60.24 493.136 Td
+/F1.0 10.5 Tf
+[<332e322e204275696c64696e672050726f6772> 20.0195 <616d73>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6627 0.6627 0.6627 scn
+0.6627 0.6627 0.6627 SCN
+
+BT
+176.5396 493.136 Td
+/F1.0 10.5 Tf
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+BT
+534.6211 493.136 Td
+/F1.0 2.625 Tf
+<ca> Tj
+ET
+
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+535.301 493.136 Td
+/F1.0 10.5 Tf
+<3136> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+60.24 474.656 Td
+/F1.0 10.5 Tf
+[<332e332e204e617669676174696e672050726f6772> 20.0195 <616d20537472756374757265>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6627 0.6627 0.6627 scn
+0.6627 0.6627 0.6627 SCN
+
+BT
+235.3291 474.656 Td
+/F1.0 10.5 Tf
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+BT
+534.6211 474.656 Td
+/F1.0 2.625 Tf
+<ca> Tj
+ET
+
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+535.301 474.656 Td
+/F1.0 10.5 Tf
+<3137> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+60.24 456.176 Td
+/F1.0 10.5 Tf
+[<332e342e2052756e6e696e672050726f6772> 20.0195 <616d73>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6627 0.6627 0.6627 scn
+0.6627 0.6627 0.6627 SCN
+
+BT
+176.5396 456.176 Td
+/F1.0 10.5 Tf
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+BT
+534.6211 456.176 Td
+/F1.0 2.625 Tf
+<ca> Tj
+ET
+
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+535.301 456.176 Td
+/F1.0 10.5 Tf
+<3138> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+60.24 437.696 Td
+/F1.0 10.5 Tf
+<332e352e2049736f6c6174696e672070726f626c656d732072756e6e696e6720746865204173706563744a2062726f77736572> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6627 0.6627 0.6627 scn
+0.6627 0.6627 0.6627 SCN
+
+BT
+320.8411 437.696 Td
+/F1.0 10.5 Tf
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+BT
+534.6211 437.696 Td
+/F1.0 2.625 Tf
+<ca> Tj
+ET
+
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+535.301 437.696 Td
+/F1.0 10.5 Tf
+<3138> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 419.216 Td
+/F1.0 10.5 Tf
+[<342e204173706563744a20416e742054> 29.7852 <61736b73>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6627 0.6627 0.6627 scn
+0.6627 0.6627 0.6627 SCN
+
+BT
+149.8171 419.216 Td
+/F1.0 10.5 Tf
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+BT
+534.6211 419.216 Td
+/F1.0 2.625 Tf
+<ca> Tj
+ET
+
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+535.301 419.216 Td
+/F1.0 10.5 Tf
+<3230> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+60.24 400.736 Td
+/F1.0 10.5 Tf
+<342e312e20496e74726f64756374696f6e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6627 0.6627 0.6627 scn
+0.6627 0.6627 0.6627 SCN
+
+BT
+144.4726 400.736 Td
+/F1.0 10.5 Tf
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+BT
+534.6211 400.736 Td
+/F1.0 2.625 Tf
+<ca> Tj
+ET
+
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+535.301 400.736 Td
+/F1.0 10.5 Tf
+<3230> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+60.24 382.256 Td
+/F1.0 10.5 Tf
+[<342e322e20496e7374616c6c696e6720416e742054> 29.7852 <61736b73>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6627 0.6627 0.6627 scn
+0.6627 0.6627 0.6627 SCN
+
+BT
+181.8841 382.256 Td
+/F1.0 10.5 Tf
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+BT
+534.6211 382.256 Td
+/F1.0 2.625 Tf
+<ca> Tj
+ET
+
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+535.301 382.256 Td
+/F1.0 10.5 Tf
+<3230> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+60.24 363.776 Td
+/F1.0 10.5 Tf
+[<342e332e20416a6354> 29.7852 <61736b202869616a6329>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6627 0.6627 0.6627 scn
+0.6627 0.6627 0.6627 SCN
+
+BT
+149.8171 363.776 Td
+/F1.0 10.5 Tf
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+BT
+534.6211 363.776 Td
+/F1.0 2.625 Tf
+<ca> Tj
+ET
+
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+535.301 363.776 Td
+/F1.0 10.5 Tf
+<3231> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+60.24 345.296 Td
+/F1.0 10.5 Tf
+[<342e342e20416a633131436f6d70696c657241> 20.0195 <64617074657220286a6176616329>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6627 0.6627 0.6627 scn
+0.6627 0.6627 0.6627 SCN
+
+BT
+229.9846 345.296 Td
+/F1.0 10.5 Tf
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+BT
+534.6211 345.296 Td
+/F1.0 2.625 Tf
+<ca> Tj
+ET
+
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+535.301 345.296 Td
+/F1.0 10.5 Tf
+<3239> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+60.24 326.816 Td
+/F1.0 10.5 Tf
+<342e352e20416a6331302028616a6329> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6627 0.6627 0.6627 scn
+0.6627 0.6627 0.6627 SCN
+
+BT
+133.7836 326.816 Td
+/F1.0 10.5 Tf
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+BT
+534.6211 326.816 Td
+/F1.0 2.625 Tf
+<ca> Tj
+ET
+
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+535.301 326.816 Td
+/F1.0 10.5 Tf
+<3331> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+60.24 308.336 Td
+/F1.0 10.5 Tf
+<342e362e2049736f6c6174696e672070726f626c656d732072756e6e696e672074686520416e74207461736b73> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6627 0.6627 0.6627 scn
+0.6627 0.6627 0.6627 SCN
+
+BT
+288.7741 308.336 Td
+/F1.0 10.5 Tf
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+BT
+534.6211 308.336 Td
+/F1.0 2.625 Tf
+<ca> Tj
+ET
+
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+535.301 308.336 Td
+/F1.0 10.5 Tf
+<3335> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 289.856 Td
+/F1.0 10.5 Tf
+[<352e204c6f61642d54696d652057> 60.0586 <656176696e67>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6627 0.6627 0.6627 scn
+0.6627 0.6627 0.6627 SCN
+
+BT
+160.5061 289.856 Td
+/F1.0 10.5 Tf
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+BT
+534.6211 289.856 Td
+/F1.0 2.625 Tf
+<ca> Tj
+ET
+
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+535.301 289.856 Td
+/F1.0 10.5 Tf
+<3336> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+60.24 271.376 Td
+/F1.0 10.5 Tf
+<352e312e20496e74726f64756374696f6e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6627 0.6627 0.6627 scn
+0.6627 0.6627 0.6627 SCN
+
+BT
+144.4726 271.376 Td
+/F1.0 10.5 Tf
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+BT
+534.6211 271.376 Td
+/F1.0 2.625 Tf
+<ca> Tj
+ET
+
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+535.301 271.376 Td
+/F1.0 10.5 Tf
+<3336> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+60.24 252.896 Td
+/F1.0 10.5 Tf
+[<352e322e204c6f61642d74696d652057> 60.0586 <656176696e6720526571756972656d656e7473>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6627 0.6627 0.6627 scn
+0.6627 0.6627 0.6627 SCN
+
+BT
+251.3626 252.896 Td
+/F1.0 10.5 Tf
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+BT
+534.6211 252.896 Td
+/F1.0 2.625 Tf
+<ca> Tj
+ET
+
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+535.301 252.896 Td
+/F1.0 10.5 Tf
+<3336> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+60.24 234.416 Td
+/F1.0 10.5 Tf
+[<352e332e20436f6e6669677572> 20.0195 <6174696f6e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6627 0.6627 0.6627 scn
+0.6627 0.6627 0.6627 SCN
+
+BT
+149.8171 234.416 Td
+/F1.0 10.5 Tf
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+BT
+534.6211 234.416 Td
+/F1.0 2.625 Tf
+<ca> Tj
+ET
+
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+535.301 234.416 Td
+/F1.0 10.5 Tf
+<3337> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+60.24 215.936 Td
+/F1.0 10.5 Tf
+<352e342e205370656369616c206361736573> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6627 0.6627 0.6627 scn
+0.6627 0.6627 0.6627 SCN
+
+BT
+144.4726 215.936 Td
+/F1.0 10.5 Tf
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+BT
+534.6211 215.936 Td
+/F1.0 2.625 Tf
+<ca> Tj
+ET
+
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+535.301 215.936 Td
+/F1.0 10.5 Tf
+<3433> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+60.24 197.456 Td
+/F1.0 10.5 Tf
+[<352e352e2052756e74696d6520526571756972656d656e747320666f72204c6f61642d74696d652057> 60.0586 <656176696e67>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6627 0.6627 0.6627 scn
+0.6627 0.6627 0.6627 SCN
+
+BT
+315.4966 197.456 Td
+/F1.0 10.5 Tf
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+BT
+534.6211 197.456 Td
+/F1.0 2.625 Tf
+<ca> Tj
+ET
+
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+535.301 197.456 Td
+/F1.0 10.5 Tf
+<3433> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+60.24 178.976 Td
+/F1.0 10.5 Tf
+[<352e362e20537570706f727465642041> 20.0195 <67656e7473>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6627 0.6627 0.6627 scn
+0.6627 0.6627 0.6627 SCN
+
+BT
+171.1951 178.976 Td
+/F1.0 10.5 Tf
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+BT
+534.6211 178.976 Td
+/F1.0 2.625 Tf
+<ca> Tj
+ET
+
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+535.301 178.976 Td
+/F1.0 10.5 Tf
+<3433> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 160.496 Td
+/F1.0 10.5 Tf
+<362e204173706563744a2076657273696f6e20636f6d7061746962696c697479> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6627 0.6627 0.6627 scn
+0.6627 0.6627 0.6627 SCN
+
+BT
+208.6066 160.496 Td
+/F1.0 10.5 Tf
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+BT
+534.6211 160.496 Td
+/F1.0 2.625 Tf
+<ca> Tj
+ET
+
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+535.301 160.496 Td
+/F1.0 10.5 Tf
+<3435> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+60.24 142.016 Td
+/F1.0 10.5 Tf
+[<362e312e2056> 60.0586 <657273696f6e20436f6d7061746962696c697479>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6627 0.6627 0.6627 scn
+0.6627 0.6627 0.6627 SCN
+
+BT
+192.5731 142.016 Td
+/F1.0 10.5 Tf
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+BT
+534.6211 142.016 Td
+/F1.0 2.625 Tf
+<ca> Tj
+ET
+
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+535.301 142.016 Td
+/F1.0 10.5 Tf
+<3435> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+Q
+
+endstream
+endobj
+10 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/CropBox [0 0 595.28 841.89]
+/BleedBox [0 0 595.28 841.89]
+/TrimBox [0 0 595.28 841.89]
+/ArtBox [0 0 595.28 841.89]
+/Contents 9 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+/Font << /F2.0 22 0 R
+/F1.0 8 0 R
+>>
+>>
+/Annots [254 0 R 255 0 R 256 0 R 257 0 R 258 0 R 259 0 R 260 0 R 261 0 R 262 0 R 263 0 R 264 0 R 265 0 R 266 0 R 267 0 R 268 0 R 269 0 R 270 0 R 271 0 R 272 0 R 273 0 R 274 0 R 275 0 R 276 0 R 277 0 R 278 0 R 279 0 R 280 0 R 281 0 R 282 0 R 283 0 R 284 0 R 285 0 R 286 0 R 287 0 R 288 0 R 289 0 R 290 0 R 291 0 R 292 0 R 293 0 R 294 0 R 295 0 R 296 0 R 297 0 R 298 0 R 299 0 R 300 0 R 301 0 R 302 0 R 303 0 R 304 0 R 305 0 R 306 0 R 307 0 R 308 0 R 309 0 R 310 0 R 311 0 R 312 0 R 313 0 R 314 0 R 315 0 R 316 0 R 317 0 R 318 0 R 319 0 R 320 0 R 321 0 R]
+>>
+endobj
+11 0 obj
+<< /Length 4064
+>>
+stream
+q
+/DeviceRGB cs
+0.2 0.2 0.2 scn
+/DeviceRGB CS
+0.2 0.2 0.2 SCN
+
+BT
+48.24 791.0774 Td
+/F1.0 13 Tf
+[<62> 20.0195 <7920746865204173706563744a2054> 29.7852 <65616d>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+6.5931 Tw
+
+BT
+48.24 771.5403 Td
+/F1.0 13 Tf
+[<436f70> 20.0195 <79726967687420313939382d32303031205865726f7820436f72706f72> 20.0195 <6174696f6e2c20323030322050616c6f20416c746f2052657365617263682043656e7465722c>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 752.0031 Td
+/F1.0 13 Tf
+[<496e636f72706f72> 20.0195 <617465642c20323030332d3230303520436f6e7472696275746f72732e20416c6c207269676874732072657365727665642e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.4761 Tw
+
+BT
+48.24 723.3146 Td
+/F1.0 10.5 Tf
+<546869732067756964652064657363726962657320746865206368616e67657320746f20746865204173706563744a206c616e677561676520696e204173706563744a20352e20546865736520696e636c75646520737570706f727420666f72> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.7405 Tw
+
+BT
+48.24 707.5346 Td
+/F1.0 10.5 Tf
+<4a61766120352066656174757265732c20737570706f727420666f7220616e20616e6e6f746174696f6e2d626173656420646576656c6f706d656e74207374796c6520666f72206173706563747320616e64206e6577207265666c656374696f6e> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.3229 Tw
+
+BT
+48.24 691.7546 Td
+/F1.0 10.5 Tf
+[<616e6420746f6f6c7320415049732e20496620796f7520617265206e657720746f204173706563744a2c207765207265636f6d6d656e6420796f752073746172742062> 20.0195 <792072656164696e67207468652070726f6772> 20.0195 <616d6d696e67>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 675.9746 Td
+/F1.0 10.5 Tf
+<67756964652e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+3.3239 Tw
+
+BT
+48.24 648.1946 Td
+/F1.0 10.5 Tf
+[<546869732067756964652064657363726962657320686f7720746f206275696c6420616e64206465706c6f> 20.0195 <79204173706563744a2070726f6772> 20.0195 <616d73207573696e6720746865204173706563744a20746f6f6c7320616e64>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.1837 Tw
+
+BT
+48.24 632.4146 Td
+/F1.0 10.5 Tf
+<666163696c69746965732e2053656520616c736f20> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2588 0.5451 0.7922 scn
+0.2588 0.5451 0.7922 SCN
+
+1.1837 Tw
+
+BT
+141.7551 632.4146 Td
+/F1.0 10.5 Tf
+[<546865204173706563744a2050726f6772> 20.0195 <616d6d696e67204775696465>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.1837 Tw
+
+BT
+307.7304 632.4146 Td
+/F1.0 10.5 Tf
+<2c2074686520646f63756d656e746174696f6e20617661696c61626c65207769746820746865204173706563744a> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.0674 Tw
+
+BT
+48.24 616.6346 Td
+/F1.0 10.5 Tf
+[<737570706f727420617661696c61626c6520666f7220766172696f757320696e74656772> 20.0195 <6174656420646576656c6f706d656e7420656e7669726f6e6d656e74732028652e672e20>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2588 0.5451 0.7922 scn
+0.2588 0.5451 0.7922 SCN
+
+2.0674 Tw
+
+BT
+431.2496 616.6346 Td
+/F1.0 10.5 Tf
+[<45636c6970736520414a44> 20.0195 <54>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.0674 Tw
+
+BT
+496.1278 616.6346 Td
+/F1.0 10.5 Tf
+<292c20616e6420746865> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 600.8546 Td
+/F1.0 10.5 Tf
+<6d6f73742d726563656e7420646f63756d656e746174696f6e20617661696c61626c652066726f6d2074686520> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2588 0.5451 0.7922 scn
+0.2588 0.5451 0.7922 SCN
+
+BT
+283.86 600.8546 Td
+/F1.0 10.5 Tf
+<4173706563744a2070726f6a6563742070616765> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+384.7545 600.8546 Td
+/F1.0 10.5 Tf
+<2e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.0 0.0 0.0 scn
+0.0 0.0 0.0 SCN
+1 w
+0 J
+0 j
+[] 0 d
+/Stamp1 Do
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+541.009 14.263 Td
+/F1.0 9 Tf
+<31> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+Q
+Q
+
+endstream
+endobj
+12 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/CropBox [0 0 595.28 841.89]
+/BleedBox [0 0 595.28 841.89]
+/TrimBox [0 0 595.28 841.89]
+/ArtBox [0 0 595.28 841.89]
+/Contents 11 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+/Font << /F1.0 8 0 R
+>>
+/XObject << /Stamp1 360 0 R
+>>
+>>
+/Annots [16 0 R 17 0 R 18 0 R]
+>>
+endobj
+13 0 obj
+[12 0 R /XYZ 0 841.89 null]
+endobj
+14 0 obj
+<< /Type /Names
+/Dests 15 0 R
+>>
+endobj
+15 0 obj
+<< /Kids [91 0 R 92 0 R 120 0 R 170 0 R 234 0 R]
+>>
+endobj
+16 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (../progGuideDB/progguide.adoc)
+>>
+/Subtype /Link
+/Rect [141.7551 629.3486 307.7304 643.6286]
+/Type /Annot
+>>
+endobj
+17 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (https://www.eclipse.org/ajdt/)
+>>
+/Subtype /Link
+/Rect [431.2496 613.5686 496.1278 627.8486]
+/Type /Annot
+>>
+endobj
+18 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (https://eclipse.org/aspectj)
+>>
+/Subtype /Link
+/Rect [283.86 597.7886 384.7545 612.0686]
+/Type /Annot
+>>
+endobj
+19 0 obj
+<< /Length 13683
+>>
+stream
+q
+/DeviceRGB cs
+0.2 0.2 0.2 scn
+/DeviceRGB CS
+0.2 0.2 0.2 SCN
+
+BT
+48.24 782.394 Td
+/F2.0 22 Tf
+<4368617074657220312e20496e74726f64756374696f6e20746f20746865204173706563744a20746f6f6c73> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 741.146 Td
+/F2.0 18 Tf
+<312e312e205468652045636c69707365204173706563744a20696d706c656d656e746174696f6e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.2826 Tw
+
+BT
+48.24 713.126 Td
+/F1.0 10.5 Tf
+<54686520> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2588 0.5451 0.7922 scn
+0.2588 0.5451 0.7922 SCN
+
+1.2826 Tw
+
+BT
+70.9426 713.126 Td
+/F1.0 10.5 Tf
+[<4173706563744a2050726f6772> 20.0195 <616d6d696e67204775696465>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.2826 Tw
+
+BT
+214.512 713.126 Td
+/F1.0 10.5 Tf
+<2064657363726962657320746865204173706563744a206c616e67756167652e20546869732067756964652064657363726962657320746865204173706563744a> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.7401 Tw
+
+BT
+48.24 697.346 Td
+/F1.0 10.5 Tf
+[<746f6f6c732070726f64756365642062> 20.0195 <7920746865204173706563744a207465616d206f6e20>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2588 0.5451 0.7922 scn
+0.2588 0.5451 0.7922 SCN
+
+0.7401 Tw
+
+BT
+246.8829 697.346 Td
+/F1.0 10.5 Tf
+<687474703a2f2f65636c697073652e6f72672f6173706563746a> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.7401 Tw
+
+BT
+367.5909 697.346 Td
+/F1.0 10.5 Tf
+<2e20546865204173706563744a20746f6f6c7320696e636c756465202d20616a632c20746865> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.8894 Tw
+
+BT
+48.24 681.566 Td
+/F1.0 10.5 Tf
+<636f6d70696c65722f7765617665723b20616a646f632c206120646f63756d656e746174696f6e20746f6f6c3b20616a62726f777365722c20612063726f737363757474696e6720636f6465207669657765723b20416e7420737570706f7274> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.1508 Tw
+
+BT
+48.24 665.786 Td
+/F1.0 10.5 Tf
+[<666f7220616a633b20616e64206c6f61642d74696d652077656176696e6720737570706f72742e20546865736520746f6f6c73206172652064656c69766572656420696e20746865206c696272> 20.0195 <61727920666f6c646572206f6620746865204173706563744a>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.4077 Tw
+
+BT
+48.24 650.006 Td
+/F1.0 10.5 Tf
+<746f6f6c7320696e7374616c6c6174696f6e2c206d61696e6c7920696e20> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.4077 Tw
+
+BT
+193.1534 650.006 Td
+/F3.0 10.5 Tf
+<6173706563746a746f6f6c732e6a6172> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.4077 Tw
+
+BT
+277.1534 650.006 Td
+/F1.0 10.5 Tf
+<2028746f6f6c732920616e6420> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.4077 Tw
+
+BT
+339.7146 650.006 Td
+/F3.0 10.5 Tf
+<6173706563746a72742e6a6172> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.4077 Tw
+
+BT
+407.9646 650.006 Td
+/F1.0 10.5 Tf
+<202872756e74696d65292e205468697320677569646520646f6573> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.8558 Tw
+
+BT
+48.24 634.226 Td
+/F1.0 10.5 Tf
+[<6e6f74206465736372696265207468652045636c69707365204173706563744a20646576656c6f706d656e7420746f6f6c732028414a44> 20.0195 <54292e20546861742069732070726f64756365642062> 20.0195 <7920616e6f74686572207465616d>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+5.0799 Tw
+
+BT
+48.24 618.446 Td
+/F1.0 10.5 Tf
+<2873686172696e6720736f6d65206d656d6265727329206f6e20> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2588 0.5451 0.7922 scn
+0.2588 0.5451 0.7922 SCN
+
+5.0799 Tw
+
+BT
+211.0445 618.446 Td
+/F1.0 10.5 Tf
+<687474703a2f2f65636c697073652e6f72672f616a6474> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+5.0799 Tw
+
+BT
+316.2335 618.446 Td
+/F1.0 10.5 Tf
+[<2e20414a44> 20.0195 <542069732064656c69766572656420617320616e2045636c6970736520706c7567696e2c>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.8397 Tw
+
+BT
+48.24 602.666 Td
+/F1.0 10.5 Tf
+[<696e636f72706f72> 20.0195 <6174696e672074686520636c617373657320696e20746865204173706563744a20746f6f6c73206c696272> 20.0195 <617269657320616c6f6e672077697468207468652045636c6970736520706c7567696e20696e74657266616365>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 586.886 Td
+/F1.0 10.5 Tf
+<636c61737365732e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.4949 Tw
+
+BT
+48.24 559.106 Td
+/F1.0 10.5 Tf
+[<53696e6365204173706563744a20312e312c2074686520746f6f6c73206861766520696d706c656d656e74656420746865204173706563744a206c616e6775616765207573696e672062> 20.0195 <797465636f64652077656176696e672c207768696368>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.5879 Tw
+
+BT
+48.24 543.326 Td
+/F1.0 10.5 Tf
+[<636f6d62696e6573206173706563747320616e6420636c617373657320746f2070726f64756365202e636c6173732066696c657320746861742072756e20696e2061204a61766120564d2e20546865726520617265206f74686572207761> 20.0195 <797320746f>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.8452 Tw
+
+BT
+48.24 527.546 Td
+/F1.0 10.5 Tf
+[<696d706c656d656e7420746865206c616e67756167652028652e672e2c20636f6d70696c65722070726570726f636573736f722c20564d20737570706f7274293b20746865204173706563744a207465616d2068617320616c7761> 20.0195 <7973>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.2824 Tw
+
+BT
+48.24 511.766 Td
+/F1.0 10.5 Tf
+<747269656420746f2064697374696e677569736820746865206c616e677561676520616e642074686520696d706c656d656e746174696f6e20736f206f746865722067726f75707320636f756c64206275696c6420616c7465726e6174697665> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.3655 Tw
+
+BT
+48.24 495.986 Td
+/F1.0 10.5 Tf
+[<696d706c656d656e746174696f6e73206f66204173706563744a2e2054> 29.7852 <6f207468617420656e642c20>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2588 0.5451 0.7922 scn
+0.2588 0.5451 0.7922 SCN
+
+1.3655 Tw
+
+BT
+260.755 495.986 Td
+/F1.0 10.5 Tf
+[<546865204173706563744a2050726f6772> 20.0195 <616d6d696e672047756964652c20496d706c656d656e746174696f6e204e6f746573>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.3655 Tw
+
+BT
+547.04 495.986 Td
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+5.9504 Tw
+
+BT
+48.24 480.206 Td
+/F1.0 10.5 Tf
+[<64657363726962657320686f7720746865204a6176612062> 20.0195 <797465636f646520666f726d2061666665637473206c616e67756167652073656d616e746963732e20564d2d206f7220736f757263652d6261736564>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.053 Tw
+
+BT
+48.24 464.426 Td
+/F1.0 10.5 Tf
+[<696d706c656d656e746174696f6e73206d61> 20.0195 <792062652066726565206f66207468657365206c696d697473206f7220696d706f7365206c696d697473206f66207468656972206f776e2c20627574206d6f73742073686f756c6420626520666169726c79>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 448.646 Td
+/F1.0 10.5 Tf
+[<636c6f736520746f2077686174d57320706f737369626c6520696e204a6176612062> 20.0195 <797465636f64652e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.0924 Tw
+
+BT
+48.24 420.866 Td
+/F1.0 10.5 Tf
+[<506c65617365206265206361726566756c206e6f7420746f20636f6e6675736520616e> 20.0195 <79206465736372697074696f6e206f662077656176696e67206f72206f66207468697320696d706c656d656e746174696f6e206f6620746865204173706563744a>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.5514 Tw
+
+BT
+48.24 405.086 Td
+/F1.0 10.5 Tf
+<6c616e6775616765207769746820746865204173706563744a206c616e67756167652073656d616e746963732e20496620796f7520646f2c20796f75206d696768742066696e6420796f757273656c662077726974696e6720636f64652074686174> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.2 Tw
+
+BT
+48.24 389.306 Td
+/F1.0 10.5 Tf
+[<646f65736ed57420776f726b206173206578706563746564207768656e20796f7520636f6d70696c65206f722072756e206974206f6e206f746865722073797374656d732e204d6f726520696d706f7274616e746c79> 89.8438 <2c20696620796f75>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.2828 Tw
+
+BT
+48.24 373.526 Td
+/F1.0 10.5 Tf
+[<7468696e6b2061626f7574206173706563747320696e207465726d73206f662077656176696e67206f72206f6620696e73657274696e67206f72206d657267696e6720636f64652c207468656e20796f752063616e206c6f7365206d616e> 20.0195 <79206f66>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.1271 Tw
+
+BT
+48.24 357.746 Td
+/F1.0 10.5 Tf
+<7468652064657369676e2062656e6566697473206f66207468696e6b696e672061626f757420616e2061737065637420617320612073696e676c652063726f737363757474696e67206d6f64756c652e205768656e207468652074657874> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.2991 Tw
+
+BT
+48.24 341.966 Td
+/F1.0 10.5 Tf
+[<62656c6f7720696e74726f647563657320616e20696d706c656d656e746174696f6e2064657461696c2c2069742077696c6c207761726e206966207573657273206d616b> 20.0195 <65206d697374616b> 20.0195 <65732062> 20.0195 <79206170706c79696e6720697420696e>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 326.186 Td
+/F1.0 10.5 Tf
+<6c696575206f6620746865206c616e67756167652073656d616e746963732e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 286.346 Td
+/F2.0 18 Tf
+[<312e322e2042> 20.0195 <797465636f64652077656176696e672c20696e6372656d656e74616c20636f6d70696c6174696f6e2c20616e64>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 261.866 Td
+/F2.0 18 Tf
+<6d656d6f7279207573616765> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.5299 Tw
+
+BT
+48.24 233.846 Td
+/F1.0 10.5 Tf
+[<42> 20.0195 <797465636f64652077656176696e672074616b> 20.0195 <657320636c617373657320616e64206173706563747320696e202e636c61737320666f726d20616e6420776561766573207468656d20746f67657468657220746f2070726f64756365>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.1128 Tw
+
+BT
+48.24 218.066 Td
+/F1.0 10.5 Tf
+[<62696e6172792d636f6d70617469626c65202e636c6173732066696c657320746861742072756e20696e20616e> 20.0195 <79204a61766120564d20616e6420696d706c656d656e7420746865204173706563744a2073656d616e746963732e2054686973>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.0884 Tw
+
+BT
+48.24 202.286 Td
+/F1.0 10.5 Tf
+<70726f6365737320737570706f727473206e6f74206f6e6c792074686520636f6d70696c65722062757420616c736f20494445d5732e2054686520636f6d70696c65722c20676976656e20616e2061737065637420696e20736f7572636520666f726d2c> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.5871 Tw
+
+BT
+48.24 186.506 Td
+/F1.0 10.5 Tf
+<70726f647563657320612062696e6172792061737065637420616e642072756e7320746865207765617665722e20494445d5732063616e2067657420696e666f726d6174696f6e2061626f75742063726f737363757474696e6720696e20746865> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 170.726 Td
+/F1.0 10.5 Tf
+[<70726f6772> 20.0195 <616d2062> 20.0195 <79207375627363726962696e6720746f20696e666f726d6174696f6e2070726f64756365642062> 20.0195 <7920776561766572206173206120736964652d656666656374206f662077656176696e672e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.3696 Tw
+
+BT
+48.24 142.946 Td
+/F1.0 10.5 Tf
+<496e6372656d656e74616c20636f6d70696c6174696f6e20696e766f6c766573207265636f6d70696c696e67206f6e6c792077686174206973206e656365737361727920746f206272696e67207468652062696e61727920666f726d206f662061> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+3.2382 Tw
+
+BT
+48.24 127.166 Td
+/F1.0 10.5 Tf
+[<70726f6772> 20.0195 <616d2075702d746f2d6461746520776974682074686520736f7572636520666f726d20696e207468652073686f72746573742074696d6520706f737369626c652e20496e6372656d656e74616c2077656176696e67>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.0269 Tw
+
+BT
+48.24 111.386 Td
+/F1.0 10.5 Tf
+[<737570706f72747320746869732062> 20.0195 <792077656176696e67206f6e2061207065722d636c6173732062617369732e2028536f6d6520696d706c656d656e746174696f6e73206f662041> 20.0195 <4f502028696e636c7564696e67204173706563744a20312e3029>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.2946 Tw
+
+BT
+48.24 95.606 Td
+/F1.0 10.5 Tf
+[<6d616b> 20.0195 <6520757365206f662077686f6c652d70726f6772> 20.0195 <616d20616e616c7973697320746861742063616ed57420626520646f6e6520696e20696e6372656d656e74616c206d6f64652e292057> 60.0586 <656176696e67207065722d636c617373>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.7627 Tw
+
+BT
+48.24 79.826 Td
+/F1.0 10.5 Tf
+<6d65616e7320746861742069662074686520736f7572636520666f7220612070757265204a61766120636c61737320697320757064617465642c206f6e6c79207468617420636c617373206e6565647320746f2062652070726f64756365642e> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.8164 Tw
+
+BT
+48.24 64.046 Td
+/F1.0 10.5 Tf
+[<486f77657665722c20696620736f6d652063726f737363757474696e672073706563696669636174696f6e206d61> 20.0195 <792068617665206265656e20757064617465642c207468656e20616c6c20636f646520706f74656e7469616c6c79>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.0 0.0 0.0 scn
+0.0 0.0 0.0 SCN
+1 w
+0 J
+0 j
+[] 0 d
+/Stamp2 Do
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+49.24 14.263 Td
+/F1.0 9 Tf
+<32> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+Q
+Q
+
+endstream
+endobj
+20 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/CropBox [0 0 595.28 841.89]
+/BleedBox [0 0 595.28 841.89]
+/TrimBox [0 0 595.28 841.89]
+/ArtBox [0 0 595.28 841.89]
+/Contents 19 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+/Font << /F2.0 22 0 R
+/F1.0 8 0 R
+/F3.0 26 0 R
+>>
+/XObject << /Stamp2 361 0 R
+>>
+>>
+/Annots [24 0 R 25 0 R 27 0 R 28 0 R]
+>>
+endobj
+21 0 obj
+[20 0 R /XYZ 0 841.89 null]
+endobj
+22 0 obj
+<< /Type /Font
+/BaseFont /b37b0f+NotoSerif-Bold
+/Subtype /TrueType
+/FontDescriptor 367 0 R
+/FirstChar 32
+/LastChar 255
+/Widths 369 0 R
+/ToUnicode 368 0 R
+>>
+endobj
+23 0 obj
+[20 0 R /XYZ 0 765.17 null]
+endobj
+24 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (../progguide/index.html)
+>>
+/Subtype /Link
+/Rect [70.9426 710.06 214.512 724.34]
+/Type /Annot
+>>
+endobj
+25 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (http://eclipse.org/aspectj)
+>>
+/Subtype /Link
+/Rect [246.8829 694.28 367.5909 708.56]
+/Type /Annot
+>>
+endobj
+26 0 obj
+<< /Type /Font
+/BaseFont /61e12f+mplus1mn-regular
+/Subtype /TrueType
+/FontDescriptor 371 0 R
+/FirstChar 32
+/LastChar 255
+/Widths 373 0 R
+/ToUnicode 372 0 R
+>>
+endobj
+27 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (http://eclipse.org/aspectj)
+>>
+/Subtype /Link
+/Rect [211.0445 615.38 316.2335 629.66]
+/Type /Annot
+>>
+endobj
+28 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (../progguide/implementation.html)
+>>
+/Subtype /Link
+/Rect [260.755 492.92 547.04 507.2]
+/Type /Annot
+>>
+endobj
+29 0 obj
+[20 0 R /XYZ 0 310.37 null]
+endobj
+30 0 obj
+<< /Length 15549
+>>
+stream
+q
+/DeviceRGB cs
+0.2 0.2 0.2 scn
+/DeviceRGB CS
+0.2 0.2 0.2 SCN
+
+0.7491 Tw
+
+BT
+48.24 794.676 Td
+/F1.0 10.5 Tf
+[<61666665637465642062> 20.0195 <79206974206d61> 20.0195 <79206e65656420746f20626520776f76656e2e20546865204173706563744a20746f6f6c73206172652067657474696e6720626574746572206174206d696e696d697a696e672074686973206566666563742c>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 778.896 Td
+/F1.0 10.5 Tf
+<62757420697420697320746f20736f6d652064656772656520756e61766f696461626c652064756520746f207468652063726f737363757474696e672073656d616e746963732e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.3078 Tw
+
+BT
+48.24 751.116 Td
+/F1.0 10.5 Tf
+<4d656d6f72792075736167652063616e207365656d206869676865722077697468204173706563744a20746f6f6c732e20536f6d65206173706563747320617265207772697474656e20746f20706f74656e7469616c6c7920616666656374> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.2184 Tw
+
+BT
+48.24 735.336 Td
+/F1.0 10.5 Tf
+[<6d616e> 20.0195 <7920636c61737365732c20736f206561636820636c617373206d75737420626520636865636b> 20.0195 <656420647572696e67207468652070726f63657373206f662077656176696e672e2050726f6772> 20.0195 <616d6d6572732063616e>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.6884 Tw
+
+BT
+48.24 719.556 Td
+/F1.0 10.5 Tf
+[<6d696e696d697a6520746869732062> 20.0195 <792077726974696e67207468652063726f737363757474696e672073706563696669636174696f6e73206173206e6172726f776c7920617320706f737369626c65207768696c65206d61696e7461696e696e67>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.4702 Tw
+
+BT
+48.24 703.776 Td
+/F1.0 10.5 Tf
+[<636f72726563746e6573732e20285768696c65206974206d61> 20.0195 <79207365656d206c696b> 20.0195 <65206d6f7265206d656d6f7279> 89.8438 <2c207468652070726f70657220636f6d70617269736f6e20776f756c64207769746820776974682061204a617661>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.8943 Tw
+
+BT
+48.24 687.996 Td
+/F1.0 10.5 Tf
+[<70726f6772> 20.0195 <616d207468617420686164207468652073616d652063726f737363757474696e672c2077697468206368616e676573206d61646520746f206561636820636f6465207365676d656e742e205468617420776f756c64>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 672.216 Td
+/F1.0 10.5 Tf
+[<6c696b> 20.0195 <656c792072657175697265206d6f7265206d656d6f727920616e64206d6f72652074696d6520746f207265636f6d70696c65207468616e2074686520636f72726573706f6e64696e67204173706563744a2070726f6772> 20.0195 <616d2e29>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 637.716 Td
+/F2.0 13 Tf
+<312e322e312e20436c617373706174682c20696e706174682c20616e642061737065637470617468> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.8286 Tw
+
+BT
+48.24 611.156 Td
+/F1.0 10.5 Tf
+<4173706563744a20696e74726f64756365732074776f206e657720706174687320666f72207468652062696e61727920696e70757420746f207468652077656176657220776869636820796f75d56c6c2066696e64207265666572656e636564> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 595.376 Td
+/F1.0 10.5 Tf
+<696e20> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2588 0.5451 0.7922 scn
+0.2588 0.5451 0.7922 SCN
+
+BT
+61.0815 595.376 Td
+/F1.0 10.5 Tf
+<3f3f3f> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+76.8315 595.376 Td
+/F1.0 10.5 Tf
+<2c20> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2588 0.5451 0.7922 scn
+0.2588 0.5451 0.7922 SCN
+
+BT
+82.176 595.376 Td
+/F1.0 10.5 Tf
+<3f3f3f> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+97.926 595.376 Td
+/F1.0 10.5 Tf
+<2c20> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2588 0.5451 0.7922 scn
+0.2588 0.5451 0.7922 SCN
+
+BT
+103.2705 595.376 Td
+/F1.0 10.5 Tf
+<3f3f3f> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+119.0205 595.376 Td
+/F1.0 10.5 Tf
+<2c20616e6420> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2588 0.5451 0.7922 scn
+0.2588 0.5451 0.7922 SCN
+
+BT
+146.1945 595.376 Td
+/F1.0 10.5 Tf
+<3f3f3f> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+161.9445 595.376 Td
+/F1.0 10.5 Tf
+<2e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.2093 Tw
+
+BT
+48.24 567.596 Td
+/F1.0 10.5 Tf
+<417320696e204a6176612c2074686520> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.2093 Tw
+
+BT
+126.4303 567.596 Td
+/F3.0 10.5 Tf
+<636c61737370617468> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.2093 Tw
+
+BT
+173.6803 567.596 Td
+/F1.0 10.5 Tf
+[<20697320776865726520746865204173706563744a20746f6f6c73207265736f6c76652074797065732073706563696669656420696e207468652070726f6772> 20.0195 <616d2e205768656e>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.3033 Tw
+
+BT
+48.24 551.816 Td
+/F1.0 10.5 Tf
+[<72756e6e696e6720616e204173706563744a2070726f6772> 20.0195 <616d2c2074686520636c617373706174682073686f756c6420636f6e7461696e2074686520636c617373657320616e64206173706563747320616c6f6e67207769746820746865>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 536.036 Td
+/F1.0 10.5 Tf
+[<4173706563744a2072756e74696d65206c696272> 20.0195 <617279> 89.8438 <2c20>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+170.3669 536.036 Td
+/F3.0 10.5 Tf
+<6173706563746a72742e6a6172> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+238.6169 536.036 Td
+/F1.0 10.5 Tf
+<2e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.3708 Tw
+
+BT
+48.24 508.256 Td
+/F1.0 10.5 Tf
+<496e204173706563744a20746f6f6c732c2074686520> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.3708 Tw
+
+BT
+154.4181 508.256 Td
+/F3.0 10.5 Tf
+<61737065637470617468> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.3708 Tw
+
+BT
+206.9181 508.256 Td
+/F1.0 10.5 Tf
+[<20697320776865726520746f2066696e642062696e61727920617370656374732e204c696b> 20.0195 <652074686520636c617373706174682c2069742063616e20696e636c756465>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.6326 Tw
+
+BT
+48.24 492.476 Td
+/F1.0 10.5 Tf
+[<617263686976657320282e6a617220616e64202e7a69702066696c65732920616e64206469726563746f7269657320636f6e7461696e696e67202e636c6173732066696c657320696e2061207061636b616765206c61> 20.0195 <796f7574202873696e63652062696e617279>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.305 Tw
+
+BT
+48.24 476.696 Td
+/F1.0 10.5 Tf
+[<617370656374732061726520696e202e636c6173732066696c6573292e205468657365206173706563747320616666656374206f7468657220636c617373657320696e2065786163746c79207468652073616d65207761> 20.0195 <7920617320736f757263652d6c6576656c>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.3164 Tw
+
+BT
+48.24 460.916 Td
+/F1.0 10.5 Tf
+[<617370656374732c2062757420617265207468656d73656c766573206e6f742061666665637465642e205768656e206465706c6f> 20.0195 <79696e672070726f6772> 20.0195 <616d732c20746865206f726967696e616c2061737065637473206d757374206265>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 445.136 Td
+/F1.0 10.5 Tf
+<696e636c75646564206f6e207468652072756e74696d6520636c617373706174682e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.6946 Tw
+
+BT
+48.24 417.356 Td
+/F1.0 10.5 Tf
+<496e204173706563744a20746f6f6c732c2074686520> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.6946 Tw
+
+BT
+151.7135 417.356 Td
+/F3.0 10.5 Tf
+<696e70617468> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.6946 Tw
+
+BT
+183.2135 417.356 Td
+/F1.0 10.5 Tf
+[<20697320776865726520746f2066696e642062696e61727920696e707574202d206173706563747320616e6420636c6173736573207468617420776561766520616e64206d61> 20.0195 <79>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.1934 Tw
+
+BT
+48.24 401.576 Td
+/F1.0 10.5 Tf
+[<626520776f76656e2e204c696b> 20.0195 <652074686520636c617373706174682c2069742063616e20696e636c75646520617263686976657320616e6420636c617373206469726563746f726965732e204c696b> 20.0195 <652074686520617370656374706174682c206974>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.3703 Tw
+
+BT
+48.24 385.796 Td
+/F1.0 10.5 Tf
+[<63616e20696e636c7564652061737065637473207468617420616666656374206f7468657220636c617373657320616e6420617370656374732e20486f77657665722c20756e6c696b> 20.0195 <652074686520617370656374706174682c20616e20617370656374>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.9492 Tw
+
+BT
+48.24 370.016 Td
+/F1.0 10.5 Tf
+[<6f6e2074686520696e70617468206d61> 20.0195 <7920697473656c662062652061666665637465642062> 20.0195 <7920617370656374732c2061732069662074686520736f75726365207765726520616c6c20636f6d70696c656420746f6765746865722e205768656e>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.4475 Tw
+
+BT
+48.24 354.236 Td
+/F1.0 10.5 Tf
+[<6465706c6f> 20.0195 <79696e6720617370656374732074686174207765726520707574206f6e2074686520696e706174682c206f6e6c792074686520776f76656e206f75747075742073686f756c64206265206f6e207468652072756e74696d65>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 338.456 Td
+/F1.0 10.5 Tf
+<636c617373706174682e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.2278 Tw
+
+BT
+48.24 310.676 Td
+/F1.0 10.5 Tf
+[<416c74686f75676820747970657320696e2074686520696e7061746820616e64207468652061737065637470617468206e65656420746f206265207265736f6c7665642062> 20.0195 <7920746865204173706563744a20746f6f6c732c20796f75>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.4884 Tw
+
+BT
+48.24 294.896 Td
+/F1.0 10.5 Tf
+[<757375616c6c7920646f206e6f74206e65656420746f20706c616365207468656d206f6e2074686520636c617373706174682062656361757365207468697320697320646f6e65206175746f6d61746963616c6c792062> 20.0195 <7920746865>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.4787 Tw
+
+BT
+48.24 279.116 Td
+/F1.0 10.5 Tf
+<636f6d70696c65722f7765617665722e20427574207768656e207573696e672074686520> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+2.4787 Tw
+
+BT
+250.2531 279.116 Td
+/F3.0 10.5 Tf
+<57656176696e6755524c436c6173734c6f61646572> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.4787 Tw
+
+BT
+360.5031 279.116 Td
+/F1.0 10.5 Tf
+<2c20796f757220636f6465206d757374206578706c696369746c792061646420746865> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.4559 Tw
+
+BT
+48.24 263.336 Td
+/F1.0 10.5 Tf
+<6173706563747320746f2074686520636c6173737061746820736f20746865792063616e206265207265736f6c7665642028617320796f75d56c6c2073656520696e207468652073616d706c6520636f646520616e642074686520> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.4559 Tw
+
+BT
+515.54 263.336 Td
+/F3.0 10.5 Tf
+<616a2e626174> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.4559 Tw
+
+BT
+547.04 263.336 Td
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 247.556 Td
+/F1.0 10.5 Tf
+<736372697074292e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.1818 Tw
+
+BT
+48.24 219.776 Td
+/F1.0 10.5 Tf
+[<546865206d6f737420636f6d6d6f6e206d697374616b> 20.0195 <65206973206661696c696e6720746f2061646420>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.1818 Tw
+
+BT
+266.3306 219.776 Td
+/F3.0 10.5 Tf
+<6173706563746a72742e6a6172> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.1818 Tw
+
+BT
+334.5806 219.776 Td
+/F1.0 10.5 Tf
+<20746f2074686520636c617373706174682e20416c736f2c207768656e2077656176696e672077697468> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.3983 Tw
+
+BT
+48.24 203.996 Td
+/F1.0 10.5 Tf
+[<62696e61727920617370656374732c20757365727320666f7267657420746f206465706c6f> 20.0195 <79207468652061737065637420697473656c6620616c6f6e67207769746820616e> 20.0195 <7920636c61737365732069742072657175697265732e2041206d6f7265>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.8955 Tw
+
+BT
+48.24 188.216 Td
+/F1.0 10.5 Tf
+[<737562746c65206d697374616b> 20.0195 <652069732070757474696e6720612062696e61727920617370656374202842> 20.0195 <4129206f6e2074686520696e7061746820696e7374656164206f662074686520617370656374706174682e20496e20746869732063617365>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.3497 Tw
+
+BT
+48.24 172.436 Td
+/F1.0 10.5 Tf
+[<746865206173706563742042> 20.0195 <41206d696768742062652061666665637465642062> 20.0195 <7920616e206173706563742c206576656e20697473656c663b20746869732063616e206361757365207468652070726f6772> 20.0195 <616d20746f206661696c2c20652e672e2c>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 156.656 Td
+/F1.0 10.5 Tf
+[<7768656e20616e206173706563742075736573206578636c7573696f6e20746f2061766f696420696e66696e69746520726563757273696f6e20627574206661696c7320746f206578636c7564652061647669636520696e206173706563742042> 20.0195 <412e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.242 Tw
+
+BT
+48.24 128.876 Td
+/F1.0 10.5 Tf
+[<546865206c6174746572206973206f6e65206f66206d616e> 20.0195 <79207761> 20.0195 <79732074686174206d697374616b> 20.0195 <657320696e20746865206275696c642070726f636573732063616e206166666563742061737065637473207468617420617265207772697474656e>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.7109 Tw
+
+BT
+48.24 113.096 Td
+/F1.0 10.5 Tf
+[<706f6f726c79> 89.8438 <2e20417370656374732073686f756c64206e657665722072656c79206f6e2074686520626f756e646172696573206f6620746865206275696c642073706563696669636174696f6e20746f206e6172726f77207468652073636f7065>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.2833 Tw
+
+BT
+48.24 97.316 Td
+/F1.0 10.5 Tf
+<6f662074686569722063726f737363757474696e672c2073696e636520746865206275696c642063616e206265206368616e67656420776974686f7574206e6f7469636520746f207468652061737065637420646576656c6f7065722e204361726566756c> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.6088 Tw
+
+BT
+48.24 81.536 Td
+/F1.0 10.5 Tf
+<7573657273206d69676874206576656e2061766f69642072656c79696e67206f6e2074686520696d706c656d656e746174696f6e2073636f70652c20746f20656e73757265207468656972204173706563744a20636f64652077696c6c2072756e> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 65.756 Td
+/F1.0 10.5 Tf
+<6f6e206f7468657220696d706c656d656e746174696f6e732e203d3d20> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+198.369 65.756 Td
+/F3.0 10.5 Tf
+<616a63> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+214.119 65.756 Td
+/F1.0 10.5 Tf
+<2c20746865204173706563744a20636f6d70696c65722f776561766572> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.0 0.0 0.0 scn
+0.0 0.0 0.0 SCN
+1 w
+0 J
+0 j
+[] 0 d
+/Stamp1 Do
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+541.009 14.263 Td
+/F1.0 9 Tf
+<33> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+Q
+Q
+
+endstream
+endobj
+31 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/CropBox [0 0 595.28 841.89]
+/BleedBox [0 0 595.28 841.89]
+/TrimBox [0 0 595.28 841.89]
+/ArtBox [0 0 595.28 841.89]
+/Contents 30 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+/Font << /F1.0 8 0 R
+/F2.0 22 0 R
+/F3.0 26 0 R
+>>
+/XObject << /Stamp1 360 0 R
+>>
+>>
+/Annots [33 0 R 34 0 R 35 0 R 36 0 R]
+>>
+endobj
+32 0 obj
+[31 0 R /XYZ 0 656.4 null]
+endobj
+33 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (#ajc-ref)
+>>
+/Subtype /Link
+/Rect [61.0815 592.31 76.8315 606.59]
+/Type /Annot
+>>
+endobj
+34 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (#ajbrowser)
+>>
+/Subtype /Link
+/Rect [82.176 592.31 97.926 606.59]
+/Type /Annot
+>>
+endobj
+35 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (#antTasks)
+>>
+/Subtype /Link
+/Rect [103.2705 592.31 119.0205 606.59]
+/Type /Annot
+>>
+endobj
+36 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (#ltw)
+>>
+/Subtype /Link
+/Rect [146.1945 592.31 161.9445 606.59]
+/Type /Annot
+>>
+endobj
+37 0 obj
+<< /Length 11955
+>>
+stream
+q
+/DeviceRGB cs
+0.2 0.2 0.2 scn
+/DeviceRGB CS
+0.2 0.2 0.2 SCN
+
+BT
+48.24 786.666 Td
+/F2.0 18 Tf
+<312e332e204e616d65> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+48.24 758.646 Td
+/F3.0 10.5 Tf
+<616a63> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+63.99 758.646 Td
+/F1.0 10.5 Tf
+[<202d20636f6d70696c657220616e642062> 20.0195 <797465636f64652077656176657220666f7220746865204173706563744a20616e64204a617661206c616e677561676573>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 718.806 Td
+/F2.0 18 Tf
+[<312e342e2053> 20.0195 <796e6f70736973>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.9608 0.9608 0.9608 scn
+52.24 702.75 m
+543.04 702.75 l
+545.2491 702.75 547.04 700.9591 547.04 698.75 c
+547.04 670.01 l
+547.04 667.8009 545.2491 666.01 543.04 666.01 c
+52.24 666.01 l
+50.0309 666.01 48.24 667.8009 48.24 670.01 c
+48.24 698.75 l
+48.24 700.9591 50.0309 702.75 52.24 702.75 c
+h
+f
+0.8 0.8 0.8 SCN
+0.75 w
+52.24 702.75 m
+543.04 702.75 l
+545.2491 702.75 547.04 700.9591 547.04 698.75 c
+547.04 670.01 l
+547.04 667.8009 545.2491 666.01 543.04 666.01 c
+52.24 666.01 l
+50.0309 666.01 48.24 667.8009 48.24 670.01 c
+48.24 698.75 l
+48.24 700.9591 50.0309 702.75 52.24 702.75 c
+h
+S
+Q
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 679.925 Td
+/F3.0 11 Tf
+<616a63205b4f7074696f6e735d205b66696c652e2e2e207c204066696c652e2e2e207c202d61726766696c652066696c652e2e2e5d> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 629.986 Td
+/F2.0 18 Tf
+<312e352e204465736372697074696f6e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.2793 Tw
+
+BT
+48.24 601.966 Td
+/F1.0 10.5 Tf
+<54686520> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.2793 Tw
+
+BT
+70.9393 601.966 Td
+/F3.0 10.5 Tf
+<616a63> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.2793 Tw
+
+BT
+86.6893 601.966 Td
+/F1.0 10.5 Tf
+<20636f6d6d616e6420636f6d70696c657320616e6420776561766573204173706563744a20616e64204a61766120736f7572636520616e64202e636c6173732066696c65732c2070726f647563696e67202e636c617373> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.4913 Tw
+
+BT
+48.24 586.186 Td
+/F1.0 10.5 Tf
+[<66696c657320636f6d706c69616e74207769746820616e> 20.0195 <79204a61766120564d2028312e31206f72206c61746572292e20497420636f6d62696e657320636f6d70696c6174696f6e20616e642062> 20.0195 <797465636f64652077656176696e6720616e64>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 570.406 Td
+/F1.0 10.5 Tf
+[<737570706f72747320696e6372656d656e74616c206275696c64733b20796f752063616e20616c736f2077656176652062> 20.0195 <797465636f64652061742072756e2d74696d65207573696e6720>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2588 0.5451 0.7922 scn
+0.2588 0.5451 0.7922 SCN
+
+BT
+431.1223 570.406 Td
+/F1.0 10.5 Tf
+<3f3f3f> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+446.8723 570.406 Td
+/F1.0 10.5 Tf
+<2e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.6367 Tw
+
+BT
+48.24 542.626 Td
+/F1.0 10.5 Tf
+[<54686520617267756d656e747320616674657220746865206f7074696f6e7320737065636966792074686520736f757263652066696c6528732920746f20636f6d70696c652e2054> 29.7852 <6f207370656369667920736f7572636520636c61737365732c20757365>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.1976 Tw
+
+BT
+48.24 526.846 Td
+/F3.0 10.5 Tf
+<2d696e70617468> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.1976 Tw
+
+BT
+84.99 526.846 Td
+/F1.0 10.5 Tf
+[<202862656c6f77292e2046696c6573206d61> 20.0195 <79206265206c6973746564206469726563746c79206f6e2074686520636f6d6d616e64206c696e65206f7220696e20612066696c652e2054686520>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.1976 Tw
+
+BT
+456.5653 526.846 Td
+/F3.0 10.5 Tf
+<2d61726766696c652066696c65> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.1976 Tw
+
+BT
+525.0129 526.846 Td
+/F1.0 10.5 Tf
+<20616e64> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.1608 Tw
+
+BT
+48.24 511.066 Td
+/F3.0 10.5 Tf
+<4066696c65> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.1608 Tw
+
+BT
+74.49 511.066 Td
+/F1.0 10.5 Tf
+<20666f726d7320617265206571756976616c656e742c20616e642061726520696e746572707265746564206173206d65616e696e6720616c6c2074686520617267756d656e7473206c697374656420696e2074686520737065636966696564> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 495.286 Td
+/F1.0 10.5 Tf
+<66696c652e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.749 Tw
+
+BT
+48.24 467.506 Td
+/F3.0 10.5 Tf
+<4e6f74653a> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.749 Tw
+
+BT
+74.49 467.506 Td
+/F1.0 10.5 Tf
+[<2059> 69.8242 <6f75206d757374206578706c696369746c79207061737320>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.749 Tw
+
+BT
+203.3021 467.506 Td
+/F3.0 10.5 Tf
+<616a63> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.749 Tw
+
+BT
+219.0521 467.506 Td
+/F1.0 10.5 Tf
+<20616c6c206e656365737361727920736f75726365732e204265207375726520746f20696e636c7564652074686520736f75726365206e6f74206f6e6c7920666f72> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.4359 Tw
+
+BT
+48.24 451.726 Td
+/F1.0 10.5 Tf
+[<7468652061737065637473206f7220706f696e74637574732062757420616c736f20666f7220616e> 20.0195 <792061666665637465642074797065732e2053706563696679696e6720616c6c20736f7572636573206973206e656365737361727920626563617573652c>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.2932 Tw
+
+BT
+48.24 435.946 Td
+/F1.0 10.5 Tf
+[<756e6c696b> 20.0195 <65206a617661632c20616a6320646f6573206e6f74207365617263682074686520736f757263657061746820666f7220636c61737365732e202846> 40.0391 <6f7220612064697363757373696f6e206f662077686174206166666563746564207479706573>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 420.166 Td
+/F1.0 10.5 Tf
+<6d696768742062652072657175697265642c2073656520> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2588 0.5451 0.7922 scn
+0.2588 0.5451 0.7922 SCN
+
+BT
+163.0365 420.166 Td
+/F1.0 10.5 Tf
+[<546865204173706563744a2050726f6772> 20.0195 <616d6d696e672047756964652c20496d706c656d656e746174696f6e20417070656e646978>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+462.8953 420.166 Td
+/F1.0 10.5 Tf
+<2e29> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.1848 Tw
+
+BT
+48.24 392.386 Td
+/F1.0 10.5 Tf
+[<54> 29.7852 <6f207370656369667920736f75726365732c20796f752063616e206c69737420736f757263652066696c657320617320617267756d656e7473206f722075736520746865206f7074696f6e7320>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.1848 Tw
+
+BT
+427.8525 392.386 Td
+/F3.0 10.5 Tf
+<2d736f75726365726f6f7473> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.1848 Tw
+
+BT
+490.8525 392.386 Td
+/F1.0 10.5 Tf
+<206f7220> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.1848 Tw
+
+BT
+507.665 392.386 Td
+/F3.0 10.5 Tf
+<2d696e70617468> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.1848 Tw
+
+BT
+544.415 392.386 Td
+/F1.0 10.5 Tf
+<2e> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.2571 Tw
+
+BT
+48.24 376.606 Td
+/F1.0 10.5 Tf
+[<496620746865726520617265206d756c7469706c6520736f757263657320666f7220616e> 20.0195 <7920747970652c2074686520726573756c7420697320756e646566696e65642073696e636520616a6320686173206e6f207761> 20.0195 <7920746f2064657465726d696e65>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.6598 Tw
+
+BT
+48.24 360.826 Td
+/F1.0 10.5 Tf
+<776869636820736f7572636520697320636f72726563742e2028546869732068617070656e73206d6f7374206f6674656e207768656e20757365727320696e636c756465207468652064657374696e6174696f6e206469726563746f7279206f6e> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 345.046 Td
+/F1.0 10.5 Tf
+<74686520696e7061746820616e642072656275696c642e29> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 310.546 Td
+/F2.0 13 Tf
+<312e352e312e204f7074696f6e73> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 283.986 Td
+/F2.0 10.5 Tf
+<2d696e6a617273203c4a61724c6973743e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+63.24 265.206 Td
+/F1.0 10.5 Tf
+[<646570726563617465643a2073696e636520312e322c20757365202d696e706174682c20776869636820616c736f2074616b> 20.0195 <6573206469726563746f726965732e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 237.426 Td
+/F2.0 10.5 Tf
+<2d696e70617468203c506174683e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.7524 Tw
+
+BT
+63.24 218.646 Td
+/F1.0 10.5 Tf
+[<41> 20.0195 <636365707420617320736f757263652062> 20.0195 <797465636f646520616e> 20.0195 <79202e636c6173732066696c657320696e20746865202e6a61722066696c6573206f72206469726563746f72696573206f6e20506174682e20546865206f75747075742077696c6c>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.9527 Tw
+
+BT
+63.24 202.866 Td
+/F1.0 10.5 Tf
+[<696e636c75646520746865736520636c61737365732c20706f737369626c7920617320776f76656e207769746820616e> 20.0195 <79206170706c696361626c6520617370656374732e205061746820697320612073696e676c6520617267756d656e74>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.6537 Tw
+
+BT
+63.24 187.086 Td
+/F1.0 10.5 Tf
+[<636f6e7461696e696e672061206c697374206f6620706174687320746f207a69702066696c6573206f72206469726563746f726965732c2064656c696d697465642062> 20.0195 <792074686520706c6174666f726d2d73706563696669632070617468>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+63.24 171.306 Td
+/F1.0 10.5 Tf
+<64656c696d697465722e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 143.526 Td
+/F2.0 10.5 Tf
+<2d61737065637470617468203c506174683e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.6701 Tw
+
+BT
+63.24 124.746 Td
+/F1.0 10.5 Tf
+[<57> 60.0586 <656176652062696e61727920617370656374732066726f6d206a61722066696c657320616e64206469726563746f72696573206f6e207061746820696e746f20616c6c20736f75726365732e2054686520617370656374732073686f756c64>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.1275 Tw
+
+BT
+63.24 108.966 Td
+/F1.0 10.5 Tf
+[<68617665206265656e206f75747075742062> 20.0195 <79207468652073616d652076657273696f6e206f662074686520636f6d70696c65722e205768656e2072756e6e696e6720746865206f757470757420636c61737365732c207468652072756e>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+3.6804 Tw
+
+BT
+63.24 93.186 Td
+/F1.0 10.5 Tf
+[<636c617373706174682073686f756c6420636f6e7461696e20616c6c206173706563747061746820656e74726965732e20506174682c206c696b> 20.0195 <6520636c617373706174682c20697320612073696e676c6520617267756d656e74>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+63.24 77.406 Td
+/F1.0 10.5 Tf
+[<636f6e7461696e696e672061206c697374206f6620706174687320746f206a61722066696c65732c2064656c696d697465642062> 20.0195 <792074686520706c6174666f726d2d20737065636966696320636c617373706174682064656c696d697465722e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.0 0.0 0.0 scn
+0.0 0.0 0.0 SCN
+1 w
+0 J
+0 j
+[] 0 d
+/Stamp2 Do
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+49.24 14.263 Td
+/F1.0 9 Tf
+<34> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+Q
+Q
+
+endstream
+endobj
+38 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/CropBox [0 0 595.28 841.89]
+/BleedBox [0 0 595.28 841.89]
+/TrimBox [0 0 595.28 841.89]
+/ArtBox [0 0 595.28 841.89]
+/Contents 37 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+/Font << /F2.0 22 0 R
+/F3.0 26 0 R
+/F1.0 8 0 R
+>>
+/XObject << /Stamp2 361 0 R
+>>
+>>
+/Annots [42 0 R 43 0 R]
+>>
+endobj
+39 0 obj
+[38 0 R /XYZ 0 841.89 null]
+endobj
+40 0 obj
+[38 0 R /XYZ 0 742.83 null]
+endobj
+41 0 obj
+[38 0 R /XYZ 0 654.01 null]
+endobj
+42 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (#ltw)
+>>
+/Subtype /Link
+/Rect [431.1223 567.34 446.8723 581.62]
+/Type /Annot
+>>
+endobj
+43 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (../progguide/implementation.html)
+>>
+/Subtype /Link
+/Rect [163.0365 417.1 462.8953 431.38]
+/Type /Annot
+>>
+endobj
+44 0 obj
+[38 0 R /XYZ 0 329.23 null]
+endobj
+45 0 obj
+<< /Length 9726
+>>
+stream
+q
+/DeviceRGB cs
+0.2 0.2 0.2 scn
+/DeviceRGB CS
+0.2 0.2 0.2 SCN
+
+BT
+48.24 793.926 Td
+/F2.0 10.5 Tf
+<2d61726766696c65203c46696c653e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.203 Tw
+
+BT
+63.24 775.146 Td
+/F1.0 10.5 Tf
+<5468652066696c6520636f6e7461696e732061206c696e652d64656c696d69746564206c697374206f6620617267756d656e74732e2045616368206c696e6520696e207468652066696c652073686f756c6420636f6e7461696e206f6e65> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.0089 Tw
+
+BT
+63.24 759.366 Td
+/F1.0 10.5 Tf
+<6f7074696f6e2c2066696c656e616d652c206f7220617267756d656e7420737472696e672028652e672e2c206120636c61737370617468206f7220696e70617468292e20417267756d656e747320726561642066726f6d207468652066696c65> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.6122 Tw
+
+BT
+63.24 743.586 Td
+/F1.0 10.5 Tf
+<61726520696e73657274656420696e746f2074686520617267756d656e74206c69737420666f722074686520636f6d6d616e642e2052656c617469766520706174687320696e207468652066696c65206172652063616c63756c61746564> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.3024 Tw
+
+BT
+63.24 727.806 Td
+/F1.0 10.5 Tf
+<66726f6d20746865206469726563746f727920636f6e7461696e696e67207468652066696c6520286e6f74207468652063757272656e7420776f726b696e67206469726563746f7279292e20436f6d6d656e74732c20617320696e204a6176612c> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.4621 Tw
+
+BT
+63.24 712.026 Td
+/F1.0 10.5 Tf
+<7374617274207769746820> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.4621 Tw
+
+BT
+115.3203 712.026 Td
+/F3.0 10.5 Tf
+<2f2f> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.4621 Tw
+
+BT
+125.8203 712.026 Td
+/F1.0 10.5 Tf
+[<20616e6420657874656e6420746f2074686520656e64206f6620746865206c696e652e204f7074696f6e732073706563696669656420696e20617267756d656e742066696c6573206d61> 20.0195 <79206f76657272696465>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.8675 Tw
+
+BT
+63.24 696.246 Td
+/F1.0 10.5 Tf
+[<72> 20.0195 <6174686572207468616e20657874656e64696e67206578697374696e67206f7074696f6e2076616c7565732c20736f2061766f69642073706563696679696e67206f7074696f6e73206c696b> 20.0195 <6520>] TJ
+/F1.1 10.5 Tf
+<21> Tj
+/F1.0 10.5 Tf
+<636c617373706174683e20696e> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.1264 Tw
+
+BT
+63.24 680.466 Td
+/F1.0 10.5 Tf
+[<617267756d656e742066696c657320756e6c696b> 20.0195 <652074686520617267756d656e742066696c6520697320746865206f6e6c79206275696c642073706563696669636174696f6e2e2054686520666f726d203c4066696c653e20697320746865>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+63.24 664.686 Td
+/F1.0 10.5 Tf
+<73616d652061732073706563696679696e6720> Tj
+/F1.1 10.5 Tf
+<21> Tj
+/F1.0 10.5 Tf
+<61726766696c652066696c653e2e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 636.906 Td
+/F2.0 10.5 Tf
+<2d6f75746a6172203c6f75747075742e6a61723e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+63.24 618.126 Td
+/F1.0 10.5 Tf
+<507574206f757470757420636c617373657320696e207a69702066696c65206f75747075742e6a61722e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 590.346 Td
+/F2.0 10.5 Tf
+<2d6f7574786d6c> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+63.24 571.566 Td
+/F1.0 10.5 Tf
+[<47656e6572> 20.0195 <61746520616f702e786d6c2066696c6520666f72206c6f61642d74696d652077656176696e6720776974682064656661756c74206e616d652e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 543.786 Td
+/F2.0 10.5 Tf
+<2d6f7574786d6c66696c65203c637573746f6d2f616f702e786d6c3e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+63.24 525.006 Td
+/F1.0 10.5 Tf
+[<47656e6572> 20.0195 <61746520616f702e786d6c2066696c6520666f72206c6f61642d74696d652077656176696e67207769746820637573746f6d206e616d652e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 497.226 Td
+/F2.0 10.5 Tf
+<2d696e6372656d656e74616c> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.3982 Tw
+
+BT
+63.24 478.446 Td
+/F1.0 10.5 Tf
+[<52756e2074686520636f6d70696c657220636f6e74696e756f75736c79> 89.8438 <2e2041667465722074686520696e697469616c20636f6d70696c6174696f6e2c2074686520636f6d70696c65722077696c6c207761697420746f207265636f6d70696c65>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.2269 Tw
+
+BT
+63.24 462.666 Td
+/F1.0 10.5 Tf
+<756e74696c2069742072656164732061206e65776c696e652066726f6d20746865207374616e6461726420696e7075742c20616e642077696c6c2071756974207768656e2069742072656164732061202771272e2049742077696c6c206f6e6c79> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.752 Tw
+
+BT
+63.24 446.886 Td
+/F1.0 10.5 Tf
+<7265636f6d70696c65206e656365737361727920636f6d706f6e656e74732c20736f2061207265636f6d70696c652073686f756c64206265206d75636820666173746572207468616e20646f696e672061207365636f6e64> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+63.24 431.106 Td
+/F1.0 10.5 Tf
+<636f6d70696c652e2054686973207265717569726573202d736f75726365726f6f74732e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 403.326 Td
+/F2.0 10.5 Tf
+<2d736f75726365726f6f7473203c44697250617468733e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.0928 Tw
+
+BT
+63.24 384.546 Td
+/F1.0 10.5 Tf
+[<46696e6420616e64206275696c6420616c6c202e6a617661206f72202e616a20736f757263652066696c657320756e64657220616e> 20.0195 <79206469726563746f7279206c697374656420696e2044697250617468732e2044697250617468732c206c696b> 20.0195 <65>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.012 Tw
+
+BT
+63.24 368.766 Td
+/F1.0 10.5 Tf
+[<636c617373706174682c20697320612073696e676c6520617267756d656e7420636f6e7461696e696e672061206c697374206f6620706174687320746f206469726563746f726965732c2064656c696d697465642062> 20.0195 <792074686520706c6174666f726d2d>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+63.24 352.986 Td
+/F1.0 10.5 Tf
+[<737065636966696320636c617373706174682064656c696d697465722e2052657175697265642062> 20.0195 <79202d696e6372656d656e74616c2e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 325.206 Td
+/F2.0 10.5 Tf
+<2d63726f737372656673> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.0145 Tw
+
+BT
+63.24 306.426 Td
+/F1.0 10.5 Tf
+[<47656e6572> 20.0195 <6174652061206275696c64202e616a73796d2066696c6520696e746f20746865206f7574707574206469726563746f7279> 89.8438 <2e205573656420666f722076696577696e672063726f737363757474696e67207265666572656e636573>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+63.24 290.646 Td
+/F1.0 10.5 Tf
+[<62> 20.0195 <7920746f6f6c73206c696b> 20.0195 <6520746865204173706563744a2042726f777365722e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 262.866 Td
+/F2.0 10.5 Tf
+<2d656d61637373796d> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+63.24 244.086 Td
+/F1.0 10.5 Tf
+[<47656e6572> 20.0195 <617465202e616a6573796d2073796d626f6c2066696c657320666f7220656d61637320737570706f7274202864657072656361746564292e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 216.306 Td
+/F2.0 10.5 Tf
+<2d586c696e74> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+63.24 197.526 Td
+/F1.0 10.5 Tf
+[<53616d65206173202d586c696e743a7761726e696e672028656e61626c65642062> 20.0195 <792064656661756c7429>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 169.746 Td
+/F2.0 10.5 Tf
+<2d586c696e743a7b6c6576656c7d> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+3.1321 Tw
+
+BT
+63.24 150.966 Td
+/F1.0 10.5 Tf
+[<5365742064656661756c74206c6576656c20666f72206d657373616765732061626f757420706f74656e7469616c2070726f6772> 20.0195 <616d6d696e67206d697374616b> 20.0195 <657320696e2063726f737363757474696e6720636f64652e>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+15.619 Tw
+
+BT
+63.24 135.186 Td
+/F1.0 10.5 Tf
+[<7b6c6576656c7d206d61> 20.0195 <792062652069676e6f72652c207761726e696e672c206f72206572726f722e2054686973206f766572726964657320656e747269657320696e>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.6224 Tw
+
+BT
+63.24 119.406 Td
+/F1.0 10.5 Tf
+<6f72672f6173706563746a2f7765617665722f586c696e7444656661756c742e70726f706572746965732066726f6d206173706563746a746f6f6c732e6a61722c2062757420646f6573206e6f74206f76657272696465206c6576656c7320736574> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+63.24 103.626 Td
+/F1.0 10.5 Tf
+<7573696e6720746865202d586c696e7466696c65206f7074696f6e2e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 75.846 Td
+/F2.0 10.5 Tf
+<2d586c696e7466696c65203c50726f706572747946696c653e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.614 Tw
+
+BT
+63.24 57.066 Td
+/F1.0 10.5 Tf
+<537065636966792070726f706572746965732066696c6520746f20736574206c6576656c7320666f722073706563696669632063726f737363757474696e67206d657373616765732e2050726f706572747946696c652069732061207061746820746f2061> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.0 0.0 0.0 scn
+0.0 0.0 0.0 SCN
+1 w
+0 J
+0 j
+[] 0 d
+/Stamp1 Do
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+541.009 14.263 Td
+/F1.0 9 Tf
+<35> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+Q
+Q
+
+endstream
+endobj
+46 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/CropBox [0 0 595.28 841.89]
+/BleedBox [0 0 595.28 841.89]
+/TrimBox [0 0 595.28 841.89]
+/ArtBox [0 0 595.28 841.89]
+/Contents 45 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+/Font << /F2.0 22 0 R
+/F1.0 8 0 R
+/F3.0 26 0 R
+/F1.1 47 0 R
+>>
+/XObject << /Stamp1 360 0 R
+>>
+>>
+>>
+endobj
+47 0 obj
+<< /Type /Font
+/BaseFont /8fe72e+NotoSerif
+/Subtype /TrueType
+/FontDescriptor 375 0 R
+/FirstChar 32
+/LastChar 255
+/Widths 377 0 R
+/ToUnicode 376 0 R
+>>
+endobj
+48 0 obj
+<< /Length 8748
+>>
+stream
+q
+/DeviceRGB cs
+0.2 0.2 0.2 scn
+/DeviceRGB CS
+0.2 0.2 0.2 SCN
+
+12.2508 Tw
+
+BT
+63.24 794.676 Td
+/F1.0 10.5 Tf
+[<4a617661202e70726f706572746965732066696c6520746861742074616b> 20.0195 <6573207468652073616d652070726f7065727479206e616d657320616e642076616c756573206173>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+63.24 778.896 Td
+/F1.0 10.5 Tf
+<6f72672f6173706563746a2f7765617665722f586c696e7444656661756c742e70726f706572746965732066726f6d206173706563746a746f6f6c732e6a61722c20776869636820697420616c736f206f76657272696465732e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 751.116 Td
+/F2.0 10.5 Tf
+<2d68656c70> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+63.24 732.336 Td
+/F1.0 10.5 Tf
+<456d697420696e666f726d6174696f6e206f6e20636f6d70696c6572206f7074696f6e7320616e64207573616765> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 704.556 Td
+/F2.0 10.5 Tf
+<2d76657273696f6e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+63.24 685.776 Td
+/F1.0 10.5 Tf
+<456d6974207468652076657273696f6e206f6620746865204173706563744a20636f6d70696c6572> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 657.996 Td
+/F2.0 10.5 Tf
+<2d636c61737370617468203c506174683e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.8728 Tw
+
+BT
+63.24 639.216 Td
+/F1.0 10.5 Tf
+<5370656369667920776865726520746f2066696e64207573657220636c6173732066696c65732e205061746820697320612073696e676c6520617267756d656e7420636f6e7461696e696e672061206c697374206f6620706174687320746f207a6970> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+63.24 623.436 Td
+/F1.0 10.5 Tf
+[<66696c6573206f72206469726563746f726965732c2064656c696d697465642062> 20.0195 <792074686520706c6174666f726d2d737065636966696320706174682064656c696d697465722e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 595.656 Td
+/F2.0 10.5 Tf
+<2d626f6f74636c61737370617468203c506174683e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.8507 Tw
+
+BT
+63.24 576.876 Td
+/F1.0 10.5 Tf
+<4f76657272696465206c6f636174696f6e206f6620564dd57320626f6f74636c6173737061746820666f7220707572706f736573206f66206576616c756174696e67207479706573207768656e20636f6d70696c696e672e2050617468> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.9323 Tw
+
+BT
+63.24 561.096 Td
+/F1.0 10.5 Tf
+[<697320612073696e676c6520617267756d656e7420636f6e7461696e696e672061206c697374206f6620706174687320746f207a69702066696c6573206f72206469726563746f726965732c2064656c696d697465642062> 20.0195 <7920746865>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+63.24 545.316 Td
+/F1.0 10.5 Tf
+<706c6174666f726d2d737065636966696320706174682064656c696d697465722e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 517.536 Td
+/F2.0 10.5 Tf
+<2d65787464697273203c506174683e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+4.9295 Tw
+
+BT
+63.24 498.756 Td
+/F1.0 10.5 Tf
+<4f76657272696465206c6f636174696f6e206f6620564dd57320657874656e73696f6e206469726563746f7269657320666f7220707572706f736573206f66206576616c756174696e67207479706573207768656e> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.4302 Tw
+
+BT
+63.24 482.976 Td
+/F1.0 10.5 Tf
+[<636f6d70696c696e672e205061746820697320612073696e676c6520617267756d656e7420636f6e7461696e696e672061206c697374206f6620706174687320746f206469726563746f726965732c2064656c696d697465642062> 20.0195 <7920746865>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+63.24 467.196 Td
+/F1.0 10.5 Tf
+<706c6174666f726d2d737065636966696320706174682064656c696d697465722e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 439.416 Td
+/F2.0 10.5 Tf
+<2d64203c4469726563746f72793e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.5357 Tw
+
+BT
+63.24 420.636 Td
+/F1.0 10.5 Tf
+[<5370656369667920776865726520746f20706c6163652067656e6572> 20.0195 <61746564202e636c6173732066696c65732e204966206e6f74207370656369666965642c203c4469726563746f72793e2064656661756c747320746f207468652063757272656e74>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+63.24 404.856 Td
+/F1.0 10.5 Tf
+<776f726b696e67206469722e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 377.076 Td
+/F2.0 10.5 Tf
+<2d746172676574203c5b312e3120746f20312e355d3e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+63.24 358.296 Td
+/F1.0 10.5 Tf
+<5370656369667920636c61737366696c65207461726765742073657474696e672028312e3120746f20312e352c2064656661756c7420697320312e3229> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 330.516 Td
+/F2.0 10.5 Tf
+<2d312e33> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+63.24 311.736 Td
+/F1.0 10.5 Tf
+<53657420636f6d706c69616e6365206c6576656c20746f20312e33205468697320696d706c696573202d736f7572636520312e3320616e64202d74617267657420312e312e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 283.956 Td
+/F2.0 10.5 Tf
+<2d312e34> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+63.24 265.176 Td
+/F1.0 10.5 Tf
+<53657420636f6d706c69616e6365206c6576656c20746f20312e34202864656661756c7429205468697320696d706c696573202d736f7572636520312e3420616e64202d74617267657420312e322e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 237.396 Td
+/F2.0 10.5 Tf
+<2d312e35> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+63.24 218.616 Td
+/F1.0 10.5 Tf
+<53657420636f6d706c69616e6365206c6576656c20746f20312e352e205468697320696d706c696573202d736f7572636520312e3520616e64202d74617267657420312e352e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 190.836 Td
+/F2.0 10.5 Tf
+<2d736f75726365203c5b312e337c312e347c312e355d3e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.0743 Tw
+
+BT
+63.24 172.056 Td
+/F1.0 10.5 Tf
+[<54> 29.7852 <6f67676c6520617373657274696f6e732028312e332c20312e342c206f7220312e35202d2064656661756c7420697320312e34292e205768656e207573696e67202d736f7572636520312e332c20616e2061737365727428292073746174656d656e74>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.5245 Tw
+
+BT
+63.24 156.276 Td
+/F1.0 10.5 Tf
+<76616c696420756e646572204a61766120312e342077696c6c20726573756c7420696e206120636f6d70696c6572206572726f722e205768656e207573696e67202d736f7572636520312e342c20747265617420> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.5245 Tw
+
+BT
+490.5146 156.276 Td
+/F3.0 10.5 Tf
+<617373657274> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.5245 Tw
+
+BT
+522.0146 156.276 Td
+/F1.0 10.5 Tf
+<2061732061> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.7804 Tw
+
+BT
+63.24 140.496 Td
+/F1.0 10.5 Tf
+[<6b> 20.0195 <6579776f726420616e6420696d706c656d656e7420617373657274696f6e73206163636f7264696e6720746f2074686520312e34206c616e677561676520737065632e205768656e207573696e67202d736f7572636520312e352c>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+63.24 124.716 Td
+/F1.0 10.5 Tf
+<4a6176612035206c616e677561676520666561747572657320617265207065726d69747465642e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 96.936 Td
+/F2.0 10.5 Tf
+<2d6e6f7761726e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.7143 Tw
+
+BT
+63.24 78.156 Td
+/F1.0 10.5 Tf
+[<456d6974206e6f207761726e696e677320286571756976616c656e7420746f20272d7761726e3a6e6f6e652729205468697320646f6573206e6f74207375707072657373206d657373616765732067656e6572> 20.0195 <617465642062> 20.0195 <79>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+63.24 62.376 Td
+/F3.0 10.5 Tf
+<6465636c617265207761726e696e67> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+141.99 62.376 Td
+/F1.0 10.5 Tf
+<206f7220> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+158.433 62.376 Td
+/F3.0 10.5 Tf
+<586c696e74> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+184.683 62.376 Td
+/F1.0 10.5 Tf
+<2e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.0 0.0 0.0 scn
+0.0 0.0 0.0 SCN
+1 w
+0 J
+0 j
+[] 0 d
+/Stamp2 Do
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+49.24 14.263 Td
+/F1.0 9 Tf
+<36> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+Q
+Q
+
+endstream
+endobj
+49 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/CropBox [0 0 595.28 841.89]
+/BleedBox [0 0 595.28 841.89]
+/TrimBox [0 0 595.28 841.89]
+/ArtBox [0 0 595.28 841.89]
+/Contents 48 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+/Font << /F1.0 8 0 R
+/F2.0 22 0 R
+/F3.0 26 0 R
+>>
+/XObject << /Stamp2 361 0 R
+>>
+>>
+>>
+endobj
+50 0 obj
+<< /Length 9144
+>>
+stream
+q
+/DeviceRGB cs
+0.2 0.2 0.2 scn
+/DeviceRGB CS
+0.2 0.2 0.2 SCN
+
+BT
+48.24 793.926 Td
+/F2.0 10.5 Tf
+<2d7761726e3a203c6974656d733e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+3.9037 Tw
+
+BT
+63.24 775.146 Td
+/F1.0 10.5 Tf
+[<456d6974207761726e696e677320666f7220616e> 20.0195 <7920696e7374616e636573206f662074686520636f6d6d612d64656c696d69746564206c697374206f66207175657374696f6e61626c6520636f64652028656720272d>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+63.24 759.366 Td
+/F1.0 10.5 Tf
+[<7761726e3a756e757365644c6f63616c732c6465707265636174696f6e> 40.0391 <27293a202b>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.9608 0.9608 0.9608 scn
+52.24 743.55 m
+543.04 743.55 l
+545.2491 743.55 547.04 741.7591 547.04 739.55 c
+547.04 607.63 l
+547.04 605.4209 545.2491 603.63 543.04 603.63 c
+52.24 603.63 l
+50.0309 603.63 48.24 605.4209 48.24 607.63 c
+48.24 739.55 l
+48.24 741.7591 50.0309 743.55 52.24 743.55 c
+h
+f
+0.8 0.8 0.8 SCN
+0.75 w
+52.24 743.55 m
+543.04 743.55 l
+545.2491 743.55 547.04 741.7591 547.04 739.55 c
+547.04 607.63 l
+547.04 605.4209 545.2491 603.63 543.04 603.63 c
+52.24 603.63 l
+50.0309 603.63 48.24 605.4209 48.24 607.63 c
+48.24 739.55 l
+48.24 741.7591 50.0309 743.55 52.24 743.55 c
+h
+S
+Q
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 720.725 Td
+/F3.0 11 Tf
+<636f6e7374727563746f724e616d6520202020202020206d6574686f64207769746820636f6e7374727563746f72206e616d65> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 705.985 Td
+/F3.0 11 Tf
+<7061636b61676544656661756c744d6574686f64202020617474656d707420746f206f76657272696465207061636b6167652d64656661756c74206d6574686f64> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 691.245 Td
+/F3.0 11 Tf
+<6465707265636174696f6e2020202020202020202020207573616765206f6620646570726563617465642074797065206f72206d656d626572> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 676.505 Td
+/F3.0 11 Tf
+<6d61736b65644361746368426c6f636b7320202020202068696464656e20636174636820626c6f636b> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 661.765 Td
+/F3.0 11 Tf
+<756e757365644c6f63616c7320202020202020202020206c6f63616c207661726961626c65206e657665722072656164> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 647.025 Td
+/F3.0 11 Tf
+<756e75736564417267756d656e747320202020202020206d6574686f6420617267756d656e74206e657665722072656164> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 632.285 Td
+/F3.0 11 Tf
+<756e75736564496d706f72747320202020202020202020696d706f72742073746174656d656e74206e6f74207573656420627920636f646520696e2066696c65> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 617.545 Td
+/F3.0 11 Tf
+<6e6f6e6520202020202020202020202020202020202020737570707265737320616c6c20636f6d70696c6572207761726e696e6773> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.9608 0.9608 0.9608 scn
+52.24 591.63 m
+543.04 591.63 l
+545.2491 591.63 547.04 589.8391 547.04 587.63 c
+547.04 396.75 l
+547.04 394.5409 545.2491 392.75 543.04 392.75 c
+52.24 392.75 l
+50.0309 392.75 48.24 394.5409 48.24 396.75 c
+48.24 587.63 l
+48.24 589.8391 50.0309 591.63 52.24 591.63 c
+h
+f
+0.8 0.8 0.8 SCN
+0.75 w
+52.24 591.63 m
+543.04 591.63 l
+545.2491 591.63 547.04 589.8391 547.04 587.63 c
+547.04 396.75 l
+547.04 394.5409 545.2491 392.75 543.04 392.75 c
+52.24 392.75 l
+50.0309 392.75 48.24 394.5409 48.24 396.75 c
+48.24 587.63 l
+48.24 589.8391 50.0309 591.63 52.24 591.63 c
+h
+S
+Q
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 568.805 Td
+/F3.0 11 Tf
+<ca202b> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 554.065 Td
+/F3.0 11 Tf
+<ca20602d7761726e3a6e6f6e656020646f6573206e6f74207375707072657373206d657373616765732067656e65726174656420627920606465636c617265207761726e696e6760> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 539.325 Td
+/F3.0 11 Tf
+<ca206f722060586c696e74602e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 524.585 Td
+/F3.0 11 Tf
+<2d6465707265636174696f6e3a3a> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 509.845 Td
+/F3.0 11 Tf
+<ca2053616d65206173202d7761726e3a6465707265636174696f6e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 495.105 Td
+/F3.0 11 Tf
+<2d6e6f496d706f72744572726f723a3a> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 480.365 Td
+/F3.0 11 Tf
+<ca20456d6974206e6f206572726f727320666f7220756e7265736f6c76656420696d706f727473> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 465.625 Td
+/F3.0 11 Tf
+<2d70726f636565644f6e4572726f723a3a> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 450.885 Td
+/F3.0 11 Tf
+<ca204b65657020636f6d70696c696e67206166746572206572726f722c2064756d70696e6720636c6173732066696c657320776974682070726f626c656d206d6574686f6473> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 436.145 Td
+/F3.0 11 Tf
+<2d673c3a5b6c696e65732c766172732c736f757263655d3e3a3a> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 421.405 Td
+/F3.0 11 Tf
+<ca2064656275672061747472696275746573206c6576656c2c2074686174206d61792074616b6520746872656520666f726d733a> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 406.665 Td
+/F3.0 11 Tf
+<ca202b> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.9608 0.9608 0.9608 scn
+52.24 380.75 m
+543.04 380.75 l
+545.2491 380.75 547.04 378.9591 547.04 376.75 c
+547.04 303.79 l
+547.04 301.5809 545.2491 299.79 543.04 299.79 c
+52.24 299.79 l
+50.0309 299.79 48.24 301.5809 48.24 303.79 c
+48.24 376.75 l
+48.24 378.9591 50.0309 380.75 52.24 380.75 c
+h
+f
+0.8 0.8 0.8 SCN
+0.75 w
+52.24 380.75 m
+543.04 380.75 l
+545.2491 380.75 547.04 378.9591 547.04 376.75 c
+547.04 303.79 l
+547.04 301.5809 545.2491 299.79 543.04 299.79 c
+52.24 299.79 l
+50.0309 299.79 48.24 301.5809 48.24 303.79 c
+48.24 376.75 l
+48.24 378.9591 50.0309 380.75 52.24 380.75 c
+h
+S
+Q
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 357.925 Td
+/F3.0 11 Tf
+<2d67202020202020202020616c6c20646562756720696e666f2028272d673a6c696e65732c766172732c736f757263652729> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 343.185 Td
+/F3.0 11 Tf
+<2d673a6e6f6e65202020206e6f20646562756720696e666f> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 328.445 Td
+/F3.0 11 Tf
+<2d673a7b6974656d737d20646562756720696e666f20666f7220616e792f616c6c206f66205b6c696e65732c20766172732c20736f757263655d2c20652e672e2c> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 313.705 Td
+/F3.0 11 Tf
+<ca202020202020202020202d673a6c696e65732c736f75726365> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 275.826 Td
+/F2.0 10.5 Tf
+<2d7072657365727665416c6c4c6f63616c73> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+63.24 257.046 Td
+/F1.0 10.5 Tf
+[<507265736572766520616c6c206c6f63616c207661726961626c657320647572696e6720636f64652067656e6572> 20.0195 <6174696f6e2028746f20666163696c697461746520646562756767696e67292e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 229.266 Td
+/F2.0 10.5 Tf
+<2d7265666572656e6365496e666f> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+63.24 210.486 Td
+/F1.0 10.5 Tf
+<436f6d70757465207265666572656e636520696e666f726d6174696f6e2e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 182.706 Td
+/F2.0 10.5 Tf
+<2d656e636f64696e67203c666f726d61743e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.4734 Tw
+
+BT
+63.24 163.926 Td
+/F1.0 10.5 Tf
+[<537065636966792064656661756c7420736f7572636520656e636f64696e6720666f726d61742e205370656369667920637573746f6d20656e636f64696e67206f6e2061207065722066696c652062617369732062> 20.0195 <7920737566666978696e67>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+63.24 148.146 Td
+/F1.0 10.5 Tf
+<6561636820696e70757420736f757263652066696c652f666f6c646572206e616d65207769746820275b656e636f64696e675d272e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 120.366 Td
+/F2.0 10.5 Tf
+<2d766572626f7365> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+63.24 101.586 Td
+/F1.0 10.5 Tf
+<456d6974206d657373616765732061626f75742061636365737365642f70726f63657373656420636f6d70696c6174696f6e20756e697473> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 73.806 Td
+/F2.0 10.5 Tf
+[<2d73686f7757> 60.0586 <65617665496e666f>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+63.24 55.026 Td
+/F1.0 10.5 Tf
+<456d6974206d657373616765732061626f75742077656176696e67> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.0 0.0 0.0 scn
+0.0 0.0 0.0 SCN
+1 w
+0 J
+0 j
+[] 0 d
+/Stamp1 Do
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+541.009 14.263 Td
+/F1.0 9 Tf
+<37> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+Q
+Q
+
+endstream
+endobj
+51 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/CropBox [0 0 595.28 841.89]
+/BleedBox [0 0 595.28 841.89]
+/TrimBox [0 0 595.28 841.89]
+/ArtBox [0 0 595.28 841.89]
+/Contents 50 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+/Font << /F2.0 22 0 R
+/F1.0 8 0 R
+/F3.0 26 0 R
+>>
+/XObject << /Stamp1 360 0 R
+>>
+>>
+>>
+endobj
+52 0 obj
+<< /Length 7195
+>>
+stream
+q
+/DeviceRGB cs
+0.2 0.2 0.2 scn
+/DeviceRGB CS
+0.2 0.2 0.2 SCN
+
+BT
+48.24 793.926 Td
+/F2.0 10.5 Tf
+<2d6c6f67203c66696c653e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+63.24 775.146 Td
+/F1.0 10.5 Tf
+<537065636966792061206c6f672066696c6520666f7220636f6d70696c6572206d657373616765732e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 747.366 Td
+/F2.0 10.5 Tf
+<2d70726f6772657373> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+63.24 728.586 Td
+/F1.0 10.5 Tf
+<53686f772070726f677265737320287265717569726573202d6c6f67206d6f6465292e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 700.806 Td
+/F2.0 10.5 Tf
+<2d74696d65> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+63.24 682.026 Td
+/F1.0 10.5 Tf
+[<446973706c61> 20.0195 <7920737065656420696e666f726d6174696f6e2e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 654.246 Td
+/F2.0 10.5 Tf
+<2d6e6f45786974> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+63.24 635.466 Td
+/F1.0 10.5 Tf
+[<446f206e6f742063616c6c2053> 20.0195 <797374656d2e65786974286e2920617420656e64206f6620636f6d70696c6174696f6e20286e3d30206966206e6f206572726f7229>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 607.686 Td
+/F2.0 10.5 Tf
+<2d726570656174203c4e3e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+63.24 588.906 Td
+/F1.0 10.5 Tf
+<52657065617420636f6d70696c6174696f6e2070726f63657373204e2074696d657320287479706963616c6c7920746f20646f20706572666f726d616e636520616e616c79736973292e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 561.126 Td
+/F2.0 10.5 Tf
+<2d587465726d696e6174654166746572436f6d70696c6174696f6e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+63.24 542.346 Td
+/F1.0 10.5 Tf
+<43617573657320636f6d70696c657220746f207465726d696e617465206265666f72652077656176696e67> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 514.566 Td
+/F2.0 10.5 Tf
+[<2d5861646453657269616c56> 60.0586 <657273696f6e554944>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.3111 Tw
+
+BT
+63.24 495.786 Td
+/F1.0 10.5 Tf
+[<4361757365732074686520636f6d70696c657220746f2063616c63756c61746520616e6420616464207468652053657269616c56> 60.0586 <657273696f6e554944206669656c6420746f20616e> 20.0195 <79207479706520696d706c656d656e74696e67>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.8302 Tw
+
+BT
+63.24 480.006 Td
+/F1.0 10.5 Tf
+[<53657269616c697a61626c6520746861742069732061666665637465642062> 20.0195 <7920616e206173706563742e20546865206669656c642069732063616c63756c61746564206261736564206f6e2074686520636c617373206265666f7265>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+63.24 464.226 Td
+/F1.0 10.5 Tf
+[<77656176696e67206861732074616b> 20.0195 <656e20706c6163652e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 436.446 Td
+/F2.0 10.5 Tf
+<2d5872657765617661626c655b3a636f6d70726573735d> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.2851 Tw
+
+BT
+63.24 417.666 Td
+/F1.0 10.5 Tf
+<284578706572696d656e74616c202d2064657072656361746564206173206e6f772064656661756c74292052756e732077656176657220696e2072657765617661626c65206d6f64652077686963682063617573657320697420746f> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+3.1111 Tw
+
+BT
+63.24 401.886 Td
+/F1.0 10.5 Tf
+<63726561746520776f76656e20636c617373657320746861742063616e206265207265776f76656e2c207375626a65637420746f20746865207265737472696374696f6e2074686174206f6e20617474656d7074696e672061> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+63.24 386.106 Td
+/F1.0 10.5 Tf
+<7265776561766520616c6c20746865207479706573207468617420616476697365642074686520776f76656e2074797065206d7573742062652061636365737369626c652e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 358.326 Td
+/F2.0 10.5 Tf
+<2d586e6f496e6c696e65> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+63.24 339.546 Td
+/F1.0 10.5 Tf
+<284578706572696d656e74616c2920646f206e6f7420696e6c696e652061726f756e6420616476696365> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 311.766 Td
+/F2.0 10.5 Tf
+<2d58696e6372656d656e74616c46696c65203c66696c653e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.4607 Tw
+
+BT
+63.24 292.986 Td
+/F1.0 10.5 Tf
+[<284578706572696d656e74616c29205468697320776f726b73206c696b> 20.0195 <6520696e6372656d656e74616c206d6f64652c20627574207573696e6720612066696c652072> 20.0195 <6174686572207468616e207374616e6461726420696e70757420746f>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.6186 Tw
+
+BT
+63.24 277.206 Td
+/F1.0 10.5 Tf
+<636f6e74726f6c2074686520636f6d70696c65722e2049742077696c6c207265636f6d70696c6520656163682074696d652066696c65206973206368616e67656420616e6420616e642068616c74207768656e2066696c65206973> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+63.24 261.426 Td
+/F1.0 10.5 Tf
+<64656c657465642e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 233.646 Td
+/F2.0 10.5 Tf
+<2d5873657269616c697a61626c6541737065637473> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.8256 Tw
+
+BT
+63.24 214.866 Td
+/F1.0 10.5 Tf
+<284578706572696d656e74616c29204e6f726d616c6c7920697420697320616e206572726f7220746f206465636c61726520617370656374732053657269616c697a61626c652e2054686973206f7074696f6e2072656d6f7665732074686174> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+63.24 199.086 Td
+/F1.0 10.5 Tf
+<7265737472696374696f6e2e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 171.306 Td
+/F2.0 10.5 Tf
+<2d586e6f7452657765617661626c65> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+63.24 152.526 Td
+/F1.0 10.5 Tf
+[<284578706572696d656e74616c292043726561746520636c6173732066696c657320746861742063616ed5742062652073756273657175656e746c79207265776f76656e2062> 20.0195 <79204173706563744a2e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 124.746 Td
+/F2.0 10.5 Tf
+<2d58616a72756e74696d656c6576656c3a312e322c20616a72756e74696d656c6576656c3a312e35> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.0973 Tw
+
+BT
+63.24 105.966 Td
+/F1.0 10.5 Tf
+[<284578706572696d656e74616c2920416c6c6f777320636f646520746f2062652067656e6572> 20.0195 <6174656420746861742074617267657473206120312e32206f72206120312e35206c6576656c204173706563744a2072756e74696d65>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+63.24 90.186 Td
+/F1.0 10.5 Tf
+<2864656661756c7420312e3529> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.0 0.0 0.0 scn
+0.0 0.0 0.0 SCN
+1 w
+0 J
+0 j
+[] 0 d
+/Stamp2 Do
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+49.24 14.263 Td
+/F1.0 9 Tf
+<38> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+Q
+Q
+
+endstream
+endobj
+53 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/CropBox [0 0 595.28 841.89]
+/BleedBox [0 0 595.28 841.89]
+/TrimBox [0 0 595.28 841.89]
+/ArtBox [0 0 595.28 841.89]
+/Contents 52 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+/Font << /F2.0 22 0 R
+/F1.0 8 0 R
+>>
+/XObject << /Stamp2 361 0 R
+>>
+>>
+>>
+endobj
+54 0 obj
+<< /Length 14081
+>>
+stream
+q
+/DeviceRGB cs
+0.2 0.2 0.2 scn
+/DeviceRGB CS
+0.2 0.2 0.2 SCN
+
+BT
+48.24 792.006 Td
+/F2.0 13 Tf
+<312e352e322e2046696c65206e616d6573> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.4704 Tw
+
+BT
+48.24 765.446 Td
+/F1.0 10.5 Tf
+<616a63206163636570747320736f757263652066696c65732077697468206569746865722074686520> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.4704 Tw
+
+BT
+244.1029 765.446 Td
+/F3.0 10.5 Tf
+<2e6a617661> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.4704 Tw
+
+BT
+270.3529 765.446 Td
+/F1.0 10.5 Tf
+<20657874656e73696f6e206f722074686520> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.4704 Tw
+
+BT
+358.7755 765.446 Td
+/F3.0 10.5 Tf
+<2e616a> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.4704 Tw
+
+BT
+374.5255 765.446 Td
+/F1.0 10.5 Tf
+[<20657874656e73696f6e2e2057> 60.0586 <65206e6f726d616c6c792075736520>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.4704 Tw
+
+BT
+520.79 765.446 Td
+/F3.0 10.5 Tf
+<2e6a617661> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.4704 Tw
+
+BT
+547.04 765.446 Td
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.8954 Tw
+
+BT
+48.24 749.666 Td
+/F1.0 10.5 Tf
+<666f7220616c6c206f66206f75722066696c657320696e20616e204173706563744a2073797374656d> Tj
+/F1.1 10.5 Tf
+<22> Tj
+/F1.0 10.5 Tf
+<d1> Tj
+/F1.1 10.5 Tf
+<22> Tj
+/F1.0 10.5 Tf
+<66696c6573207468617420636f6e7461696e20617370656374732061732077656c6c2061732066696c6573207468617420636f6e7461696e> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.7198 Tw
+
+BT
+48.24 733.886 Td
+/F1.0 10.5 Tf
+<636c61737365732e20486f77657665722c20696620796f7520686176652061206e65656420746f206d656368616e6963616c6c792064697374696e67756973682066696c6573207468617420757365204173706563744ad573206164646974696f6e616c> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 718.106 Td
+/F1.0 10.5 Tf
+<66756e6374696f6e616c6974792066726f6d2074686f73652074686174206172652070757265204a617661207765207265636f6d6d656e64207573696e672074686520> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+394.0995 718.106 Td
+/F3.0 10.5 Tf
+<2e616a> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+409.8495 718.106 Td
+/F1.0 10.5 Tf
+<20657874656e73696f6e20666f722074686f73652066696c65732e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.5136 Tw
+
+BT
+48.24 690.326 Td
+/F1.0 10.5 Tf
+[<57> 60.0586 <65d564206c696b> 20.0195 <6520746f20646973636f7572> 20.0195 <616765206f74686572206d65616e73206f66206d656368616e6963616c2064697374696e6374696f6e2073756368206173206e616d696e6720636f6e76656e74696f6e73206f72207375622d>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 674.546 Td
+/F1.0 10.5 Tf
+<7061636b6167657320696e206661766f72206f662074686520> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+170.2605 674.546 Td
+/F3.0 10.5 Tf
+<2e616a> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+186.0105 674.546 Td
+/F1.0 10.5 Tf
+<20657874656e73696f6e2e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+56.8805 646.766 Td
+/F1.0 10.5 Tf
+<a5> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.1451 Tw
+
+BT
+66.24 646.766 Td
+/F1.0 10.5 Tf
+<46696c656e616d6520636f6e76656e74696f6e7320617265206861726420746f20656e666f72636520616e64206c65616420746f2061776b77617264206e616d657320666f7220796f757220617370656374732e20496e7374656164> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+66.24 630.986 Td
+/F1.0 10.5 Tf
+<6f6620> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+78.8925 630.986 Td
+/F3.0 10.5 Tf
+<54726163696e674173706563742e6a617661> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+173.3925 630.986 Td
+/F1.0 10.5 Tf
+<207765207265636f6d6d656e64207573696e6720> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+286.53 630.986 Td
+/F3.0 10.5 Tf
+<54726163696e672e616a> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+339.03 630.986 Td
+/F1.0 10.5 Tf
+<20286f72206a75737420> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+380.0535 630.986 Td
+/F3.0 10.5 Tf
+<54726163696e672e6a617661> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+443.0535 630.986 Td
+/F1.0 10.5 Tf
+<2920696e73746561642e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+56.8805 609.206 Td
+/F1.0 10.5 Tf
+<a5> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.3709 Tw
+
+BT
+66.24 609.206 Td
+/F1.0 10.5 Tf
+[<5375622d7061636b61676573206d6f76652061737065637473206f7574206f66207468656972206e61747572> 20.0195 <616c20706c61636520696e20612073797374656d20616e642063616e2063726561746520616e206172746966696369616c>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.7726 Tw
+
+BT
+66.24 593.426 Td
+/F1.0 10.5 Tf
+[<6e65656420666f722070726976696c6567656420617370656374732e20496e7374656164206f6620616464696e672061207375622d7061636b616765206c696b> 20.0195 <6520>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.7726 Tw
+
+BT
+397.5543 593.426 Td
+/F3.0 10.5 Tf
+<61737065637473> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.7726 Tw
+
+BT
+434.3043 593.426 Td
+/F1.0 10.5 Tf
+<207765207265636f6d6d656e64207573696e67> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+66.24 577.646 Td
+/F1.0 10.5 Tf
+<74686520> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+84.93 577.646 Td
+/F3.0 10.5 Tf
+<2e616a> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+100.68 577.646 Td
+/F1.0 10.5 Tf
+<20657874656e73696f6e20616e6420696e636c7564696e672074686573652066696c657320696e20796f7572206578697374696e67207061636b6167657320696e73746561642e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 543.146 Td
+/F2.0 13 Tf
+<312e352e332e20436f6d7061746962696c697479> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.2551 Tw
+
+BT
+48.24 516.586 Td
+/F1.0 10.5 Tf
+[<4173706563744a206973206120636f6d70617469626c6520657874656e73696f6e20746f20746865204a6176612070726f6772> 20.0195 <616d6d696e67206c616e67756167652e20546865204173706563744a20636f6d70696c65722061646865726573>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+3.1168 Tw
+
+BT
+48.24 500.806 Td
+/F1.0 10.5 Tf
+<746f2074686520> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2588 0.5451 0.7922 scn
+0.2588 0.5451 0.7922 SCN
+
+3.1168 Tw
+
+BT
+85.6376 500.806 Td
+/F1.0 10.5 Tf
+<546865204a617661204c616e67756167652053706563696669636174696f6e2c205365636f6e642045646974696f6e> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+3.1168 Tw
+
+BT
+342.8477 500.806 Td
+/F1.0 10.5 Tf
+<20616e6420746f2074686520> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2588 0.5451 0.7922 scn
+0.2588 0.5451 0.7922 SCN
+
+3.1168 Tw
+
+BT
+411.028 500.806 Td
+/F1.0 10.5 Tf
+<546865204a617661205669727475616c204d616368696e65> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2588 0.5451 0.7922 scn
+0.2588 0.5451 0.7922 SCN
+
+1.4916 Tw
+
+BT
+48.24 485.026 Td
+/F1.0 10.5 Tf
+<53706563696669636174696f6e2c205365636f6e642045646974696f6e> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.4916 Tw
+
+BT
+195.6822 485.026 Td
+/F1.0 10.5 Tf
+[<20616e642072756e73206f6e20616e> 20.0195 <79204a617661203220636f6d70617469626c6520706c6174666f726d2e2054686520636f64652069742067656e6572> 20.0195 <61746573>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.2022 Tw
+
+BT
+48.24 469.246 Td
+/F1.0 10.5 Tf
+[<72756e73206f6e20616e> 20.0195 <79204a61766120312e31206f72206c6174657220636f6d70617469626c6520706c6174666f726d2e2046> 40.0391 <6f72206d6f726520696e666f726d6174696f6e206f6e20636f6d7061746962696c6974792077697468204a617661>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 453.466 Td
+/F1.0 10.5 Tf
+<616e6420776974682070726576696f75732072656c6561736573206f66204173706563744a2c2073656520> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2588 0.5451 0.7922 scn
+0.2588 0.5451 0.7922 SCN
+
+BT
+258.7545 453.466 Td
+/F1.0 10.5 Tf
+<3f3f3f> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+274.5045 453.466 Td
+/F1.0 10.5 Tf
+<2e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 418.966 Td
+/F2.0 13 Tf
+<312e352e342e204578616d706c6573> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 392.406 Td
+/F1.0 10.5 Tf
+<436f6d70696c652074776f2066696c65733a> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.9608 0.9608 0.9608 scn
+52.24 376.59 m
+543.04 376.59 l
+545.2491 376.59 547.04 374.7991 547.04 372.59 c
+547.04 343.85 l
+547.04 341.6409 545.2491 339.85 543.04 339.85 c
+52.24 339.85 l
+50.0309 339.85 48.24 341.6409 48.24 343.85 c
+48.24 372.59 l
+48.24 374.7991 50.0309 376.59 52.24 376.59 c
+h
+f
+0.8 0.8 0.8 SCN
+0.75 w
+52.24 376.59 m
+543.04 376.59 l
+545.2491 376.59 547.04 374.7991 547.04 372.59 c
+547.04 343.85 l
+547.04 341.6409 545.2491 339.85 543.04 339.85 c
+52.24 339.85 l
+50.0309 339.85 48.24 341.6409 48.24 343.85 c
+48.24 372.59 l
+48.24 374.7991 50.0309 376.59 52.24 376.59 c
+h
+S
+Q
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 353.765 Td
+/F3.0 11 Tf
+<616a632048656c6c6f576f726c642e6a6176612054726163652e6a617661> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.3449 Tw
+
+BT
+48.24 315.886 Td
+/F1.0 10.5 Tf
+[<54> 29.7852 <6f2061766f69642073706563696679696e672066696c65206e616d6573206f6e2074686520636f6d6d616e64206c696e652c206c69737420736f757263652066696c657320696e2061206c696e652d64656c696d6974656420746578742061726766696c652e>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.2531 Tw
+
+BT
+48.24 300.106 Td
+/F1.0 10.5 Tf
+[<536f757263652066696c65207061746873206d61> 20.0195 <79206265206162736f6c757465206f722072656c617469766520746f207468652061726766696c652c20616e64206d61> 20.0195 <7920696e636c756465206f746865722061726766696c65732062> 20.0195 <7920402d>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 284.326 Td
+/F1.0 10.5 Tf
+<7265666572656e63652e2054686520666f6c6c6f77696e672066696c6520> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+192.027 284.326 Td
+/F3.0 10.5 Tf
+<736f75726365732e6c7374> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+249.777 284.326 Td
+/F1.0 10.5 Tf
+<20636f6e7461696e73206162736f6c75746520616e642072656c61746976652066696c657320616e6420402d7265666572656e6365733a> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.9608 0.9608 0.9608 scn
+52.24 268.51 m
+543.04 268.51 l
+545.2491 268.51 547.04 266.7191 547.04 264.51 c
+547.04 147.33 l
+547.04 145.1209 545.2491 143.33 543.04 143.33 c
+52.24 143.33 l
+50.0309 143.33 48.24 145.1209 48.24 147.33 c
+48.24 264.51 l
+48.24 266.7191 50.0309 268.51 52.24 268.51 c
+h
+f
+0.8 0.8 0.8 SCN
+0.75 w
+52.24 268.51 m
+543.04 268.51 l
+545.2491 268.51 547.04 266.7191 547.04 264.51 c
+547.04 147.33 l
+547.04 145.1209 545.2491 143.33 543.04 143.33 c
+52.24 143.33 l
+50.0309 143.33 48.24 145.1209 48.24 147.33 c
+48.24 264.51 l
+48.24 266.7191 50.0309 268.51 52.24 268.51 c
+h
+S
+Q
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 245.685 Td
+/F3.0 11 Tf
+<4775692e6a617661> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 230.945 Td
+/F3.0 11 Tf
+<2f686f6d652f757365722f7372632f4c6962726172792e6a617661> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 216.205 Td
+/F3.0 11 Tf
+<646174612f5265706f7369746f72792e6a617661> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 201.465 Td
+/F3.0 11 Tf
+<646174612f4163636573732e6a617661> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 186.725 Td
+/F3.0 11 Tf
+<402e2e2f2e2e2f636f6d6d6f6e2f636f6d6d6f6e2e6c7374> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 171.985 Td
+/F3.0 11 Tf
+<402f686f6d652f757365722f7372632f6c69622e6c7374> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 157.245 Td
+/F3.0 11 Tf
+<766965772f626f64792f4172726179566965772e6a617661> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 119.366 Td
+/F1.0 10.5 Tf
+<436f6d70696c65207468652066696c6573207573696e672065697468657220746865202d61726766696c65206f72204020666f726d3a> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.9608 0.9608 0.9608 scn
+52.24 103.55 m
+543.04 103.55 l
+545.2491 103.55 547.04 101.7591 547.04 99.55 c
+547.04 56.07 l
+547.04 53.8609 545.2491 52.07 543.04 52.07 c
+52.24 52.07 l
+50.0309 52.07 48.24 53.8609 48.24 56.07 c
+48.24 99.55 l
+48.24 101.7591 50.0309 103.55 52.24 103.55 c
+h
+f
+0.8 0.8 0.8 SCN
+0.75 w
+52.24 103.55 m
+543.04 103.55 l
+545.2491 103.55 547.04 101.7591 547.04 99.55 c
+547.04 56.07 l
+547.04 53.8609 545.2491 52.07 543.04 52.07 c
+52.24 52.07 l
+50.0309 52.07 48.24 53.8609 48.24 56.07 c
+48.24 99.55 l
+48.24 101.7591 50.0309 103.55 52.24 103.55 c
+h
+S
+Q
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 80.725 Td
+/F3.0 11 Tf
+<616a63202d61726766696c6520736f75726365732e6c7374> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 65.985 Td
+/F3.0 11 Tf
+<616a632040736f75726365732e6c7374> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.0 0.0 0.0 scn
+0.0 0.0 0.0 SCN
+1 w
+0 J
+0 j
+[] 0 d
+/Stamp1 Do
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+541.009 14.263 Td
+/F1.0 9 Tf
+<39> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+Q
+Q
+
+endstream
+endobj
+55 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/CropBox [0 0 595.28 841.89]
+/BleedBox [0 0 595.28 841.89]
+/TrimBox [0 0 595.28 841.89]
+/ArtBox [0 0 595.28 841.89]
+/Contents 54 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+/Font << /F2.0 22 0 R
+/F1.0 8 0 R
+/F3.0 26 0 R
+/F1.1 47 0 R
+>>
+/XObject << /Stamp1 360 0 R
+>>
+>>
+/Annots [58 0 R 59 0 R 60 0 R 61 0 R]
+>>
+endobj
+56 0 obj
+[55 0 R /XYZ 0 841.89 null]
+endobj
+57 0 obj
+[55 0 R /XYZ 0 561.83 null]
+endobj
+58 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (http://java.sun.com/docs/books/jls/index.html)
+>>
+/Subtype /Link
+/Rect [85.6376 497.74 342.8477 512.02]
+/Type /Annot
+>>
+endobj
+59 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (http://java.sun.com/docs/books/vmspec/index.html)
+>>
+/Subtype /Link
+/Rect [411.028 497.74 547.04 512.02]
+/Type /Annot
+>>
+endobj
+60 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (http://java.sun.com/docs/books/vmspec/index.html)
+>>
+/Subtype /Link
+/Rect [48.24 481.96 195.6822 496.24]
+/Type /Annot
+>>
+endobj
+61 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (#versionCompatibility)
+>>
+/Subtype /Link
+/Rect [258.7545 450.4 274.5045 464.68]
+/Type /Annot
+>>
+endobj
+62 0 obj
+[55 0 R /XYZ 0 437.65 null]
+endobj
+63 0 obj
+<< /Length 10104
+>>
+stream
+q
+/DeviceRGB cs
+0.2 0.2 0.2 scn
+/DeviceRGB CS
+0.2 0.2 0.2 SCN
+
+0.9962 Tw
+
+BT
+48.24 793.926 Td
+/F1.0 10.5 Tf
+[<41726766696c65732061726520616c736f20737570706f727465642062> 20.0195 <79206a696b> 20.0195 <657320616e64206a617661632c20736f20796f752063616e20757365207468652066696c657320696e2068> 20.0195 <7962726964206275696c64732e20486f77657665722c>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 778.146 Td
+/F1.0 10.5 Tf
+<74686520737570706f7274207661726965733a> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+56.8805 750.366 Td
+/F1.0 10.5 Tf
+<a5> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+66.24 750.366 Td
+/F1.0 10.5 Tf
+<4f6e6c7920616a63206163636570747320636f6d6d616e642d6c696e65206f7074696f6e73> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+56.8805 728.586 Td
+/F1.0 10.5 Tf
+<a5> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+66.24 728.586 Td
+/F1.0 10.5 Tf
+[<4a696b> 20.0195 <657320616e64204a6176616320646f206e6f742061636365707420696e7465726e616c204061726766696c65207265666572656e6365732e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+56.8805 706.806 Td
+/F1.0 10.5 Tf
+<a5> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+66.24 706.806 Td
+/F1.0 10.5 Tf
+[<4a696b> 20.0195 <657320616e64204a61766163206f6e6c792061636365707420746865204066696c6520666f726d206f6e2074686520636f6d6d616e64206c696e652e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.9478 Tw
+
+BT
+48.24 679.026 Td
+/F1.0 10.5 Tf
+[<42> 20.0195 <797465636f64652077656176696e67207573696e67202d696e706174683a204173706563744a20312e3220737570706f7274732077656176696e67202e636c6173732066696c657320696e20696e707574207a69702f6a61722066696c657320616e64>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.4076 Tw
+
+BT
+48.24 663.246 Td
+/F1.0 10.5 Tf
+[<6469726563746f726965732e205573696e6720696e707574206a617273206973206c696b> 20.0195 <6520636f6d70696c696e672074686520636f72726573706f6e64696e6720736f757263652066696c65732c20616e6420616c6c2062696e617269657320617265>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.4484 Tw
+
+BT
+48.24 647.466 Td
+/F1.0 10.5 Tf
+[<656d697474656420746f206f75747075742e20416c74686f756768204a6176612d636f6d706c69616e7420636f6d70696c657273206d61> 20.0195 <792064696666657220696e207468656972206f75747075742c20616a632073686f756c642074616b> 20.0195 <65206173>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.1554 Tw
+
+BT
+48.24 631.686 Td
+/F1.0 10.5 Tf
+[<696e70757420616e> 20.0195 <7920636c6173732066696c65732070726f64756365642062> 20.0195 <79206a617661632c206a696b> 20.0195 <65732c2065636c697073652c20616e642c206f6620636f757273652c20616a632e204173706563747320696e636c7564656420696e202d696e70617468>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 615.906 Td
+/F1.0 10.5 Tf
+[<77696c6c20626520776f76656e20696e746f206c696b> 20.0195 <65206f74686572202e636c6173732066696c65732c20616e6420746865792077696c6c20616666656374206f7468657220747970657320617320757375616c2e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+5.6015 Tw
+
+BT
+48.24 588.126 Td
+/F1.0 10.5 Tf
+[<417370656374206c696272> 20.0195 <6172696573207573696e67202d617370656374706174683a204173706563744a20312e3120737570706f7274732077656176696e672066726f6d20726561642d6f6e6c79206c696272> 20.0195 <6172696573>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.8623 Tw
+
+BT
+48.24 572.346 Td
+/F1.0 10.5 Tf
+[<636f6e7461696e696e6720617370656374732e204c696b> 20.0195 <6520696e707574206a6172732c20746865792061666665637420616c6c20696e7075743b20756e6c696b> 20.0195 <6520696e707574206a6172732c2074686579207468656d73656c76657320617265206e6f74>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.3326 Tw
+
+BT
+48.24 556.566 Td
+/F1.0 10.5 Tf
+[<6166666563746564206f7220656d6974746564206173206f75747075742e20536f757263657320636f6d70696c6564207769746820617370656374206c696272> 20.0195 <6172696573206d7573742062652072756e2077697468207468652073616d65>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 540.786 Td
+/F1.0 10.5 Tf
+[<617370656374206c696272> 20.0195 <6172696573206f6e20746865697220636c617373706174682e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.8502 Tw
+
+BT
+48.24 513.006 Td
+/F1.0 10.5 Tf
+[<54686520666f6c6c6f77696e67206578616d706c65206275696c647320746865207472> 20.0195 <6163696e67206578616d706c6520696e206120636f6d6d616e642d6c696e6520656e7669726f6e6d656e743b20697420637265617465732061>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.659 Tw
+
+BT
+48.24 497.226 Td
+/F1.0 10.5 Tf
+[<726561642d6f6e6c7920617370656374206c696272> 20.0195 <617279> 89.8438 <2c20636f6d70696c657320736f6d6520636c617373657320666f722075736520617320696e7075742062> 20.0195 <797465636f64652c20616e6420636f6d70696c65732074686520636c6173736573>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 481.446 Td
+/F1.0 10.5 Tf
+[<616e64206f7468657220736f757263657320776974682074686520617370656374206c696272> 20.0195 <617279> 89.8438 <2e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.7867 Tw
+
+BT
+48.24 453.666 Td
+/F1.0 10.5 Tf
+[<546865207472> 20.0195 <6163696e67206578616d706c6520697320696e20746865204173706563744a20646973747269627574696f6e20287b6173706563746a7d2f646f632f6578616d706c65732f7472> 20.0195 <6163696e67292e2054686973207573657320746865>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 437.886 Td
+/F1.0 10.5 Tf
+<666f6c6c6f77696e672066696c65733a> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.9608 0.9608 0.9608 scn
+52.24 422.07 m
+543.04 422.07 l
+545.2491 422.07 547.04 420.2791 547.04 418.07 c
+547.04 109.27 l
+547.04 107.0609 545.2491 105.27 543.04 105.27 c
+52.24 105.27 l
+50.0309 105.27 48.24 107.0609 48.24 109.27 c
+48.24 418.07 l
+48.24 420.2791 50.0309 422.07 52.24 422.07 c
+h
+f
+0.8 0.8 0.8 SCN
+0.75 w
+52.24 422.07 m
+543.04 422.07 l
+545.2491 422.07 547.04 420.2791 547.04 418.07 c
+547.04 109.27 l
+547.04 107.0609 545.2491 105.27 543.04 105.27 c
+52.24 105.27 l
+50.0309 105.27 48.24 107.0609 48.24 109.27 c
+48.24 418.07 l
+48.24 420.2791 50.0309 422.07 52.24 422.07 c
+h
+S
+Q
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 399.245 Td
+/F3.0 11 Tf
+<6173706563746a312e312f> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 384.505 Td
+/F3.0 11 Tf
+<ca2062696e2f> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 369.765 Td
+/F3.0 11 Tf
+<ca202020616a63> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 355.025 Td
+/F3.0 11 Tf
+<ca206c69622f> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 340.285 Td
+/F3.0 11 Tf
+<ca2020206173706563746a72742e6a6172> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 325.545 Td
+/F3.0 11 Tf
+<ca206578616d706c65732f> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 310.805 Td
+/F3.0 11 Tf
+<ca20202074726163696e672f> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 296.065 Td
+/F3.0 11 Tf
+<ca2020202020436972636c652e6a617661> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 281.325 Td
+/F3.0 11 Tf
+<ca20202020204578616d706c654d61696e2e6a617661> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 266.585 Td
+/F3.0 11 Tf
+<ca20202020206c69622f> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 251.845 Td
+/F3.0 11 Tf
+<ca20202020202020416273747261637454726163652e6a617661> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 237.105 Td
+/F3.0 11 Tf
+<ca2020202020202054726163654d79436c61737365732e6a617661> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 222.365 Td
+/F3.0 11 Tf
+<ca20202020206e6f74726163652e6c7374> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 207.625 Td
+/F3.0 11 Tf
+<ca20202020205371756172652e6a617661> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 192.885 Td
+/F3.0 11 Tf
+<ca202020202074726163656c69622e6c7374> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 178.145 Td
+/F3.0 11 Tf
+<ca2020202020747261636576332e6c7374> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 163.405 Td
+/F3.0 11 Tf
+<ca202020202054776f4453686170652e6a617661> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 148.665 Td
+/F3.0 11 Tf
+<ca202020202076657273696f6e332f> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 133.925 Td
+/F3.0 11 Tf
+<ca2020202020202054726163652e6a617661> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 119.185 Td
+/F3.0 11 Tf
+<ca2020202020202054726163654d79436c61737365732e6a617661> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.8398 Tw
+
+BT
+48.24 81.306 Td
+/F1.0 10.5 Tf
+[<42656c6f77> 69.8242 <2c207468652070617468207365706172> 20.0195 <61746f722069732074616b> 20.0195 <656e20617320223b222c206275742066696c65207365706172> 20.0195 <61746f72732061726520222f222e20416c6c20636f6d6d616e647320617265206f6e206f6e65206c696e652e>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 65.526 Td
+/F1.0 10.5 Tf
+[<41> 20.0195 <646a75737420706174687320616e6420636f6d6d616e647320746f20796f757220656e7669726f6e6d656e74206173206e65656465642e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.0 0.0 0.0 scn
+0.0 0.0 0.0 SCN
+1 w
+0 J
+0 j
+[] 0 d
+/Stamp2 Do
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+49.24 14.263 Td
+/F1.0 9 Tf
+<3130> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+Q
+Q
+
+endstream
+endobj
+64 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/CropBox [0 0 595.28 841.89]
+/BleedBox [0 0 595.28 841.89]
+/TrimBox [0 0 595.28 841.89]
+/ArtBox [0 0 595.28 841.89]
+/Contents 63 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+/Font << /F1.0 8 0 R
+/F3.0 26 0 R
+>>
+/XObject << /Stamp2 361 0 R
+>>
+>>
+>>
+endobj
+65 0 obj
+<< /Length 9593
+>>
+stream
+q
+/DeviceRGB cs
+0.2 0.2 0.2 scn
+/DeviceRGB CS
+0.2 0.2 0.2 SCN
+
+BT
+48.24 794.676 Td
+/F1.0 10.5 Tf
+<53657475702074686520706174682c20636c617373706174682c20616e642063757272656e74206469726563746f72793a> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.9608 0.9608 0.9608 scn
+52.24 778.86 m
+543.04 778.86 l
+545.2491 778.86 547.04 777.0691 547.04 774.86 c
+547.04 701.9 l
+547.04 699.6909 545.2491 697.9 543.04 697.9 c
+52.24 697.9 l
+50.0309 697.9 48.24 699.6909 48.24 701.9 c
+48.24 774.86 l
+48.24 777.0691 50.0309 778.86 52.24 778.86 c
+h
+f
+0.8 0.8 0.8 SCN
+0.75 w
+52.24 778.86 m
+543.04 778.86 l
+545.2491 778.86 547.04 777.0691 547.04 774.86 c
+547.04 701.9 l
+547.04 699.6909 545.2491 697.9 543.04 697.9 c
+52.24 697.9 l
+50.0309 697.9 48.24 699.6909 48.24 701.9 c
+48.24 774.86 l
+48.24 777.0691 50.0309 778.86 52.24 778.86 c
+h
+S
+Q
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 756.035 Td
+/F3.0 11 Tf
+<6364206578616d706c6573> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 741.295 Td
+/F3.0 11 Tf
+<6578706f727420616a72743d2e2e2f6c69622f6173706563746a72742e6a6172> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 726.555 Td
+/F3.0 11 Tf
+<6578706f727420434c415353504154483d2224616a727422> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 711.815 Td
+/F3.0 11 Tf
+<6578706f727420504154483d222e2e2f62696e3a245041544822> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 673.936 Td
+/F1.0 10.5 Tf
+[<4275696c64206120726561642d6f6e6c79207472> 20.0195 <6163696e67206c696272> 20.0195 <6172793a>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.9608 0.9608 0.9608 scn
+52.24 658.12 m
+543.04 658.12 l
+545.2491 658.12 547.04 656.3291 547.04 654.12 c
+547.04 625.38 l
+547.04 623.1709 545.2491 621.38 543.04 621.38 c
+52.24 621.38 l
+50.0309 621.38 48.24 623.1709 48.24 625.38 c
+48.24 654.12 l
+48.24 656.3291 50.0309 658.12 52.24 658.12 c
+h
+f
+0.8 0.8 0.8 SCN
+0.75 w
+52.24 658.12 m
+543.04 658.12 l
+545.2491 658.12 547.04 656.3291 547.04 654.12 c
+547.04 625.38 l
+547.04 623.1709 545.2491 621.38 543.04 621.38 c
+52.24 621.38 l
+50.0309 621.38 48.24 623.1709 48.24 625.38 c
+48.24 654.12 l
+48.24 656.3291 50.0309 658.12 52.24 658.12 c
+h
+S
+Q
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 635.295 Td
+/F3.0 11 Tf
+<ca202020616a63202d61726766696c652074726163696e672f74726163656c69622e6c7374202d6f75746a61722074726163656c69622e6a6172> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 597.416 Td
+/F1.0 10.5 Tf
+[<4275696c6420746865206170706c69636174696f6e2077697468207472> 20.0195 <6163696e6720696e206f6e6520737465703a>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.9608 0.9608 0.9608 scn
+52.24 581.6 m
+543.04 581.6 l
+545.2491 581.6 547.04 579.8091 547.04 577.6 c
+547.04 548.86 l
+547.04 546.6509 545.2491 544.86 543.04 544.86 c
+52.24 544.86 l
+50.0309 544.86 48.24 546.6509 48.24 548.86 c
+48.24 577.6 l
+48.24 579.8091 50.0309 581.6 52.24 581.6 c
+h
+f
+0.8 0.8 0.8 SCN
+0.75 w
+52.24 581.6 m
+543.04 581.6 l
+545.2491 581.6 547.04 579.8091 547.04 577.6 c
+547.04 548.86 l
+547.04 546.6509 545.2491 544.86 543.04 544.86 c
+52.24 544.86 l
+50.0309 544.86 48.24 546.6509 48.24 548.86 c
+48.24 577.6 l
+48.24 579.8091 50.0309 581.6 52.24 581.6 c
+h
+S
+Q
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 558.775 Td
+/F3.0 11 Tf
+<616a63202d617370656374706174682074726163656c69622e6a6172202d61726766696c652074726163696e672f6e6f74726163652e6c7374202d6f75746a6172207472616365646170702e6a6172> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 520.896 Td
+/F1.0 10.5 Tf
+[<52756e20746865206170706c69636174696f6e2077697468207472> 20.0195 <6163696e673a>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.9608 0.9608 0.9608 scn
+52.24 505.08 m
+543.04 505.08 l
+545.2491 505.08 547.04 503.2891 547.04 501.08 c
+547.04 472.34 l
+547.04 470.1309 545.2491 468.34 543.04 468.34 c
+52.24 468.34 l
+50.0309 468.34 48.24 470.1309 48.24 472.34 c
+48.24 501.08 l
+48.24 503.2891 50.0309 505.08 52.24 505.08 c
+h
+f
+0.8 0.8 0.8 SCN
+0.75 w
+52.24 505.08 m
+543.04 505.08 l
+545.2491 505.08 547.04 503.2891 547.04 501.08 c
+547.04 472.34 l
+547.04 470.1309 545.2491 468.34 543.04 468.34 c
+52.24 468.34 l
+50.0309 468.34 48.24 470.1309 48.24 472.34 c
+48.24 501.08 l
+48.24 503.2891 50.0309 505.08 52.24 505.08 c
+h
+S
+Q
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 482.255 Td
+/F3.0 11 Tf
+<6a617661202d636c61737370617468202224616a72743b7472616365646170702e6a61723b74726163656c69622e6a6172222074726163696e672e4578616d706c654d61696e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 444.376 Td
+/F1.0 10.5 Tf
+[<4275696c6420746865206170706c69636174696f6e2077697468207472> 20.0195 <6163696e672066726f6d2062696e617269657320696e2074776f2073746570733a>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+56.8805 416.596 Td
+/F1.0 10.5 Tf
+<a5> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+66.24 416.596 Td
+/F1.0 10.5 Tf
+[<286129204275696c6420746865206170706c69636174696f6e20636c617373657320287573696e67206a6176616320666f722064656d6f6e737472> 20.0195 <6174696f6ed5732073616b> 20.0195 <65293a>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.9608 0.9608 0.9608 scn
+70.24 400.78 m
+543.04 400.78 l
+545.2491 400.78 547.04 398.9891 547.04 396.78 c
+547.04 338.56 l
+547.04 336.3509 545.2491 334.56 543.04 334.56 c
+70.24 334.56 l
+68.0309 334.56 66.24 336.3509 66.24 338.56 c
+66.24 396.78 l
+66.24 398.9891 68.0309 400.78 70.24 400.78 c
+h
+f
+0.8 0.8 0.8 SCN
+0.75 w
+70.24 400.78 m
+543.04 400.78 l
+545.2491 400.78 547.04 398.9891 547.04 396.78 c
+547.04 338.56 l
+547.04 336.3509 545.2491 334.56 543.04 334.56 c
+70.24 334.56 l
+68.0309 334.56 66.24 336.3509 66.24 338.56 c
+66.24 396.78 l
+66.24 398.9891 68.0309 400.78 70.24 400.78 c
+h
+S
+Q
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+77.24 377.955 Td
+/F3.0 11 Tf
+<6d6b64697220636c6173736573> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+77.24 363.215 Td
+/F3.0 11 Tf
+<6a61766163202d6420636c61737365732074726163696e672f2a2e6a617661> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+77.24 348.475 Td
+/F3.0 11 Tf
+<6a61722063664d206170702e6a6172202d4320636c6173736573202e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+56.8805 310.596 Td
+/F1.0 10.5 Tf
+<a5> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+66.24 310.596 Td
+/F1.0 10.5 Tf
+[<286229204275696c6420746865206170706c69636174696f6e2077697468207472> 20.0195 <6163696e673a>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.9608 0.9608 0.9608 scn
+70.24 294.78 m
+543.04 294.78 l
+545.2491 294.78 547.04 292.9891 547.04 290.78 c
+547.04 262.04 l
+547.04 259.8309 545.2491 258.04 543.04 258.04 c
+70.24 258.04 l
+68.0309 258.04 66.24 259.8309 66.24 262.04 c
+66.24 290.78 l
+66.24 292.9891 68.0309 294.78 70.24 294.78 c
+h
+f
+0.8 0.8 0.8 SCN
+0.75 w
+70.24 294.78 m
+543.04 294.78 l
+545.2491 294.78 547.04 292.9891 547.04 290.78 c
+547.04 262.04 l
+547.04 259.8309 545.2491 258.04 543.04 258.04 c
+70.24 258.04 l
+68.0309 258.04 66.24 259.8309 66.24 262.04 c
+66.24 290.78 l
+66.24 292.9891 68.0309 294.78 70.24 294.78 c
+h
+S
+Q
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+77.24 271.955 Td
+/F3.0 11 Tf
+<616a63202d696e70617468206170702e6a6172202d617370656374706174682074726163656c69622e6a6172202d6f75746a6172207472616365646170702e6a6172> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 228.076 Td
+/F1.0 10.5 Tf
+[<52756e20746865206170706c69636174696f6e2077697468207472> 20.0195 <6163696e67202873616d652061732061626f7665293a>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.9608 0.9608 0.9608 scn
+52.24 212.26 m
+543.04 212.26 l
+545.2491 212.26 547.04 210.4691 547.04 208.26 c
+547.04 179.52 l
+547.04 177.3109 545.2491 175.52 543.04 175.52 c
+52.24 175.52 l
+50.0309 175.52 48.24 177.3109 48.24 179.52 c
+48.24 208.26 l
+48.24 210.4691 50.0309 212.26 52.24 212.26 c
+h
+f
+0.8 0.8 0.8 SCN
+0.75 w
+52.24 212.26 m
+543.04 212.26 l
+545.2491 212.26 547.04 210.4691 547.04 208.26 c
+547.04 179.52 l
+547.04 177.3109 545.2491 175.52 543.04 175.52 c
+52.24 175.52 l
+50.0309 175.52 48.24 177.3109 48.24 179.52 c
+48.24 208.26 l
+48.24 210.4691 50.0309 212.26 52.24 212.26 c
+h
+S
+Q
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 189.435 Td
+/F3.0 11 Tf
+<6a617661202d636c61737370617468202224616a72743b7472616365646170702e6a61723b74726163656c69622e6a6172222074726163696e672e4578616d706c654d61696e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 151.556 Td
+/F1.0 10.5 Tf
+[<52756e20746865206170706c69636174696f6e20776974686f7574207472> 20.0195 <6163696e673a>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.9608 0.9608 0.9608 scn
+52.24 135.74 m
+543.04 135.74 l
+545.2491 135.74 547.04 133.9491 547.04 131.74 c
+547.04 103.0 l
+547.04 100.7909 545.2491 99.0 543.04 99.0 c
+52.24 99.0 l
+50.0309 99.0 48.24 100.7909 48.24 103.0 c
+48.24 131.74 l
+48.24 133.9491 50.0309 135.74 52.24 135.74 c
+h
+f
+0.8 0.8 0.8 SCN
+0.75 w
+52.24 135.74 m
+543.04 135.74 l
+545.2491 135.74 547.04 133.9491 547.04 131.74 c
+547.04 103.0 l
+547.04 100.7909 545.2491 99.0 543.04 99.0 c
+52.24 99.0 l
+50.0309 99.0 48.24 100.7909 48.24 103.0 c
+48.24 131.74 l
+48.24 133.9491 50.0309 135.74 52.24 135.74 c
+h
+S
+Q
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 112.915 Td
+/F3.0 11 Tf
+<6a617661202d636c6173737061746820226170702e6a6172222074726163696e672e4578616d706c654d61696e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.0 0.0 0.0 scn
+0.0 0.0 0.0 SCN
+1 w
+0 J
+0 j
+[] 0 d
+/Stamp1 Do
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+535.978 14.263 Td
+/F1.0 9 Tf
+<3131> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+Q
+Q
+
+endstream
+endobj
+66 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/CropBox [0 0 595.28 841.89]
+/BleedBox [0 0 595.28 841.89]
+/TrimBox [0 0 595.28 841.89]
+/ArtBox [0 0 595.28 841.89]
+/Contents 65 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+/Font << /F1.0 8 0 R
+/F3.0 26 0 R
+>>
+/XObject << /Stamp1 360 0 R
+>>
+>>
+>>
+endobj
+67 0 obj
+<< /Length 12300
+>>
+stream
+q
+/DeviceRGB cs
+0.2 0.2 0.2 scn
+/DeviceRGB CS
+0.2 0.2 0.2 SCN
+
+BT
+48.24 792.006 Td
+/F2.0 13 Tf
+<312e352e352e20546865204173706563744a20636f6d70696c657220415049> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.4137 Tw
+
+BT
+48.24 765.446 Td
+/F1.0 10.5 Tf
+<546865204173706563744a20636f6d70696c657220697320696d706c656d656e74656420636f6d706c6574656c7920696e204a61766120616e642063616e2062652063616c6c65642061732061204a61766120636c6173732e20546865206f6e6c79> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.4192 Tw
+
+BT
+48.24 749.666 Td
+/F1.0 10.5 Tf
+<696e7465726661636520746861742073686f756c6420626520636f6e73696465726564207075626c69632061726520746865207075626c6963206d6574686f647320696e20> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.4192 Tw
+
+BT
+407.915 749.666 Td
+/F3.0 10.5 Tf
+<6f72672e6173706563746a2e746f6f6c732e616a632e4d61696e> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.4192 Tw
+
+BT
+544.415 749.666 Td
+/F1.0 10.5 Tf
+<2e> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.9178 Tw
+
+BT
+48.24 733.886 Td
+/F1.0 10.5 Tf
+<452e672e2c20> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.9178 Tw
+
+BT
+71.9428 733.886 Td
+/F3.0 10.5 Tf
+<6d61696e28537472696e675b5d206172677329> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.9178 Tw
+
+BT
+172.6107 733.886 Td
+/F1.0 10.5 Tf
+[<2074616b> 20.0195 <65732074686520746865207374616e6461726420>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.9178 Tw
+
+BT
+293.4346 733.886 Td
+/F3.0 10.5 Tf
+<616a63> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.9178 Tw
+
+BT
+309.1846 733.886 Td
+/F1.0 10.5 Tf
+<20636f6d6d616e64206c696e6520617267756d656e74732e2054686973206d65616e73207468617420616e> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 718.106 Td
+/F1.0 10.5 Tf
+[<616c7465726e6174697665207761> 20.0195 <7920746f2072756e2074686520636f6d70696c6572206973>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 690.326 Td
+/F1.0 10.5 Tf
+<6a617661206f72672e6173706563746a2e746f6f6c732e616a632e4d61696e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 662.546 Td
+/F1.0 10.5 Tf
+<6f7074696f6ec9> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 634.766 Td
+/F1.0 10.5 Tf
+<66696c65c9> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.6818 Tw
+
+BT
+48.24 606.986 Td
+/F1.0 10.5 Tf
+[<54> 29.7852 <6f2061636365737320636f6d70696c6572206d657373616765732070726f6772> 20.0195 <616d6d61746963616c6c79> 89.8438 <2c2075736520746865206d6574686f647320>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.6818 Tw
+
+BT
+378.3582 606.986 Td
+/F3.0 10.5 Tf
+<736574486f6c64657228494d657373616765486f6c64657220686f6c64657229> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.6818 Tw
+
+BT
+547.04 606.986 Td
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.6465 Tw
+
+BT
+48.24 591.206 Td
+/F1.0 10.5 Tf
+<616e642f6f7220> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.6465 Tw
+
+BT
+85.744 591.206 Td
+/F3.0 10.5 Tf
+<72756e28537472696e675b5d20617267732c20494d657373616765486f6c64657220686f6c64657229> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.6465 Tw
+
+BT
+305.9337 591.206 Td
+/F1.0 10.5 Tf
+<2e20> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.6465 Tw
+
+BT
+312.9247 591.206 Td
+/F3.0 10.5 Tf
+<616a63> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.6465 Tw
+
+BT
+328.6747 591.206 Td
+/F1.0 10.5 Tf
+<207265706f7274732065616368206d65737361676520746f2074686520686f6c646572207573696e67> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.7857 Tw
+
+BT
+48.24 575.426 Td
+/F3.0 10.5 Tf
+<494d657373616765486f6c6465722e68616e646c654d657373616765282e2e29> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.7857 Tw
+
+BT
+216.24 575.426 Td
+/F1.0 10.5 Tf
+<2e20496620796f75206a7573742077616e7420746f20636f6c6c65637420746865206d657373616765732c2075736520> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.7857 Tw
+
+BT
+458.3983 575.426 Td
+/F3.0 10.5 Tf
+<4d65737361676548616e646c6572> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.7857 Tw
+
+BT
+531.8983 575.426 Td
+/F1.0 10.5 Tf
+<206173> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.3457 Tw
+
+BT
+48.24 559.646 Td
+/F1.0 10.5 Tf
+<796f757220> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+2.3457 Tw
+
+BT
+76.8882 559.646 Td
+/F3.0 10.5 Tf
+<494d657373616765486f6c646572> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.3457 Tw
+
+BT
+150.3882 559.646 Td
+/F1.0 10.5 Tf
+[<2e2046> 40.0391 <6f72206578616d706c652c20636f6d70696c6520616e642072756e2074686520666f6c6c6f77696e67207769746820>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+2.3457 Tw
+
+BT
+424.1081 559.646 Td
+/F3.0 10.5 Tf
+<6173706563746a746f6f6c732e6a6172> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.3457 Tw
+
+BT
+508.1081 559.646 Td
+/F1.0 10.5 Tf
+<206f6e20746865> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 543.866 Td
+/F1.0 10.5 Tf
+<636c617373706174683a> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.9608 0.9608 0.9608 scn
+52.24 528.05 m
+543.04 528.05 l
+545.2491 528.05 547.04 526.2591 547.04 524.05 c
+547.04 318.43 l
+547.04 316.2209 545.2491 314.43 543.04 314.43 c
+52.24 314.43 l
+50.0309 314.43 48.24 316.2209 48.24 318.43 c
+48.24 524.05 l
+48.24 526.2591 50.0309 528.05 52.24 528.05 c
+h
+f
+0.8 0.8 0.8 SCN
+0.75 w
+52.24 528.05 m
+543.04 528.05 l
+545.2491 528.05 547.04 526.2591 547.04 524.05 c
+547.04 318.43 l
+547.04 316.2209 545.2491 314.43 543.04 314.43 c
+52.24 314.43 l
+50.0309 314.43 48.24 316.2209 48.24 318.43 c
+48.24 524.05 l
+48.24 526.2591 50.0309 528.05 52.24 528.05 c
+h
+S
+Q
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 505.225 Td
+/F3.0 11 Tf
+<696d706f7274206f72672e6173706563746a2e6272696467652e2a3b> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 490.485 Td
+/F3.0 11 Tf
+<696d706f7274206f72672e6173706563746a2e746f6f6c732e616a632e4d61696e3b> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 475.745 Td
+/F3.0 11 Tf
+<696d706f7274206a6176612e7574696c2e4172726179733b> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 446.265 Td
+/F3.0 11 Tf
+<7075626c696320636c6173732057726170416a63207b> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 431.525 Td
+/F3.0 11 Tf
+<ca207075626c69632073746174696320766f6964206d61696e28537472696e675b5d206172677329207b> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 416.785 Td
+/F3.0 11 Tf
+<ca2020204d61696e20636f6d70696c6572203d206e6577204d61696e28293b> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 402.045 Td
+/F3.0 11 Tf
+<ca2020204d65737361676548616e646c6572206d203d206e6577204d65737361676548616e646c657228293b> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 387.305 Td
+/F3.0 11 Tf
+<ca202020636f6d70696c65722e72756e28617267732c206d293b> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 372.565 Td
+/F3.0 11 Tf
+<ca202020494d6573736167655b5d206d73203d206d2e6765744d65737361676573286e756c6c2c2074727565293b> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 357.825 Td
+/F3.0 11 Tf
+<ca20202053797374656d2e6f75742e7072696e746c6e28226d657373616765733a2022202b204172726179732e61734c697374286d7329293b> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 343.085 Td
+/F3.0 11 Tf
+<ca207d> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 328.345 Td
+/F3.0 11 Tf
+<7d> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 283.746 Td
+/F2.0 13 Tf
+[<312e352e362e20537461636b205472> 20.0195 <6163657320616e642074686520536f7572636546696c6520617474726962757465>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.0742 Tw
+
+BT
+48.24 257.186 Td
+/F1.0 10.5 Tf
+[<556e6c696b> 20.0195 <65207472> 20.0195 <61646974696f6e616c206a61766120636f6d70696c6572732c20746865204173706563744a20636f6d70696c6572206d61> 20.0195 <7920696e206365727461696e2063617365732067656e6572> 20.0195 <61746520636c61737366696c65732066726f6d>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.5844 Tw
+
+BT
+48.24 241.406 Td
+/F1.0 10.5 Tf
+[<6d756c7469706c6520736f757263652066696c65732e20556e666f7274756e6174656c79> 89.8438 <2c20746865206f726967696e616c204a61766120636c6173732066696c6520666f726d617420646f6573206e6f7420737570706f7274206d756c7469706c65>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.9701 Tw
+
+BT
+48.24 225.626 Td
+/F1.0 10.5 Tf
+[<536f7572636546696c6520617474726962757465732e20496e206f7264657220746f206d616b> 20.0195 <65207375726520616c6c20736f757263652066696c6520696e666f726d6174696f6e20697320617661696c61626c652c20746865204173706563744a>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.8638 Tw
+
+BT
+48.24 209.846 Td
+/F1.0 10.5 Tf
+[<636f6d70696c6572206d61> 20.0195 <7920696e20736f6d6520636173657320656e636f6465206d756c7469706c652066696c656e616d657320696e2074686520536f7572636546696c65206174747269627574652e205768656e20746865204a617661>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 194.066 Td
+/F1.0 10.5 Tf
+[<564d2067656e6572> 20.0195 <6174657320737461636b207472> 20.0195 <616365732c206974207573657320746869732061747472696275746520746f20737065636966792074686520736f757263652066696c652e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.6793 Tw
+
+BT
+48.24 166.286 Td
+/F1.0 10.5 Tf
+<28546865204173706563744a20312e3020636f6d70696c657220616c736f20737570706f72747320746865202e636c6173732066696c6520657874656e73696f6e73206f66204a53522d34352e205468657365207065726d697420636f6d706c69616e74> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.515 Tw
+
+BT
+48.24 150.506 Td
+/F1.0 10.5 Tf
+[<646562756767657273202873756368206173206a646220696e204a61766120312e342e312920746f206964656e74696679207468652072696768742066696c6520616e64206c696e65206576656e20676976656e206d616e> 20.0195 <7920736f757263652066696c6573>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.382 Tw
+
+BT
+48.24 134.726 Td
+/F1.0 10.5 Tf
+[<666f7220612073696e676c6520636c6173732e204a53522d343520737570706f727420697320706c616e6e656420666f7220616a6320696e204173706563744a20312e312c20627574206973206e6f7420696e2074686520696e697469616c2072656c656173652e2054> 29.7852 <6f>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 118.946 Td
+/F1.0 10.5 Tf
+<6765742066756c6c792064656275676761626c65202e636c6173732066696c65732c2075736520746865202d586e6f496e6c696e65206f7074696f6e2e29> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.6892 Tw
+
+BT
+48.24 91.166 Td
+/F1.0 10.5 Tf
+[<50726f6261626c7920746865206f6e6c792074696d6520796f75206d61> 20.0195 <7920736565207468697320666f726d6174206973207768656e20796f75207669657720737461636b207472> 20.0195 <616365732c20776865726520796f75206d61> 20.0195 <79>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 75.386 Td
+/F1.0 10.5 Tf
+[<656e636f756e746572207472> 20.0195 <61636573206f662074686520666f726d6174>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.0 0.0 0.0 scn
+0.0 0.0 0.0 SCN
+1 w
+0 J
+0 j
+[] 0 d
+/Stamp2 Do
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+49.24 14.263 Td
+/F1.0 9 Tf
+<3132> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+Q
+Q
+
+endstream
+endobj
+68 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/CropBox [0 0 595.28 841.89]
+/BleedBox [0 0 595.28 841.89]
+/TrimBox [0 0 595.28 841.89]
+/ArtBox [0 0 595.28 841.89]
+/Contents 67 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+/Font << /F2.0 22 0 R
+/F1.0 8 0 R
+/F3.0 26 0 R
+>>
+/XObject << /Stamp2 361 0 R
+>>
+>>
+>>
+endobj
+69 0 obj
+[68 0 R /XYZ 0 841.89 null]
+endobj
+70 0 obj
+[68 0 R /XYZ 0 302.43 null]
+endobj
+71 0 obj
+<< /Length 11123
+>>
+stream
+q
+q
+/DeviceRGB cs
+0.9608 0.9608 0.9608 scn
+52.24 805.89 m
+543.04 805.89 l
+545.2491 805.89 547.04 804.0991 547.04 801.89 c
+547.04 758.41 l
+547.04 756.2009 545.2491 754.41 543.04 754.41 c
+52.24 754.41 l
+50.0309 754.41 48.24 756.2009 48.24 758.41 c
+48.24 801.89 l
+48.24 804.0991 50.0309 805.89 52.24 805.89 c
+h
+f
+/DeviceRGB CS
+0.8 0.8 0.8 SCN
+0.75 w
+52.24 805.89 m
+543.04 805.89 l
+545.2491 805.89 547.04 804.0991 547.04 801.89 c
+547.04 758.41 l
+547.04 756.2009 545.2491 754.41 543.04 754.41 c
+52.24 754.41 l
+50.0309 754.41 48.24 756.2009 48.24 758.41 c
+48.24 801.89 l
+48.24 804.0991 50.0309 805.89 52.24 805.89 c
+h
+S
+Q
+/DeviceRGB cs
+0.2 0.2 0.2 scn
+/DeviceRGB CS
+0.2 0.2 0.2 SCN
+
+BT
+59.24 783.065 Td
+/F3.0 11 Tf
+<6a6176612e6c616e672e4e756c6c506f696e746572457863657074696f6e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 768.325 Td
+/F3.0 11 Tf
+<ca206174204d61696e2e6e657724636f6e7374727563746f725f63616c6c3337284d61696e2e6a6176613b53796e63684173706563742e6a6176615b316b5d3a3130333029> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 730.446 Td
+/F1.0 10.5 Tf
+<776865726520696e7374656164206f662074686520757375616c> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.9608 0.9608 0.9608 scn
+52.24 714.63 m
+543.04 714.63 l
+545.2491 714.63 547.04 712.8391 547.04 710.63 c
+547.04 681.89 l
+547.04 679.6809 545.2491 677.89 543.04 677.89 c
+52.24 677.89 l
+50.0309 677.89 48.24 679.6809 48.24 681.89 c
+48.24 710.63 l
+48.24 712.8391 50.0309 714.63 52.24 714.63 c
+h
+f
+0.8 0.8 0.8 SCN
+0.75 w
+52.24 714.63 m
+543.04 714.63 l
+545.2491 714.63 547.04 712.8391 547.04 710.63 c
+547.04 681.89 l
+547.04 679.6809 545.2491 677.89 543.04 677.89 c
+52.24 677.89 l
+50.0309 677.89 48.24 679.6809 48.24 681.89 c
+48.24 710.63 l
+48.24 712.8391 50.0309 714.63 52.24 714.63 c
+h
+S
+Q
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 691.805 Td
+/F3.0 11 Tf
+<46696c653a4c696e654e756d626572> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 653.926 Td
+/F1.0 10.5 Tf
+<666f726d61742c20796f7520736565> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.9608 0.9608 0.9608 scn
+52.24 638.11 m
+543.04 638.11 l
+545.2491 638.11 547.04 636.3191 547.04 634.11 c
+547.04 605.37 l
+547.04 603.1609 545.2491 601.37 543.04 601.37 c
+52.24 601.37 l
+50.0309 601.37 48.24 603.1609 48.24 605.37 c
+48.24 634.11 l
+48.24 636.3191 50.0309 638.11 52.24 638.11 c
+h
+f
+0.8 0.8 0.8 SCN
+0.75 w
+52.24 638.11 m
+543.04 638.11 l
+545.2491 638.11 547.04 636.3191 547.04 634.11 c
+547.04 605.37 l
+547.04 603.1609 545.2491 601.37 543.04 601.37 c
+52.24 601.37 l
+50.0309 601.37 48.24 603.1609 48.24 605.37 c
+48.24 634.11 l
+48.24 636.3191 50.0309 638.11 52.24 638.11 c
+h
+S
+Q
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 615.285 Td
+/F3.0 11 Tf
+<46696c65303b46696c65315b4e756d626572315d3b46696c65325b4e756d626572325d202e2e2e203a4c696e654e756d626572> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.3299 Tw
+
+BT
+48.24 577.406 Td
+/F1.0 10.5 Tf
+<496e207468697320636173652c204c696e654e756d6265722069732074686520757375616c206f666673657420696e206c696e657320706c75732074686520227374617274206c696e6522206f66207468652061637475616c20736f757263652066696c652e> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.9764 Tw
+
+BT
+48.24 561.626 Td
+/F1.0 10.5 Tf
+<54686174206d65616e7320796f7520757365204c696e654e756d62657220626f746820746f206964656e746966792074686520736f757263652066696c6520616e6420746f2066696e6420746865206c696e652061742069737375652e20546865> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.7073 Tw
+
+BT
+48.24 545.846 Td
+/F1.0 10.5 Tf
+[<6e756d62657220696e205b6272> 20.0195 <61636b> 20.0195 <6574735d20616674657220656163682066696c652074656c6c7320796f7520746865207669727475616c20227374617274206c696e652220666f7220746861742066696c6520287468652066697273742066696c65206861732061>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 530.066 Td
+/F1.0 10.5 Tf
+<7374617274206f662030292e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.3346 Tw
+
+BT
+48.24 502.286 Td
+/F1.0 10.5 Tf
+[<496e206f7572206578616d706c652066726f6d20746865206e756c6c20706f696e74657220657863657074696f6e207472> 20.0195 <6163652c20746865207669727475616c207374617274206c696e6520697320313033302e2053696e6365207468652066696c65>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 486.506 Td
+/F1.0 10.5 Tf
+[<53> 20.0195 <796e63684173706563742e6a617661202273746172747322206174206c696e652031303030205b316b5d2c20746865204c696e654e756d62657220706f696e747320746f206c696e65203330206f662053> 20.0195 <796e63684173706563742e6a6176612e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.5476 Tw
+
+BT
+48.24 458.726 Td
+/F1.0 10.5 Tf
+[<536f2c207768656e2066616365642077697468207375636820737461636b207472> 20.0195 <616365732c20746865207761> 20.0195 <7920746f2066696e64207468652061637475616c20736f75726365206c6f636174696f6e20697320746f206c6f6f6b207468726f756768>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.2256 Tw
+
+BT
+48.24 442.946 Td
+/F1.0 10.5 Tf
+<746865206c697374206f6620227374617274206c696e6522206e756d6265727320746f2066696e6420746865206f6e65206a75737420756e646572207468652073686f776e206c696e65206e756d6265722e2054686174206973207468652066696c65> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.4012 Tw
+
+BT
+48.24 427.166 Td
+/F1.0 10.5 Tf
+[<77686572652074686520736f75726365206c6f636174696f6e2063616e2061637475616c6c7920626520666f756e642e205468656e2c207375627472> 20.0195 <616374207468617420227374617274206c696e65222066726f6d207468652073686f776e>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 411.386 Td
+/F1.0 10.5 Tf
+<6c696e65206e756d62657220746f2066696e64207468652061637475616c206c696e65206e756d6265722077697468696e20746861742066696c652e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.9409 Tw
+
+BT
+48.24 383.606 Td
+/F1.0 10.5 Tf
+[<496e206120636c6173732066696c65207468617420636f6d65732066726f6d206f6e6c7920612073696e676c6520736f757263652066696c652c20746865204173706563744a20636f6d70696c65722067656e6572> 20.0195 <6174657320536f7572636546696c65>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.9885 Tw
+
+BT
+48.24 367.826 Td
+/F1.0 10.5 Tf
+[<6174747269627574657320636f6e73697374656e742077697468207472> 20.0195 <61646974696f6e616c204a61766120636f6d70696c6572732e203d3d20>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+2.9885 Tw
+
+BT
+348.8791 367.826 Td
+/F3.0 10.5 Tf
+<616a646f63> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.9885 Tw
+
+BT
+375.1291 367.826 Td
+/F1.0 10.5 Tf
+<2c20746865204173706563744a2041504920646f63756d656e746174696f6e> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 352.046 Td
+/F1.0 10.5 Tf
+[<67656e6572> 20.0195 <61746f72>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 312.206 Td
+/F2.0 18 Tf
+<312e362e204e616d65> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+48.24 284.186 Td
+/F3.0 10.5 Tf
+<616a646f63> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+74.49 284.186 Td
+/F1.0 10.5 Tf
+[<202d2067656e6572> 20.0195 <6174652048544d4c2041504920646f63756d656e746174696f6e2c20696e636c7564696e672063726f737363757474696e6720737472756374757265>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 244.346 Td
+/F2.0 18 Tf
+[<312e372e2053> 20.0195 <796e6f70736973>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.9608 0.9608 0.9608 scn
+52.24 228.29 m
+543.04 228.29 l
+545.2491 228.29 547.04 226.4991 547.04 224.29 c
+547.04 151.33 l
+547.04 149.1209 545.2491 147.33 543.04 147.33 c
+52.24 147.33 l
+50.0309 147.33 48.24 149.1209 48.24 151.33 c
+48.24 224.29 l
+48.24 226.4991 50.0309 228.29 52.24 228.29 c
+h
+f
+0.8 0.8 0.8 SCN
+0.75 w
+52.24 228.29 m
+543.04 228.29 l
+545.2491 228.29 547.04 226.4991 547.04 224.29 c
+547.04 151.33 l
+547.04 149.1209 545.2491 147.33 543.04 147.33 c
+52.24 147.33 l
+50.0309 147.33 48.24 149.1209 48.24 151.33 c
+48.24 224.29 l
+48.24 226.4991 50.0309 228.29 52.24 228.29 c
+h
+S
+Q
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 205.465 Td
+/F3.0 11 Tf
+<616a646f63205b202d626f6f74636c6173737061746820636c617373706174686c697374205d205b202d636c6173737061746820636c617373706174686c697374205d205b2d6420706174685d205b2d68656c705d> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 190.725 Td
+/F3.0 11 Tf
+<5b2d7061636b6167655d205b2d70726f7465637465645d205b2d707269766174655d205b2d7075626c69635d205b2d6f76657276696577206f7665727669657746696c655d205b202d736f7572636570617468> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 175.985 Td
+/F3.0 11 Tf
+<736f75726365706174686c697374205d205b2d766572626f73655d205b2d76657273696f6e5d205b736f7572636566696c65732e2e2e207c207061636b616765732e2e2e207c204066696c652e2e2e207c> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 161.245 Td
+/F3.0 11 Tf
+<2d61726766696c652066696c652e2e2e5d205b20616a63206f7074696f6e73205d> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 111.306 Td
+/F2.0 18 Tf
+<312e382e204465736372697074696f6e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+2.7694 Tw
+
+BT
+48.24 83.286 Td
+/F3.0 10.5 Tf
+<616a646f63> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.7694 Tw
+
+BT
+74.49 83.286 Td
+/F1.0 10.5 Tf
+<2072656e646572732048544d4c20646f63756d656e746174696f6e20666f72204173706563744a20636f6e737472756374732061732077656c6c20617320746865204a61766120636f6e737472756374732074686174> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.2672 Tw
+
+BT
+48.24 67.506 Td
+/F3.0 10.5 Tf
+<6a617661646f63> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.2672 Tw
+
+BT
+84.99 67.506 Td
+/F1.0 10.5 Tf
+<2072656e646572732e20496e206164646974696f6e20> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.2672 Tw
+
+BT
+191.2585 67.506 Td
+/F3.0 10.5 Tf
+<616a646f63> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.2672 Tw
+
+BT
+217.5085 67.506 Td
+/F1.0 10.5 Tf
+[<20646973706c61> 20.0195 <7973207468652063726f737363757474696e67206e617475726520696e2074686520666f726d206f66206c696e6b732e2054686174206d65616e732c>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.8451 Tw
+
+BT
+48.24 51.726 Td
+/F1.0 10.5 Tf
+<666f72206578616d706c652c207468617420796f752063616e207365652065766572797468696e6720616666656374696e672061206d6574686f64207768656e2072656164696e672074686520646f63756d656e746174696f6e20666f72> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.0 0.0 0.0 scn
+0.0 0.0 0.0 SCN
+1 w
+0 J
+0 j
+[] 0 d
+/Stamp1 Do
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+535.978 14.263 Td
+/F1.0 9 Tf
+<3133> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+Q
+Q
+
+endstream
+endobj
+72 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/CropBox [0 0 595.28 841.89]
+/BleedBox [0 0 595.28 841.89]
+/TrimBox [0 0 595.28 841.89]
+/ArtBox [0 0 595.28 841.89]
+/Contents 71 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+/Font << /F3.0 26 0 R
+/F1.0 8 0 R
+/F2.0 22 0 R
+>>
+/XObject << /Stamp1 360 0 R
+>>
+>>
+>>
+endobj
+73 0 obj
+[72 0 R /XYZ 0 336.23 null]
+endobj
+74 0 obj
+[72 0 R /XYZ 0 268.37 null]
+endobj
+75 0 obj
+[72 0 R /XYZ 0 135.33 null]
+endobj
+76 0 obj
+<< /Length 17238
+>>
+stream
+q
+/DeviceRGB cs
+0.2 0.2 0.2 scn
+/DeviceRGB CS
+0.2 0.2 0.2 SCN
+
+BT
+48.24 794.676 Td
+/F1.0 10.5 Tf
+<746865206d6574686f642e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.1923 Tw
+
+BT
+48.24 766.896 Td
+/F1.0 10.5 Tf
+[<54> 29.7852 <6f2072756e20>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.1923 Tw
+
+BT
+84.6104 766.896 Td
+/F3.0 10.5 Tf
+<616a646f63> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.1923 Tw
+
+BT
+110.8604 766.896 Td
+/F1.0 10.5 Tf
+<2c20757365206f6e65206f6620746865207363726970747320696e20746865204173706563744a20> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.1923 Tw
+
+BT
+297.0029 766.896 Td
+/F3.0 10.5 Tf
+<62696e> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.1923 Tw
+
+BT
+312.7529 766.896 Td
+/F1.0 10.5 Tf
+[<206469726563746f7279> 89.8438 <2e2054686520>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.1923 Tw
+
+BT
+388.0075 766.896 Td
+/F3.0 10.5 Tf
+<616a646f63> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.1923 Tw
+
+BT
+414.2575 766.896 Td
+/F1.0 10.5 Tf
+<20696d706c656d656e746174696f6e206275696c6473206f6e> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.1572 Tw
+
+BT
+48.24 751.116 Td
+/F1.0 10.5 Tf
+<53756ed57320> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.1572 Tw
+
+BT
+78.6082 751.116 Td
+/F3.0 10.5 Tf
+<6a617661646f63> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.1572 Tw
+
+BT
+115.3582 751.116 Td
+/F1.0 10.5 Tf
+[<20636f6d6d616e64206c696e6520746f6f6c2c20616e6420796f752075736520697420696e207468652073616d65207761> 20.0195 <792077697468206d616e> 20.0195 <79206f66207468652073616d65206f7074696f6e73>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.5676 Tw
+
+BT
+48.24 735.336 Td
+/F1.0 10.5 Tf
+<28> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.5676 Tw
+
+BT
+51.873 735.336 Td
+/F3.0 10.5 Tf
+<6a617661646f63> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.5676 Tw
+
+BT
+88.623 735.336 Td
+/F1.0 10.5 Tf
+<206f7074696f6e7320617265206e6f7420646f63756d656e74656420686572653b20666f72206d6f726520696e666f726d6174696f6e206f6e20> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.5676 Tw
+
+BT
+394.7352 735.336 Td
+/F3.0 10.5 Tf
+<6a617661646f63> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.5676 Tw
+
+BT
+431.4852 735.336 Td
+/F1.0 10.5 Tf
+<2075736167652c207365652074686520> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2588 0.5451 0.7922 scn
+0.2588 0.5451 0.7922 SCN
+
+0.5676 Tw
+
+BT
+507.7595 735.336 Td
+/F1.0 10.5 Tf
+<4a617661646f63> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2588 0.5451 0.7922 scn
+0.2588 0.5451 0.7922 SCN
+
+BT
+48.24 719.556 Td
+/F1.0 10.5 Tf
+<686f6d6570616765> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+100.089 719.556 Td
+/F1.0 10.5 Tf
+<2e29> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.4038 Tw
+
+BT
+48.24 691.776 Td
+/F1.0 10.5 Tf
+<4173207769746820> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.4038 Tw
+
+BT
+89.3676 691.776 Td
+/F3.0 10.5 Tf
+<616a63> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.4038 Tw
+
+BT
+105.1176 691.776 Td
+/F1.0 10.5 Tf
+[<202862757420756e6c696b> 20.0195 <6520>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.4038 Tw
+
+BT
+166.4834 691.776 Td
+/F3.0 10.5 Tf
+<6a617661646f63> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.4038 Tw
+
+BT
+203.2334 691.776 Td
+/F1.0 10.5 Tf
+<292c20796f75207061737320> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.4038 Tw
+
+BT
+259.3073 691.776 Td
+/F3.0 10.5 Tf
+<616a646f63> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.4038 Tw
+
+BT
+285.5573 691.776 Td
+/F1.0 10.5 Tf
+[<20616c6c20796f75722061737065637420736f757263652066696c657320616e6420616e> 20.0195 <792066696c657320636f6e7461696e696e67>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.4204 Tw
+
+BT
+48.24 675.996 Td
+/F1.0 10.5 Tf
+[<74797065732061666665637465642062> 20.0195 <792074686520617370656374733b206974d573206f6674656e206561736965737420746f206a757374207061737320616c6c2074686520>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.4204 Tw
+
+BT
+375.3099 675.996 Td
+/F3.0 10.5 Tf
+<2e6a617661> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.4204 Tw
+
+BT
+401.5599 675.996 Td
+/F1.0 10.5 Tf
+<20616e6420> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.4204 Tw
+
+BT
+426.9498 675.996 Td
+/F3.0 10.5 Tf
+<2e616a> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.4204 Tw
+
+BT
+442.6998 675.996 Td
+/F1.0 10.5 Tf
+<2066696c657320696e20796f75722073797374656d2e> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.3647 Tw
+
+BT
+48.24 660.216 Td
+/F1.0 10.5 Tf
+[<556e6c696b> 20.0195 <6520>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.3647 Tw
+
+BT
+83.7585 660.216 Td
+/F3.0 10.5 Tf
+<616a63> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.3647 Tw
+
+BT
+99.5085 660.216 Td
+/F1.0 10.5 Tf
+<2c20> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.3647 Tw
+
+BT
+105.2178 660.216 Td
+/F3.0 10.5 Tf
+<616a646f63> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.3647 Tw
+
+BT
+131.4678 660.216 Td
+/F1.0 10.5 Tf
+<2077696c6c2074727920746f2066696e64207061636b61676520736f7572636573207573696e67207468652073706563696669656420736f757263657061746820696620796f75206c697374207061636b61676573> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 644.436 Td
+/F1.0 10.5 Tf
+<6f6e2074686520636f6d6d616e64206c696e652e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+3.8994 Tw
+
+BT
+48.24 616.656 Td
+/F1.0 10.5 Tf
+[<54> 29.7852 <6f2070726f7669646520616e2061726766696c65206c697374696e672074686520736f757263652066696c65732c20796f752063616e2075736520757365207468652073616d652061726766696c652028>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+3.8994 Tw
+
+BT
+496.157 616.656 Td
+/F3.0 10.5 Tf
+<4066696c656e616d65> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+3.8994 Tw
+
+BT
+543.407 616.656 Td
+/F1.0 10.5 Tf
+<29> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+3.4109 Tw
+
+BT
+48.24 600.876 Td
+/F1.0 10.5 Tf
+<636f6e76656e74696f6e73206173207769746820> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+3.4109 Tw
+
+BT
+161.0891 600.876 Td
+/F3.0 10.5 Tf
+<616a63> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+3.4109 Tw
+
+BT
+176.8391 600.876 Td
+/F1.0 10.5 Tf
+[<2e2046> 40.0391 <6f72206578616d706c652c2074686520666f6c6c6f77696e6720646f63756d656e747320616c6c2074686520736f757263652066696c6573206c697374656420696e>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+48.24 585.096 Td
+/F3.0 10.5 Tf
+<61726766696c652e6c7374> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+105.99 585.096 Td
+/F1.0 10.5 Tf
+<2c2073656e64696e6720746865206f757470757420746f2074686520> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+239.1615 585.096 Td
+/F3.0 10.5 Tf
+<646f63446972> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+270.6615 585.096 Td
+/F1.0 10.5 Tf
+[<206f7574707574206469726563746f7279> 89.8438 <2e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.9608 0.9608 0.9608 scn
+52.24 569.28 m
+543.04 569.28 l
+545.2491 569.28 547.04 567.4891 547.04 565.28 c
+547.04 536.54 l
+547.04 534.3309 545.2491 532.54 543.04 532.54 c
+52.24 532.54 l
+50.0309 532.54 48.24 534.3309 48.24 536.54 c
+48.24 565.28 l
+48.24 567.4891 50.0309 569.28 52.24 569.28 c
+h
+f
+0.8 0.8 0.8 SCN
+0.75 w
+52.24 569.28 m
+543.04 569.28 l
+545.2491 569.28 547.04 567.4891 547.04 565.28 c
+547.04 536.54 l
+547.04 534.3309 545.2491 532.54 543.04 532.54 c
+52.24 532.54 l
+50.0309 532.54 48.24 534.3309 48.24 536.54 c
+48.24 565.28 l
+48.24 567.4891 50.0309 569.28 52.24 569.28 c
+h
+S
+Q
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 546.455 Td
+/F3.0 11 Tf
+<616a646f63202d6420646f63446972204061726766696c652e6c7374> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 508.576 Td
+/F1.0 10.5 Tf
+<5365652074686520> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2588 0.5451 0.7922 scn
+0.2588 0.5451 0.7922 SCN
+
+BT
+86.586 508.576 Td
+/F1.0 10.5 Tf
+<616a6320646f63756d656e746174696f6e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+179.6055 508.576 Td
+/F1.0 10.5 Tf
+<20666f722064657461696c73206f6e2074686520746578742066696c6520666f726d61742e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+48.24 480.796 Td
+/F3.0 10.5 Tf
+<616a646f63> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+74.49 480.796 Td
+/F1.0 10.5 Tf
+<20686f6e6f75727320> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+121.8135 480.796 Td
+/F3.0 10.5 Tf
+<616a63> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+137.5635 480.796 Td
+/F1.0 10.5 Tf
+<206f7074696f6e732e205365652074686520> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2588 0.5451 0.7922 scn
+0.2588 0.5451 0.7922 SCN
+
+BT
+221.0805 480.796 Td
+/F1.0 10.5 Tf
+<616a6320646f63756d656e746174696f6e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+314.1 480.796 Td
+/F1.0 10.5 Tf
+<20666f722064657461696c73206f6e207468657365206f7074696f6e732e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.3417 Tw
+
+BT
+48.24 453.016 Td
+/F3.0 10.5 Tf
+<616a646f63> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.3417 Tw
+
+BT
+74.49 453.016 Td
+/F1.0 10.5 Tf
+<2063757272656e746c792072657175697265732074686520> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.3417 Tw
+
+BT
+191.987 453.016 Td
+/F3.0 10.5 Tf
+<746f6f6c732e6a6172> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.3417 Tw
+
+BT
+239.237 453.016 Td
+/F1.0 10.5 Tf
+<2066726f6d204a32534520312e3320746f206265206f6e2074686520636c617373706174682e204e6f726d616c6c7920746865207363726970747320736574> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.7089 Tw
+
+BT
+48.24 437.236 Td
+/F1.0 10.5 Tf
+<746869732075702c20617373756d696e67207468617420796f757220> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.7089 Tw
+
+BT
+195.7837 437.236 Td
+/F3.0 10.5 Tf
+<4a4156415f484f4d45> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.7089 Tw
+
+BT
+243.0337 437.236 Td
+/F1.0 10.5 Tf
+[<207661726961626c6520706f696e747320746f20616e20617070726f70726961746520696e7374616c6c6174696f6e206f66204a6176612e2059> 69.8242 <6f75>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 421.456 Td
+/F1.0 10.5 Tf
+[<6d61> 20.0195 <79206e65656420746f2070726f766964652074686973206a6172207768656e207573696e67206120646966666572656e742076657273696f6e206f66204a617661206f722061204a52452e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 381.616 Td
+/F2.0 18 Tf
+<312e392e204578616d706c6573> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+56.8805 353.596 Td
+/F1.0 10.5 Tf
+<a5> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+66.24 353.596 Td
+/F1.0 10.5 Tf
+<4368616e676520696e746f2074686520> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+147.279 353.596 Td
+/F3.0 10.5 Tf
+<6578616d706c6573> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+189.279 353.596 Td
+/F1.0 10.5 Tf
+[<206469726563746f7279> 89.8438 <2e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+56.8805 331.816 Td
+/F1.0 10.5 Tf
+<a5> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+66.24 331.816 Td
+/F1.0 10.5 Tf
+<5479706520> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+93.3615 331.816 Td
+/F3.0 10.5 Tf
+<6d6b64697220646f63> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+140.6115 331.816 Td
+/F1.0 10.5 Tf
+<20746f20637265617465207468652064657374696e6174696f6e206469726563746f727920666f722074686520646f63756d656e746174696f6e2e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+56.8805 310.036 Td
+/F1.0 10.5 Tf
+<a5> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+66.24 310.036 Td
+/F1.0 10.5 Tf
+<5479706520> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+93.3615 310.036 Td
+/F3.0 10.5 Tf
+<616a646f63202d70726976617465202d6420646f6320737061636577617220636f6f7264696e6174696f6e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+319.1115 310.036 Td
+/F1.0 10.5 Tf
+[<20746f2067656e6572> 20.0195 <6174652074686520646f63756d656e746174696f6e2e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+74.954 288.256 Td
+/F1.1 10.5 Tf
+<23> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.0175 Tw
+
+BT
+84.24 288.256 Td
+/F1.0 10.5 Tf
+<2855736520> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+2.0175 Tw
+
+BT
+110.481 288.256 Td
+/F3.0 10.5 Tf
+<2d70726976617465> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.0175 Tw
+
+BT
+152.481 288.256 Td
+/F1.0 10.5 Tf
+[<20746f2067657420616c6c206d656d626572732c2073696e6365206d61> 20.0195 <79206f662074686520696e746572657374696e67206f6e657320696e20737061636577617220617265206e6f74>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+84.24 272.476 Td
+/F1.0 10.5 Tf
+<7075626c69632e29> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+56.8805 250.696 Td
+/F1.0 10.5 Tf
+<a5> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+66.24 250.696 Td
+/F1.0 10.5 Tf
+<5479706520> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+93.3615 250.696 Td
+/F3.0 10.5 Tf
+<616a646f63202d70726976617465202d6420646f63204073706163657761722f64656d6f2e6c7374> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+303.3615 250.696 Td
+/F1.0 10.5 Tf
+<20746f20757365207468652061726766696c65206173736f63696174656420776974682053706163657761722e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+56.8805 228.916 Td
+/F1.0 10.5 Tf
+<a5> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+66.24 228.916 Td
+/F1.0 10.5 Tf
+[<54> 29.7852 <6f20766965772074686520646f63756d656e746174696f6e2c206f70656e207468652066696c6520>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+273.1763 228.916 Td
+/F3.0 10.5 Tf
+<696e6465782e68746d6c> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+325.6763 228.916 Td
+/F1.0 10.5 Tf
+<20696e2074686520> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+359.9273 228.916 Td
+/F3.0 10.5 Tf
+<646f63> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+375.6773 228.916 Td
+/F1.0 10.5 Tf
+<206469726563746f7279207573696e672061207765622062726f777365722e20616a> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 201.136 Td
+/F1.0 10.5 Tf
+<636f6d6d616e642d6c696e65206c61756e6368657220666f72206261736963206c6f61642d74696d652077656176696e67> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 173.356 Td
+/F1.0 10.5 Tf
+<616a> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 145.576 Td
+/F1.0 10.5 Tf
+<4f7074696f6e73> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 117.796 Td
+/F1.0 10.5 Tf
+<617267c9> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.0 0.0 0.0 scn
+0.0 0.0 0.0 SCN
+1 w
+0 J
+0 j
+[] 0 d
+/Stamp2 Do
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+49.24 14.263 Td
+/F1.0 9 Tf
+<3134> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+Q
+Q
+
+endstream
+endobj
+77 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/CropBox [0 0 595.28 841.89]
+/BleedBox [0 0 595.28 841.89]
+/TrimBox [0 0 595.28 841.89]
+/ArtBox [0 0 595.28 841.89]
+/Contents 76 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+/Font << /F1.0 8 0 R
+/F3.0 26 0 R
+/F2.0 22 0 R
+/F1.1 47 0 R
+>>
+/XObject << /Stamp2 361 0 R
+>>
+>>
+/Annots [78 0 R 79 0 R 80 0 R 81 0 R]
+>>
+endobj
+78 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (http://java.sun.com/j2se/javadoc/)
+>>
+/Subtype /Link
+/Rect [507.7595 732.27 547.04 746.55]
+/Type /Annot
+>>
+endobj
+79 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (http://java.sun.com/j2se/javadoc/)
+>>
+/Subtype /Link
+/Rect [48.24 716.49 100.089 730.77]
+/Type /Annot
+>>
+endobj
+80 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (#ajc)
+>>
+/Subtype /Link
+/Rect [86.586 505.51 179.6055 519.79]
+/Type /Annot
+>>
+endobj
+81 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (#ajc_options)
+>>
+/Subtype /Link
+/Rect [221.0805 477.73 314.1 492.01]
+/Type /Annot
+>>
+endobj
+82 0 obj
+[77 0 R /XYZ 0 405.64 null]
+endobj
+83 0 obj
+<< /Length 4993
+>>
+stream
+q
+/DeviceRGB cs
+0.2 0.2 0.2 scn
+/DeviceRGB CS
+0.2 0.2 0.2 SCN
+
+BT
+48.24 782.394 Td
+/F2.0 22 Tf
+<4368617074657220322e204465736372697074696f6e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.4179 Tw
+
+BT
+48.24 753.206 Td
+/F1.0 10.5 Tf
+<54686520> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.4179 Tw
+
+BT
+70.0779 753.206 Td
+/F3.0 10.5 Tf
+<616a> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.4179 Tw
+
+BT
+80.5779 753.206 Td
+/F1.0 10.5 Tf
+[<20636f6d6d616e642072756e73204a6176612070726f6772> 20.0195 <616d7320696e204a61766120312e34206f72206c617465722062> 20.0195 <792073657474696e6720757020>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.4179 Tw
+
+BT
+403.9082 753.206 Td
+/F3.0 10.5 Tf
+<57656176696e6755524c436c6173734c6f61646572> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.4179 Tw
+
+BT
+514.1582 753.206 Td
+/F1.0 10.5 Tf
+<20617320746865> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 737.426 Td
+/F1.0 10.5 Tf
+[<73797374656d20636c617373206c6f616465722c20746f20646f206c6f61642d74696d652062> 20.0195 <797465636f64652077656176696e672e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.6405 Tw
+
+BT
+48.24 709.646 Td
+/F1.0 10.5 Tf
+[<54686520617267756d656e747320617265207468652073616d652061732074686f7365207573656420746f206c61756e636820746865204a6176612070726f6772> 20.0195 <616d2e2055736572732073686f756c6420646566696e6520746865>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 693.866 Td
+/F1.0 10.5 Tf
+<656e7669726f6e6d656e74207661726961626c657320> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+165.4935 693.866 Td
+/F3.0 10.5 Tf
+<434c41535350415448> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+212.7435 693.866 Td
+/F1.0 10.5 Tf
+<20616e6420> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+237.2925 693.866 Td
+/F3.0 10.5 Tf
+<41535045435450415448> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+289.7925 693.866 Td
+/F1.0 10.5 Tf
+<2e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 666.086 Td
+/F1.0 10.5 Tf
+[<46> 40.0391 <6f72206d6f726520696e666f726d6174696f6e20616e6420616c7465726e61746976657320666f72206c6f61642d74696d652077656176696e672c2073656520>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2588 0.5451 0.7922 scn
+0.2588 0.5451 0.7922 SCN
+
+BT
+378.7481 666.086 Td
+/F1.0 10.5 Tf
+<3f3f3f> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+394.4981 666.086 Td
+/F1.0 10.5 Tf
+<2e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 626.246 Td
+/F2.0 18 Tf
+<322e312e204578616d706c6573> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 598.226 Td
+/F1.0 10.5 Tf
+[<55736520616a6320746f206275696c642061206c696272> 20.0195 <617279> 89.8438 <2c207468656e207765617665206174206c6f61642074696d65>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.9608 0.9608 0.9608 scn
+52.24 582.41 m
+543.04 582.41 l
+545.2491 582.41 547.04 580.6191 547.04 578.41 c
+547.04 475.97 l
+547.04 473.7609 545.2491 471.97 543.04 471.97 c
+52.24 471.97 l
+50.0309 471.97 48.24 473.7609 48.24 475.97 c
+48.24 578.41 l
+48.24 580.6191 50.0309 582.41 52.24 582.41 c
+h
+f
+0.8 0.8 0.8 SCN
+0.75 w
+52.24 582.41 m
+543.04 582.41 l
+545.2491 582.41 547.04 580.6191 547.04 578.41 c
+547.04 475.97 l
+547.04 473.7609 545.2491 471.97 543.04 471.97 c
+52.24 471.97 l
+50.0309 471.97 48.24 473.7609 48.24 475.97 c
+48.24 578.41 l
+48.24 580.6191 50.0309 582.41 52.24 582.41 c
+h
+S
+Q
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 559.585 Td
+/F3.0 11 Tf
+<52454d20636f6d70696c65206c696272617279> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 544.845 Td
+/F3.0 11 Tf
+<247b4153504543544a5f484f4d457d5c62696e5c616a632e626174202d6f75746a6172206c69625c617370656374732e6a61722040617370656374732e6c7374> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 515.365 Td
+/F3.0 11 Tf
+<52454d2072756e2c2077656176696e6720696e746f206170706c69636174696f6e206174206c6f61642d74696d6520736574> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 500.625 Td
+/F3.0 11 Tf
+<415350454354504154483d6c69625c617370656374732e6a61722073657420434c415353504154483d6170705c6170702e6a6172> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 485.885 Td
+/F3.0 11 Tf
+<247b4153504543544a5f484f4d457d5c62696e5c616a2e62617420636f6d2e636f6d70616e792e6170702e4d61696e202248656c6c6f2c20576f726c642122> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.0 0.0 0.0 scn
+0.0 0.0 0.0 SCN
+1 w
+0 J
+0 j
+[] 0 d
+/Stamp1 Do
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+535.978 14.263 Td
+/F1.0 9 Tf
+<3135> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+Q
+Q
+
+endstream
+endobj
+84 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/CropBox [0 0 595.28 841.89]
+/BleedBox [0 0 595.28 841.89]
+/TrimBox [0 0 595.28 841.89]
+/ArtBox [0 0 595.28 841.89]
+/Contents 83 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+/Font << /F2.0 22 0 R
+/F1.0 8 0 R
+/F3.0 26 0 R
+>>
+/XObject << /Stamp1 360 0 R
+>>
+>>
+/Annots [86 0 R]
+>>
+endobj
+85 0 obj
+[84 0 R /XYZ 0 841.89 null]
+endobj
+86 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (#ltw)
+>>
+/Subtype /Link
+/Rect [378.7481 663.02 394.4981 677.3]
+/Type /Annot
+>>
+endobj
+87 0 obj
+[84 0 R /XYZ 0 650.27 null]
+endobj
+88 0 obj
+<< /Length 11860
+>>
+stream
+q
+/DeviceRGB cs
+0.2 0.2 0.2 scn
+/DeviceRGB CS
+0.2 0.2 0.2 SCN
+
+BT
+48.24 782.394 Td
+/F2.0 22 Tf
+<4368617074657220332e204173706563744a2042726f77736572> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 741.146 Td
+/F2.0 18 Tf
+<332e312e20496e74726f64756374696f6e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 713.126 Td
+/F1.0 10.5 Tf
+[<414a42726f777365722070726573656e747320612047554920666f7220636f6d70696c696e672070726f6772> 20.0195 <616d73207769746820616a6320616e64206e617669676174696e672063726f737363757474696e67207374727563747572652e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.2409 Tw
+
+BT
+48.24 685.346 Td
+/F1.0 10.5 Tf
+[<546865204173706563744a2042726f777365722063616e20656469742070726f6772> 20.0195 <616d20736f757263652066696c65732c20636f6d70696c65207573696e6720746865204173706563744a20636f6d70696c657220>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.2409 Tw
+
+BT
+499.0931 685.346 Td
+/F3.0 10.5 Tf
+<616a63> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.2409 Tw
+
+BT
+514.8431 685.346 Td
+/F1.0 10.5 Tf
+<2072756e2061> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.0145 Tw
+
+BT
+48.24 669.566 Td
+/F1.0 10.5 Tf
+[<70726f6772> 20.0195 <616d2c20616e64206772> 20.0195 <6170686963616c6c79206e61766967617465207468652070726f6772> 20.0195 <616dd5732063726f737363757474696e67207374727563747572652e2046> 40.0391 <6f72206d6f726520696e666f726d6174696f6e206f6e>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+48.24 653.786 Td
+/F3.0 10.5 Tf
+<616a63> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+63.99 653.786 Td
+/F1.0 10.5 Tf
+<2c2073656520> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2588 0.5451 0.7922 scn
+0.2588 0.5451 0.7922 SCN
+
+BT
+88.0245 653.786 Td
+/F1.0 10.5 Tf
+<3f3f3f> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+103.7745 653.786 Td
+/F1.0 10.5 Tf
+<2e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.4286 Tw
+
+BT
+48.24 626.006 Td
+/F1.0 10.5 Tf
+[<4c61756e6368207468652062726f777365722066726f6d2074686520636f6d6d616e64206c696e65206569746865722062> 20.0195 <7920747970696e672022616a62726f777365722220746f20696e766f6b> 20.0195 <65207468652073637269707420696e>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+3.441 Tw
+
+BT
+48.24 610.226 Td
+/F3.0 10.5 Tf
+<7b6173706563746a7d2f62696e> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+3.441 Tw
+
+BT
+116.49 610.226 Td
+/F1.0 10.5 Tf
+[<20286966204173706563744a20697320696e7374616c6c656420636f72726563746c7929206f722062> 20.0195 <79207573696e672074686520>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+3.441 Tw
+
+BT
+391.5393 610.226 Td
+/F3.0 10.5 Tf
+<6173706563746a746f6f6c732e6a6172> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+3.441 Tw
+
+BT
+475.5393 610.226 Td
+/F1.0 10.5 Tf
+[<206469726563746c79> 89.8438 <2c20616e64>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 594.446 Td
+/F1.0 10.5 Tf
+[<73706563696679696e67206e6f20617267756d656e7473206f7220736f6d65206e756d626572206f66206275696c6420636f6e6669677572> 20.0195 <6174696f6e2066696c6573202873756666697820>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+430.5448 594.446 Td
+/F3.0 10.5 Tf
+<2e6c7374> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+451.5448 594.446 Td
+/F1.0 10.5 Tf
+<293a> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.9608 0.9608 0.9608 scn
+52.24 578.63 m
+543.04 578.63 l
+545.2491 578.63 547.04 576.8391 547.04 574.63 c
+547.04 545.89 l
+547.04 543.6809 545.2491 541.89 543.04 541.89 c
+52.24 541.89 l
+50.0309 541.89 48.24 543.6809 48.24 545.89 c
+48.24 574.63 l
+48.24 576.8391 50.0309 578.63 52.24 578.63 c
+h
+f
+0.8 0.8 0.8 SCN
+0.75 w
+52.24 578.63 m
+543.04 578.63 l
+545.2491 578.63 547.04 576.8391 547.04 574.63 c
+547.04 545.89 l
+547.04 543.6809 545.2491 541.89 543.04 541.89 c
+52.24 541.89 l
+50.0309 541.89 48.24 543.6809 48.24 545.89 c
+48.24 574.63 l
+48.24 576.8391 50.0309 578.63 52.24 578.63 c
+h
+S
+Q
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 555.805 Td
+/F3.0 11 Tf
+<6a617661202d6a6172206173706563746a312e312f6c69622f6173706563746a746f6f6c732e6a6172206173706563746a312e312f646f632f6578616d706c65732f73706163657761722f64656275672e6c7374> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 505.866 Td
+/F2.0 18 Tf
+[<332e322e204275696c64696e672050726f6772> 20.0195 <616d73>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 471.126 Td
+/F2.0 13 Tf
+[<332e322e312e204275696c6420436f6e6669677572> 20.0195 <6174696f6e73>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.8761 Tw
+
+BT
+48.24 444.566 Td
+/F1.0 10.5 Tf
+[<41206275696c6420636f6e6669677572> 20.0195 <6174696f6e206973206120736574206f662066696c657320746f20636f6d70696c6520666f7220612070726f6772> 20.0195 <616d2028616e64206f7074696f6e616c6c7920736f6d65206164646974696f6e616c>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.2068 Tw
+
+BT
+48.24 428.786 Td
+/F1.0 10.5 Tf
+<636f6d70696c6520617267756d656e7473292e204265636175736520> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.2068 Tw
+
+BT
+197.509 428.786 Td
+/F3.0 10.5 Tf
+<616a63> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.2068 Tw
+
+BT
+213.259 428.786 Td
+/F1.0 10.5 Tf
+<20726571756972657320616c6c20736f757263657320746f2062652073706563696669656420286174206c65617374207573696e672074686520> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.2068 Tw
+
+BT
+484.04 428.786 Td
+/F3.0 10.5 Tf
+<2d736f75726365726f6f7473> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.2068 Tw
+
+BT
+547.04 428.786 Td
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.1247 Tw
+
+BT
+48.24 413.006 Td
+/F1.0 10.5 Tf
+<6f7074696f6e292c206d6f73742075736572732063726561746520> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.1247 Tw
+
+BT
+184.2826 413.006 Td
+/F3.0 10.5 Tf
+<2e6c7374> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.1247 Tw
+
+BT
+205.2826 413.006 Td
+/F1.0 10.5 Tf
+<2066696c65732074686174206c697374207468652066696c657320746f20636f6d70696c6520286f6e6520617267756d656e7420706572206c696e652c20676c6f6262696e67> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 397.226 Td
+/F1.0 10.5 Tf
+<7065726d6974746564202d20666f72206d6f72652064657461696c732c2073656520> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2588 0.5451 0.7922 scn
+0.2588 0.5451 0.7922 SCN
+
+BT
+210.5175 397.226 Td
+/F1.0 10.5 Tf
+<3f3f3f> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+226.2675 397.226 Td
+/F1.0 10.5 Tf
+<292e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.4504 Tw
+
+BT
+48.24 369.446 Td
+/F1.0 10.5 Tf
+[<54> 29.7852 <6f20776f726b2077697468206120706172746963756c61722070726f6772> 20.0195 <616d2c2073656c6563742074686520636f72726573706f6e64696e6720222e6c737422206275696c6420636f6e6669677572> 20.0195 <6174696f6e2066696c652066726f6d20746865>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.6467 Tw
+
+BT
+48.24 353.666 Td
+/F1.0 10.5 Tf
+[<475549207573696e67207468652046696c65206d656e752c20226f70656e> 40.0391 <22206974656d2c206f722062> 20.0195 <79207573696e672074686520224f70656e204275696c6420436f6e6669677572> 20.0195 <6174696f6e> 40.0391 <2220627574746f6e20285b696d6167655d292e>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.2796 Tw
+
+BT
+48.24 337.886 Td
+/F1.0 10.5 Tf
+[<59> 69.8242 <6f752063616e20706f70756c61746520746865206275696c64206c6973742066726f6d2074686520636f6d6d616e64206c696e652062> 20.0195 <792070617373696e6720616e> 20.0195 <79206e756d626572206f6620222e6c7374222070617468732e>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 322.106 Td
+/F1.0 10.5 Tf
+[<28486f77657665722c20696620796f75207061737320696e20616e> 20.0195 <79206e6f6e2d222e6c73742220617267756d656e74732c2069742077696c6c2072756e2074686520636f6d6d616e642d6c696e6520636f6d70696c6572206469726563746c79> 89.8438 <2e29>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.8092 Tw
+
+BT
+48.24 294.326 Td
+/F1.0 10.5 Tf
+[<54> 29.7852 <6f20737769746368206265747765656e206275696c6420636f6e6669677572> 20.0195 <6174696f6e732c2073656c6563742c206164642c206f722072656d6f7665207468656d207573696e672074686520636f72726573706f6e64696e67>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 278.546 Td
+/F1.0 10.5 Tf
+<746f6f6c62617220627574746f6e732e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.1994 Tw
+
+BT
+48.24 250.766 Td
+/F1.0 10.5 Tf
+<476c6f62616c206275696c64206f7074696f6e73206172652073746f72656420696e20616e20> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.1994 Tw
+
+BT
+242.0551 250.766 Td
+/F3.0 10.5 Tf
+<2e616a62726f77736572> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.1994 Tw
+
+BT
+294.5551 250.766 Td
+/F1.0 10.5 Tf
+[<2066696c6520696e20796f757220484f4d45206469726563746f7279> 89.8438 <2e20456469742074686573652066726f6d20746865>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.2116 Tw
+
+BT
+48.24 234.986 Td
+/F1.0 10.5 Tf
+[<4755492062> 20.0195 <7920636c69636b696e672074686520224f7074696f6e732220627574746f6e206f722073656c656374696e67207468652054> 29.7852 <6f6f6c73206d656e75206974656d20224f7074696f6e73c9222e205468697320697320686f7720746f20736574>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 219.206 Td
+/F1.0 10.5 Tf
+<636c617373706174682c20617370656374706174682c206574632e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 191.426 Td
+/F1.0 10.5 Tf
+<54686520666f6c6c6f77696e672073656374696f6e732077616c6b207468726f7567682061206275696c642e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 156.926 Td
+/F2.0 13 Tf
+[<332e322e322e20436f6d70696c696e6720612050726f6772> 20.0195 <616d204275696c6420436f6e6669677572> 20.0195 <6174696f6e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 130.366 Td
+/F1.0 10.5 Tf
+[<54> 29.7852 <6f20636f6d70696c6520636c69636b2074686520224275696c642220627574746f6e20285b696d6167655d292c206f72206f72207573652074686520746f6f6c73206d656e752e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.5662 Tw
+
+BT
+48.24 102.586 Td
+/F1.0 10.5 Tf
+[<59> 69.8242 <6f75206d61> 20.0195 <792073656c6563742066726f6d20646966666572656e74206275696c6420636f6e6669677572> 20.0195 <6174696f6e7320696e20746865204755492028736565206c6162656c203120696e20746865206772> 20.0195 <61706869632062656c6f77292e20284966>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 86.806 Td
+/F1.0 10.5 Tf
+<796f752067657420636c61737370617468206f72206f74686572206572726f72732c207365742075702074686520676c6f62616c206275696c64206f7074696f6e73206173206465736372696265642061626f76652e29> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 59.026 Td
+/F1.0 10.5 Tf
+<5b696d6167655d> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.0 0.0 0.0 scn
+0.0 0.0 0.0 SCN
+1 w
+0 J
+0 j
+[] 0 d
+/Stamp2 Do
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+49.24 14.263 Td
+/F1.0 9 Tf
+<3136> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+Q
+Q
+
+endstream
+endobj
+89 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/CropBox [0 0 595.28 841.89]
+/BleedBox [0 0 595.28 841.89]
+/TrimBox [0 0 595.28 841.89]
+/ArtBox [0 0 595.28 841.89]
+/Contents 88 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+/Font << /F2.0 22 0 R
+/F1.0 8 0 R
+/F3.0 26 0 R
+>>
+/XObject << /Stamp2 361 0 R
+>>
+>>
+/Annots [94 0 R 97 0 R]
+>>
+endobj
+90 0 obj
+[89 0 R /XYZ 0 841.89 null]
+endobj
+91 0 obj
+<< /Limits [(__anchor-top) (_stack_traces_and_the_sourcefile_attribute)]
+/Names [(__anchor-top) 13 0 R (_argfiles_argument_list_files) 185 0 R (_build_configurations) 96 0 R (_compatibility) 57 0 R (_compiling_a_program_build_configuration) 98 0 R (_description) 75 0 R (_enabling_load_time_weaving) 211 0 R (_examples) 62 0 R (_examples_2) 82 0 R (_examples_3) 87 0 R (_file_names) 56 0 R (_jvmti) 239 0 R (_name) 39 0 R (_name_2) 73 0 R (_programmatically_handling_compiler_messages) 167 0 R (_stack_traces_and_the_sourcefile_attribute) 70 0 R]
+>>
+endobj
+92 0 obj
+<< /Limits [(_synopsis) (ajbrowser-limitations)]
+/Names [(_synopsis) 40 0 R (_synopsis_2) 74 0 R (_the_aspectj_compiler_api) 69 0 R (_weaver_options) 230 0 R (_weaving_class_files_more_than_once) 206 0 R (aj) 85 0 R (ajbrowser) 90 0 R (ajbrowser-building) 95 0 R (ajbrowser-feedback) 114 0 R (ajbrowser-intro) 93 0 R (ajbrowser-knownProblems) 109 0 R (ajbrowser-limitations) 113 0 R]
+>>
+endobj
+93 0 obj
+[89 0 R /XYZ 0 765.17 null]
+endobj
+94 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (#ajc-ref)
+>>
+/Subtype /Link
+/Rect [88.0245 650.72 103.7745 665]
+/Type /Annot
+>>
+endobj
+95 0 obj
+[89 0 R /XYZ 0 529.89 null]
+endobj
+96 0 obj
+[89 0 R /XYZ 0 489.81 null]
+endobj
+97 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (#ajc-ref)
+>>
+/Subtype /Link
+/Rect [210.5175 394.16 226.2675 408.44]
+/Type /Annot
+>>
+endobj
+98 0 obj
+[89 0 R /XYZ 0 175.61 null]
+endobj
+99 0 obj
+<< /Length 13042
+>>
+stream
+q
+/DeviceRGB cs
+0.2 0.2 0.2 scn
+/DeviceRGB CS
+0.2 0.2 0.2 SCN
+
+BT
+48.24 786.666 Td
+/F2.0 18 Tf
+[<332e332e204e617669676174696e672050726f6772> 20.0195 <616d20537472756374757265>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.3011 Tw
+
+BT
+48.24 758.646 Td
+/F1.0 10.5 Tf
+[<53656c656374206e6f64657320696e207468652070726f6772> 20.0195 <616d207374727563747572652062> 20.0195 <7920636c69636b696e67207468656d2028736565206c6162656c2032292e204966206f6e65206e6f64652069732072656c6174656420746f206f6e65206f72>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.0827 Tw
+
+BT
+48.24 742.866 Td
+/F1.0 10.5 Tf
+[<6d6f7265206f74686572206e6f6465732062> 20.0195 <7920616e206173736f63696174696f6e20746865206e616d65206f6620746865206173736f63696174696f6e2077696c6c206170706561722062656c6f772074686174206e6f646520616e64>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.9048 Tw
+
+BT
+48.24 727.086 Td
+/F1.0 10.5 Tf
+[<77696c6c20626520646973706c61> 20.0195 <79656420696e206974616c6963732e204c696e6b7320746f206f7468657220737472756374757265206e6f6465732061707065617220696e20626c75652062656c6f7720746865206173736f63696174696f6e2e204966>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 711.306 Td
+/F1.0 10.5 Tf
+<7468657265206973206e6f20636f72726573706f6e64696e6720736f7572636520666f7220746865206c696e6b2069742077696c6c20617070656172206c696768742d626c75652e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 683.526 Td
+/F1.0 10.5 Tf
+<5b696d6167655d> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 649.026 Td
+/F2.0 13 Tf
+<332e332e312e204578616d706c653a204578706c6f72696e672074686520225370616365776172222073616d706c6520636f6465> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+56.8805 622.466 Td
+/F1.0 10.5 Tf
+<a5> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+66.24 622.466 Td
+/F1.0 10.5 Tf
+<4c61756e636820> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+106.6545 622.466 Td
+/F3.0 10.5 Tf
+<616a62726f77736572> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+56.8805 600.686 Td
+/F1.0 10.5 Tf
+<a5> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.5072 Tw
+
+BT
+66.24 600.686 Td
+/F1.0 10.5 Tf
+<43686f6f7365202246696c6520> Tj
+/F1.1 10.5 Tf
+<2420> Tj
+/F1.0 10.5 Tf
+[<4f70656e> 40.0391 <22206f7220636c69636b2074686520224f70656e204275696c6420436f6e6669677572> 20.0195 <6174696f6e> 40.0391 <2220627574746f6e20285b696d6167655d2920616e642073656c65637420746865>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+66.24 584.906 Td
+/F1.0 10.5 Tf
+[<636f6e6669677572> 20.0195 <6174696f6e2066696c6520666f7220646562756767696e6720746865207370616365776172206578616d706c652c20696e20>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+358.4968 584.906 Td
+/F3.0 10.5 Tf
+<6578616d706c65732f73706163657761722f64656275672e6c7374> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+500.2468 584.906 Td
+/F1.0 10.5 Tf
+<2e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+56.8805 563.126 Td
+/F1.0 10.5 Tf
+<a5> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+3.7699 Tw
+
+BT
+66.24 563.126 Td
+/F1.0 10.5 Tf
+<436c69636b2074686520224275696c642220627574746f6e20285b696d6167655d2920746f20636f6d70696c652e20546865206c6566742070616e652073686f756c642066696c6c20776974682061207370616365776172> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+66.24 547.346 Td
+/F1.0 10.5 Tf
+[<6465636c6172> 20.0195 <6174696f6e20747265652e204966207468657265206973206120636f6d70696c6572206572726f722c2074686520636c69636b61626c65206572726f72206d6573736167652073686f777320757020617320696e206c6162656c20342e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.4816 Tw
+
+BT
+66.24 519.566 Td
+/F1.0 10.5 Tf
+<4e6f74653a20496620796f7520646964206e6f742073657420757020796f757220636c617373706174682c2074686520636f6d70696c652077696c6c206661696c20776974682061206d657373616765207468617420796f75206e65656420746f> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.952 Tw
+
+BT
+66.24 503.786 Td
+/F1.0 10.5 Tf
+[<696e7374616c6c206173706563746a72742e6a6172206f6e20796f757220636f6d70696c6520636c617373706174682e2054> 29.7852 <6f20646f20746861742c2073656c656374202254> 29.7852 <6f6f6c7320>] TJ
+/F1.1 10.5 Tf
+<2420> Tj
+/F1.0 10.5 Tf
+<4f7074696f6e7322206f7220636c69636b20746865> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.5004 Tw
+
+BT
+66.24 488.006 Td
+/F1.0 10.5 Tf
+<224f7074696f6e732220627574746f6e20285b696d6167655d292e20436c69636b2074686520> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.5004 Tw
+
+BT
+256.2322 488.006 Td
+/F3.0 10.5 Tf
+<4275696c64204f7074696f6e73> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.5004 Tw
+
+BT
+325.9826 488.006 Td
+/F1.0 10.5 Tf
+<2074616220746f207669657720746865204275696c642050617468732070616e652e204564697420746865> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.484 Tw
+
+BT
+66.24 472.226 Td
+/F1.0 10.5 Tf
+[<636c6173737061746820656e74727920746f2075736520796f757220696e7374616c6c206c6f636174696f6e2e2046> 40.0391 <6f72206578616d706c652c20696620796f752072> 20.0195 <616e2066726f6d207468652062617365204173706563746a>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.4833 Tw
+
+BT
+66.24 456.446 Td
+/F1.0 10.5 Tf
+[<6469726563746f7279> 89.8438 <2c2074686520636c61737370617468206e656564206f6e6c7920696e636c75646520>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.4833 Tw
+
+BT
+279.4356 456.446 Td
+/F3.0 10.5 Tf
+<6c69622f6173706563746a72742e6a6172> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.4833 Tw
+
+BT
+368.6856 456.446 Td
+/F1.0 10.5 Tf
+[<202874686f756768207468652062726f77736572206d61> 20.0195 <7920706f70756c617465>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+7.6119 Tw
+
+BT
+66.24 440.666 Td
+/F1.0 10.5 Tf
+[<74686520636c6173737061746820776974682074686520626f6f74636c6173737061746820616e6420636c6173737061746820696e697469616c6c79> 89.8438 <2e29204265207375726520746f2075736520746865>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+66.24 424.886 Td
+/F3.0 10.5 Tf
+<6c69622f6173706563746a72742e6a6172> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+155.49 424.886 Td
+/F1.0 10.5 Tf
+<20746861742063616d652077697468207468652062726f777365722e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+66.24 397.106 Td
+/F1.0 10.5 Tf
+<5b696d6167655d> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+56.8805 369.326 Td
+/F1.0 10.5 Tf
+<a5> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.3039 Tw
+
+BT
+66.24 369.326 Td
+/F1.0 10.5 Tf
+[<446966666572656e74207374727563747572652076696577733a2054686520737472756374757265207472656520617420746865206c6566742063616e20646973706c61> 20.0195 <7920646966666572656e74206f72646572696e677320616e64>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+66.24 353.546 Td
+/F1.0 10.5 Tf
+[<6772> 20.0195 <616e756c617269747920666f72207374727563747572653a>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+74.954 331.766 Td
+/F1.1 10.5 Tf
+<23> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+84.24 331.766 Td
+/F1.0 10.5 Tf
+[<546865207061636b6167652068696572> 20.0195 <61726368> 20.0195 <7920766965772073686f777320746865207472> 20.0195 <61646974696f6e616c2068696572> 20.0195 <61726368> 20.0195 <79206f66207061636b6167652c20636c6173732c20616e64206d656d626572732e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+74.954 309.986 Td
+/F1.1 10.5 Tf
+<23> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.0111 Tw
+
+BT
+84.24 309.986 Td
+/F1.0 10.5 Tf
+[<54686520696e6865726974616e636520766965772073686f7773207468652068696572> 20.0195 <61726368> 20.0195 <792066726f6d20746f706d6f737420706172656e7420636c6173736573207468726f75676820737562636c6173736573>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+84.24 294.206 Td
+/F1.0 10.5 Tf
+<746f206d656d626572732e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+74.954 272.426 Td
+/F1.1 10.5 Tf
+<23> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+84.24 272.426 Td
+/F1.0 10.5 Tf
+<5468652063726f737363757474696e6720766965772073686f77732074686520617370656374206d656d6265727320616e642074686520636f64652074686579206166666563742e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+74.954 250.646 Td
+/F1.1 10.5 Tf
+<23> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+84.24 250.646 Td
+/F1.0 10.5 Tf
+[<41> 20.0195 <64646974696f6e616c20627574746f6e7320696e207468652070616e652063616e206265207573656420746f206368616e676520746865206772> 20.0195 <616e756c617269747920616e642066696c746572206f7574206974656d732e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.3564 Tw
+
+BT
+84.24 222.866 Td
+/F1.0 10.5 Tf
+[<5768656e6576657220796f752073656c65637420616e206974656d20696e2074686520747265652076696577> 69.8242 <2c2074686520736f757263652070616e65207363726f6c6c7320746f2074686174206974656d2e20496620796f75>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.1244 Tw
+
+BT
+84.24 207.086 Td
+/F1.0 10.5 Tf
+[<73656c6563742061206c656166206974656d20726570726573656e74696e6720616e6f746865722070726f6772> 20.0195 <616d20656c656d656e742c207468656e2074686520747265652073656c656374696f6e2077696c6c20676f20746f>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+84.24 191.306 Td
+/F1.0 10.5 Tf
+<74686520636f72726573706f6e64696e67206e6f64652e20285365652062656c6f7720666f7220686f7720746f207573652074776f2070616e657320746f206d61696e7461696e20796f757220706c6163652e29> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+56.8805 163.526 Td
+/F1.0 10.5 Tf
+<a5> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+66.24 163.526 Td
+/F1.0 10.5 Tf
+[<5768656e20776f726b696e67207769746820617370656374732c2069742068656c707320746f2062652061626c6520746f206e61766967617465206265747765656e20646966666572656e742070726f6772> 20.0195 <616d20656c656d656e74733a>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+74.954 141.746 Td
+/F1.1 10.5 Tf
+<23> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+84.24 141.746 Td
+/F1.0 10.5 Tf
+<5768656e206c6f6f6b696e672061742061206d6574686f642c2066696e642074686520616476696365207468617420616666656374732069742e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+74.954 119.966 Td
+/F1.1 10.5 Tf
+<23> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+84.24 119.966 Td
+/F1.0 10.5 Tf
+<5768656e206c6f6f6b696e67206174206120706f696e746375742c2066696e642074686520616476696365207468617420757365732069742e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+74.954 98.186 Td
+/F1.1 10.5 Tf
+<23> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.1611 Tw
+
+BT
+84.24 98.186 Td
+/F1.0 10.5 Tf
+<5768656e206c6f6f6b696e67206174206164766963652c2066696e6420776861742069742061647669736573202d20652e672e2c206d6574686f642063616c6c73206f7220657865637574696f6e732c20696e697469616c697a6572732c> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+84.24 82.406 Td
+/F1.0 10.5 Tf
+<6574632e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+74.954 60.626 Td
+/F1.1 10.5 Tf
+<23> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.3755 Tw
+
+BT
+84.24 60.626 Td
+/F1.0 10.5 Tf
+[<5768656e206c6f6f6b696e67206174206120747970652c2066696e6420616e> 20.0195 <7920617370656374732074686174206465636c617265206d656d62657273206f722073757065727479706573206f662074686520747970652c206f72>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.0 0.0 0.0 scn
+0.0 0.0 0.0 SCN
+1 w
+0 J
+0 j
+[] 0 d
+/Stamp1 Do
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+535.978 14.263 Td
+/F1.0 9 Tf
+<3137> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+Q
+Q
+
+endstream
+endobj
+100 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/CropBox [0 0 595.28 841.89]
+/BleedBox [0 0 595.28 841.89]
+/TrimBox [0 0 595.28 841.89]
+/ArtBox [0 0 595.28 841.89]
+/Contents 99 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+/Font << /F2.0 22 0 R
+/F1.0 8 0 R
+/F3.0 26 0 R
+/F1.1 47 0 R
+>>
+/XObject << /Stamp1 360 0 R
+>>
+>>
+>>
+endobj
+101 0 obj
+[100 0 R /XYZ 0 841.89 null]
+endobj
+102 0 obj
+[100 0 R /XYZ 0 667.71 null]
+endobj
+103 0 obj
+<< /Length 14336
+>>
+stream
+q
+/DeviceRGB cs
+0.2 0.2 0.2 scn
+/DeviceRGB CS
+0.2 0.2 0.2 SCN
+
+BT
+84.24 794.676 Td
+/F1.0 10.5 Tf
+<766963652d76657273612e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+3.3243 Tw
+
+BT
+84.24 766.896 Td
+/F1.0 10.5 Tf
+[<59> 69.8242 <6f752063616e20766965772074686520616476696365206f6e206120706172746963756c6172206d6574686f64207573696e67207468652064656661756c742c2068696572> 20.0195 <617263686963616c2076696577> 69.8242 <2e>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+3.6636 Tw
+
+BT
+84.24 751.116 Td
+/F1.0 10.5 Tf
+<4e6176696761746520746f207468652074726565206974656d20666f7220> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+3.6636 Tw
+
+BT
+249.7983 751.116 Td
+/F3.0 10.5 Tf
+<73706163657761722e52656769737472792e72656769737465722853706163654f626a65637429> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+3.6636 Tw
+
+BT
+454.5483 751.116 Td
+/F1.0 10.5 Tf
+<20696e2074686520> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+3.6636 Tw
+
+BT
+499.79 751.116 Td
+/F3.0 10.5 Tf
+<64656275672e6c7374> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+3.6636 Tw
+
+BT
+547.04 751.116 Td
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.549 Tw
+
+BT
+84.24 735.336 Td
+/F1.0 10.5 Tf
+[<636f6e6669672066696c652e204e6f77> 69.8242 <2c20696e20746865206c6f7765722c2066696c652076696577> 69.8242 <2c20796f752063616e2073656520616e64206e6176696761746520746f2074686520616476696365207573696e6720746865>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+84.24 719.556 Td
+/F1.0 10.5 Tf
+<737562747265652077686f736520706172656e742069732074686520> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+225.0765 719.556 Td
+/F3.0 10.5 Tf
+<6d6574686f64206166666563746564206279> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+319.5765 719.556 Td
+/F1.0 10.5 Tf
+<2072656c6174696f6e2e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.1135 Tw
+
+BT
+84.24 691.776 Td
+/F1.0 10.5 Tf
+[<59> 69.8242 <6f752063616e20616c736f207573652063726f737363757474696e67207669657720746f207365652074686520616476696365207573696e67206120706f696e74637574206f7220746865206d6574686f6473206166666563746564>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.1993 Tw
+
+BT
+84.24 675.996 Td
+/F1.0 10.5 Tf
+[<62> 20.0195 <79206164766963652e2046> 40.0391 <6f72206578616d706c652c20746f207365652077686174206164766963652075736573206120706172746963756c617220706f696e746375742c206e6176696761746520746f207468652074726565>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.512 Tw
+
+BT
+84.24 660.216 Td
+/F1.0 10.5 Tf
+<6974656d20666f722074686520706f696e7463757420> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.512 Tw
+
+BT
+196.4221 660.216 Td
+/F3.0 10.5 Tf
+<73706163657761722e44656275672e616c6c436f6e7374727563746f72734375742829> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.512 Tw
+
+BT
+380.1721 660.216 Td
+/F1.0 10.5 Tf
+<20696e2074686520> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.512 Tw
+
+BT
+418.9591 660.216 Td
+/F3.0 10.5 Tf
+<64656275672e6c7374> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.512 Tw
+
+BT
+466.2091 660.216 Td
+/F1.0 10.5 Tf
+[<20636f6e6669672066696c652e2059> 69.8242 <6f75>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+84.24 644.436 Td
+/F1.0 10.5 Tf
+<63616e2073656520616e64206e6176696761746520746f2074686520616476696365207468617420757365732074686520706f696e74637574207573696e672074686520> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+416.3865 644.436 Td
+/F3.0 10.5 Tf
+<706f696e746375742075736564206279> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+500.3865 644.436 Td
+/F1.0 10.5 Tf
+<2072656c6174696f6e2e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.6792 Tw
+
+BT
+84.24 616.656 Td
+/F1.0 10.5 Tf
+[<417320616e206578616d706c65206f6620736565696e6720746865206d6574686f64732061666665637465642062> 20.0195 <79206164766963652c207768696c65207374696c6c20696e207468652073616d652076696577> 69.8242 <2c2073656c656374>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.3826 Tw
+
+BT
+84.24 600.876 Td
+/F1.0 10.5 Tf
+<74686520666972737420> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.3826 Tw
+
+BT
+127.0158 600.876 Td
+/F3.0 10.5 Tf
+<6265666f7265> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.3826 Tw
+
+BT
+158.5158 600.876 Td
+/F1.0 10.5 Tf
+<2061647669636520696e20> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.3826 Tw
+
+BT
+210.4942 600.876 Td
+/F3.0 10.5 Tf
+<73706163657761722e4465627567> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.3826 Tw
+
+BT
+283.9942 600.876 Td
+/F1.0 10.5 Tf
+<2e204974206861732072656c6174696f6e207375622d747265657320666f7220626f746820> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.3826 Tw
+
+BT
+456.1952 600.876 Td
+/F3.0 10.5 Tf
+<7573657320706f696e74637574> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.3826 Tw
+
+BT
+524.8279 600.876 Td
+/F1.0 10.5 Tf
+<20616e64> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+4.2605 Tw
+
+BT
+84.24 585.096 Td
+/F3.0 10.5 Tf
+<6166666563747320636f6e737472756374696f6e73> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+4.2605 Tw
+
+BT
+198.7505 585.096 Td
+/F1.0 10.5 Tf
+<2e2054686520> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+4.2605 Tw
+
+BT
+234.0361 585.096 Td
+/F3.0 10.5 Tf
+<61666665637473> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+4.2605 Tw
+
+BT
+270.7861 585.096 Td
+/F1.0 10.5 Tf
+<2072656c6174696f6e732077696c6c206c69737420646966666572656e74206b696e6473206f66206a6f696e20706f696e7473202d> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+84.24 569.316 Td
+/F1.0 10.5 Tf
+<636f6e7374727563746f72206f72206d6574686f642063616c6c732c206574632e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.1991 Tw
+
+BT
+84.24 541.536 Td
+/F1.0 10.5 Tf
+[<4e6f7465207468617420746865204173706563744a2062726f777365722063616e206f6e6c7920646973706c61> 20.0195 <7920737461746963207374727563747572652028776865746865722068696572> 20.0195 <617263686963616c206f72>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.8338 Tw
+
+BT
+84.24 525.756 Td
+/F1.0 10.5 Tf
+[<63726f737363757474696e67292e2054686174206d65616e7320746861742064796e616d69636c792d64657465726d696e656420706f696e746375747320286c696b> 20.0195 <6520>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.8338 Tw
+
+BT
+441.2037 525.756 Td
+/F3.0 10.5 Tf
+<63666c6f7728706f696e7463757429> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.8338 Tw
+
+BT
+519.9537 525.756 Td
+/F1.0 10.5 Tf
+<292077696c6c> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.3812 Tw
+
+BT
+84.24 509.976 Td
+/F1.0 10.5 Tf
+[<6e6f742062652073686f776e206173207069636b696e67206f75742073746174696320706f696e747320696e20736f7572636520636f64652e20446973706c61> 20.0195 <7961626c6520706f696e746375747320726f7567686c79>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+84.24 494.196 Td
+/F1.0 10.5 Tf
+<636f72726573706f6e6420746f2074686f736520746861742063616e206265207573656420696e206120> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+291.72 494.196 Td
+/F3.0 10.5 Tf
+<6465636c617265206572726f72> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+359.97 494.196 Td
+/F1.0 10.5 Tf
+<2073746174656d656e742e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 448.356 Td
+/F2.0 18 Tf
+[<332e342e2052756e6e696e672050726f6772> 20.0195 <616d73>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.3594 Tw
+
+BT
+48.24 420.336 Td
+/F1.0 10.5 Tf
+[<5468652062726f7773657220737570706f7274732061206c696d6974656420666f726d206f662072756e6e696e6720636f6d70696c65642070726f6772> 20.0195 <616d732e2054> 29.7852 <6f2072756e2070726f6772> 20.0195 <616d7320746861742068617665>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.9857 Tw
+
+BT
+48.24 404.556 Td
+/F1.0 10.5 Tf
+[<6265656e206275696c742c20636c69636b207468652072756e20627574746f6e206f722073656c656374206f6e65206f66207468652072756e206d656e75206974656d7320696e207468652070726f6a656374206d656e752e2059> 69.8242 <6f752063616e>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 388.776 Td
+/F1.0 10.5 Tf
+[<72756e20696e207468652073616d6520564d206f7220737061776e2061206e65772070726f636573733b20746865206c61747465722069732067656e6572> 20.0195 <616c6c792062657474657220666f72204755492070726f6772> 20.0195 <616d732e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+3.6191 Tw
+
+BT
+48.24 360.996 Td
+/F1.0 10.5 Tf
+[<426f74682072657175697265207468617420616e> 20.0195 <7920636c6173737061746820796f752073657420626520737065636966696564207573696e6720706c6174666f726d2d737065636966696320706174687320616e642070617468>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.1322 Tw
+
+BT
+48.24 345.216 Td
+/F1.0 10.5 Tf
+[<7365706172> 20.0195 <61746f7273202874686520636f6d70696c6572206d69676874206265206d6f726520746f6c6572> 20.0195 <616e74292e204f757470757420616e64206572726f722073747265616d732077696c6c206265206d657267656420696e746f20746865>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.2046 Tw
+
+BT
+48.24 329.436 Td
+/F1.0 10.5 Tf
+[<73747265616d73206f66207468652062726f7773657220287573696e67207365706172> 20.0195 <61746520746872656164732c20736f206974206d61> 20.0195 <792074616b> 20.0195 <65206120666577207365636f6e647320666f72207468652070697065207468726561647320746f>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 313.656 Td
+/F1.0 10.5 Tf
+[<6761696e20636f6e74726f6c2e29204572726f72732073686f756c6420626520646574656374656420616e6420646973706c61> 20.0195 <79656420696e2061206469616c6f672e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.0501 Tw
+
+BT
+48.24 285.876 Td
+/F1.0 10.5 Tf
+[<5468652047554920646f6573206e6f7420737570706f7274206b696c6c696e6720612072756e6e696e672070726f6772> 20.0195 <616d2c20736f20696620796f75722070726f6772> 20.0195 <616d206d696768742068616e672c206265207375726520746f2073617665>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 270.096 Td
+/F1.0 10.5 Tf
+[<796f75722066696c65732073696e636520796f75206d61> 20.0195 <79206e65656420746f206b696c6c207468652062726f7773657220697473656c6620746f206b696c6c20697473206368696c642070726f6365737365732e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 230.256 Td
+/F2.0 18 Tf
+<332e352e2049736f6c6174696e672070726f626c656d732072756e6e696e6720746865204173706563744a2062726f77736572> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.2234 Tw
+
+BT
+48.24 202.236 Td
+/F1.0 10.5 Tf
+[<496620796f7520686176652070726f626c656d732077697468207468652062726f77736572206e6f7420736f6c7665642062> 20.0195 <792074686520646f63756d656e746174696f6e2c20706c656173652074727920746f2073656520696620796f75>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 186.456 Td
+/F1.0 10.5 Tf
+<68617665207468652073616d652070726f626c656d73207768656e2072756e6e696e6720616a63206469726563746c79206f6e2074686520636f6d6d616e64206c696e652e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+56.8805 158.676 Td
+/F1.0 10.5 Tf
+<a5> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.1689 Tw
+
+BT
+66.24 158.676 Td
+/F1.0 10.5 Tf
+[<4966207468652070726f626c656d206f6363757273206f6e2074686520636f6d6d616e64206c696e6520616c736f2c207468656e207468652070726f626c656d206973206e6f7420696e207468652062726f777365722e20284974206d61> 20.0195 <79>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+66.24 142.896 Td
+/F1.0 10.5 Tf
+<626520696e2074686520636f6d70696c65723b20706c656173652073656e6420627567207265706f7274732e29> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+56.8805 121.116 Td
+/F1.0 10.5 Tf
+<a5> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.8508 Tw
+
+BT
+66.24 121.116 Td
+/F1.0 10.5 Tf
+[<4966207468652070726f626c656d20646f6573206e6f74206f63637572206f6e2074686520636f6d6d616e64206c696e652c207468656e206974206d61> 20.0195 <79206c696520696e2074686520706172> 20.0195 <616d657465727320796f7520617265>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+66.24 105.336 Td
+/F1.0 10.5 Tf
+<737570706c79696e6720696e20746865206275696c64206f7074696f6e732e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+56.8805 83.556 Td
+/F1.0 10.5 Tf
+<a5> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.5554 Tw
+
+BT
+66.24 83.556 Td
+/F1.0 10.5 Tf
+<496620746865206275696c64206f7074696f6e73206c6f6f6b20636f727265637420616e64207468652070726f626c656d206f6e6c79206f6363757273207768656e206275696c64696e672066726f6d207468652062726f777365722c> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+66.24 67.776 Td
+/F1.0 10.5 Tf
+<7468656e20706c65617365207375626d6974206120627567207265706f72742e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.0 0.0 0.0 scn
+0.0 0.0 0.0 SCN
+1 w
+0 J
+0 j
+[] 0 d
+/Stamp2 Do
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+49.24 14.263 Td
+/F1.0 9 Tf
+<3138> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+Q
+Q
+
+endstream
+endobj
+104 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/CropBox [0 0 595.28 841.89]
+/BleedBox [0 0 595.28 841.89]
+/TrimBox [0 0 595.28 841.89]
+/ArtBox [0 0 595.28 841.89]
+/Contents 103 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+/Font << /F1.0 8 0 R
+/F3.0 26 0 R
+/F2.0 22 0 R
+>>
+/XObject << /Stamp2 361 0 R
+>>
+>>
+>>
+endobj
+105 0 obj
+[104 0 R /XYZ 0 472.38 null]
+endobj
+106 0 obj
+[104 0 R /XYZ 0 254.28 null]
+endobj
+107 0 obj
+<< /Length 7488
+>>
+stream
+q
+/DeviceRGB cs
+0.2 0.2 0.2 scn
+/DeviceRGB CS
+0.2 0.2 0.2 SCN
+
+BT
+48.24 792.006 Td
+/F2.0 13 Tf
+<332e352e312e204b6e6f776e20697373756573207769746820746865204173706563744a2062726f77736572> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.3551 Tw
+
+BT
+48.24 765.446 Td
+/F1.0 10.5 Tf
+[<46> 40.0391 <6f7220746865206d6f73742075702d746f2d6461746520696e666f726d6174696f6e206f6e206b6e6f776e2070726f626c656d732c207365652074686520>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2588 0.5451 0.7922 scn
+0.2588 0.5451 0.7922 SCN
+
+2.3551 Tw
+
+BT
+397.3953 765.446 Td
+/F1.0 10.5 Tf
+<627567206461746162617365> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.3551 Tw
+
+BT
+465.8374 765.446 Td
+/F1.0 10.5 Tf
+<20666f7220756e7265736f6c766564> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2588 0.5451 0.7922 scn
+0.2588 0.5451 0.7922 SCN
+
+BT
+48.24 749.666 Td
+/F1.0 10.5 Tf
+<636f6d70696c65722062756773> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+119.178 749.666 Td
+/F1.0 10.5 Tf
+<206f7220> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2588 0.5451 0.7922 scn
+0.2588 0.5451 0.7922 SCN
+
+BT
+135.621 749.666 Td
+/F1.0 10.5 Tf
+<4944452062756773> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+179.847 749.666 Td
+/F1.0 10.5 Tf
+<202e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+56.8805 721.886 Td
+/F1.0 10.5 Tf
+<a5> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.7534 Tw
+
+BT
+66.24 721.886 Td
+/F1.0 10.5 Tf
+[<4d656d6f727920616e6420666f726b696e673a20557365727320656d61696c206d6f73742061626f7574207468652062726f77736572207461736b2072756e6e696e67206f7574206f66206d656d6f7279> 89.8438 <2e2054686973206973>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.7995 Tw
+
+BT
+66.24 706.106 Td
+/F1.0 10.5 Tf
+[<6e6f7420612070726f626c656d2077697468207468652062726f777365723b20736f6d6520636f6d70696c65732074616b> 20.0195 <652061206c6f74206f66206d656d6f7279> 89.8438 <2c206f6674656e206d6f7265207468616e2073696d696c6172>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.0182 Tw
+
+BT
+66.24 690.326 Td
+/F1.0 10.5 Tf
+<636f6d70696c6573207573696e67206a617661632e205468652062726f7773657220646f6573206e6f7420737570706f727420666f726b696e672c20736f20746865206f6e6c7920736f6c7574696f6e20697320746f206564697420746865> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+66.24 674.546 Td
+/F1.0 10.5 Tf
+[<6a61766120636f6d6d616e64206c696e65206f72207363726970742074686174206c61756e63686573207468652062726f7773657220746f20616464206d656d6f7279> 89.8438 <2e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+56.8805 652.766 Td
+/F1.0 10.5 Tf
+<a5> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+66.24 652.766 Td
+/F1.0 10.5 Tf
+[<45646974696e67206275696c6420636f6e6669677572> 20.0195 <6174696f6e2066696c65733a2074686973206973206e6f742063757272656e746c7920737570706f727465642e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+56.8805 630.986 Td
+/F1.0 10.5 Tf
+<a5> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.5832 Tw
+
+BT
+66.24 630.986 Td
+/F1.0 10.5 Tf
+[<54686520737472756374757265206d6f64656c20697320696e636f6d706c65746520616674657220696e6372656d656e74616c20636f6d70696c65732e2054> 29.7852 <6f20676574206120636f6d706c65746520737472756374757265>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+66.24 615.206 Td
+/F1.0 10.5 Tf
+<6d6f64656c20726571756972657320612066756c6c206275696c642e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+56.8805 593.426 Td
+/F1.0 10.5 Tf
+<a5> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+66.24 593.426 Td
+/F1.0 10.5 Tf
+[<496620796f75206368616e676520746865206f7574707574206469726563746f7279> 89.8438 <2c20796f75206d75737420646f20612066756c6c206275696c642e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 558.926 Td
+/F2.0 13 Tf
+<332e352e322e204c696d69746174696f6e73> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+56.8805 532.366 Td
+/F1.0 10.5 Tf
+<a5> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.2137 Tw
+
+BT
+66.24 532.366 Td
+/F1.0 10.5 Tf
+<54686520414a42726f77736572206578706563747320746865207061636b61676520616e64206469726563746f72792073747275637475726520746f206d617463682e204966207468657920646f206e6f742069742077696c6c206265> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+66.24 516.586 Td
+/F1.0 10.5 Tf
+<756e61626c6520746f2062726f77736520746f2074686520636f72726573706f6e64696e672066696c652e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+56.8805 494.806 Td
+/F1.0 10.5 Tf
+<a5> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.1683 Tw
+
+BT
+66.24 494.806 Td
+/F1.0 10.5 Tf
+[<546865202252756e> 40.0391 <222066656174757265206c61756e63686573206170706c69636174696f6e7320696e207468652073616d6520564d2e204173206120726573756c742c20696620612053> 9.7656 <77696e67206170706c69636174696f6e206973>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+66.24 479.026 Td
+/F1.0 10.5 Tf
+<646973706f7365642074686520414a42726f777365722077696c6c20626520646973706f7365642061732077656c6c2e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 444.526 Td
+/F2.0 13 Tf
+<332e352e332e204173706563744a2042726f77736572207175657374696f6e7320616e642062756773> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+3.1043 Tw
+
+BT
+48.24 417.966 Td
+/F1.0 10.5 Tf
+[<59> 69.8242 <6f752063616e2073656e6420656d61696c20746f20>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2588 0.5451 0.7922 scn
+0.2588 0.5451 0.7922 SCN
+
+3.1043 Tw
+
+BT
+175.095 417.966 Td
+/F1.0 10.5 Tf
+[<6173706563746a2d757365727340646576> 69.8242 <2e65636c697073652e6f7267>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+3.1043 Tw
+
+BT
+322.8739 417.966 Td
+/F1.0 10.5 Tf
+[<2e2028446f206a6f696e20746865206c69737420746f20706172746963697061746521292057> 60.0586 <6520616c736f>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.6144 Tw
+
+BT
+48.24 402.186 Td
+/F1.0 10.5 Tf
+[<77656c636f6d6520616e> 20.0195 <7920627567207265706f7274732c20706174636865732c20616e6420666561747572652072657175657374733b20796f752063616e207375626d6974207468656d20746f2074686520627567206461746162617365>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 386.406 Td
+/F1.0 10.5 Tf
+<617420> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2588 0.5451 0.7922 scn
+0.2588 0.5451 0.7922 SCN
+
+BT
+60.5565 386.406 Td
+/F1.0 10.5 Tf
+<687474703a2f2f627567732e65636c697073652e6f72672f62756773> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+196.1535 386.406 Td
+/F1.0 10.5 Tf
+<207573696e6720746865204173706563744a2070726f6475637420616e642049444520636f6d706f6e656e742e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.0 0.0 0.0 scn
+0.0 0.0 0.0 SCN
+1 w
+0 J
+0 j
+[] 0 d
+/Stamp1 Do
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+535.978 14.263 Td
+/F1.0 9 Tf
+<3139> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+Q
+Q
+
+endstream
+endobj
+108 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/CropBox [0 0 595.28 841.89]
+/BleedBox [0 0 595.28 841.89]
+/TrimBox [0 0 595.28 841.89]
+/ArtBox [0 0 595.28 841.89]
+/Contents 107 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+/Font << /F2.0 22 0 R
+/F1.0 8 0 R
+>>
+/XObject << /Stamp1 360 0 R
+>>
+>>
+/Annots [110 0 R 111 0 R 112 0 R 115 0 R 116 0 R]
+>>
+endobj
+109 0 obj
+[108 0 R /XYZ 0 841.89 null]
+endobj
+110 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (http://bugs.eclipse.org/bugs)
+>>
+/Subtype /Link
+/Rect [397.3953 762.38 465.8374 776.66]
+/Type /Annot
+>>
+endobj
+111 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (http://bugs.eclipse.org/bugs/buglist.cgi?&product=AspectJ&component=Compiler&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED)
+>>
+/Subtype /Link
+/Rect [48.24 746.6 119.178 760.88]
+/Type /Annot
+>>
+endobj
+112 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (http://bugs.eclipse.org/bugs/buglist.cgi?&product=AspectJ&component=IDE&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED)
+>>
+/Subtype /Link
+/Rect [135.621 746.6 179.847 760.88]
+/Type /Annot
+>>
+endobj
+113 0 obj
+[108 0 R /XYZ 0 577.61 null]
+endobj
+114 0 obj
+[108 0 R /XYZ 0 463.21 null]
+endobj
+115 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (mailto:aspectj-users@dev.eclipse.org)
+>>
+/Subtype /Link
+/Rect [175.095 414.9 322.8739 429.18]
+/Type /Annot
+>>
+endobj
+116 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (http://bugs.eclipse.org/bugs)
+>>
+/Subtype /Link
+/Rect [60.5565 383.34 196.1535 397.62]
+/Type /Annot
+>>
+endobj
+117 0 obj
+<< /Length 11469
+>>
+stream
+q
+/DeviceRGB cs
+0.2 0.2 0.2 scn
+/DeviceRGB CS
+0.2 0.2 0.2 SCN
+
+BT
+48.24 782.394 Td
+/F2.0 22 Tf
+[<4368617074657220342e204173706563744a20416e742054> 29.7852 <61736b73>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 741.146 Td
+/F2.0 18 Tf
+<342e312e20496e74726f64756374696f6e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.1422 Tw
+
+BT
+48.24 713.126 Td
+/F1.0 10.5 Tf
+<4173706563744a20636f6e7461696e73206120636f6d70696c65722c20> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.1422 Tw
+
+BT
+192.197 713.126 Td
+/F3.0 10.5 Tf
+<616a63> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.1422 Tw
+
+BT
+207.947 713.126 Td
+/F1.0 10.5 Tf
+<2c20746861742063616e2062652072756e2066726f6d20416e742e20496e636c7564656420696e2074686520> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.1422 Tw
+
+BT
+422.9815 713.126 Td
+/F3.0 10.5 Tf
+<6173706563746a746f6f6c732e6a6172> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.1422 Tw
+
+BT
+506.9815 713.126 Td
+/F1.0 10.5 Tf
+<2061726520416e74> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 697.346 Td
+/F1.0 10.5 Tf
+[<62696e617269657320746f20737570706f7274207468726565207761> 20.0195 <7973206f662072756e6e696e672074686520636f6d70696c65723a>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+52.6765 669.566 Td
+/F1.0 10.5 Tf
+<312e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.4773 Tw
+
+BT
+66.24 669.566 Td
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2588 0.5451 0.7922 scn
+0.2588 0.5451 0.7922 SCN
+
+0.4773 Tw
+
+BT
+66.24 669.566 Td
+/F1.0 10.5 Tf
+[<416a6354> 29.7852 <61736b202869616a6329>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.4773 Tw
+
+BT
+132.8485 669.566 Td
+/F1.0 10.5 Tf
+<2c2061207461736b20746f2072756e20746865204173706563744a20706f73742d312e3120636f6d70696c65722c20776869636820737570706f72747320616c6c207468652065636c6970736520616e6420616a63> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+66.24 653.786 Td
+/F1.0 10.5 Tf
+<6f7074696f6e732c20696e636c7564696e6720696e6372656d656e74616c206d6f64652e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+52.6765 632.006 Td
+/F1.0 10.5 Tf
+<322e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.4397 Tw
+
+BT
+66.24 632.006 Td
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2588 0.5451 0.7922 scn
+0.2588 0.5451 0.7922 SCN
+
+1.4397 Tw
+
+BT
+66.24 632.006 Td
+/F1.0 10.5 Tf
+[<416a633131436f6d70696c657241> 20.0195 <64617074657220286a6176616329>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.4397 Tw
+
+BT
+217.5355 632.006 Td
+/F1.0 10.5 Tf
+[<2c20616e206164617074657220636c61737320746f2072756e20746865206e657720636f6d70696c6572207573696e67204a61766163207461736b732062> 20.0195 <79>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+66.24 616.226 Td
+/F1.0 10.5 Tf
+<73657474696e6720746865206275696c642e636f6d70696c65722070726f7065727479> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+52.6765 594.446 Td
+/F1.0 10.5 Tf
+<332e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+66.24 594.446 Td
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2588 0.5451 0.7922 scn
+0.2588 0.5451 0.7922 SCN
+
+BT
+66.24 594.446 Td
+/F1.0 10.5 Tf
+<416a6331302028616a6329> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+117.879 594.446 Td
+/F1.0 10.5 Tf
+<2c2061207461736b20746f2072756e206275696c64207363726970747320636f6d70617469626c65207769746820746865204173706563744a20312e30207461736b73> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.8182 Tw
+
+BT
+48.24 566.666 Td
+/F1.0 10.5 Tf
+[<546869732064657363726962657320686f7720746f20696e7374616c6c20616e642075736520746865207461736b7320616e642074686520616461707465722e2046> 40.0391 <6f7220616e206578616d706c6520416e74207363726970742c20736565>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2588 0.5451 0.7922 scn
+0.2588 0.5451 0.7922 SCN
+
+BT
+48.24 550.886 Td
+/F1.0 10.5 Tf
+<6578616d706c65732f6275696c642e786d6c> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+146.8035 550.886 Td
+/F1.0 10.5 Tf
+<2e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 511.046 Td
+/F2.0 18 Tf
+[<342e322e20496e7374616c6c696e6720416e742054> 29.7852 <61736b73>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.2395 Tw
+
+BT
+48.24 483.026 Td
+/F1.0 10.5 Tf
+<496e7374616c6c204a616b6172746120416e7420312e352e313a20506c656173652073656520746865206f6666696369616c204a616b6172746120416e74207765627369746520666f72206d6f726520696e666f726d6174696f6e20616e6420746865> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.0498 Tw
+
+BT
+48.24 467.246 Td
+/F1.0 10.5 Tf
+<312e352e3120646973747269627574696f6e2e20546869732072656c6561736520697320736f757263652d636f6d70617469626c65207769746820416e7420312e3320616e6420416e7420312e342c2062757420746865207461736b20736f7572636573> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.9535 Tw
+
+BT
+48.24 451.466 Td
+/F1.0 10.5 Tf
+[<6d75737420626520636f6d70696c656420776974682074686f73652076657273696f6e73206f662074686520416e74206c696272> 20.0195 <617269657320746f206265207573656420756e6465722074686f73652076657273696f6e73206f6620416e742e>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 435.686 Td
+/F1.0 10.5 Tf
+<536f75726365732061726520617661696c61626c6520756e646572207468652045636c69707365205075626c6963204c6963656e7365207620322e3020617420> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2588 0.5451 0.7922 scn
+0.2588 0.5451 0.7922 SCN
+
+BT
+359.7435 435.686 Td
+/F1.0 10.5 Tf
+<687474703a2f2f65636c697073652e6f72672f6173706563746a> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+480.4515 435.686 Td
+/F1.0 10.5 Tf
+<2e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.3627 Tw
+
+BT
+48.24 407.906 Td
+/F1.0 10.5 Tf
+[<496e20416e7420312e352c2074686972642d7061727479207461736b732063616e206265206465636c61726564207573696e672061207461736b> 20.0195 <64656620656e74727920696e20746865206275696c64207363726970742c20746f206964656e7469667920746865>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+3.3744 Tw
+
+BT
+48.24 392.126 Td
+/F1.0 10.5 Tf
+<6e616d6520616e6420636c61737365732e205768656e206465636c6172696e672061207461736b2c20696e636c7564652074686520> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+3.3744 Tw
+
+BT
+346.5063 392.126 Td
+/F3.0 10.5 Tf
+<6173706563746a746f6f6c732e6a6172> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+3.3744 Tw
+
+BT
+430.5063 392.126 Td
+/F1.0 10.5 Tf
+[<2065697468657220696e20746865207461736b> 20.0195 <646566>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.1094 Tw
+
+BT
+48.24 376.346 Td
+/F1.0 10.5 Tf
+<636c61737370617468206f7220696e20> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.1094 Tw
+
+BT
+124.3363 376.346 Td
+/F3.0 10.5 Tf
+<247b414e545f484f4d457d2f6c6962> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.1094 Tw
+
+BT
+203.0863 376.346 Td
+/F1.0 10.5 Tf
+[<2077686572652069742077696c6c20626520616464656420746f207468652073797374656d20636c61737320706174682062> 20.0195 <792074686520616e74207363726970742e2059> 69.8242 <6f75>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.8036 Tw
+
+BT
+48.24 360.566 Td
+/F1.0 10.5 Tf
+[<6d61> 20.0195 <79207370656369667920746865207461736b20736372697074206e616d6573206469726563746c79> 89.8438 <2c206f72207573652074686520227265736f75726365222061747472696275746520746f2073706563696679207468652064656661756c74>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 344.786 Td
+/F1.0 10.5 Tf
+<6e616d65733a> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.9608 0.9608 0.9608 scn
+52.24 328.97 m
+543.04 328.97 l
+545.2491 328.97 547.04 327.1791 547.04 324.97 c
+547.04 296.23 l
+547.04 294.0209 545.2491 292.23 543.04 292.23 c
+52.24 292.23 l
+50.0309 292.23 48.24 294.0209 48.24 296.23 c
+48.24 324.97 l
+48.24 327.1791 50.0309 328.97 52.24 328.97 c
+h
+f
+0.8 0.8 0.8 SCN
+0.75 w
+52.24 328.97 m
+543.04 328.97 l
+545.2491 328.97 547.04 327.1791 547.04 324.97 c
+547.04 296.23 l
+547.04 294.0209 545.2491 292.23 543.04 292.23 c
+52.24 292.23 l
+50.0309 292.23 48.24 294.0209 48.24 296.23 c
+48.24 324.97 l
+48.24 327.1791 50.0309 328.97 52.24 328.97 c
+h
+S
+Q
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 306.145 Td
+/F3.0 11 Tf
+<3c7461736b646566207265736f757263653d226f72672f6173706563746a2f746f6f6c732f616e742f7461736b646566732f6173706563746a5461736b646566732e70726f70657274696573222f3e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.0739 Tw
+
+BT
+48.24 268.266 Td
+/F1.0 10.5 Tf
+<5468652063757272656e74207265736f757263652066696c652072657461696e7320746865206e616d652022616a632220666f722074686520416a633130207461736b2c20616e642075736573202269616a632220666f7220746865204173706563744a> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 252.486 Td
+/F1.0 10.5 Tf
+<706f73742d312e31207461736b2e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.2966 Tw
+
+BT
+48.24 224.706 Td
+/F1.0 10.5 Tf
+<496e20416e7420312e362c2074686972642d7061727479207461736b7320617265206465636c6172656420696e207468656972206f776e206e616d657370616365207573696e6720> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.2966 Tw
+
+BT
+421.6812 224.706 Td
+/F3.0 10.5 Tf
+<616e746c69622e786d6c> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.2966 Tw
+
+BT
+474.1812 224.706 Td
+/F1.0 10.5 Tf
+[<2e2046> 40.0391 <6f72206578616d706c652c>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.9011 Tw
+
+BT
+48.24 208.926 Td
+/F1.0 10.5 Tf
+<74686520666f6c6c6f77696e672073637269707420776f756c64206275696c6420616e642072756e20746865207370616365776172206578616d706c652c20696620796f7520707574207468652073637269707420696e20746865> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 193.146 Td
+/F1.0 10.5 Tf
+<6578616d706c6573206469726563746f727920616e6420> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+169.1895 193.146 Td
+/F3.0 10.5 Tf
+<6173706563746a746f6f6c732e6a6172> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+253.1895 193.146 Td
+/F1.0 10.5 Tf
+<20696e2074686520> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+287.4405 193.146 Td
+/F3.0 10.5 Tf
+<247b414e545f484f4d457d2f6c6962> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+366.1905 193.146 Td
+/F1.0 10.5 Tf
+[<206469726563746f7279> 89.8438 <2e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.0 0.0 0.0 scn
+0.0 0.0 0.0 SCN
+1 w
+0 J
+0 j
+[] 0 d
+/Stamp2 Do
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+49.24 14.263 Td
+/F1.0 9 Tf
+<3230> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+Q
+Q
+
+endstream
+endobj
+118 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/CropBox [0 0 595.28 841.89]
+/BleedBox [0 0 595.28 841.89]
+/TrimBox [0 0 595.28 841.89]
+/ArtBox [0 0 595.28 841.89]
+/Contents 117 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+/Font << /F2.0 22 0 R
+/F1.0 8 0 R
+/F3.0 26 0 R
+>>
+/XObject << /Stamp2 361 0 R
+>>
+>>
+/Annots [122 0 R 123 0 R 124 0 R 125 0 R 127 0 R]
+>>
+endobj
+119 0 obj
+[118 0 R /XYZ 0 841.89 null]
+endobj
+120 0 obj
+<< /Limits [(ajbrowser-navigating) (antTasks-iajc-options)]
+/Names [(ajbrowser-navigating) 101 0 R (ajbrowser-problems) 106 0 R (ajbrowser-running) 105 0 R (ajc) 41 0 R (ajc_options) 44 0 R (antTasks) 119 0 R (antTasks-adapter) 168 0 R (antTasks-adapter-options) 173 0 R (antTasks-adapter-sample) 169 0 R (antTasks-ajc) 178 0 R (antTasks-ajc-nested) 186 0 R (antTasks-ajc-options) 181 0 R (antTasks-ajc-sample) 189 0 R (antTasks-feedback) 199 0 R (antTasks-iajc) 130 0 R (antTasks-iajc-options) 133 0 R]
+>>
+endobj
+121 0 obj
+[118 0 R /XYZ 0 765.17 null]
+endobj
+122 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (#antTasks-iajc)
+>>
+/Subtype /Link
+/Rect [66.24 666.5 132.8485 680.78]
+/Type /Annot
+>>
+endobj
+123 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (#antTasks-adapter)
+>>
+/Subtype /Link
+/Rect [66.24 628.94 217.5355 643.22]
+/Type /Annot
+>>
+endobj
+124 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (#antTasks-ajc)
+>>
+/Subtype /Link
+/Rect [66.24 591.38 117.879 605.66]
+/Type /Annot
+>>
+endobj
+125 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (../examples/build.xml)
+>>
+/Subtype /Link
+/Rect [48.24 547.82 146.8035 562.1]
+/Type /Annot
+>>
+endobj
+126 0 obj
+[118 0 R /XYZ 0 535.07 null]
+endobj
+127 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (http://eclipse.org/aspectj)
+>>
+/Subtype /Link
+/Rect [359.7435 432.62 480.4515 446.9]
+/Type /Annot
+>>
+endobj
+128 0 obj
+<< /Length 12405
+>>
+stream
+q
+q
+/DeviceRGB cs
+0.9608 0.9608 0.9608 scn
+52.24 805.89 m
+543.04 805.89 l
+545.2491 805.89 547.04 804.0991 547.04 801.89 c
+547.04 611.01 l
+547.04 608.8009 545.2491 607.01 543.04 607.01 c
+52.24 607.01 l
+50.0309 607.01 48.24 608.8009 48.24 611.01 c
+48.24 801.89 l
+48.24 804.0991 50.0309 805.89 52.24 805.89 c
+h
+f
+/DeviceRGB CS
+0.8 0.8 0.8 SCN
+0.75 w
+52.24 805.89 m
+543.04 805.89 l
+545.2491 805.89 547.04 804.0991 547.04 801.89 c
+547.04 611.01 l
+547.04 608.8009 545.2491 607.01 543.04 607.01 c
+52.24 607.01 l
+50.0309 607.01 48.24 608.8009 48.24 611.01 c
+48.24 801.89 l
+48.24 804.0991 50.0309 805.89 52.24 805.89 c
+h
+S
+Q
+/DeviceRGB cs
+0.2 0.2 0.2 scn
+/DeviceRGB CS
+0.2 0.2 0.2 SCN
+
+BT
+59.24 783.065 Td
+/F3.0 11 Tf
+<3c70726f6a656374206e616d653d226173706563746a2d616e74312e36222064656661756c743d22737061636577617222> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 768.325 Td
+/F3.0 11 Tf
+<ca202020786d6c6e733a6173706563746a3d22616e746c69623a6f72672e6173706563746a2220626173656469723d222e223e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 753.585 Td
+/F3.0 11 Tf
+<ca2020203c746172676574206e616d653d227370616365776172223e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 738.845 Td
+/F3.0 11 Tf
+<ca202020202020203c6173706563746a3a69616a63> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 724.105 Td
+/F3.0 11 Tf
+<ca202020202020202020202061726766696c65733d2273706163657761722f64656275672e6c737422> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 709.365 Td
+/F3.0 11 Tf
+<ca20202020202020202020206f75746a61723d2273706163657761722e6a617222> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 694.625 Td
+/F3.0 11 Tf
+<ca2020202020202020202020636c617373706174683d222e2e2f2e2e2f6c69622f6173706563746a72742e6a617222> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 679.885 Td
+/F3.0 11 Tf
+<ca2020202020202f3e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 665.145 Td
+/F3.0 11 Tf
+<ca2020202020203c6a61766120636c6173736e616d653d2273706163657761722e47616d6522> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 650.405 Td
+/F3.0 11 Tf
+<ca20202020202020636c617373706174683d2273706163657761722e6a61723a2e2e2f2e2e2f6c69622f6173706563746a72742e6a6172222f3e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 635.665 Td
+/F3.0 11 Tf
+<ca2020203c2f7461726765743e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 620.925 Td
+/F3.0 11 Tf
+<3c2f70726f6a6563743e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.5191 Tw
+
+BT
+48.24 583.046 Td
+/F1.0 10.5 Tf
+[<46> 40.0391 <6f72206d6f726520696e666f726d6174696f6e206f6e207573696e6720416e742c20706c6561736520726566657220746f204a616b61727461d57320646f63756d656e746174696f6e206f6e20696e74656772> 20.0195 <6174696e6720757365722d>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 567.266 Td
+/F1.0 10.5 Tf
+<646566696e656420416e74207461736b7320696e746f206275696c64732e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 527.426 Td
+/F2.0 18 Tf
+[<342e332e20416a6354> 29.7852 <61736b202869616a6329>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.9233 Tw
+
+BT
+48.24 499.406 Td
+/F1.0 10.5 Tf
+[<54686973207461736b207573657320746865204173706563744a20706f73742d312e3120636f6d70696c657220616a632e20546865204173706563744a20636f6d70696c65722063616e2062652075736564206c696b> 20.0195 <65204a6176616320746f>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.5125 Tw
+
+BT
+48.24 483.626 Td
+/F1.0 10.5 Tf
+<636f6d70696c65204a61766120736f75726365732c206275742069742063616e20616c736f20636f6d70696c65204173706563744a20736f7572636573206f722077656176652062696e61727920617370656374732077697468204a617661> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.1948 Tw
+
+BT
+48.24 467.846 Td
+/F1.0 10.5 Tf
+[<62> 20.0195 <797465636f64652e2049742063616e2072756e20696e206e6f726d616c20226261746368> 40.0391 <22206d6f6465206f7220696e20616e2022696e6372656d656e74616c22206d6f64652c207768657265206974206f6e6c79207265636f6d70696c6573>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.9173 Tw
+
+BT
+48.24 452.066 Td
+/F1.0 10.5 Tf
+[<66696c65732069742068617320746f20726576697369742e2046> 40.0391 <6f72206d6f726520696e666f726d6174696f6e206f6e20616a632c2073656520>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2588 0.5451 0.7922 scn
+0.2588 0.5451 0.7922 SCN
+
+0.9173 Tw
+
+BT
+327.1926 452.066 Td
+/F1.0 10.5 Tf
+<3f3f3f> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.9173 Tw
+
+BT
+342.9426 452.066 Td
+/F1.0 10.5 Tf
+[<2e20556e6c696b> 20.0195 <65204a61766163206f7220746865204a6176616320416e74207461736b2c2074686973>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.5374 Tw
+
+BT
+48.24 436.286 Td
+/F1.0 10.5 Tf
+[<7461736b20616c7761> 20.0195 <797320636f6d70696c657320746865207370656369666965642066696c65732073696e636520617370656374732063616e206170706c7920746f206f74686572202875706461746564292066696c65732e2046> 40.0391 <6f722061>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 420.506 Td
+/F1.0 10.5 Tf
+<776f726b61726f756e642c2073656520> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2588 0.5451 0.7922 scn
+0.2588 0.5451 0.7922 SCN
+
+BT
+135.222 420.506 Td
+/F1.0 10.5 Tf
+[<41> 60.0586 <766f6964696e6720636c65616e20636f6d70696c6573>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+256.3704 420.506 Td
+/F1.0 10.5 Tf
+<2e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.0878 Tw
+
+BT
+48.24 392.726 Td
+/F1.0 10.5 Tf
+<4265796f6e6420746865206e6f726d616c20616a6320636f6d70696c6572206f7074696f6e732c2074686973207461736b20616c736f20737570706f72747320616e206578706572696d656e74616c206f7074696f6e20666f7220616e> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.5281 Tw
+
+BT
+48.24 376.946 Td
+/F1.0 10.5 Tf
+[<696e6372656d656e74616c2022746167222066696c652c20616e642069742063616e20636f70> 20.0195 <79207265736f75726365732066726f6d20736f75726365206469726563746f72696573206f7220696e707574206a61727320746f20746865206f7574707574>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 361.166 Td
+/F1.0 10.5 Tf
+[<6a6172206f72206469726563746f7279> 89.8438 <2e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 333.386 Td
+/F1.0 10.5 Tf
+<54686973207461736b206973206e616d65642069616a6320746f2061766f696420636f6e666c69637420776974682074686520312e30207461736b20616a632e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 298.886 Td
+/F2.0 13 Tf
+[<342e332e312e20416a6354> 29.7852 <61736b202869616a6329204f7074696f6e73>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.7111 Tw
+
+BT
+48.24 272.326 Td
+/F1.0 10.5 Tf
+[<54686520666f6c6c6f77696e67207461626c6573206c6973742074686520737570706f7274656420706172> 20.0195 <616d65746572732e2046> 40.0391 <6f7220616e> 20.0195 <7920706172> 20.0195 <616d6574657220737065636966696564206173206120506174682c20612073696e676c65>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.8334 Tw
+
+BT
+48.24 256.546 Td
+/F1.0 10.5 Tf
+<706174682063616e20626520737065636966696564206469726563746c7920617320616e206174747269627574652c206d756c7469706c652070617468732063616e20626520737065636966696564207573696e672061206e6573746564> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.1822 Tw
+
+BT
+48.24 240.766 Td
+/F1.0 10.5 Tf
+[<656c656d656e74206f66207468652073616d65206e616d652c20616e64206120636f6d6d6f6e20706174682063616e206265207265757365642062> 20.0195 <7920646566696e696e67206974206173206120676c6f62616c20616e642070617373696e67>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 224.986 Td
+/F1.0 10.5 Tf
+<74686520696420746f2074686520636f72726573706f6e64696e67207b6e616d657d726566206174747269627574652e2053656520> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2588 0.5451 0.7922 scn
+0.2588 0.5451 0.7922 SCN
+
+BT
+309.606 224.986 Td
+/F1.0 10.5 Tf
+<50617468> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+332.202 224.986 Td
+/F1.0 10.5 Tf
+<2062656c6f7720666f72206d6f72652064657461696c732e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.0371 Tw
+
+BT
+48.24 197.206 Td
+/F1.0 10.5 Tf
+<4d6f7374206174747269627574657320616e64206e657374656420656c656d656e747320617265206f7074696f6e616c2e2054686520636f6d70696c65722072657175697265732074686174207468652073616d652076657273696f6e206f66> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.5314 Tw
+
+BT
+48.24 181.426 Td
+/F3.0 10.5 Tf
+<6173706563746a72742e6a6172> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.5314 Tw
+
+BT
+116.49 181.426 Td
+/F1.0 10.5 Tf
+<20626520737065636966696564206f6e2074686520636c617373706174682c20616e64207468617420736f6d6520736f75726365732062652062652073706563696669656420287573696e67206f6e65206f72> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.0489 Tw
+
+BT
+48.24 165.646 Td
+/F1.0 10.5 Tf
+<6d6f7265206f6620> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.0489 Tw
+
+BT
+92.2433 165.646 Td
+/F3.0 10.5 Tf
+<736f75726365726f6f7473> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.0489 Tw
+
+BT
+149.9933 165.646 Td
+/F1.0 10.5 Tf
+<2c20> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.0489 Tw
+
+BT
+156.3867 165.646 Td
+/F3.0 10.5 Tf
+<696e6a617273> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.0489 Tw
+
+BT
+187.8868 165.646 Td
+/F1.0 10.5 Tf
+<2c20> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.0489 Tw
+
+BT
+194.2802 165.646 Td
+/F3.0 10.5 Tf
+<696e70617468> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.0489 Tw
+
+BT
+225.7802 165.646 Td
+/F1.0 10.5 Tf
+<2c20> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.0489 Tw
+
+BT
+232.1736 165.646 Td
+/F3.0 10.5 Tf
+<61726766696c6573> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.0489 Tw
+
+BT
+274.1736 165.646 Td
+/F1.0 10.5 Tf
+<2c20616e642f6f7220> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.0489 Tw
+
+BT
+317.4734 165.646 Td
+/F3.0 10.5 Tf
+<737263646972> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.0489 Tw
+
+BT
+348.9734 165.646 Td
+/F1.0 10.5 Tf
+<202877697468207061747465726e7329292e205768656e20696e20696e6372656d656e74616c> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 149.866 Td
+/F1.0 10.5 Tf
+<6d6f64652c206f6e6c7920> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+106.3365 149.866 Td
+/F3.0 10.5 Tf
+<736f75726365726f6f7473> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+164.0865 149.866 Td
+/F1.0 10.5 Tf
+[<206d61> 20.0195 <79206265207370656369666965642e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 122.086 Td
+/F1.0 10.5 Tf
+[<426f6f6c65616e20706172> 20.0195 <616d65746572732064656661756c7420746f20>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+202.3273 122.086 Td
+/F3.0 10.5 Tf
+<66616c7365> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+228.5773 122.086 Td
+/F1.0 10.5 Tf
+<20756e6c657373206f7468657277697365207374617465642e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 94.306 Td
+/F2.0 10.5 Tf
+[<416a6354> 29.7852 <61736b202869616a6329206f7074696f6e7320666f722073706563696679696e6720736f7572636573>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.0 0.0 0.0 scn
+0.0 0.0 0.0 SCN
+1 w
+0 J
+0 j
+[] 0 d
+/Stamp1 Do
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+535.978 14.263 Td
+/F1.0 9 Tf
+<3231> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+Q
+Q
+
+endstream
+endobj
+129 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/CropBox [0 0 595.28 841.89]
+/BleedBox [0 0 595.28 841.89]
+/TrimBox [0 0 595.28 841.89]
+/ArtBox [0 0 595.28 841.89]
+/Contents 128 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+/Font << /F3.0 26 0 R
+/F1.0 8 0 R
+/F2.0 22 0 R
+>>
+/XObject << /Stamp1 360 0 R
+>>
+>>
+/Annots [131 0 R 132 0 R 134 0 R]
+>>
+endobj
+130 0 obj
+[129 0 R /XYZ 0 551.45 null]
+endobj
+131 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (#ajc-ref)
+>>
+/Subtype /Link
+/Rect [327.1926 449 342.9426 463.28]
+/Type /Annot
+>>
+endobj
+132 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (#antTasks-iajc-uptodate)
+>>
+/Subtype /Link
+/Rect [135.222 417.44 256.3704 431.72]
+/Type /Annot
+>>
+endobj
+133 0 obj
+[129 0 R /XYZ 0 317.57 null]
+endobj
+134 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (#antTasks-iajc-paths)
+>>
+/Subtype /Link
+/Rect [309.606 221.92 332.202 236.2]
+/Type /Annot
+>>
+endobj
+135 0 obj
+<< /Length 19522
+>>
+stream
+q
+/DeviceRGB cs
+1.0 1.0 1.0 scn
+48.24 784.11 249.4 21.78 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 784.11 249.4 21.78 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 714.99 249.4 69.12 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 714.99 249.4 69.12 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 677.43 249.4 37.56 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 677.43 249.4 37.56 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 576.75 249.4 100.68 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 576.75 249.4 100.68 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 539.19 249.4 37.56 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 539.19 249.4 37.56 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 501.63 249.4 37.56 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 501.63 249.4 37.56 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 448.29 249.4 53.34 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 448.29 249.4 53.34 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 394.95 249.4 53.34 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 394.95 249.4 53.34 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 341.61 249.4 53.34 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 341.61 249.4 53.34 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 256.71 249.4 84.9 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 256.71 249.4 84.9 re
+f
+0.0 0.0 0.0 scn
+0.5 w
+/DeviceRGB CS
+0.8667 0.8667 0.8667 SCN
+48.24 805.89 m
+297.64 805.89 l
+S
+[] 0 d
+1.25 w
+0.8667 0.8667 0.8667 SCN
+48.24 784.11 m
+297.64 784.11 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 806.14 m
+48.24 783.485 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 806.14 m
+297.64 783.485 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 790.926 Td
+/F2.0 10.5 Tf
+<417474726962757465> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 805.89 m
+547.04 805.89 l
+S
+[] 0 d
+1.25 w
+0.8667 0.8667 0.8667 SCN
+297.64 784.11 m
+547.04 784.11 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 806.14 m
+297.64 783.485 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 806.14 m
+547.04 783.485 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 790.926 Td
+/F2.0 10.5 Tf
+<4465736372697074696f6e> Tj
+ET
+
+0.0 0.0 0.0 scn
+1.25 w
+0.8667 0.8667 0.8667 SCN
+48.24 784.11 m
+297.64 784.11 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 714.99 m
+297.64 714.99 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 784.735 m
+48.24 714.74 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 784.735 m
+297.64 714.74 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 769.146 Td
+/F1.0 10.5 Tf
+<61726766696c65732c2061726766696c65735265662028> Tj
+ET
+
+0.2588 0.5451 0.7922 scn
+0.2588 0.5451 0.7922 SCN
+
+BT
+153.9615 769.146 Td
+/F1.0 10.5 Tf
+<50617468> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+176.5575 769.146 Td
+/F1.0 10.5 Tf
+<29> Tj
+ET
+
+0.0 0.0 0.0 scn
+1.25 w
+0.8667 0.8667 0.8667 SCN
+297.64 784.11 m
+547.04 784.11 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 714.99 m
+547.04 714.99 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 784.735 m
+297.64 714.74 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 784.735 m
+547.04 714.74 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 769.146 Td
+/F1.0 10.5 Tf
+<416e20617267756d656e742066696c6520636f6e7461696e732061206c697374206f6620617267756d656e7473> Tj
+ET
+
+
+BT
+300.64 753.366 Td
+/F1.0 10.5 Tf
+[<726561642062> 20.0195 <792074686520636f6d70696c65722e2045616368206c696e65206973207265616420696e746f206f6e65>] TJ
+ET
+
+
+BT
+300.64 737.586 Td
+/F1.0 10.5 Tf
+[<656c656d656e74206f662074686520617267756d656e7420617272> 20.0195 <61> 20.0195 <7920616e64206d61> 20.0195 <7920696e636c756465>] TJ
+ET
+
+
+BT
+300.64 721.806 Td
+/F1.0 10.5 Tf
+[<616e6f746865722061726766696c652062> 20.0195 <79207265666572656e63652e>] TJ
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 714.99 m
+297.64 714.99 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 677.43 m
+297.64 677.43 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 715.24 m
+48.24 677.18 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 715.24 m
+297.64 677.18 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 700.026 Td
+/F1.0 10.5 Tf
+<736f75726365526f6f74732c20736f75726365526f6f74735265662028> Tj
+ET
+
+0.2588 0.5451 0.7922 scn
+0.2588 0.5451 0.7922 SCN
+
+BT
+200.5185 700.026 Td
+/F1.0 10.5 Tf
+<50617468> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+223.1145 700.026 Td
+/F1.0 10.5 Tf
+<29> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 714.99 m
+547.04 714.99 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 677.43 m
+547.04 677.43 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 715.24 m
+297.64 677.18 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 715.24 m
+547.04 677.18 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 700.026 Td
+/F1.0 10.5 Tf
+<4469726563746f7269657320636f6e7461696e696e6720736f757263652066696c65732028656e64696e672077697468> Tj
+ET
+
+
+BT
+300.64 684.246 Td
+/F1.0 10.5 Tf
+<2e6a617661206f72202e616a2920746f20636f6d70696c652e> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 677.43 m
+297.64 677.43 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 576.75 m
+297.64 576.75 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 677.68 m
+48.24 576.5 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 677.68 m
+297.64 576.5 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 662.466 Td
+/F1.0 10.5 Tf
+<7372636469722028> Tj
+ET
+
+0.2588 0.5451 0.7922 scn
+0.2588 0.5451 0.7922 SCN
+
+BT
+87.171 662.466 Td
+/F1.0 10.5 Tf
+<50617468> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+109.767 662.466 Td
+/F1.0 10.5 Tf
+<29> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 677.43 m
+547.04 677.43 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 576.75 m
+547.04 576.75 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 677.68 m
+297.64 576.5 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 677.68 m
+547.04 576.5 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 662.466 Td
+/F1.0 10.5 Tf
+<42617365206469726563746f7279206f6620736f757263657320746f20636f6d70696c652c20617373756d696e67> Tj
+ET
+
+
+BT
+300.64 646.686 Td
+/F1.0 10.5 Tf
+<74686572652061726520> Tj
+ET
+
+0.2588 0.5451 0.7922 scn
+0.2588 0.5451 0.7922 SCN
+
+BT
+349.0765 646.686 Td
+/F1.0 10.5 Tf
+<6e6573746564206d617463686573> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+426.3565 646.686 Td
+/F1.0 10.5 Tf
+<2e205468697320617070726f6163682075736573> Tj
+ET
+
+
+BT
+300.64 630.906 Td
+/F1.0 10.5 Tf
+<74686520416e742070726f6365737320666f72206d61746368696e67202e6a6176612066696c657320616e64206973> Tj
+ET
+
+
+BT
+300.64 615.126 Td
+/F1.0 10.5 Tf
+<6e6f7420636f6d70617469626c65207769746820696e6372656d656e74616c206d6f64652e20556e6c657373> Tj
+ET
+
+
+BT
+300.64 599.346 Td
+/F1.0 10.5 Tf
+<7573696e672066696c7465727320746f206c696d69742074686520736f757263657320696e636c756465642c20757365> Tj
+ET
+
+
+BT
+300.64 583.566 Td
+/F1.0 10.5 Tf
+<736f75726365726f6f747320696e73746561642e> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 576.75 m
+297.64 576.75 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 539.19 m
+297.64 539.19 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 577.0 m
+48.24 538.94 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 577.0 m
+297.64 538.94 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 561.786 Td
+/F1.0 10.5 Tf
+<696e6a6172732c20696e6a6172735265662028> Tj
+ET
+
+0.2588 0.5451 0.7922 scn
+0.2588 0.5451 0.7922 SCN
+
+BT
+136.9935 561.786 Td
+/F1.0 10.5 Tf
+<50617468> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+159.5895 561.786 Td
+/F1.0 10.5 Tf
+<29> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 576.75 m
+547.04 576.75 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 539.19 m
+547.04 539.19 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 577.0 m
+297.64 538.94 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 577.0 m
+547.04 538.94 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 561.786 Td
+/F1.0 10.5 Tf
+<44657072656361746564202d2075736520696e7061746820696e73746561642e2052656164202e636c6173732066696c6573> Tj
+ET
+
+
+BT
+300.64 546.006 Td
+/F1.0 10.5 Tf
+[<666f722062> 20.0195 <797465636f64652077656176696e672066726f6d207a69702066696c657320286f6e6c79292e>] TJ
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 539.19 m
+297.64 539.19 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 501.63 m
+297.64 501.63 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 539.44 m
+48.24 501.38 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 539.44 m
+297.64 501.38 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 524.226 Td
+/F1.0 10.5 Tf
+<696e706174682c20696e706174685265662028> Tj
+ET
+
+0.2588 0.5451 0.7922 scn
+0.2588 0.5451 0.7922 SCN
+
+BT
+144.9315 524.226 Td
+/F1.0 10.5 Tf
+<50617468> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+167.5275 524.226 Td
+/F1.0 10.5 Tf
+<29> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 539.19 m
+547.04 539.19 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 501.63 m
+547.04 501.63 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 539.44 m
+297.64 501.38 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 539.44 m
+547.04 501.38 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 524.226 Td
+/F1.0 10.5 Tf
+[<52656164202e636c6173732066696c657320666f722062> 20.0195 <797465636f64652077656176696e672066726f6d>] TJ
+ET
+
+
+BT
+300.64 508.446 Td
+/F1.0 10.5 Tf
+[<6469726563746f72696573206f72207a69702066696c657320286c696b> 20.0195 <6520636c61737370617468292e>] TJ
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 501.63 m
+297.64 501.63 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 448.29 m
+297.64 448.29 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 501.88 m
+48.24 448.04 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 501.88 m
+297.64 448.04 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 486.666 Td
+/F1.0 10.5 Tf
+<636c617373706174682c20636c617373706174685265662028> Tj
+ET
+
+0.2588 0.5451 0.7922 scn
+0.2588 0.5451 0.7922 SCN
+
+BT
+172.2735 486.666 Td
+/F1.0 10.5 Tf
+<50617468> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+194.8695 486.666 Td
+/F1.0 10.5 Tf
+<29> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 501.63 m
+547.04 501.63 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 448.29 m
+547.04 448.29 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 501.88 m
+297.64 448.04 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 501.88 m
+547.04 448.04 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 486.666 Td
+/F1.0 10.5 Tf
+[<54686520636c6173737061746820757365642062> 20.0195 <792074686520736f7572636573206265696e67>] TJ
+ET
+
+
+BT
+300.64 470.886 Td
+/F1.0 10.5 Tf
+<636f6d70696c65642e205768656e20636f6d70696c696e6720617370656374732c20696e636c75646520746865> Tj
+ET
+
+
+BT
+300.64 455.106 Td
+/F1.0 10.5 Tf
+<73616d652076657273696f6e206f662074686520> Tj
+ET
+
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+401.146 455.106 Td
+/F3.0 10.5 Tf
+<6173706563746a72742e6a6172> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+469.396 455.106 Td
+/F1.0 10.5 Tf
+<2e> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 448.29 m
+297.64 448.29 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 394.95 m
+297.64 394.95 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 448.54 m
+48.24 394.7 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 448.54 m
+297.64 394.7 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 433.326 Td
+/F1.0 10.5 Tf
+<626f6f74636c617373706174682c20626f6f74636c617373706174685265662028> Tj
+ET
+
+0.2588 0.5451 0.7922 scn
+0.2588 0.5451 0.7922 SCN
+
+BT
+216.7725 433.326 Td
+/F1.0 10.5 Tf
+<50617468> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+239.3685 433.326 Td
+/F1.0 10.5 Tf
+<29> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 448.29 m
+547.04 448.29 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 394.95 m
+547.04 394.95 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 448.54 m
+297.64 394.7 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 448.54 m
+547.04 394.7 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 433.326 Td
+/F1.0 10.5 Tf
+<54686520626f6f74636c617373706174682073706563696669657320747970657320746f2075736520696e7374656164> Tj
+ET
+
+
+BT
+300.64 417.546 Td
+/F1.0 10.5 Tf
+<6f662074686520696e766f6b696e6720564dd573207768656e207365656b696e6720747970657320647572696e67> Tj
+ET
+
+
+BT
+300.64 401.766 Td
+/F1.0 10.5 Tf
+<636f6d70696c6174696f6e2e> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 394.95 m
+297.64 394.95 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 341.61 m
+297.64 341.61 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 395.2 m
+48.24 341.36 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 395.2 m
+297.64 341.36 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 379.986 Td
+/F1.0 10.5 Tf
+<657874446972732c20657874446972735265662028> Tj
+ET
+
+0.2588 0.5451 0.7922 scn
+0.2588 0.5451 0.7922 SCN
+
+BT
+151.3995 379.986 Td
+/F1.0 10.5 Tf
+<50617468> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+173.9955 379.986 Td
+/F1.0 10.5 Tf
+<29> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 394.95 m
+547.04 394.95 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 341.61 m
+547.04 341.61 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 395.2 m
+297.64 341.36 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 395.2 m
+547.04 341.36 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 379.986 Td
+/F1.0 10.5 Tf
+<54686520657874656e73696f6e206469726563746f7269657320746f2075736520696e7374656164206f662074686f7365> Tj
+ET
+
+
+BT
+300.64 364.206 Td
+/F1.0 10.5 Tf
+<696e2074686520696e766f6b696e6720564d207768656e207365656b696e6720747970657320647572696e67> Tj
+ET
+
+
+BT
+300.64 348.426 Td
+/F1.0 10.5 Tf
+<636f6d70696c6174696f6e2e> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 341.61 m
+297.64 341.61 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 256.71 m
+297.64 256.71 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 341.86 m
+48.24 256.46 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 341.86 m
+297.64 256.46 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 326.646 Td
+/F1.0 10.5 Tf
+<617370656374506174682c20617370656374506174685265662028> Tj
+ET
+
+0.2588 0.5451 0.7922 scn
+0.2588 0.5451 0.7922 SCN
+
+BT
+187.6035 326.646 Td
+/F1.0 10.5 Tf
+<50617468> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+210.1995 326.646 Td
+/F1.0 10.5 Tf
+<29> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 341.61 m
+547.04 341.61 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 256.71 m
+547.04 256.71 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 341.86 m
+297.64 256.46 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 341.86 m
+547.04 256.46 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 326.646 Td
+/F1.0 10.5 Tf
+<53696d696c617220746f20636c617373706174682c206173706563747061746820636f6e7461696e7320726561642d> Tj
+ET
+
+
+BT
+300.64 310.866 Td
+/F1.0 10.5 Tf
+[<6f6e6c79> 89.8438 <2c2062696e61727920617370656374206c696272> 20.0195 <617269657320746861742061726520776f76656e20696e746f>] TJ
+ET
+
+
+BT
+300.64 295.086 Td
+/F1.0 10.5 Tf
+<736f757263657320627574206e6f7420696e636c7564656420696e20746865206f75747075742e> Tj
+ET
+
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+300.64 279.306 Td
+/F3.0 10.5 Tf
+<61737065637470617468> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+353.14 279.306 Td
+/F1.0 10.5 Tf
+[<2061636365707473206a61722f7a69702066696c657320286275742c20756e6c696b> 20.0195 <65>] TJ
+ET
+
+
+BT
+300.64 263.526 Td
+/F1.0 10.5 Tf
+<636c617373706174682c206e6f74206469726563746f72696573292e> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 232.746 Td
+/F2.0 10.5 Tf
+[<416a6354> 29.7852 <61736b202869616a6329206f7074696f6e7320666f722073706563696679696e67206f7574707574>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 195.15 249.4 21.78 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 195.15 249.4 21.78 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 141.81 249.4 53.34 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 141.81 249.4 53.34 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 88.47 249.4 53.34 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 88.47 249.4 53.34 re
+f
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 216.93 m
+297.64 216.93 l
+S
+[] 0 d
+1.25 w
+0.8667 0.8667 0.8667 SCN
+48.24 195.15 m
+297.64 195.15 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 217.18 m
+48.24 194.525 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 217.18 m
+297.64 194.525 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 201.966 Td
+/F2.0 10.5 Tf
+<417474726962757465> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 216.93 m
+547.04 216.93 l
+S
+[] 0 d
+1.25 w
+0.8667 0.8667 0.8667 SCN
+297.64 195.15 m
+547.04 195.15 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 217.18 m
+297.64 194.525 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 217.18 m
+547.04 194.525 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 201.966 Td
+/F2.0 10.5 Tf
+<4465736372697074696f6e> Tj
+ET
+
+0.0 0.0 0.0 scn
+1.25 w
+0.8667 0.8667 0.8667 SCN
+48.24 195.15 m
+297.64 195.15 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 141.81 m
+297.64 141.81 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 195.775 m
+48.24 141.56 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 195.775 m
+297.64 141.56 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 180.186 Td
+/F1.0 10.5 Tf
+<64657374446972> Tj
+ET
+
+0.0 0.0 0.0 scn
+1.25 w
+0.8667 0.8667 0.8667 SCN
+297.64 195.15 m
+547.04 195.15 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 141.81 m
+547.04 141.81 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 195.775 m
+297.64 141.56 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 195.775 m
+547.04 141.56 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 180.186 Td
+/F1.0 10.5 Tf
+[<546865206469726563746f727920696e20776869636820746f20706c616365207468652067656e6572> 20.0195 <61746564>] TJ
+ET
+
+
+BT
+300.64 164.406 Td
+/F1.0 10.5 Tf
+<636c6173732066696c65732e204f6e6c79206f6e65206f6620> Tj
+ET
+
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+413.6095 164.406 Td
+/F3.0 10.5 Tf
+<64657374446972> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+450.3595 164.406 Td
+/F1.0 10.5 Tf
+<20616e6420> Tj
+ET
+
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+474.9085 164.406 Td
+/F3.0 10.5 Tf
+<6f75744a6172> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+506.4085 164.406 Td
+/F1.0 10.5 Tf
+[<206d61> 20.0195 <79>] TJ
+ET
+
+
+BT
+300.64 148.626 Td
+/F1.0 10.5 Tf
+<6265207365742e> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 141.81 m
+297.64 141.81 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 88.47 m
+297.64 88.47 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 142.06 m
+48.24 88.22 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 142.06 m
+297.64 88.22 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 126.846 Td
+/F1.0 10.5 Tf
+<6f75744a6172> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 141.81 m
+547.04 141.81 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 88.47 m
+547.04 88.47 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 142.06 m
+297.64 88.22 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 142.06 m
+547.04 88.22 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 126.846 Td
+/F1.0 10.5 Tf
+[<546865207a69702066696c6520696e20776869636820746f20706c616365207468652067656e6572> 20.0195 <61746564>] TJ
+ET
+
+
+BT
+300.64 111.066 Td
+/F1.0 10.5 Tf
+<6f757470757420636c6173732066696c65732e204f6e6c79206f6e65206f6620> Tj
+ET
+
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+449.53 111.066 Td
+/F3.0 10.5 Tf
+<64657374446972> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+486.28 111.066 Td
+/F1.0 10.5 Tf
+<20616e6420> Tj
+ET
+
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+510.829 111.066 Td
+/F3.0 10.5 Tf
+<6f75744a6172> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 95.286 Td
+/F1.0 10.5 Tf
+[<6d61> 20.0195 <79206265207365742e>] TJ
+ET
+
+0.0 0.0 0.0 scn
+q
+0.0 0.0 0.0 scn
+0.0 0.0 0.0 SCN
+1 w
+0 J
+0 j
+[] 0 d
+/Stamp2 Do
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+49.24 14.263 Td
+/F1.0 9 Tf
+<3232> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+Q
+Q
+
+endstream
+endobj
+136 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/CropBox [0 0 595.28 841.89]
+/BleedBox [0 0 595.28 841.89]
+/TrimBox [0 0 595.28 841.89]
+/ArtBox [0 0 595.28 841.89]
+/Contents 135 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+/Font << /F2.0 22 0 R
+/F1.0 8 0 R
+/F3.0 26 0 R
+>>
+/XObject << /Stamp2 361 0 R
+>>
+>>
+/Annots [137 0 R 138 0 R 139 0 R 140 0 R 141 0 R 142 0 R 143 0 R 144 0 R 145 0 R 146 0 R]
+>>
+endobj
+137 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (#antTasks-iajc-paths)
+>>
+/Subtype /Link
+/Rect [153.9615 766.08 176.5575 780.36]
+/Type /Annot
+>>
+endobj
+138 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (#antTasks-iajc-paths)
+>>
+/Subtype /Link
+/Rect [200.5185 696.96 223.1145 711.24]
+/Type /Annot
+>>
+endobj
+139 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (#antTasks-iajc-paths)
+>>
+/Subtype /Link
+/Rect [87.171 659.4 109.767 673.68]
+/Type /Annot
+>>
+endobj
+140 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (#antTasks-nested-includes)
+>>
+/Subtype /Link
+/Rect [349.0765 643.62 426.3565 657.9]
+/Type /Annot
+>>
+endobj
+141 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (#antTasks-iajc-paths)
+>>
+/Subtype /Link
+/Rect [136.9935 558.72 159.5895 573]
+/Type /Annot
+>>
+endobj
+142 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (#antTasks-iajc-paths)
+>>
+/Subtype /Link
+/Rect [144.9315 521.16 167.5275 535.44]
+/Type /Annot
+>>
+endobj
+143 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (#antTasks-iajc-paths)
+>>
+/Subtype /Link
+/Rect [172.2735 483.6 194.8695 497.88]
+/Type /Annot
+>>
+endobj
+144 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (#antTasks-iajc-paths)
+>>
+/Subtype /Link
+/Rect [216.7725 430.26 239.3685 444.54]
+/Type /Annot
+>>
+endobj
+145 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (#antTasks-iajc-paths)
+>>
+/Subtype /Link
+/Rect [151.3995 376.92 173.9955 391.2]
+/Type /Annot
+>>
+endobj
+146 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (#antTasks-iajc-paths)
+>>
+/Subtype /Link
+/Rect [187.6035 323.58 210.1995 337.86]
+/Type /Annot
+>>
+endobj
+147 0 obj
+<< /Length 16525
+>>
+stream
+q
+/DeviceRGB cs
+1.0 1.0 1.0 scn
+48.24 784.11 249.4 21.78 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 784.11 249.4 21.78 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 683.43 249.4 100.68 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 683.43 249.4 100.68 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 551.19 249.4 132.24 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 551.19 249.4 132.24 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 358.665 249.4 192.525 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 358.665 249.4 192.525 re
+f
+0.0 0.0 0.0 scn
+0.5 w
+/DeviceRGB CS
+0.8667 0.8667 0.8667 SCN
+48.24 805.89 m
+297.64 805.89 l
+S
+[] 0 d
+1.25 w
+0.8667 0.8667 0.8667 SCN
+48.24 784.11 m
+297.64 784.11 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 806.14 m
+48.24 783.485 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 806.14 m
+297.64 783.485 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 790.926 Td
+/F2.0 10.5 Tf
+<417474726962757465> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 805.89 m
+547.04 805.89 l
+S
+[] 0 d
+1.25 w
+0.8667 0.8667 0.8667 SCN
+297.64 784.11 m
+547.04 784.11 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 806.14 m
+297.64 783.485 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 806.14 m
+547.04 783.485 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 790.926 Td
+/F2.0 10.5 Tf
+<4465736372697074696f6e> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 784.11 m
+297.64 784.11 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 683.43 m
+297.64 683.43 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 784.36 m
+48.24 683.18 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 784.36 m
+297.64 683.18 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 769.146 Td
+/F1.0 10.5 Tf
+[<636f70> 20.0195 <79496e6a617273>] TJ
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 784.11 m
+547.04 784.11 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 683.43 m
+547.04 683.43 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 784.36 m
+297.64 683.18 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 784.36 m
+547.04 683.18 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 769.146 Td
+/F1.0 10.5 Tf
+[<28446570726563617465642f69676e6f7265643b20616a6320646f657320746869732e2920496620747275652c20636f70> 20.0195 <79>] TJ
+ET
+
+
+BT
+300.64 753.366 Td
+/F1.0 10.5 Tf
+<616c6c206e6f6e2d2e636c6173732066696c65732066726f6d20696e707574206a617228732920746f20746865206f7574707574> Tj
+ET
+
+
+BT
+300.64 737.586 Td
+/F1.0 10.5 Tf
+<6a6172206f722064657374696e6174696f6e206469726563746f72792061667465722074686520636f6d70696c6520286f72> Tj
+ET
+
+
+BT
+300.64 721.806 Td
+/F1.0 10.5 Tf
+[<696e6372656d656e74616c20636f6d70696c652920636f6d706c657465732e20496e20666f726b> 20.0195 <6564>] TJ
+ET
+
+
+BT
+300.64 706.026 Td
+/F1.0 10.5 Tf
+<6d6f64652c207468697320636f70696573206f6e6c79206166746572207468652070726f63657373> Tj
+ET
+
+
+BT
+300.64 690.246 Td
+/F1.0 10.5 Tf
+<636f6d706c657465732c206e6f7420616674657220696e6372656d656e74616c20636f6d70696c65732e> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 683.43 m
+297.64 683.43 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 551.19 m
+297.64 551.19 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 683.68 m
+48.24 550.94 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 683.68 m
+297.64 550.94 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 668.466 Td
+/F1.0 10.5 Tf
+[<736f75726365526f6f74436f70> 20.0195 <7946696c746572>] TJ
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 683.43 m
+547.04 683.43 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 551.19 m
+547.04 551.19 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 683.68 m
+297.64 550.94 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 683.68 m
+547.04 550.94 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 668.466 Td
+/F1.0 10.5 Tf
+[<5768656e207365742c20636f70> 20.0195 <7920616c6c2066696c65732066726f6d2074686520736f75726365726f6f74>] TJ
+ET
+
+
+BT
+300.64 652.686 Td
+/F1.0 10.5 Tf
+<6469726563746f7269657320746f20746865206f7574707574206a6172206f722064657374696e6174696f6e> Tj
+ET
+
+
+BT
+300.64 636.906 Td
+/F1.0 10.5 Tf
+<6469726563746f7279206578636570742074686f73652073706563696669656420696e207468652066696c746572> Tj
+ET
+
+
+BT
+300.64 621.126 Td
+/F1.0 10.5 Tf
+<7061747465726e2e20546865207061747465726e2073686f756c6420626520636f6d70617469626c652077697468> Tj
+ET
+
+
+BT
+300.64 605.346 Td
+/F1.0 10.5 Tf
+<616e20416e742066696c65736574206578636c756465732066696c7465723b207768656e207573696e6720746869732c> Tj
+ET
+
+
+BT
+300.64 589.566 Td
+/F1.0 10.5 Tf
+<6d6f737420646576656c6f70657273207061737320> Tj
+ET
+
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+409.8085 589.566 Td
+/F4.0 10.5 Tf
+<2f4356532f> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+436.0585 589.566 Td
+/F4.0 10.5 Tf
+<2c> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+441.3085 589.566 Td
+/F4.0 10.5 Tf
+<2f> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+446.5585 589.566 Td
+/F3.0 10.5 Tf
+<2e6a617661> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+472.8085 589.566 Td
+/F1.0 10.5 Tf
+<20746f206578636c756465> Tj
+ET
+
+
+BT
+300.64 573.786 Td
+/F1.0 10.5 Tf
+[<616e> 20.0195 <7920435653206469726563746f72696573206f7220736f757263652066696c65732e20536565>] TJ
+ET
+
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+300.64 558.006 Td
+/F3.0 10.5 Tf
+<696e70617468446972436f707946696c746572> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+400.39 558.006 Td
+/F1.0 10.5 Tf
+<2e20526571756972657320> Tj
+ET
+
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+452.6905 558.006 Td
+/F3.0 10.5 Tf
+<64657374446972> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+489.4405 558.006 Td
+/F1.0 10.5 Tf
+<206f7220> Tj
+ET
+
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+505.8835 558.006 Td
+/F3.0 10.5 Tf
+<6f75744a6172> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+537.3835 558.006 Td
+/F1.0 10.5 Tf
+<2e> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 551.19 m
+297.64 551.19 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 358.665 m
+297.64 358.665 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 551.44 m
+48.24 358.415 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 551.44 m
+297.64 358.415 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 536.226 Td
+/F1.0 10.5 Tf
+[<696e70617468446972436f70> 20.0195 <7946696c746572>] TJ
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 551.19 m
+547.04 551.19 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 358.665 m
+547.04 358.665 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 551.44 m
+297.64 358.415 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 551.44 m
+547.04 358.415 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 536.226 Td
+/F1.0 10.5 Tf
+[<5768656e207365742c20636f70> 20.0195 <7920616c6c2066696c65732066726f6d2074686520696e70617468>] TJ
+ET
+
+
+BT
+300.64 520.446 Td
+/F1.0 10.5 Tf
+<6469726563746f7269657320746f20746865206f7574707574206a6172206f722064657374696e6174696f6e> Tj
+ET
+
+
+BT
+300.64 504.666 Td
+/F1.0 10.5 Tf
+<6469726563746f7279206578636570742074686f73652073706563696669656420696e207468652066696c746572> Tj
+ET
+
+
+BT
+300.64 488.886 Td
+/F1.0 10.5 Tf
+<7061747465726e2e20546865207061747465726e2073686f756c6420626520636f6d70617469626c652077697468> Tj
+ET
+
+
+BT
+300.64 473.106 Td
+/F1.0 10.5 Tf
+<616e20416e742066696c65736574206578636c756465732066696c7465723b207768656e207573696e6720746869732c> Tj
+ET
+
+
+BT
+300.64 457.326 Td
+/F1.0 10.5 Tf
+<6d6f737420646576656c6f70657273207061737320> Tj
+ET
+
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+409.8085 457.326 Td
+/F4.0 10.5 Tf
+<2f4356532f> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+436.0585 457.326 Td
+/F4.0 10.5 Tf
+<2c> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+441.3085 457.326 Td
+/F4.0 10.5 Tf
+<2f> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+446.5585 457.326 Td
+/F3.0 10.5 Tf
+<2e6a6176612c> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+478.0585 457.326 Td
+/F4.0 10.5 Tf
+<2f> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+483.3085 457.326 Td
+/F4.0 10.5 Tf
+<2e636c617373> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+514.8085 457.326 Td
+/F4.0 10.5 Tf
+<20746f> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+300.64 444.381 Td
+/F4.0 10.5 Tf
+<6578636c75646520616e7920435653206469726563746f726965732c20736f757263652066696c65732c206f72> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+300.64 428.601 Td
+/F4.0 10.5 Tf
+<756e776f76656e202e636c6173732066696c65732e20284966202f> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+442.39 428.601 Td
+/F3.0 10.5 Tf
+<2e636c617373> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+473.89 428.601 Td
+/F1.0 10.5 Tf
+<206973206e6f74> Tj
+ET
+
+
+BT
+300.64 412.821 Td
+/F1.0 10.5 Tf
+<7370656369666965642c2069742077696c6c2062652070726570656e64656420746f207468652066696c7465722e2920536565> Tj
+ET
+
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+300.64 397.041 Td
+/F3.0 10.5 Tf
+<736f75726365526f6f74436f707946696c746572> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+405.64 397.041 Td
+/F1.0 10.5 Tf
+<2e20284e6f7465207468617420616a6320697473656c6620636f70696573> Tj
+ET
+
+
+BT
+300.64 381.261 Td
+/F1.0 10.5 Tf
+<616c6c207265736f75726365732066726f6d20696e707574206a61722f7a69702066696c6573206f6e20746865> Tj
+ET
+
+
+BT
+300.64 365.481 Td
+/F1.0 10.5 Tf
+<696e706174682e2920526571756972657320> Tj
+ET
+
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+389.386 365.481 Td
+/F3.0 10.5 Tf
+<64657374446972> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+426.136 365.481 Td
+/F1.0 10.5 Tf
+<206f7220> Tj
+ET
+
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+442.579 365.481 Td
+/F3.0 10.5 Tf
+<6f75744a6172> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+474.079 365.481 Td
+/F1.0 10.5 Tf
+<2e> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 334.701 Td
+/F2.0 10.5 Tf
+[<416a6354> 29.7852 <61736b202869616a6329206f7074696f6e7320666f722073706563696679696e6720636f6d70696c6572206265686176696f72>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 297.105 249.4 21.78 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 297.105 249.4 21.78 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 164.865 249.4 132.24 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 164.865 249.4 132.24 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 127.305 249.4 37.56 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 127.305 249.4 37.56 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 73.965 249.4 53.34 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 73.965 249.4 53.34 re
+f
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 318.885 m
+297.64 318.885 l
+S
+[] 0 d
+1.25 w
+0.8667 0.8667 0.8667 SCN
+48.24 297.105 m
+297.64 297.105 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 319.135 m
+48.24 296.48 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 319.135 m
+297.64 296.48 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 303.921 Td
+/F2.0 10.5 Tf
+<417474726962757465> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 318.885 m
+547.04 318.885 l
+S
+[] 0 d
+1.25 w
+0.8667 0.8667 0.8667 SCN
+297.64 297.105 m
+547.04 297.105 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 319.135 m
+297.64 296.48 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 319.135 m
+547.04 296.48 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 303.921 Td
+/F2.0 10.5 Tf
+<4465736372697074696f6e> Tj
+ET
+
+0.0 0.0 0.0 scn
+1.25 w
+0.8667 0.8667 0.8667 SCN
+48.24 297.105 m
+297.64 297.105 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 164.865 m
+297.64 164.865 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 297.73 m
+48.24 164.615 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 297.73 m
+297.64 164.615 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 282.141 Td
+/F1.0 10.5 Tf
+<666f726b> Tj
+ET
+
+0.0 0.0 0.0 scn
+1.25 w
+0.8667 0.8667 0.8667 SCN
+297.64 297.105 m
+547.04 297.105 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 164.865 m
+547.04 164.865 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 297.73 m
+297.64 164.615 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 297.73 m
+547.04 164.615 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 282.141 Td
+/F1.0 10.5 Tf
+<52756e2070726f6365737320696e20616e6f7468657220564d2e205468697320676574732074686520666f726b696e67> Tj
+ET
+
+
+BT
+300.64 266.361 Td
+/F1.0 10.5 Tf
+<636c6173737061746820656974686572206578706c696369746c792066726f6d206120> Tj
+ET
+
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+467.4115 266.361 Td
+/F3.0 10.5 Tf
+<666f726b636c61737370617468> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+535.6615 266.361 Td
+ET
+
+
+BT
+300.64 250.581 Td
+/F1.0 10.5 Tf
+[<656e747279206f722062> 20.0195 <7920736561726368696e6720746865207461736b206f722073797374656d2f416e74>] TJ
+ET
+
+
+BT
+300.64 234.801 Td
+/F1.0 10.5 Tf
+<636c6173737061746820666f7220746865206669727374207265616461626c652066696c6520776974682061206e616d65> Tj
+ET
+
+
+BT
+300.64 219.021 Td
+/F1.0 10.5 Tf
+<6f662074686520666f726d20> Tj
+ET
+
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+359.4925 219.021 Td
+/F3.0 10.5 Tf
+<6173706563746a7b2d7d746f6f6c737b2e2a7d2e6a6172> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+480.2425 219.021 Td
+/F1.0 10.5 Tf
+<2e205768656e> Tj
+ET
+
+
+BT
+300.64 203.241 Td
+/F1.0 10.5 Tf
+<666f726b696e6720796f752063616e20737065636966792074686520616d6f756e74206f66206d656d6f7279> Tj
+ET
+
+
+BT
+300.64 187.461 Td
+/F1.0 10.5 Tf
+<75736564207769746820> Tj
+ET
+
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+352.2685 187.461 Td
+/F3.0 10.5 Tf
+<6d61786d656d> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+383.7685 187.461 Td
+/F1.0 10.5 Tf
+[<2e2046> 40.0391 <6f726b2063616e6e6f74206265207573656420696e>] TJ
+ET
+
+
+BT
+300.64 171.681 Td
+/F1.0 10.5 Tf
+<696e6372656d656e74616c206d6f64652c20756e6c657373207573696e672061207461672066696c652e> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 164.865 m
+297.64 164.865 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 127.305 m
+297.64 127.305 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 165.115 m
+48.24 127.055 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 165.115 m
+297.64 127.055 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 149.901 Td
+/F1.0 10.5 Tf
+[<666f726b> 20.0195 <636c617373706174682c20666f726b> 20.0195 <636c617373706174685265662028>] TJ
+ET
+
+0.2588 0.5451 0.7922 scn
+0.2588 0.5451 0.7922 SCN
+
+BT
+213.8741 149.901 Td
+/F1.0 10.5 Tf
+<50617468> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+236.4701 149.901 Td
+/F1.0 10.5 Tf
+<29> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 164.865 m
+547.04 164.865 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 127.305 m
+547.04 127.305 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 165.115 m
+297.64 127.055 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 165.115 m
+547.04 127.055 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 149.901 Td
+/F1.0 10.5 Tf
+<537065636966792074686520636c6173737061746820746f2075736520666f722074686520636f6d70696c6572> Tj
+ET
+
+
+BT
+300.64 134.121 Td
+/F1.0 10.5 Tf
+<7768656e20666f726b696e672e> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 127.305 m
+297.64 127.305 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 73.965 m
+297.64 73.965 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 127.555 m
+48.24 73.715 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 127.555 m
+297.64 73.715 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 112.341 Td
+/F1.0 10.5 Tf
+<6d61786d656d> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 127.305 m
+547.04 127.305 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 73.965 m
+547.04 73.965 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 127.555 m
+297.64 73.715 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 127.555 m
+547.04 73.715 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 112.341 Td
+/F1.0 10.5 Tf
+<546865206d6178696d756d206d656d6f727920746f2075736520666f7220746865206e657720564d> Tj
+ET
+
+
+BT
+300.64 96.561 Td
+/F1.0 10.5 Tf
+[<7768656e20666f726b20697320747275652e2056> 60.0586 <616c7565732073686f756c642068617665207468652073616d65>] TJ
+ET
+
+
+BT
+300.64 80.781 Td
+/F1.0 10.5 Tf
+[<666f726d2061732061636365707465642062> 20.0195 <792074686520564d2c20652e672e2c20223132386d222e>] TJ
+ET
+
+0.0 0.0 0.0 scn
+q
+0.0 0.0 0.0 scn
+0.0 0.0 0.0 SCN
+1 w
+0 J
+0 j
+[] 0 d
+/Stamp1 Do
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+535.978 14.263 Td
+/F1.0 9 Tf
+<3233> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+Q
+Q
+
+endstream
+endobj
+148 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/CropBox [0 0 595.28 841.89]
+/BleedBox [0 0 595.28 841.89]
+/TrimBox [0 0 595.28 841.89]
+/ArtBox [0 0 595.28 841.89]
+/Contents 147 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+/Font << /F2.0 22 0 R
+/F1.0 8 0 R
+/F4.0 149 0 R
+/F3.0 26 0 R
+>>
+/XObject << /Stamp1 360 0 R
+>>
+>>
+/Annots [150 0 R]
+>>
+endobj
+149 0 obj
+<< /Type /Font
+/BaseFont /936a7f+mplus1mn-bold
+/Subtype /TrueType
+/FontDescriptor 379 0 R
+/FirstChar 32
+/LastChar 255
+/Widths 381 0 R
+/ToUnicode 380 0 R
+>>
+endobj
+150 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (#antTasks-iajc-paths)
+>>
+/Subtype /Link
+/Rect [213.8741 146.835 236.4701 161.115]
+/Type /Annot
+>>
+endobj
+151 0 obj
+<< /Length 17061
+>>
+stream
+q
+/DeviceRGB cs
+1.0 1.0 1.0 scn
+48.24 784.11 249.4 21.78 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 784.11 249.4 21.78 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 699.21 249.4 84.9 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 699.21 249.4 84.9 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 614.31 249.4 84.9 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 614.31 249.4 84.9 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 434.73 249.4 179.58 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 434.73 249.4 179.58 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 397.17 249.4 37.56 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 397.17 249.4 37.56 re
+f
+0.0 0.0 0.0 scn
+0.5 w
+/DeviceRGB CS
+0.8667 0.8667 0.8667 SCN
+48.24 805.89 m
+297.64 805.89 l
+S
+[] 0 d
+1.25 w
+0.8667 0.8667 0.8667 SCN
+48.24 784.11 m
+297.64 784.11 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 806.14 m
+48.24 783.485 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 806.14 m
+297.64 783.485 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 790.926 Td
+/F2.0 10.5 Tf
+<417474726962757465> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 805.89 m
+547.04 805.89 l
+S
+[] 0 d
+1.25 w
+0.8667 0.8667 0.8667 SCN
+297.64 784.11 m
+547.04 784.11 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 806.14 m
+297.64 783.485 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 806.14 m
+547.04 783.485 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 790.926 Td
+/F2.0 10.5 Tf
+<4465736372697074696f6e> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 784.11 m
+297.64 784.11 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 699.21 m
+297.64 699.21 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 784.36 m
+48.24 698.96 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 784.36 m
+297.64 698.96 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 769.146 Td
+/F1.0 10.5 Tf
+<696e6372656d656e74616c> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 784.11 m
+547.04 784.11 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 699.21 m
+547.04 699.21 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 784.36 m
+297.64 698.96 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 784.36 m
+547.04 698.96 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 769.146 Td
+/F1.0 10.5 Tf
+<696e6372656d656e74616c206d6f64653a204275696c64206f6e63652c207468656e207265636f6d70696c65> Tj
+ET
+
+
+BT
+300.64 753.366 Td
+/F1.0 10.5 Tf
+<6f6e6c7920726571756972656420736f757263652066696c6573207768656e20757365722070726f7669646573> Tj
+ET
+
+
+BT
+300.64 737.586 Td
+/F1.0 10.5 Tf
+<696e7075742e205265717569726573207468617420736f757263652066696c657320626520737065636966696564> Tj
+ET
+
+
+BT
+300.64 721.806 Td
+/F1.0 10.5 Tf
+<6f6e6c79207573696e6720> Tj
+ET
+
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+355.2505 721.806 Td
+/F3.0 10.5 Tf
+<736f75726365726f6f7473> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+413.0005 721.806 Td
+/F1.0 10.5 Tf
+<2e20496e636f6d70617469626c652077697468> Tj
+ET
+
+
+BT
+300.64 706.026 Td
+/F1.0 10.5 Tf
+<666f726b696e672e> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 699.21 m
+297.64 699.21 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 614.31 m
+297.64 614.31 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 699.46 m
+48.24 614.06 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 699.46 m
+297.64 614.06 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 684.246 Td
+/F1.0 10.5 Tf
+<74616766696c65> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 699.21 m
+547.04 699.21 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 614.31 m
+547.04 614.31 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 699.46 m
+297.64 614.06 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 699.46 m
+547.04 614.06 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 684.246 Td
+/F1.0 10.5 Tf
+<696e6372656d656e74616c206d6f64653a204275696c64206f6e63652c207468656e207265636f6d70696c65> Tj
+ET
+
+
+BT
+300.64 668.466 Td
+/F1.0 10.5 Tf
+<6f6e6c7920726571756972656420736f757263652066696c6573207768656e20746865207461672066696c65206973> Tj
+ET
+
+
+BT
+300.64 652.686 Td
+/F1.0 10.5 Tf
+<757064617465642c2066696e616c6c792065786974696e67207768656e207461672066696c652069732064656c657465642e> Tj
+ET
+
+
+BT
+300.64 636.906 Td
+/F1.0 10.5 Tf
+<5265717569726573207468617420736f757263652066696c657320626520737065636966696564206f6e6c79207573696e67> Tj
+ET
+
+
+BT
+300.64 621.126 Td
+ET
+
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+300.64 621.126 Td
+/F3.0 10.5 Tf
+<736f75726365726f6f7473> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+358.39 621.126 Td
+/F1.0 10.5 Tf
+<2e> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 614.31 m
+297.64 614.31 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 434.73 m
+297.64 434.73 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 614.56 m
+48.24 434.48 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 614.56 m
+297.64 434.48 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 599.346 Td
+/F1.0 10.5 Tf
+<58> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 614.31 m
+547.04 614.31 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 434.73 m
+547.04 434.73 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 614.56 m
+297.64 434.48 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 614.56 m
+547.04 434.48 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 599.346 Td
+/F1.0 10.5 Tf
+<536574206578706572696d656e74616c206f7074696f6e2873292c207573696e6720636f6d6d612d> Tj
+ET
+
+
+BT
+300.64 583.566 Td
+/F1.0 10.5 Tf
+[<7365706172> 20.0195 <61746564206c697374206f66206163636570746564206f7074696f6e73204f7074696f6e732073686f756c64>] TJ
+ET
+
+
+BT
+300.64 567.786 Td
+/F1.0 10.5 Tf
+<6e6f7420636f6e7461696e20746865206c656164696e6720582e20536f6d6520636f6d6d6f6e6c792d75736564> Tj
+ET
+
+
+BT
+300.64 552.006 Td
+/F1.0 10.5 Tf
+<6578706572696d656e74616c206f7074696f6e732068617665207468656972206f776e20656e74726965732e> Tj
+ET
+
+
+BT
+300.64 536.226 Td
+/F1.0 10.5 Tf
+<546865206f74686572207065726d6974746564206f6e6573202863757272656e746c792920617265> Tj
+ET
+
+
+BT
+300.64 520.446 Td
+/F1.0 10.5 Tf
+<73657269616c697a61626c65417370656374732c20696e6372656d656e74616c46696c652c206c617a79546a702c> Tj
+ET
+
+
+BT
+300.64 504.666 Td
+/F1.0 10.5 Tf
+<72657765617661626c652c206e6f7452657765617661626c652c206e6f496e6c696e652c> Tj
+ET
+
+
+BT
+300.64 488.886 Td
+/F1.0 10.5 Tf
+<7465726d696e6174654166746572436f6d70696c6174696f6e2c20616a72756e74696d656c6576656c3a312e322c> Tj
+ET
+
+
+BT
+300.64 473.106 Td
+/F1.0 10.5 Tf
+<616e6420616a72756e74696d656c6576656c3a312e352e204f662074686573652c20736f6d652077657265> Tj
+ET
+
+
+BT
+300.64 457.326 Td
+/F1.0 10.5 Tf
+<6465707265636174656420696e204173706563744a2035202872657765617661626c652c> Tj
+ET
+
+
+BT
+300.64 441.546 Td
+/F1.0 10.5 Tf
+<7465726d696e6174654166746572436f6d70696c6174696f6e2c206574632e292e> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 434.73 m
+297.64 434.73 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 397.17 m
+297.64 397.17 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 434.98 m
+48.24 396.92 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 434.98 m
+297.64 396.92 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 419.766 Td
+/F1.0 10.5 Tf
+<587465726d696e6174654166746572436f6d70696c6174696f6e> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 434.73 m
+547.04 434.73 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 397.17 m
+547.04 397.17 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 434.98 m
+297.64 396.92 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 434.98 m
+547.04 396.92 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 419.766 Td
+/F1.0 10.5 Tf
+[<54> 29.7852 <65726d696e61746573206265666f7265207468652077656176696e672070726f636573732c>] TJ
+ET
+
+
+BT
+300.64 403.986 Td
+/F1.0 10.5 Tf
+<64756d70696e67206f757420756e66696e697368656420636c6173732066696c65732e> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 373.206 Td
+/F2.0 10.5 Tf
+[<416a6354> 29.7852 <61736b202869616a6329206f7074696f6e7320666f722073706563696679696e6720636f6d70696c657220736964652d6566666563747320616e64206d65737361676573>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 335.61 249.4 21.78 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 335.61 249.4 21.78 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 298.05 249.4 37.56 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 298.05 249.4 37.56 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 276.27 249.4 21.78 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 276.27 249.4 21.78 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 238.71 249.4 37.56 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 238.71 249.4 37.56 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 185.37 249.4 53.34 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 185.37 249.4 53.34 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 147.81 249.4 37.56 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 147.81 249.4 37.56 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 110.25 249.4 37.56 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 110.25 249.4 37.56 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 72.69 249.4 37.56 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 72.69 249.4 37.56 re
+f
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 357.39 m
+297.64 357.39 l
+S
+[] 0 d
+1.25 w
+0.8667 0.8667 0.8667 SCN
+48.24 335.61 m
+297.64 335.61 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 357.64 m
+48.24 334.985 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 357.64 m
+297.64 334.985 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 342.426 Td
+/F2.0 10.5 Tf
+<417474726962757465> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 357.39 m
+547.04 357.39 l
+S
+[] 0 d
+1.25 w
+0.8667 0.8667 0.8667 SCN
+297.64 335.61 m
+547.04 335.61 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 357.64 m
+297.64 334.985 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 357.64 m
+547.04 334.985 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 342.426 Td
+/F2.0 10.5 Tf
+<4465736372697074696f6e> Tj
+ET
+
+0.0 0.0 0.0 scn
+1.25 w
+0.8667 0.8667 0.8667 SCN
+48.24 335.61 m
+297.64 335.61 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 298.05 m
+297.64 298.05 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 336.235 m
+48.24 297.8 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 336.235 m
+297.64 297.8 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 320.646 Td
+/F1.0 10.5 Tf
+<656d61637373796d> Tj
+ET
+
+0.0 0.0 0.0 scn
+1.25 w
+0.8667 0.8667 0.8667 SCN
+297.64 335.61 m
+547.04 335.61 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 298.05 m
+547.04 298.05 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 336.235 m
+297.64 297.8 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 336.235 m
+547.04 297.8 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 320.646 Td
+/F1.0 10.5 Tf
+<496620747275652c20656d697420> Tj
+ET
+
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+362.6425 320.646 Td
+/F3.0 10.5 Tf
+<2e616a6573796d> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+399.3925 320.646 Td
+/F1.0 10.5 Tf
+<2073796d626f6c2066696c657320666f7220456d616373> Tj
+ET
+
+
+BT
+300.64 304.866 Td
+/F1.0 10.5 Tf
+<737570706f72742e> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 298.05 m
+297.64 298.05 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 276.27 m
+297.64 276.27 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 298.3 m
+48.24 276.02 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 298.3 m
+297.64 276.02 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 283.086 Td
+/F1.0 10.5 Tf
+<63726f7373726566> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 298.05 m
+547.04 298.05 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 276.27 m
+547.04 276.27 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 298.3 m
+297.64 276.02 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 298.3 m
+547.04 276.02 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 283.086 Td
+/F1.0 10.5 Tf
+<496620747275652c20656d697420> Tj
+ET
+
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+362.6425 283.086 Td
+/F3.0 10.5 Tf
+<2e616a73796d> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+394.1425 283.086 Td
+/F1.0 10.5 Tf
+[<2066696c6520696e746f20746865206f7574707574206469726563746f7279> 89.8438 <2e>] TJ
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 276.27 m
+297.64 276.27 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 238.71 m
+297.64 238.71 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 276.52 m
+48.24 238.46 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 276.52 m
+297.64 238.46 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 261.306 Td
+/F1.0 10.5 Tf
+<766572626f7365> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 276.27 m
+547.04 276.27 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 238.71 m
+547.04 238.71 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 276.52 m
+297.64 238.46 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 276.52 m
+547.04 238.46 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 261.306 Td
+/F1.0 10.5 Tf
+<496620747275652c206c6f6720636f6d70696c657220766572626f7365206d65737361676573206173> Tj
+ET
+
+
+BT
+300.64 245.526 Td
+/F1.0 10.5 Tf
+<50726f6a6563742e494e464f20647572696e672074686520636f6d70696c652e> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 238.71 m
+297.64 238.71 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 185.37 m
+297.64 185.37 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 238.96 m
+48.24 185.12 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 238.96 m
+297.64 185.12 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 223.746 Td
+/F1.0 10.5 Tf
+<6c6f67436f6d6d616e64> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 238.71 m
+547.04 238.71 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 185.37 m
+547.04 185.37 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 238.96 m
+297.64 185.12 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 238.96 m
+547.04 185.12 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 223.746 Td
+/F1.0 10.5 Tf
+<496620747275652c206c6f6720636f6d70696c657220636f6d6d616e6420656c656d656e7473206173> Tj
+ET
+
+
+BT
+300.64 207.966 Td
+/F1.0 10.5 Tf
+[<50726f6a6563742e494e464f202872> 20.0195 <6174686572207468616e2074686520757375616c>] TJ
+ET
+
+
+BT
+300.64 192.186 Td
+/F1.0 10.5 Tf
+<50726f6a6563742e564552424f5345206c6576656c292e> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 185.37 m
+297.64 185.37 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 147.81 m
+297.64 147.81 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 185.62 m
+48.24 147.56 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 185.62 m
+297.64 147.56 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 170.406 Td
+/F1.0 10.5 Tf
+<586c69737466696c6561726773> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 185.37 m
+547.04 185.37 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 147.81 m
+547.04 147.81 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 185.62 m
+297.64 147.56 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 185.62 m
+547.04 147.56 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 170.406 Td
+/F1.0 10.5 Tf
+<496620747275652c20656d6974206c697374206f662066696c6520617267756d656e747320647572696e6720746865> Tj
+ET
+
+
+BT
+300.64 154.626 Td
+/F1.0 10.5 Tf
+[<636f6d70696c6520286275742062656861766573206e6f77206c696b> 20.0195 <6520766572626f7365292e>] TJ
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 147.81 m
+297.64 147.81 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 110.25 m
+297.64 110.25 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 148.06 m
+48.24 110.0 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 148.06 m
+297.64 110.0 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 132.846 Td
+/F1.0 10.5 Tf
+<76657273696f6e> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 147.81 m
+547.04 147.81 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 110.25 m
+547.04 110.25 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 148.06 m
+297.64 110.0 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 148.06 m
+547.04 110.0 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 132.846 Td
+/F1.0 10.5 Tf
+<496620747275652c20646f206e6f7420636f6d70696c65202d206a757374207072696e74204173706563744a> Tj
+ET
+
+
+BT
+300.64 117.066 Td
+/F1.0 10.5 Tf
+<76657273696f6e2e> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 110.25 m
+297.64 110.25 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 72.69 m
+297.64 72.69 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 110.5 m
+48.24 72.44 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 110.5 m
+297.64 72.44 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 95.286 Td
+/F1.0 10.5 Tf
+<68656c70> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 110.25 m
+547.04 110.25 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 72.69 m
+547.04 72.69 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 110.5 m
+297.64 72.44 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 110.5 m
+547.04 72.44 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 95.286 Td
+/F1.0 10.5 Tf
+<496620747275652c206a757374207072696e742068656c7020666f722074686520636f6d6d616e642d6c696e65> Tj
+ET
+
+
+BT
+300.64 79.506 Td
+/F1.0 10.5 Tf
+<636f6d70696c65722e> Tj
+ET
+
+0.0 0.0 0.0 scn
+q
+0.0 0.0 0.0 scn
+0.0 0.0 0.0 SCN
+1 w
+0 J
+0 j
+[] 0 d
+/Stamp2 Do
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+49.24 14.263 Td
+/F1.0 9 Tf
+<3234> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+Q
+Q
+
+endstream
+endobj
+152 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/CropBox [0 0 595.28 841.89]
+/BleedBox [0 0 595.28 841.89]
+/TrimBox [0 0 595.28 841.89]
+/ArtBox [0 0 595.28 841.89]
+/Contents 151 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+/Font << /F2.0 22 0 R
+/F1.0 8 0 R
+/F3.0 26 0 R
+>>
+/XObject << /Stamp2 361 0 R
+>>
+>>
+>>
+endobj
+153 0 obj
+<< /Length 22103
+>>
+stream
+q
+/DeviceRGB cs
+1.0 1.0 1.0 scn
+48.24 784.11 249.4 21.78 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 784.11 249.4 21.78 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 746.55 249.4 37.56 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 746.55 249.4 37.56 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 708.99 249.4 37.56 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 708.99 249.4 37.56 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 624.09 249.4 84.9 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 624.09 249.4 84.9 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 554.97 249.4 69.12 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 554.97 249.4 69.12 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 454.29 249.4 100.68 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 454.29 249.4 100.68 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 432.51 249.4 21.78 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 432.51 249.4 21.78 re
+f
+0.0 0.0 0.0 scn
+0.5 w
+/DeviceRGB CS
+0.8667 0.8667 0.8667 SCN
+48.24 805.89 m
+297.64 805.89 l
+S
+[] 0 d
+1.25 w
+0.8667 0.8667 0.8667 SCN
+48.24 784.11 m
+297.64 784.11 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 806.14 m
+48.24 783.485 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 806.14 m
+297.64 783.485 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 790.926 Td
+/F2.0 10.5 Tf
+<417474726962757465> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 805.89 m
+547.04 805.89 l
+S
+[] 0 d
+1.25 w
+0.8667 0.8667 0.8667 SCN
+297.64 784.11 m
+547.04 784.11 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 806.14 m
+297.64 783.485 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 806.14 m
+547.04 783.485 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 790.926 Td
+/F2.0 10.5 Tf
+<4465736372697074696f6e> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 784.11 m
+297.64 784.11 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 746.55 m
+297.64 746.55 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 784.36 m
+48.24 746.3 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 784.36 m
+297.64 746.3 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 769.146 Td
+/F1.0 10.5 Tf
+<586c696e747761726e696e6773> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 784.11 m
+547.04 784.11 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 746.55 m
+547.04 746.55 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 784.36 m
+297.64 746.3 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 784.36 m
+547.04 746.3 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 769.146 Td
+/F1.0 10.5 Tf
+<53616d6520617320> Tj
+ET
+
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+343.8475 769.146 Td
+/F3.0 10.5 Tf
+<786c696e743a7761726e696e67> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+412.0975 769.146 Td
+/F1.0 10.5 Tf
+<3a20696620747275652c207365742064656661756c74206c6576656c> Tj
+ET
+
+
+BT
+300.64 753.366 Td
+/F1.0 10.5 Tf
+<6f6620616c6c206c616e6775616765207573616765206d6573736167657320746f207761726e696e672e> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 746.55 m
+297.64 746.55 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 708.99 m
+297.64 708.99 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 746.8 m
+48.24 708.74 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 746.8 m
+297.64 708.74 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 731.586 Td
+/F1.0 10.5 Tf
+<586c696e74> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 746.55 m
+547.04 746.55 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 708.99 m
+547.04 708.99 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 746.8 m
+297.64 708.74 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 746.8 m
+547.04 708.74 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 731.586 Td
+/F1.0 10.5 Tf
+<537065636966792064656661756c74206c6576656c206f6620616c6c206c616e6775616765207573616765> Tj
+ET
+
+
+BT
+300.64 715.806 Td
+/F1.0 10.5 Tf
+<6d6573736167657320746f206f6e65206f66205b> Tj
+ET
+
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+400.327 715.806 Td
+/F3.0 10.5 Tf
+<6572726f72207761726e696e672069676e6f7265> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+505.327 715.806 Td
+/F1.0 10.5 Tf
+<5d2e> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 708.99 m
+297.64 708.99 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 624.09 m
+297.64 624.09 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 709.24 m
+48.24 623.84 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 709.24 m
+297.64 623.84 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 694.026 Td
+/F1.0 10.5 Tf
+<586c696e7446696c65> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 708.99 m
+547.04 708.99 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 624.09 m
+547.04 624.09 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 709.24 m
+297.64 623.84 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 709.24 m
+547.04 623.84 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 694.026 Td
+/F1.0 10.5 Tf
+<537065636966792070726f70657274792066696c6520636f6e7461696e696e6720> Tj
+ET
+
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+461.227 694.026 Td
+/F3.0 10.5 Tf
+<6e616d653a6c6576656c> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+513.727 694.026 Td
+ET
+
+
+BT
+300.64 678.246 Td
+/F1.0 10.5 Tf
+<6173736f63696174696f6e732073657474696e67206c6576656c20666f72206c616e6775616765206d65737361676573> Tj
+ET
+
+
+BT
+300.64 662.466 Td
+/F1.0 10.5 Tf
+[<656d697474656420647572696e6720636f6d70696c6174696f6e2e20416e> 20.0195 <79206c6576656c7320736574>] TJ
+ET
+
+
+BT
+300.64 646.686 Td
+/F1.0 10.5 Tf
+<6f76657272696465207468652064656661756c74206173736f63696174696f6e7320696e> Tj
+ET
+
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+300.64 630.906 Td
+/F3.0 10.5 Tf
+<6f72672f6173706563746a2f7765617665722f584c696e7444656661756c742e70726f70657274696573> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+521.14 630.906 Td
+/F1.0 10.5 Tf
+<2e> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 624.09 m
+297.64 624.09 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 554.97 m
+297.64 554.97 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 624.34 m
+48.24 554.72 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 624.34 m
+297.64 554.72 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 609.126 Td
+/F1.0 10.5 Tf
+<6661696c6f6e6572726f72> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 624.09 m
+547.04 624.09 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 554.97 m
+547.04 554.97 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 624.34 m
+297.64 554.72 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 624.34 m
+547.04 554.72 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 609.126 Td
+/F1.0 10.5 Tf
+<496620747275652c207468726f77204275696c64457863657074696f6e20746f2068616c74206275696c64206966> Tj
+ET
+
+
+BT
+300.64 593.346 Td
+/F1.0 10.5 Tf
+[<74686572652061726520616e> 20.0195 <7920636f6d70696c6572206572726f72732e2049662066616c73652c20636f6e74696e7565>] TJ
+ET
+
+
+BT
+300.64 577.566 Td
+/F1.0 10.5 Tf
+<6e6f74776974687374616e64696e6720636f6d70696c65206572726f72732e2044656661756c747320746f> Tj
+ET
+
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+300.64 561.786 Td
+/F3.0 10.5 Tf
+<74727565> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+321.64 561.786 Td
+/F1.0 10.5 Tf
+<2e> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 554.97 m
+297.64 554.97 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 454.29 m
+297.64 454.29 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 555.22 m
+48.24 454.04 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 555.22 m
+297.64 454.04 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 540.006 Td
+/F1.0 10.5 Tf
+<6d657373616765486f6c646572436c617373> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 554.97 m
+547.04 554.97 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 454.29 m
+547.04 454.29 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 555.22 m
+297.64 454.04 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 555.22 m
+547.04 454.04 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 540.006 Td
+/F1.0 10.5 Tf
+<53706563696679206120636c61737320746f2075736520617320746865206d65737361676520686f6c64657220666f72> Tj
+ET
+
+
+BT
+300.64 524.226 Td
+/F1.0 10.5 Tf
+<74686520636f6d70696c652070726f636573732e2054686520656e747279206d75737420626520612066756c6c792d> Tj
+ET
+
+
+BT
+300.64 508.446 Td
+/F1.0 10.5 Tf
+<7175616c6966696564206e616d65206f66206120636c617373207265736f6c766561626c652066726f6d20746865> Tj
+ET
+
+
+BT
+300.64 492.666 Td
+/F1.0 10.5 Tf
+<7461736b20636c6173737061746820636f6d706c79696e67207769746820746865> Tj
+ET
+
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+300.64 476.886 Td
+/F3.0 10.5 Tf
+<6f72672e6173706563746a2e6272696467652e494d657373616765486f6c646572> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+473.89 476.886 Td
+/F1.0 10.5 Tf
+<20696e7465726661636520616e64> Tj
+ET
+
+
+BT
+300.64 461.106 Td
+/F1.0 10.5 Tf
+<686176696e672061207075626c6963206e6f2d617267756d656e7420636f6e7374727563746f722e> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 454.29 m
+297.64 454.29 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 432.51 m
+297.64 432.51 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 454.54 m
+48.24 432.26 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 454.54 m
+297.64 432.26 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 439.326 Td
+/F1.0 10.5 Tf
+[<73686f7757> 60.0586 <65617665496e666f>] TJ
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 454.29 m
+547.04 454.29 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 432.51 m
+547.04 432.51 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 454.54 m
+297.64 432.26 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 454.54 m
+547.04 432.26 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 439.326 Td
+/F1.0 10.5 Tf
+<496620747275652c20656d697420776561766572206d657373616765732e2044656661756c747320746f20> Tj
+ET
+
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+511.375 439.326 Td
+/F3.0 10.5 Tf
+<66616c7365> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+537.625 439.326 Td
+/F1.0 10.5 Tf
+<2e> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 408.546 Td
+/F2.0 10.5 Tf
+[<416a6354> 29.7852 <61736b202869616a6329206f7074696f6e7320666f722073706563696679696e672045636c6970736520636f6d70696c6572206f7074696f6e73>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 370.95 249.4 21.78 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 370.95 249.4 21.78 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 349.17 249.4 21.78 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 349.17 249.4 21.78 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 327.39 249.4 21.78 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 327.39 249.4 21.78 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 235.215 249.4 92.175 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 235.215 249.4 92.175 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 213.435 249.4 21.78 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 213.435 249.4 21.78 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 175.875 249.4 37.56 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 175.875 249.4 37.56 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 138.315 249.4 37.56 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 138.315 249.4 37.56 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 116.535 249.4 21.78 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 116.535 249.4 21.78 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 94.755 249.4 21.78 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 94.755 249.4 21.78 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 72.975 249.4 21.78 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 72.975 249.4 21.78 re
+f
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 392.73 m
+297.64 392.73 l
+S
+[] 0 d
+1.25 w
+0.8667 0.8667 0.8667 SCN
+48.24 370.95 m
+297.64 370.95 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 392.98 m
+48.24 370.325 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 392.98 m
+297.64 370.325 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 377.766 Td
+/F2.0 10.5 Tf
+<417474726962757465> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 392.73 m
+547.04 392.73 l
+S
+[] 0 d
+1.25 w
+0.8667 0.8667 0.8667 SCN
+297.64 370.95 m
+547.04 370.95 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 392.98 m
+297.64 370.325 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 392.98 m
+547.04 370.325 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 377.766 Td
+/F2.0 10.5 Tf
+<4465736372697074696f6e> Tj
+ET
+
+0.0 0.0 0.0 scn
+1.25 w
+0.8667 0.8667 0.8667 SCN
+48.24 370.95 m
+297.64 370.95 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 349.17 m
+297.64 349.17 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 371.575 m
+48.24 348.92 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 371.575 m
+297.64 348.92 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 355.986 Td
+/F1.0 10.5 Tf
+<6e6f7761726e> Tj
+ET
+
+0.0 0.0 0.0 scn
+1.25 w
+0.8667 0.8667 0.8667 SCN
+297.64 370.95 m
+547.04 370.95 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 349.17 m
+547.04 349.17 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 371.575 m
+297.64 348.92 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 371.575 m
+547.04 348.92 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 355.986 Td
+/F1.0 10.5 Tf
+<496620747275652c2073616d6520617320> Tj
+ET
+
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+379.5895 355.986 Td
+/F3.0 10.5 Tf
+<7761726e3a6e6f6e65> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+426.8395 355.986 Td
+/F1.0 10.5 Tf
+<2e> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 349.17 m
+297.64 349.17 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 327.39 m
+297.64 327.39 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 349.42 m
+48.24 327.14 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 349.42 m
+297.64 327.14 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 334.206 Td
+/F1.0 10.5 Tf
+<6465707265636174696f6e> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 349.17 m
+547.04 349.17 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 327.39 m
+547.04 327.39 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 349.42 m
+297.64 327.14 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 349.42 m
+547.04 327.14 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 334.206 Td
+/F1.0 10.5 Tf
+<496620747275652c2073616d6520617320> Tj
+ET
+
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+379.5895 334.206 Td
+/F3.0 10.5 Tf
+<7761726e3a6465707265636174696f6e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 327.39 m
+297.64 327.39 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 235.215 m
+297.64 235.215 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 327.64 m
+48.24 234.965 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 327.64 m
+297.64 234.965 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 312.426 Td
+/F1.0 10.5 Tf
+<7761726e> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 327.39 m
+547.04 327.39 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 235.215 m
+547.04 235.215 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 327.64 m
+297.64 234.965 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 327.64 m
+547.04 234.965 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 312.426 Td
+/F1.0 10.5 Tf
+[<4f6e65206f72206d6f726520636f6d6d612d7365706172> 20.0195 <61746564207761726e696e67>] TJ
+ET
+
+
+BT
+300.64 296.646 Td
+/F1.0 10.5 Tf
+<73706563696669636174696f6e732066726f6d205b> Tj
+ET
+
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+402.847 296.646 Td
+/F3.0 10.5 Tf
+<636f6e7374727563746f724e616d65> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+300.64 283.701 Td
+/F3.0 10.5 Tf
+<7061636b61676544656661756c744d6574686f64206465707265636174696f6e2c> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+300.64 270.756 Td
+/F3.0 10.5 Tf
+<6d61736b65644361746368426c6f636b7320756e757365644c6f63616c73> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+300.64 257.811 Td
+/F3.0 10.5 Tf
+<756e75736564417267756d656e74732c20756e75736564496d706f7274732073796e746865746963416363657373> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+300.64 242.031 Td
+/F3.0 10.5 Tf
+<6173736572744964656e746966696572> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+384.64 242.031 Td
+/F1.0 10.5 Tf
+<5d2e> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 235.215 m
+297.64 235.215 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 213.435 m
+297.64 213.435 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 235.465 m
+48.24 213.185 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 235.465 m
+297.64 213.185 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 220.251 Td
+/F1.0 10.5 Tf
+<6465627567> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 235.215 m
+547.04 235.215 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 213.435 m
+547.04 213.435 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 235.465 m
+297.64 213.185 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 235.465 m
+547.04 213.185 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 220.251 Td
+/F1.0 10.5 Tf
+<496620747275652c2073616d6520617320> Tj
+ET
+
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+379.5895 220.251 Td
+/F3.0 10.5 Tf
+<64656275673a6c696e65732c766172732c736f75726365> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 213.435 m
+297.64 213.435 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 175.875 m
+297.64 175.875 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 213.685 m
+48.24 175.625 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 213.685 m
+297.64 175.625 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 198.471 Td
+/F1.0 10.5 Tf
+<64656275674c6576656c> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 213.435 m
+547.04 213.435 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 175.875 m
+547.04 175.875 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 213.685 m
+297.64 175.625 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 213.685 m
+547.04 175.625 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 198.471 Td
+/F1.0 10.5 Tf
+[<4f6e65206f72206d6f726520636f6d6d612d7365706172> 20.0195 <61746564206465627567>] TJ
+ET
+
+
+BT
+300.64 182.691 Td
+/F1.0 10.5 Tf
+<73706563696669636174696f6e732066726f6d205b> Tj
+ET
+
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+402.847 182.691 Td
+/F3.0 10.5 Tf
+<6c696e6573207661727320736f75726365> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+492.097 182.691 Td
+/F1.0 10.5 Tf
+<5d2e> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 175.875 m
+297.64 175.875 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 138.315 m
+297.64 138.315 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 176.125 m
+48.24 138.065 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 176.125 m
+297.64 138.065 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 160.911 Td
+/F1.0 10.5 Tf
+<5072657365727665416c6c4c6f63616c73> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 175.875 m
+547.04 175.875 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 138.315 m
+547.04 138.315 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 176.125 m
+297.64 138.065 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 176.125 m
+547.04 138.065 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 160.911 Td
+/F1.0 10.5 Tf
+<496620747275652c20636f64652067656e2070726573657276657320616c6c206c6f63616c207661726961626c65732028666f72> Tj
+ET
+
+
+BT
+300.64 145.131 Td
+/F1.0 10.5 Tf
+<646562756720707572706f736573292e> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 138.315 m
+297.64 138.315 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 116.535 m
+297.64 116.535 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 138.565 m
+48.24 116.285 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 138.565 m
+297.64 116.285 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 123.351 Td
+/F1.0 10.5 Tf
+<6e6f696d706f72746572726f72> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 138.315 m
+547.04 138.315 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 116.535 m
+547.04 116.535 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 138.565 m
+297.64 116.285 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 138.565 m
+547.04 116.285 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 123.351 Td
+/F1.0 10.5 Tf
+<496620747275652c20656d6974206e6f206572726f727320666f7220756e7265736f6c76656420696d706f7274732e> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 116.535 m
+297.64 116.535 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 94.755 m
+297.64 94.755 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 116.785 m
+48.24 94.505 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 116.785 m
+297.64 94.505 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 101.571 Td
+/F1.0 10.5 Tf
+<7265666572656e6365696e666f> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 116.535 m
+547.04 116.535 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 94.755 m
+547.04 94.755 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 116.785 m
+297.64 94.505 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 116.785 m
+547.04 94.505 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 101.571 Td
+/F1.0 10.5 Tf
+<496620747275652c20636f6d70757465207265666572656e636520696e666f2e> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 94.755 m
+297.64 94.755 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 72.975 m
+297.64 72.975 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 95.005 m
+48.24 72.725 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 95.005 m
+297.64 72.725 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 79.791 Td
+/F1.0 10.5 Tf
+<6c6f67> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 94.755 m
+547.04 94.755 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 72.975 m
+547.04 72.975 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 95.005 m
+297.64 72.725 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 95.005 m
+547.04 72.725 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 79.791 Td
+/F1.0 10.5 Tf
+<46696c6520746f206c6f6720636f6d70696c6572206d6573736167657320746f2e> Tj
+ET
+
+0.0 0.0 0.0 scn
+q
+0.0 0.0 0.0 scn
+0.0 0.0 0.0 SCN
+1 w
+0 J
+0 j
+[] 0 d
+/Stamp1 Do
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+535.978 14.263 Td
+/F1.0 9 Tf
+<3235> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+Q
+Q
+
+endstream
+endobj
+154 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/CropBox [0 0 595.28 841.89]
+/BleedBox [0 0 595.28 841.89]
+/TrimBox [0 0 595.28 841.89]
+/ArtBox [0 0 595.28 841.89]
+/Contents 153 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+/Font << /F2.0 22 0 R
+/F1.0 8 0 R
+/F3.0 26 0 R
+>>
+/XObject << /Stamp1 360 0 R
+>>
+>>
+>>
+endobj
+155 0 obj
+<< /Length 17995
+>>
+stream
+q
+/DeviceRGB cs
+1.0 1.0 1.0 scn
+48.24 784.11 249.4 21.78 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 784.11 249.4 21.78 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 746.55 249.4 37.56 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 746.55 249.4 37.56 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 708.99 249.4 37.56 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 708.99 249.4 37.56 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 687.21 249.4 21.78 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 687.21 249.4 21.78 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 665.43 249.4 21.78 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 665.43 249.4 21.78 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 627.87 249.4 37.56 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 627.87 249.4 37.56 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 558.75 249.4 69.12 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 558.75 249.4 69.12 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 521.19 249.4 37.56 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 521.19 249.4 37.56 re
+f
+0.0 0.0 0.0 scn
+0.5 w
+/DeviceRGB CS
+0.8667 0.8667 0.8667 SCN
+48.24 805.89 m
+297.64 805.89 l
+S
+[] 0 d
+1.25 w
+0.8667 0.8667 0.8667 SCN
+48.24 784.11 m
+297.64 784.11 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 806.14 m
+48.24 783.485 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 806.14 m
+297.64 783.485 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 790.926 Td
+/F2.0 10.5 Tf
+<417474726962757465> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 805.89 m
+547.04 805.89 l
+S
+[] 0 d
+1.25 w
+0.8667 0.8667 0.8667 SCN
+297.64 784.11 m
+547.04 784.11 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 806.14 m
+297.64 783.485 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 806.14 m
+547.04 783.485 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 790.926 Td
+/F2.0 10.5 Tf
+<4465736372697074696f6e> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 784.11 m
+297.64 784.11 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 746.55 m
+297.64 746.55 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 784.36 m
+48.24 746.3 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 784.36 m
+297.64 746.3 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 769.146 Td
+/F1.0 10.5 Tf
+<656e636f64696e67> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 784.11 m
+547.04 784.11 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 746.55 m
+547.04 746.55 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 784.36 m
+297.64 746.3 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 784.36 m
+547.04 746.3 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 769.146 Td
+/F1.0 10.5 Tf
+<44656661756c7420736f7572636520656e636f64696e6720666f726d617420287065722d66696c65> Tj
+ET
+
+
+BT
+300.64 753.366 Td
+/F1.0 10.5 Tf
+<656e636f64696e67206e6f7420737570706f7274656420696e20416e74207461736b73292e> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 746.55 m
+297.64 746.55 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 708.99 m
+297.64 708.99 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 746.8 m
+48.24 708.74 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 746.8 m
+297.64 708.74 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 731.586 Td
+/F1.0 10.5 Tf
+<70726f636565644f6e4572726f72> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 746.55 m
+547.04 746.55 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 708.99 m
+547.04 708.99 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 746.8 m
+297.64 708.74 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 746.8 m
+547.04 708.74 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 731.586 Td
+/F1.0 10.5 Tf
+[<496620747275652c206b> 20.0195 <65657020636f6d70696c696e67206166746572206572726f727320656e636f756e74657265642c>] TJ
+ET
+
+
+BT
+300.64 715.806 Td
+/F1.0 10.5 Tf
+<64756d70696e6720636c6173732066696c657320776974682070726f626c656d206d6574686f64732e> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 708.99 m
+297.64 708.99 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 687.21 m
+297.64 687.21 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 709.24 m
+48.24 686.96 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 709.24 m
+297.64 686.96 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 694.026 Td
+/F1.0 10.5 Tf
+<70726f6772657373> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 708.99 m
+547.04 708.99 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 687.21 m
+547.04 687.21 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 709.24 m
+297.64 686.96 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 709.24 m
+547.04 686.96 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 694.026 Td
+/F1.0 10.5 Tf
+<496620747275652c20656d69742070726f677265737320287265717569726573206c6f67292e> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 687.21 m
+297.64 687.21 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 665.43 m
+297.64 665.43 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 687.46 m
+48.24 665.18 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 687.46 m
+297.64 665.18 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 672.246 Td
+/F1.0 10.5 Tf
+<74696d65> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 687.21 m
+547.04 687.21 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 665.43 m
+547.04 665.43 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 687.46 m
+297.64 665.18 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 687.46 m
+547.04 665.18 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 672.246 Td
+/F1.0 10.5 Tf
+[<496620747275652c20646973706c61> 20.0195 <7920737065656420696e666f726d6174696f6e2e>] TJ
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 665.43 m
+297.64 665.43 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 627.87 m
+297.64 627.87 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 665.68 m
+48.24 627.62 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 665.68 m
+297.64 627.62 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 650.466 Td
+/F1.0 10.5 Tf
+<746172676574> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 665.43 m
+547.04 665.43 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 627.87 m
+547.04 627.87 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 665.68 m
+297.64 627.62 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 665.68 m
+547.04 627.62 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 650.466 Td
+/F1.0 10.5 Tf
+<537065636966792074617267657420636c6173732066696c6520666f726d6174206173206f6e65206f66205b> Tj
+ET
+
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+505.033 650.466 Td
+/F3.0 10.5 Tf
+<312e31> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+300.64 634.686 Td
+/F3.0 10.5 Tf
+<312e32> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+316.39 634.686 Td
+/F1.0 10.5 Tf
+<5d2e2044656661756c747320746f20312e3120636c6173732066696c652e> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 627.87 m
+297.64 627.87 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 558.75 m
+297.64 558.75 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 628.12 m
+48.24 558.5 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 628.12 m
+297.64 558.5 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 612.906 Td
+/F1.0 10.5 Tf
+<736f75726365> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 627.87 m
+547.04 627.87 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 558.75 m
+547.04 558.75 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 628.12 m
+297.64 558.5 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 628.12 m
+547.04 558.5 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 612.906 Td
+/F1.0 10.5 Tf
+<53657420736f7572636520636f6d706c69616e6365206c6576656c20746f206f6e65206f66205b> Tj
+ET
+
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+491.236 612.906 Td
+/F3.0 10.5 Tf
+<312e3320312e34> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+300.64 597.126 Td
+/F3.0 10.5 Tf
+<312e35> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+316.39 597.126 Td
+/F1.0 10.5 Tf
+<5d202864656661756c7420697320312e34292e20312e3320696d706c696573202d736f7572636520312e3320616e64> Tj
+ET
+
+
+BT
+300.64 581.346 Td
+/F1.0 10.5 Tf
+<2d74617267657420312e312e20312e3420696d706c696573202d736f7572636520312e3420616e64202d74617267657420312e322e> Tj
+ET
+
+
+BT
+300.64 565.566 Td
+/F1.0 10.5 Tf
+<312e3520696d706c696573202d736f7572636520312e3520616e64202d74617267657420312e352e> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 558.75 m
+297.64 558.75 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 521.19 m
+297.64 521.19 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 559.0 m
+48.24 520.94 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 559.0 m
+297.64 520.94 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 543.786 Td
+/F1.0 10.5 Tf
+<736f75726365> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 558.75 m
+547.04 558.75 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 521.19 m
+547.04 521.19 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 559.0 m
+297.64 520.94 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 559.0 m
+547.04 520.94 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 543.786 Td
+/F1.0 10.5 Tf
+<53657420736f7572636520617373657274696f6e206d6f646520746f206f6e65206f66205b> Tj
+ET
+
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+483.613 543.786 Td
+/F3.0 10.5 Tf
+<312e3320312e34> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+520.363 543.786 Td
+/F1.0 10.5 Tf
+<5d2e> Tj
+ET
+
+
+BT
+300.64 528.006 Td
+/F1.0 10.5 Tf
+<44656661756c7420646570656e6473206f6e20636f6d706c69616e6365206d6f64652e> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 490.506 Td
+/F2.0 13 Tf
+[<342e332e322e20416a6354> 29.7852 <61736b206d61746368696e6720706172> 20.0195 <616d657465727320737065636966696564206173206e657374656420656c656d656e7473>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.0232 Tw
+
+BT
+48.24 463.946 Td
+/F1.0 10.5 Tf
+<54686973207461736b20666f726d7320616e20696d706c696369742046696c6553657420616e6420737570706f72747320616c6c2061747472696275746573206f6620> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.0232 Tw
+
+BT
+379.0631 463.946 Td
+/F3.0 10.5 Tf
+<3c66696c657365743e> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.0232 Tw
+
+BT
+426.3131 463.946 Td
+/F1.0 10.5 Tf
+<2028646972206265636f6d65732073726364697229206173> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.6513 Tw
+
+BT
+48.24 448.166 Td
+/F1.0 10.5 Tf
+<77656c6c20617320746865206e657374656420> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.6513 Tw
+
+BT
+146.3738 448.166 Td
+/F3.0 10.5 Tf
+<3c696e636c7564653e> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.6513 Tw
+
+BT
+193.6238 448.166 Td
+/F1.0 10.5 Tf
+<2c20> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.6513 Tw
+
+BT
+200.6196 448.166 Td
+/F3.0 10.5 Tf
+<3c6578636c7564653e> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.6513 Tw
+
+BT
+247.8696 448.166 Td
+/F1.0 10.5 Tf
+<2c20616e6420> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.6513 Tw
+
+BT
+278.3462 448.166 Td
+/F3.0 10.5 Tf
+<3c7061747465726e7365743e> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.6513 Tw
+
+BT
+341.3463 448.166 Td
+/F1.0 10.5 Tf
+<20656c656d656e74732e2054686573652063616e206265207573656420746f2073706563696679> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.2035 Tw
+
+BT
+48.24 432.386 Td
+/F1.0 10.5 Tf
+<736f757263652066696c65732e20486f77657665722c2069742069732062657474657220746f2075736520> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.2035 Tw
+
+BT
+248.4653 432.386 Td
+/F3.0 10.5 Tf
+<736f75726365726f6f7473> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.2035 Tw
+
+BT
+306.2153 432.386 Td
+/F1.0 10.5 Tf
+<20746f207370656369667920736f75726365206469726563746f7269657320756e6c657373207573696e672066696c74657273> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 416.606 Td
+/F1.0 10.5 Tf
+<746f206578636c75646520736f6d652066696c65732066726f6d20636f6d70696c6174696f6e2e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 382.106 Td
+/F2.0 13 Tf
+[<342e332e332e20416a6354> 29.7852 <61736b20506174682d6c696b> 20.0195 <652053747275637475726573>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.7593 Tw
+
+BT
+48.24 355.546 Td
+/F1.0 10.5 Tf
+[<536f6d6520706172> 20.0195 <616d65746572732061726520706174682d6c696b> 20.0195 <65207374727563747572657320636f6e7461696e696e67206f6e65206f72206d6f726520656c656d656e74733b2074686573652061726520>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.7593 Tw
+
+BT
+486.665 355.546 Td
+/F3.0 10.5 Tf
+<736f75726365726f6f7473> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.7593 Tw
+
+BT
+544.415 355.546 Td
+/F1.0 10.5 Tf
+<2c> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.0918 Tw
+
+BT
+48.24 339.766 Td
+/F3.0 10.5 Tf
+<61726766696c6573> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.0918 Tw
+
+BT
+90.24 339.766 Td
+/F1.0 10.5 Tf
+<2c20> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.0918 Tw
+
+BT
+96.6763 339.766 Td
+/F3.0 10.5 Tf
+<696e6a617273> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.0918 Tw
+
+BT
+128.1763 339.766 Td
+/F1.0 10.5 Tf
+<2c20> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.0918 Tw
+
+BT
+134.6125 339.766 Td
+/F3.0 10.5 Tf
+<696e70617468> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.0918 Tw
+
+BT
+166.1125 339.766 Td
+/F1.0 10.5 Tf
+<2c20> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.0918 Tw
+
+BT
+172.5488 339.766 Td
+/F3.0 10.5 Tf
+<636c61737370617468> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.0918 Tw
+
+BT
+219.7988 339.766 Td
+/F1.0 10.5 Tf
+<2c20> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.0918 Tw
+
+BT
+226.2351 339.766 Td
+/F3.0 10.5 Tf
+<626f6f74636c61737370617468> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.0918 Tw
+
+BT
+294.4851 339.766 Td
+/F1.0 10.5 Tf
+<2c20> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.0918 Tw
+
+BT
+300.9214 339.766 Td
+/F3.0 10.5 Tf
+<666f726b636c61737370617468> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.0918 Tw
+
+BT
+369.1714 339.766 Td
+/F1.0 10.5 Tf
+<2c20616e6420> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.0918 Tw
+
+BT
+398.5289 339.766 Td
+/F3.0 10.5 Tf
+<61737065637470617468> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.0918 Tw
+
+BT
+451.0289 339.766 Td
+/F1.0 10.5 Tf
+<2e20496e20616c6c2063617365732c207468657365> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 323.986 Td
+/F1.0 10.5 Tf
+[<6d61> 20.0195 <7920626520737065636966696564206173206e657374656420656c656d656e74732c20736f6d657468696e67206c696b> 20.0195 <6520746869733a>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.9608 0.9608 0.9608 scn
+52.24 308.17 m
+543.04 308.17 l
+545.2491 308.17 547.04 306.3791 547.04 304.17 c
+547.04 172.25 l
+547.04 170.0409 545.2491 168.25 543.04 168.25 c
+52.24 168.25 l
+50.0309 168.25 48.24 170.0409 48.24 172.25 c
+48.24 304.17 l
+48.24 306.3791 50.0309 308.17 52.24 308.17 c
+h
+f
+0.8 0.8 0.8 SCN
+0.75 w
+52.24 308.17 m
+543.04 308.17 l
+545.2491 308.17 547.04 306.3791 547.04 304.17 c
+547.04 172.25 l
+547.04 170.0409 545.2491 168.25 543.04 168.25 c
+52.24 168.25 l
+50.0309 168.25 48.24 170.0409 48.24 172.25 c
+48.24 304.17 l
+48.24 306.3791 50.0309 308.17 52.24 308.17 c
+h
+S
+Q
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 285.345 Td
+/F3.0 11 Tf
+<3c69616a63207b617474726962757465732e2e7d202f3e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 270.605 Td
+/F3.0 11 Tf
+<ca2020203c7b6e616d657d3e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 255.865 Td
+/F3.0 11 Tf
+<ca202020202020203c70617468656c656d656e7420706174683d227b66697273742d6c6f636174696f6e7d222f3e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 241.125 Td
+/F3.0 11 Tf
+<ca202020202020203c70617468656c656d656e7420706174683d227b7365636f6e642d6c6f636174696f6e7d222f3e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 226.385 Td
+/F3.0 11 Tf
+<ca202020202020202e2e2e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 211.645 Td
+/F3.0 11 Tf
+<ca2020203c7b6e616d657d3e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 196.905 Td
+/F3.0 11 Tf
+<ca2020202e2e2e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 182.165 Td
+/F3.0 11 Tf
+<3c2f69616a633e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.8336 Tw
+
+BT
+48.24 144.286 Td
+/F1.0 10.5 Tf
+[<41732077697468206f7468657220506174682d6c696b> 20.0195 <6520737472756374757265732c2074686579206d61> 20.0195 <7920626520646566696e656420656c7365776865726520616e6420737065636966696564207573696e6720746865207265666964>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 128.506 Td
+/F1.0 10.5 Tf
+<6174747269627574653a> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.0 0.0 0.0 scn
+0.0 0.0 0.0 SCN
+1 w
+0 J
+0 j
+[] 0 d
+/Stamp2 Do
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+49.24 14.263 Td
+/F1.0 9 Tf
+<3236> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+Q
+Q
+
+endstream
+endobj
+156 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/CropBox [0 0 595.28 841.89]
+/BleedBox [0 0 595.28 841.89]
+/TrimBox [0 0 595.28 841.89]
+/ArtBox [0 0 595.28 841.89]
+/Contents 155 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+/Font << /F2.0 22 0 R
+/F1.0 8 0 R
+/F3.0 26 0 R
+>>
+/XObject << /Stamp2 361 0 R
+>>
+>>
+>>
+endobj
+157 0 obj
+[156 0 R /XYZ 0 509.19 null]
+endobj
+158 0 obj
+[156 0 R /XYZ 0 400.79 null]
+endobj
+159 0 obj
+<< /Length 10122
+>>
+stream
+q
+q
+/DeviceRGB cs
+0.9608 0.9608 0.9608 scn
+52.24 805.89 m
+543.04 805.89 l
+545.2491 805.89 547.04 804.0991 547.04 801.89 c
+547.04 655.23 l
+547.04 653.0209 545.2491 651.23 543.04 651.23 c
+52.24 651.23 l
+50.0309 651.23 48.24 653.0209 48.24 655.23 c
+48.24 801.89 l
+48.24 804.0991 50.0309 805.89 52.24 805.89 c
+h
+f
+/DeviceRGB CS
+0.8 0.8 0.8 SCN
+0.75 w
+52.24 805.89 m
+543.04 805.89 l
+545.2491 805.89 547.04 804.0991 547.04 801.89 c
+547.04 655.23 l
+547.04 653.0209 545.2491 651.23 543.04 651.23 c
+52.24 651.23 l
+50.0309 651.23 48.24 653.0209 48.24 655.23 c
+48.24 801.89 l
+48.24 804.0991 50.0309 805.89 52.24 805.89 c
+h
+S
+Q
+/DeviceRGB cs
+0.2 0.2 0.2 scn
+/DeviceRGB CS
+0.2 0.2 0.2 SCN
+
+BT
+59.24 783.065 Td
+/F3.0 11 Tf
+<3c706174682069643d226173706563742e70617468223e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 768.325 Td
+/F3.0 11 Tf
+<ca2020203c70617468656c656d656e7420706174683d22247b686f6d657d2f6c69622f706572736973742e6a6172222f3e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 753.585 Td
+/F3.0 11 Tf
+<ca2020203c70617468656c656d656e7420706174683d22247b686f6d657d2f6c69622f74726163652e6a6172222f3e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 738.845 Td
+/F3.0 11 Tf
+<3c2f706174683e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 724.105 Td
+/F3.0 11 Tf
+<2e2e2e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 709.365 Td
+/F3.0 11 Tf
+<3c69616a63207b617474726962757465732e2e7d202f3e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 694.625 Td
+/F3.0 11 Tf
+<ca2020203c617370656374706174682072656669643d226173706563742e70617468222f3e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 679.885 Td
+/F3.0 11 Tf
+<ca2020202e2e2e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 665.145 Td
+/F3.0 11 Tf
+<3c2f69616a633e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 627.266 Td
+/F1.0 10.5 Tf
+<546865207461736b20616c736f20737570706f72747320616e2061747472696275746520> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+224.0415 627.266 Td
+/F3.0 10.5 Tf
+<7b6e616d657d726566> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+271.2915 627.266 Td
+/F1.0 10.5 Tf
+[<20666f722065616368207375636820706172> 20.0195 <616d657465722e20452e672e2c20666f7220>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+442.0948 627.266 Td
+/F3.0 10.5 Tf
+<61737065637470617468> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+494.5948 627.266 Td
+/F1.0 10.5 Tf
+<3a> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.9608 0.9608 0.9608 scn
+52.24 611.45 m
+543.04 611.45 l
+545.2491 611.45 547.04 609.6591 547.04 607.45 c
+547.04 578.71 l
+547.04 576.5009 545.2491 574.71 543.04 574.71 c
+52.24 574.71 l
+50.0309 574.71 48.24 576.5009 48.24 578.71 c
+48.24 607.45 l
+48.24 609.6591 50.0309 611.45 52.24 611.45 c
+h
+f
+0.8 0.8 0.8 SCN
+0.75 w
+52.24 611.45 m
+543.04 611.45 l
+545.2491 611.45 547.04 609.6591 547.04 607.45 c
+547.04 578.71 l
+547.04 576.5009 545.2491 574.71 543.04 574.71 c
+52.24 574.71 l
+50.0309 574.71 48.24 576.5009 48.24 578.71 c
+48.24 607.45 l
+48.24 609.6591 50.0309 611.45 52.24 611.45 c
+h
+S
+Q
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 588.625 Td
+/F3.0 11 Tf
+<3c69616a63207b617474726962757465732e2e7d20617370656374706174687265663d226173706563742e70617468222f3e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 544.026 Td
+/F2.0 13 Tf
+<342e332e342e2053616d706c65206f662069616a63207461736b> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 517.466 Td
+/F1.0 10.5 Tf
+<41206d696e696d616c206275696c642073637269707420646566696e657320746865207461736b20616e642072756e732069742c2073706563696679696e672074686520736f75726365733a> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.9608 0.9608 0.9608 scn
+52.24 501.65 m
+543.04 501.65 l
+545.2491 501.65 547.04 499.8591 547.04 497.65 c
+547.04 292.03 l
+547.04 289.8209 545.2491 288.03 543.04 288.03 c
+52.24 288.03 l
+50.0309 288.03 48.24 289.8209 48.24 292.03 c
+48.24 497.65 l
+48.24 499.8591 50.0309 501.65 52.24 501.65 c
+h
+f
+0.8 0.8 0.8 SCN
+0.75 w
+52.24 501.65 m
+543.04 501.65 l
+545.2491 501.65 547.04 499.8591 547.04 497.65 c
+547.04 292.03 l
+547.04 289.8209 545.2491 288.03 543.04 288.03 c
+52.24 288.03 l
+50.0309 288.03 48.24 289.8209 48.24 292.03 c
+48.24 497.65 l
+48.24 499.8591 50.0309 501.65 52.24 501.65 c
+h
+S
+Q
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 478.825 Td
+/F3.0 11 Tf
+<3c70726f6a656374206e616d653d2273696d706c652d6578616d706c65222064656661756c743d22636f6d70696c6522203e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 464.085 Td
+/F3.0 11 Tf
+<ca203c7461736b646566> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 449.345 Td
+/F3.0 11 Tf
+<ca20202020207265736f757263653d226f72672f6173706563746a2f746f6f6c732f616e742f7461736b646566732f6173706563746a5461736b646566732e70726f70657274696573223e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 434.605 Td
+/F3.0 11 Tf
+<ca2020203c636c617373706174683e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 419.865 Td
+/F3.0 11 Tf
+<ca20202020203c70617468656c656d656e74206c6f636174696f6e3d22247b686f6d652e6469727d2f746f6f6c732f6173706563746a2f6c69622f6173706563746a746f6f6c732e6a6172222f3e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 405.125 Td
+/F3.0 11 Tf
+<ca2020203c2f636c617373706174683e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 390.385 Td
+/F3.0 11 Tf
+<ca203c2f7461736b6465663e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 360.905 Td
+/F3.0 11 Tf
+<ca203c746172676574206e616d653d22636f6d70696c6522203e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 346.165 Td
+/F3.0 11 Tf
+<ca2020203c69616a6320736f75726365726f6f74733d22247b686f6d652e6469727d2f65632f70726f6a6563742f73726322> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 331.425 Td
+/F3.0 11 Tf
+<ca20202020202020636c617373706174683d22247b686f6d652e6469727d2f746f6f6c732f6173706563746a2f6c69622f6173706563746a72742e6a6172222f3e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 316.685 Td
+/F3.0 11 Tf
+<ca203c2f7461726765743e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 301.945 Td
+/F3.0 11 Tf
+<3c2f70726f6a6563743e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 264.066 Td
+/F1.0 10.5 Tf
+<42656c6f77206973207363726970742077697468206d6f73742065766572797468696e6720696e2069742e2054686520636f6d70696c652070726f63657373c9> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+52.6765 236.286 Td
+/F1.0 10.5 Tf
+<312e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+66.24 236.286 Td
+/F1.0 10.5 Tf
+<52756e7320696e20696e6372656d656e74616c206d6f64652c207265636f6d70696c696e67207768656e20746865207573657220686974732072657475726e3b> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+52.6765 214.506 Td
+/F1.0 10.5 Tf
+<322e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+66.24 214.506 Td
+/F1.0 10.5 Tf
+<526561647320616c6c2074686520736f757263652066696c65732066726f6d2074776f206469726563746f726965733b> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+52.6765 192.726 Td
+/F1.0 10.5 Tf
+<332e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+66.24 192.726 Td
+/F1.0 10.5 Tf
+<52656164732062696e617279202e636c6173732066696c65732066726f6d20696e707574206a617220616e64206469726563746f72793b> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+52.6765 170.946 Td
+/F1.0 10.5 Tf
+<342e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+66.24 170.946 Td
+/F1.0 10.5 Tf
+[<5573657320612062696e61727920617370656374206c696272> 20.0195 <61727920666f722070657273697374656e63653b>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+52.6765 149.166 Td
+/F1.0 10.5 Tf
+<352e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+66.24 149.166 Td
+/F1.0 10.5 Tf
+<4f75747075747320746f20616e206170706c69636174696f6e206a61723b20616e64> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+52.6765 127.386 Td
+/F1.0 10.5 Tf
+<362e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+3.4145 Tw
+
+BT
+66.24 127.386 Td
+/F1.0 10.5 Tf
+<436f70696573207265736f75726365732066726f6d2074686520736f75726365206469726563746f7269657320616e642062696e61727920696e707574206a617220616e64206469726563746f7269657320746f20746865> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+66.24 111.606 Td
+/F1.0 10.5 Tf
+<6170706c69636174696f6e206a61722e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.3624 Tw
+
+BT
+48.24 83.826 Td
+/F1.0 10.5 Tf
+<5768656e207468697320746172676574206973206275696c742c2074686520636f6d70696c65722077696c6c206275696c64206f6e636520616e64207468656e207761697420666f7220696e7075742066726f6d2074686520757365722e> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 68.046 Td
+/F1.0 10.5 Tf
+<4d6573736167657320617265207072696e74656420617320757375616c2e205768656e2074686520757365722068617320717569742c207468656e20746869732072756e7320746865206170706c69636174696f6e2e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.0 0.0 0.0 scn
+0.0 0.0 0.0 SCN
+1 w
+0 J
+0 j
+[] 0 d
+/Stamp1 Do
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+535.978 14.263 Td
+/F1.0 9 Tf
+<3237> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+Q
+Q
+
+endstream
+endobj
+160 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/CropBox [0 0 595.28 841.89]
+/BleedBox [0 0 595.28 841.89]
+/TrimBox [0 0 595.28 841.89]
+/ArtBox [0 0 595.28 841.89]
+/Contents 159 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+/Font << /F3.0 26 0 R
+/F1.0 8 0 R
+/F2.0 22 0 R
+>>
+/XObject << /Stamp1 360 0 R
+>>
+>>
+>>
+endobj
+161 0 obj
+[160 0 R /XYZ 0 562.71 null]
+endobj
+162 0 obj
+<< /Length 7421
+>>
+stream
+q
+q
+/DeviceRGB cs
+0.9608 0.9608 0.9608 scn
+52.24 805.89 m
+543.04 805.89 l
+545.2491 805.89 547.04 804.0991 547.04 801.89 c
+547.04 360.43 l
+547.04 358.2209 545.2491 356.43 543.04 356.43 c
+52.24 356.43 l
+50.0309 356.43 48.24 358.2209 48.24 360.43 c
+48.24 801.89 l
+48.24 804.0991 50.0309 805.89 52.24 805.89 c
+h
+f
+/DeviceRGB CS
+0.8 0.8 0.8 SCN
+0.75 w
+52.24 805.89 m
+543.04 805.89 l
+545.2491 805.89 547.04 804.0991 547.04 801.89 c
+547.04 360.43 l
+547.04 358.2209 545.2491 356.43 543.04 356.43 c
+52.24 356.43 l
+50.0309 356.43 48.24 358.2209 48.24 360.43 c
+48.24 801.89 l
+48.24 804.0991 50.0309 805.89 52.24 805.89 c
+h
+S
+Q
+/DeviceRGB cs
+0.2 0.2 0.2 scn
+/DeviceRGB CS
+0.2 0.2 0.2 SCN
+
+BT
+59.24 783.065 Td
+/F3.0 11 Tf
+<3c746172676574206e616d653d226275696c642d7465737422203e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 768.325 Td
+/F3.0 11 Tf
+<ca203c69616a63206f75746a61723d22247b686f6d652e6469727d2f6f75747075742f6170706c69636174696f6e2e6a617222> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 753.585 Td
+/F3.0 11 Tf
+<ca202020202020202020736f75726365526f6f74436f707946696c7465723d222a2a2f4356532f2a2c2a2a2f2a2e6a61766122> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 738.845 Td
+/F3.0 11 Tf
+<ca202020202020202020696e70617468446972436f707946696c7465723d222a2a2f4356532f2a2c2a2a2f2a2e6a6176612c2a2a2f2a2e636c61737322> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 724.105 Td
+/F3.0 11 Tf
+<ca202020202020202020696e6372656d656e74616c3d227472756522203e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 709.365 Td
+/F3.0 11 Tf
+<ca2020203c736f75726365726f6f74733e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 694.625 Td
+/F3.0 11 Tf
+<ca20202020203c70617468656c656d656e74206c6f636174696f6e3d22247b686f6d652e6469727d2f65632f70726f6a6563742f737263222f3e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 679.885 Td
+/F3.0 11 Tf
+<ca20202020203c70617468656c656d656e74206c6f636174696f6e3d22247b686f6d652e6469727d2f65632f70726f6a6563742f74657374737263222f3e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 665.145 Td
+/F3.0 11 Tf
+<ca2020203c2f736f75726365726f6f74733e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 650.405 Td
+/F3.0 11 Tf
+<ca2020203c696e706174683e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 635.665 Td
+/F3.0 11 Tf
+<ca20202020203c70617468656c656d656e74206c6f636174696f6e3d22247b686f6d652e6469727d2f6275696c642f6d6f64756c652e6a6172222f3e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 620.925 Td
+/F3.0 11 Tf
+<ca20202020203c70617468656c656d656e74206c6f636174696f6e3d22247b686f6d652e6469727d2f6275696c642f62696e6172792d696e707574222f3e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 606.185 Td
+/F3.0 11 Tf
+<ca2020203c2f696e706174683e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 591.445 Td
+/F3.0 11 Tf
+<ca2020203c617370656374706174683e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 576.705 Td
+/F3.0 11 Tf
+<ca20202020203c70617468656c656d656e74206c6f636174696f6e3d22247b686f6d652e6469727d2f65632f696e742f706572736973742e6a6172222f3e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 561.965 Td
+/F3.0 11 Tf
+<ca2020203c2f617370656374706174683e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 547.225 Td
+/F3.0 11 Tf
+<ca2020203c636c617373706174683e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 532.485 Td
+/F3.0 11 Tf
+<ca20202020203c70617468656c656d656e74206c6f636174696f6e3d22247b686f6d652e6469727d2f746f6f6c732f6173706563746a2f6c69622f6173706563746a72742e6a6172222f3e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 517.745 Td
+/F3.0 11 Tf
+<ca2020203c2f636c617373706174683e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 503.005 Td
+/F3.0 11 Tf
+<ca203c2f69616a633e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 473.525 Td
+/F3.0 11 Tf
+<ca203c6a61766120636c6173736e616d653d226f72672e736d6172742e6170702e4d61696e223e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 458.785 Td
+/F3.0 11 Tf
+<ca2020203c636c617373706174683e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 444.045 Td
+/F3.0 11 Tf
+<ca20202020203c70617468656c656d656e74206c6f636174696f6e3d22247b686f6d652e6469727d2f746f6f6c732f6173706563746a2f6c69622f6173706563746a72742e6a6172222f3e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 429.305 Td
+/F3.0 11 Tf
+<ca20202020203c70617468656c656d656e74206c6f636174696f6e3d22247b686f6d652e6469727d2f65632f696e742f706572736973742e6a6172222f3e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 414.565 Td
+/F3.0 11 Tf
+<ca20202020203c70617468656c656d656e74206c6f636174696f6e3d22247b686f6d652e6469727d2f6f75747075742f6170706c69636174696f6e2e6a6172222f3e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 399.825 Td
+/F3.0 11 Tf
+<ca2020203c2f636c617373706174683e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 385.085 Td
+/F3.0 11 Tf
+<ca203c2f6a6176613e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 370.345 Td
+/F3.0 11 Tf
+<3c2f7461726765743e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 332.466 Td
+/F1.0 10.5 Tf
+[<46> 40.0391 <6f7220616e206578616d706c65206f662061206275696c64207363726970742c20736565202e2e2f6578616d706c65732f6275696c642e786d6c2e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 297.966 Td
+/F2.0 13 Tf
+[<342e332e352e2041> 60.0586 <766f6964696e6720636c65616e20636f6d70696c6573>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.3569 Tw
+
+BT
+48.24 271.406 Td
+/F1.0 10.5 Tf
+[<556e6c696b> 20.0195 <65206a617661632c2074686520616a6320636f6d70696c657220616c7761> 20.0195 <79732070726f63657373657320616c6c20696e7075742062656361757365206e657720617370656374732063616e206170706c7920746f2075706461746564>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.0499 Tw
+
+BT
+48.24 255.626 Td
+/F1.0 10.5 Tf
+<636c617373657320616e6420766963652d76657273612e20486f77657665722c20696e207468652063617365207768657265206e6f2066696c65732068617665206265656e20757064617465642c207468657265206973206e6f20726561736f6e20746f> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.2581 Tw
+
+BT
+48.24 239.846 Td
+/F1.0 10.5 Tf
+[<7265636f6d70696c6520736f75726365732e204f6e65207761> 20.0195 <7920746f20696d706c656d656e742074686174206973207769746820616e206578706c6963697420646570656e64656e637920636865636b207573696e6720746865>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 224.066 Td
+/F1.0 10.5 Tf
+<7570746f64617465207461736b3a> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.0 0.0 0.0 scn
+0.0 0.0 0.0 SCN
+1 w
+0 J
+0 j
+[] 0 d
+/Stamp2 Do
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+49.24 14.263 Td
+/F1.0 9 Tf
+<3238> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+Q
+Q
+
+endstream
+endobj
+163 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/CropBox [0 0 595.28 841.89]
+/BleedBox [0 0 595.28 841.89]
+/TrimBox [0 0 595.28 841.89]
+/ArtBox [0 0 595.28 841.89]
+/Contents 162 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+/Font << /F3.0 26 0 R
+/F1.0 8 0 R
+/F2.0 22 0 R
+>>
+/XObject << /Stamp2 361 0 R
+>>
+>>
+>>
+endobj
+164 0 obj
+[163 0 R /XYZ 0 316.65 null]
+endobj
+165 0 obj
+<< /Length 11307
+>>
+stream
+q
+q
+/DeviceRGB cs
+0.9608 0.9608 0.9608 scn
+52.24 805.89 m
+543.04 805.89 l
+545.2491 805.89 547.04 804.0991 547.04 801.89 c
+547.04 625.75 l
+547.04 623.5409 545.2491 621.75 543.04 621.75 c
+52.24 621.75 l
+50.0309 621.75 48.24 623.5409 48.24 625.75 c
+48.24 801.89 l
+48.24 804.0991 50.0309 805.89 52.24 805.89 c
+h
+f
+/DeviceRGB CS
+0.8 0.8 0.8 SCN
+0.75 w
+52.24 805.89 m
+543.04 805.89 l
+545.2491 805.89 547.04 804.0991 547.04 801.89 c
+547.04 625.75 l
+547.04 623.5409 545.2491 621.75 543.04 621.75 c
+52.24 621.75 l
+50.0309 621.75 48.24 623.5409 48.24 625.75 c
+48.24 801.89 l
+48.24 804.0991 50.0309 805.89 52.24 805.89 c
+h
+S
+Q
+/DeviceRGB cs
+0.2 0.2 0.2 scn
+/DeviceRGB CS
+0.2 0.2 0.2 SCN
+
+BT
+59.24 783.065 Td
+/F3.0 11 Tf
+<3c746172676574206e616d653d22636865636b2e617370656374732e6a6172223e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 768.325 Td
+/F3.0 11 Tf
+<ca203c7570746f646174652070726f70657274793d226275696c642e756e6e656365737361727922> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 753.585 Td
+/F3.0 11 Tf
+<ca202020202074617267657466696c653d22247b617370656374732e6d6f64756c652d6a61727d22203e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 738.845 Td
+/F3.0 11 Tf
+<ca202020203c73726366696c6573206469723d22247b737263317d2220696e636c756465733d222a2a2f2a2e616a222f3e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 724.105 Td
+/F3.0 11 Tf
+<ca202020203c73726366696c6573206469723d22247b737263327d2f2220696e636c756465733d222a2a2f2a2e616a222f3e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 709.365 Td
+/F3.0 11 Tf
+<ca203c2f7570746f646174653e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 694.625 Td
+/F3.0 11 Tf
+<3c2f7461726765743e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 665.145 Td
+/F3.0 11 Tf
+<3c746172676574206e616d653d22636f6d70696c652e617370656374732220646570656e64733d22707265706172652c636865636b2e617370656374732e6a617222> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 650.405 Td
+/F3.0 11 Tf
+<ca20202020202020756e6c6573733d226275696c642e756e6e6563657373617279223e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 635.665 Td
+/F3.0 11 Tf
+<ca20203c69616a63202e2e2e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.6558 Tw
+
+BT
+48.24 597.786 Td
+/F1.0 10.5 Tf
+<5768656e207573696e67207468697320746563686e697175652c206265206361726566756c20746f2076657269667920746861742062696e61727920696e707574206a61727320617265207468656d73656c7665732075702d746f2d64617465> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 582.006 Td
+/F1.0 10.5 Tf
+[<6166746572207468657920776f756c642068617665206265656e206d6f6469666965642062> 20.0195 <7920616e> 20.0195 <79206275696c6420636f6d6d616e64732e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 547.506 Td
+/F2.0 13 Tf
+[<342e332e362e2050726f6772> 20.0195 <616d6d61746963616c6c792068616e646c696e6720636f6d70696c6572206d65737361676573>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.4825 Tw
+
+BT
+48.24 520.946 Td
+/F1.0 10.5 Tf
+[<5573657273206d61> 20.0195 <7920737065636966792061206d65737361676520686f6c64657220746f2077686963682074686520636f6d70696c65722077696c6c207061737320616c6c206d65737361676573206173207468657920617265>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.1265 Tw
+
+BT
+48.24 505.166 Td
+/F1.0 10.5 Tf
+[<67656e6572> 20.0195 <617465642e20546869732077696c6c206f7665727269646520616c6c206f6620746865206e6f726d616c206d657373616765207072696e74696e672c2062757420646f6573206e6f742070726576656e7420746865207461736b2066726f6d>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.1004 Tw
+
+BT
+48.24 489.386 Td
+/F1.0 10.5 Tf
+<6661696c696e6720696620657863657074696f6e732077657265207468726f776e206f72206966206661696c6f6e6572726f72206973207472756520616e642074686520636f6d70696c6572206465746563746564206572726f727320696e20746865> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 473.606 Td
+/F1.0 10.5 Tf
+<736f75726365732e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.5797 Tw
+
+BT
+48.24 445.826 Td
+/F1.0 10.5 Tf
+[<48616e646c696e67206d657373616765732070726f6772> 20.0195 <616d6d61746963616c6c7920636f756c642062652075736566756c207768656e207573696e672074686520636f6d70696c657220746f2076657269667920636f64652e204966>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.7458 Tw
+
+BT
+48.24 430.046 Td
+/F1.0 10.5 Tf
+<6173706563747320636f6e73697374206f66206465636c617265205b6572726f727c7761726e696e675d2c207468656e2074686520636f6d70696c65722063616e2061637420746f2064657465637420696e76617269616e747320696e20746865> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.2351 Tw
+
+BT
+48.24 414.266 Td
+/F1.0 10.5 Tf
+[<636f6465206265696e672070726f6365737365642e2046> 40.0391 <6f7220636f646520746f20636f6d7061726520657870656374656420616e642061637475616c206d657373616765732c2073656520746865204173706563744a2074657374696e67>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 398.486 Td
+/F1.0 10.5 Tf
+<6d6f64756c6520287768696368206973206e6f7420696e636c7564656420696e207468652062696e61727920646973747269627574696f6e292e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 358.646 Td
+/F2.0 18 Tf
+[<342e342e20416a633131436f6d70696c657241> 20.0195 <64617074657220286a6176616329>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.3467 Tw
+
+BT
+48.24 330.626 Td
+/F1.0 10.5 Tf
+[<5468697320436f6d70696c657241> 20.0195 <6461707465722063616e206265207573656420696e206a61766163207461736b2063616c6c732062> 20.0195 <792073657474696e672074686520>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.3467 Tw
+
+BT
+398.4999 330.626 Td
+/F3.0 10.5 Tf
+<6275696c642e636f6d70696c6572> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.3467 Tw
+
+BT
+471.9999 330.626 Td
+/F1.0 10.5 Tf
+[<2070726f7065727479> 89.8438 <2e2054686973>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.4461 Tw
+
+BT
+48.24 314.846 Td
+/F1.0 10.5 Tf
+<656e61626c657320757365727320746f20746f20656173696c7920737769746368206265747765656e20746865204a6176616320616e64204173706563744a20636f6d70696c6572732e20486f77657665722c2062656361757365207468657265> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.2644 Tw
+
+BT
+48.24 299.066 Td
+/F1.0 10.5 Tf
+<61726520646966666572656e63657320696e20736f757263652066696c652068616e646c696e67206265747765656e20746865204a61766163207461736b20616e642074686520616a6320636f6d70696c65722c206e6f7420616c6c204a61766163> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.46 Tw
+
+BT
+48.24 283.286 Td
+/F1.0 10.5 Tf
+[<7461736b20696e766f636174696f6e732063616e206265207475726e6564206f76657220746f2069616a632e20486f77657665722c20616a632063616e20636f6d70696c6520616e> 20.0195 <797468696e672074686174204a617661632063616e2c20736f206974>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.5111 Tw
+
+BT
+48.24 267.506 Td
+/F1.0 10.5 Tf
+[<73686f756c6420626520706f737369626c6520666f7220616e> 20.0195 <7920676976656e20636f6d70696c65206a6f6220746f207265737461746520746865204a61766163207461736b20696e2061207761> 20.0195 <7920746861742063616e2062652068616e646c6564>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 251.726 Td
+/F1.0 10.5 Tf
+[<62> 20.0195 <792069616a632f616a632e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 217.226 Td
+/F2.0 13 Tf
+<342e342e312e2053616d706c65206f6620636f6d70696c65722061646170746572> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+4.7303 Tw
+
+BT
+48.24 190.666 Td
+/F1.0 10.5 Tf
+[<54> 29.7852 <6f206275696c64207573696e672074686520616461707465722c207075742074686520>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+4.7303 Tw
+
+BT
+256.1478 190.666 Td
+/F3.0 10.5 Tf
+<6173706563746a746f6f6c732e6a6172> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+4.7303 Tw
+
+BT
+340.1478 190.666 Td
+/F1.0 10.5 Tf
+<206f6e207468652073797374656d2f616e7420636c617373706174682028652e672e2c20696e> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.7708 Tw
+
+BT
+48.24 174.886 Td
+/F3.0 10.5 Tf
+<247b414e545f484f4d457d2f6c6962> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.7708 Tw
+
+BT
+126.99 174.886 Td
+/F1.0 10.5 Tf
+<2920616e6420646566696e652074686520> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.7708 Tw
+
+BT
+215.3327 174.886 Td
+/F3.0 10.5 Tf
+<6275696c642e636f6d70696c6572> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.7708 Tw
+
+BT
+288.8327 174.886 Td
+/F1.0 10.5 Tf
+<2070726f7065727479206173207468652066756c6c792d7175616c6966696564206e616d65206f662074686520636c6173732c> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+48.24 159.106 Td
+/F3.0 10.5 Tf
+<6f72672e6173706563746a2e746f6f6c732e616e742e7461736b646566732e416a633131436f6d70696c657241646170746572> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+315.99 159.106 Td
+/F1.0 10.5 Tf
+<2e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.9614 Tw
+
+BT
+48.24 131.326 Td
+/F1.0 10.5 Tf
+[<546865204173706563744a20636f6d70696c65722073686f756c642072756e20666f7220616e> 20.0195 <7920636f6d70696c65207573696e6720746865204a61766163207461736b2028666f72206f7074696f6e732c207365652074686520416e74>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.5459 Tw
+
+BT
+48.24 115.546 Td
+/F1.0 10.5 Tf
+[<646f63756d656e746174696f6e20666f7220746865204a61766163207461736b292e2046> 40.0391 <6f72206578616d706c652c207468652063616c6c2062656c6f772070617373657320616c6c206f75742d6f662d6461746520736f757263652066696c657320696e>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 99.766 Td
+/F1.0 10.5 Tf
+<74686520> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+66.93 99.766 Td
+/F3.0 10.5 Tf
+<7372632f6f72672f6173706563746a> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+145.68 99.766 Td
+/F1.0 10.5 Tf
+<207375626469726563746f7269657320746f2074686520> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+254.0295 99.766 Td
+/F3.0 10.5 Tf
+<616a63> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+269.7795 99.766 Td
+/F1.0 10.5 Tf
+<20636f6d6d616e6420616c6f6e672077697468207468652064657374696e6174696f6e206469726563746f72793a> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.0 0.0 0.0 scn
+0.0 0.0 0.0 SCN
+1 w
+0 J
+0 j
+[] 0 d
+/Stamp1 Do
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+535.978 14.263 Td
+/F1.0 9 Tf
+<3239> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+Q
+Q
+
+endstream
+endobj
+166 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/CropBox [0 0 595.28 841.89]
+/BleedBox [0 0 595.28 841.89]
+/TrimBox [0 0 595.28 841.89]
+/ArtBox [0 0 595.28 841.89]
+/Contents 165 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+/Font << /F3.0 26 0 R
+/F1.0 8 0 R
+/F2.0 22 0 R
+>>
+/XObject << /Stamp1 360 0 R
+>>
+>>
+>>
+endobj
+167 0 obj
+[166 0 R /XYZ 0 566.19 null]
+endobj
+168 0 obj
+[166 0 R /XYZ 0 382.67 null]
+endobj
+169 0 obj
+[166 0 R /XYZ 0 235.91 null]
+endobj
+170 0 obj
+<< /Limits [(antTasks-iajc-paths) (classpathInpathAndAspectpath)]
+/Names [(antTasks-iajc-paths) 158 0 R (antTasks-iajc-sample) 161 0 R (antTasks-iajc-uptodate) 164 0 R (antTasks-install) 126 0 R (antTasks-intro) 121 0 R (antTasks-knownProblems) 193 0 R (antTasks-nested-includes) 157 0 R (antTasks-problems) 192 0 R (binaryCompatibility) 248 0 R (bytecode-concepts) 29 0 R (classpathInpathAndAspectpath) 32 0 R]
+>>
+endobj
+171 0 obj
+<< /Length 12008
+>>
+stream
+q
+q
+/DeviceRGB cs
+0.9608 0.9608 0.9608 scn
+52.24 805.89 m
+543.04 805.89 l
+545.2491 805.89 547.04 804.0991 547.04 801.89 c
+547.04 655.23 l
+547.04 653.0209 545.2491 651.23 543.04 651.23 c
+52.24 651.23 l
+50.0309 651.23 48.24 653.0209 48.24 655.23 c
+48.24 801.89 l
+48.24 804.0991 50.0309 805.89 52.24 805.89 c
+h
+f
+/DeviceRGB CS
+0.8 0.8 0.8 SCN
+0.75 w
+52.24 805.89 m
+543.04 805.89 l
+545.2491 805.89 547.04 804.0991 547.04 801.89 c
+547.04 655.23 l
+547.04 653.0209 545.2491 651.23 543.04 651.23 c
+52.24 651.23 l
+50.0309 651.23 48.24 653.0209 48.24 655.23 c
+48.24 801.89 l
+48.24 804.0991 50.0309 805.89 52.24 805.89 c
+h
+S
+Q
+/DeviceRGB cs
+0.2 0.2 0.2 scn
+/DeviceRGB CS
+0.2 0.2 0.2 SCN
+
+BT
+59.24 783.065 Td
+/F3.0 11 Tf
+<2d2d20636f6d6d616e643a> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 753.585 Td
+/F3.0 11 Tf
+<ca2020206370206173706563746a312e312f6c69622f6173706563746a746f6f6c732e6a617220616e742f6c6962> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 738.845 Td
+/F3.0 11 Tf
+<ca202020616e742f62696e2f616e74202d446275696c642e636f6d70696c65723d6f72672e6173706563746a2e746f6f6c732e616e742e7461736b646566732e416a633131436f6d70696c657241646170746572> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 724.105 Td
+/F3.0 11 Tf
+<2e2e2e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 694.625 Td
+/F3.0 11 Tf
+<2d2d207461736b20696e766f636174696f6e20696e20746865206275696c64207363726970743a> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 665.145 Td
+/F3.0 11 Tf
+<ca203c6a61766163207372636469723d227372632220696e636c756465733d226f72672f6173706563746a2f2a2a2f2a2e6a6176612220646573746469723d226465737422202f3e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 627.266 Td
+/F1.0 10.5 Tf
+[<54> 29.7852 <6f207061737320616a632d737065636966696320617267756d656e74732c20757365206120636f6d70696c6572> 20.0195 <61726720656e747279> 89.8438 <2e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.9608 0.9608 0.9608 scn
+52.24 611.45 m
+543.04 611.45 l
+545.2491 611.45 547.04 609.6591 547.04 607.45 c
+547.04 416.57 l
+547.04 414.3609 545.2491 412.57 543.04 412.57 c
+52.24 412.57 l
+50.0309 412.57 48.24 414.3609 48.24 416.57 c
+48.24 607.45 l
+48.24 609.6591 50.0309 611.45 52.24 611.45 c
+h
+f
+0.8 0.8 0.8 SCN
+0.75 w
+52.24 611.45 m
+543.04 611.45 l
+545.2491 611.45 547.04 609.6591 547.04 607.45 c
+547.04 416.57 l
+547.04 414.3609 545.2491 412.57 543.04 412.57 c
+52.24 412.57 l
+50.0309 412.57 48.24 414.3609 48.24 416.57 c
+48.24 607.45 l
+48.24 609.6591 50.0309 611.45 52.24 611.45 c
+h
+S
+Q
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 588.625 Td
+/F3.0 11 Tf
+<2d2d20636f6d6d616e64> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 559.145 Td
+/F3.0 11 Tf
+<ca20416e74202d446275696c642e636f6d70696c65723d6f72672e6173706563746a2e746f6f6c732e616e742e7461736b646566732e416a633131436f6d70696c657241646170746572> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 529.665 Td
+/F3.0 11 Tf
+<2d2d206275696c6420736372697074> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 500.185 Td
+/F3.0 11 Tf
+<ca203c70726f7065727479206e616d653d22616a6322> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 485.445 Td
+/F3.0 11 Tf
+<ca2020202020202020202020202076616c75653d226f72672e6173706563746a2e746f6f6c732e616e742e7461736b646566732e416a633131436f6d70696c657241646170746572222f3e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 455.965 Td
+/F3.0 11 Tf
+<ca203c6a61766163207372636469723d227372632220696e636c756465733d226f72672f6173706563746a2f2a2a2f2a2e6a6176612220646573746469723d226465737422203e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 441.225 Td
+/F3.0 11 Tf
+<ca2020203c636f6d70696c657261726720636f6d70696c65723d22247b616a637d22206c696e653d222d61726766696c65207372632f617267732e6c7374222f3e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 426.485 Td
+/F3.0 11 Tf
+<ca203c6a617661632f3e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.5317 Tw
+
+BT
+48.24 388.606 Td
+/F1.0 10.5 Tf
+[<546865204a61766163207461736b20646f6573207370656369616c2068616e646c696e67206f6620736f757263652066696c657320746861742063616e20696e74657266657265207769746820616a632e2049742072656d6f76657320616e> 20.0195 <792066696c6573>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.5832 Tw
+
+BT
+48.24 372.826 Td
+/F1.0 10.5 Tf
+<7468617420617265206e6f74206f75742d6f662d646174652077697468207265737065637420746f2074686520636f72726573706f6e64696e67202e636c6173732066696c65732e2042757420616a6320726571756972657320616c6c20736f75726365> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.8909 Tw
+
+BT
+48.24 357.046 Td
+/F1.0 10.5 Tf
+[<66696c65732c2073696e636520616e20617370656374206d61> 20.0195 <7920616666656374206120736f757263652066696c652074686174206973206e6f74206f7574206f6620646174652e202846> 40.0391 <6f72206120736f6c7574696f6e20746f20746869732c2073656520746865>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.095 Tw
+
+BT
+48.24 341.266 Td
+/F3.0 10.5 Tf
+<6275696c642e636f6d70696c65722e636c65616e> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.095 Tw
+
+BT
+153.24 341.266 Td
+/F1.0 10.5 Tf
+[<2070726f7065727479206465736372696265642062656c6f77> 69.8242 <2e2920436f6e76657273656c79> 89.8438 <2c20646576656c6f7065727320736f6d6574696d65732073706563696679206120736f75726365>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.5359 Tw
+
+BT
+48.24 325.486 Td
+/F1.0 10.5 Tf
+<6469726563746f727920746f206a617661632c20616e64206c65742069742073656172636820666f722066696c657320666f722074797065732069742063616e6e6f742066696e642e204173706563744a2077696c6c206e6f7420646f2074686973206b696e64206f66> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.4957 Tw
+
+BT
+48.24 309.706 Td
+/F1.0 10.5 Tf
+[<736561726368696e6720756e6465722074686520736f75726365206469726563746f7279202873696e6365207468652070726f6772> 20.0195 <616d6d6572206e6565647320746f20636f6e74726f6c20776869636820736f757263657320617265>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.4613 Tw
+
+BT
+48.24 293.926 Td
+/F1.0 10.5 Tf
+[<6166666563746564292e2028446f6ed57420636f6e667573652074686520736f75726365206469726563746f727920757365642062> 20.0195 <79204a6176616320776974682074686520736f7572636520726f6f7420757365642062> 20.0195 <7920616a633b20696620796f75>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.103 Tw
+
+BT
+48.24 278.146 Td
+/F1.0 10.5 Tf
+[<73706563696679206120736f7572636520726f6f7420746f20616a632c2069742077696c6c20636f6d70696c6520616e> 20.0195 <7920736f757263652066696c6520756e646572207468617420736f7572636520726f6f742028776974686f757420657863657074696f6e>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 262.366 Td
+/F1.0 10.5 Tf
+[<6f722066696c746572696e67292e292054> 29.7852 <6f207265706c61636520736f757263652064697220736561726368696e6720696e204a617661632c2075736520616e20416e742066696c74657220746f20737065636966792074686520736f757263652066696c65732e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 227.866 Td
+/F2.0 13 Tf
+[<342e342e322e20436f6d70696c6572206164617074657220636f6d70696c6572> 20.0195 <617267206f7074696f6e73>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+3.204 Tw
+
+BT
+48.24 201.306 Td
+/F1.0 10.5 Tf
+[<546865206164617074657220737570706f72747320616e> 20.0195 <7920616a6320636f6d6d616e642d6c696e65206f7074696f6e20706173736564207573696e6720636f6d70696c6572> 20.0195 <6172672c2061732077656c6c20617320746865>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.9332 Tw
+
+BT
+48.24 185.526 Td
+/F1.0 10.5 Tf
+[<666f6c6c6f77696e67206f7074696f6e7320617661696c61626c65206f6e6c7920696e20416a6354> 29.7852 <61736b2e2046696e64206d6f72652064657461696c73206f6e2074686520666f6c6c6f77696e67206f7074696f6e7320696e20>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2588 0.5451 0.7922 scn
+0.2588 0.5451 0.7922 SCN
+
+0.9332 Tw
+
+BT
+508.4502 185.526 Td
+/F1.0 10.5 Tf
+[<416a6354> 29.7852 <61736b>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2588 0.5451 0.7922 scn
+0.2588 0.5451 0.7922 SCN
+
+BT
+48.24 169.746 Td
+/F1.0 10.5 Tf
+<2869616a6329> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+73.062 169.746 Td
+/F1.0 10.5 Tf
+<2e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+56.8805 141.966 Td
+/F1.0 10.5 Tf
+<a5> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+66.24 141.966 Td
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+66.24 141.966 Td
+/F3.0 10.5 Tf
+<2d586d61786d656d> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+108.24 141.966 Td
+/F1.0 10.5 Tf
+<3a20736574206d6178696d756d206d656d6f727920666f7220666f726b696e672028616c736f207365747461626c6520696e206a61766163292e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+56.8805 120.186 Td
+/F1.0 10.5 Tf
+<a5> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+66.24 120.186 Td
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+66.24 120.186 Td
+/F3.0 10.5 Tf
+<2d586c69737466696c6561726773> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+139.74 120.186 Td
+/F1.0 10.5 Tf
+<3a206c6973742066696c6520617267756d656e74732028616c736f207365747461626c6520696e206a61766163292e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+56.8805 98.406 Td
+/F1.0 10.5 Tf
+<a5> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+66.24 98.406 Td
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+66.24 98.406 Td
+/F3.0 10.5 Tf
+<2d586661696c6f6e6572726f72> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+134.49 98.406 Td
+/F1.0 10.5 Tf
+<3a207468726f77204275696c64457863657074696f6e206f6e20636f6d70696c6572206572726f722028616c736f207365747461626c6520696e206a61766163292e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+56.8805 76.626 Td
+/F1.0 10.5 Tf
+<a5> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+66.24 76.626 Td
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+66.24 76.626 Td
+/F3.0 10.5 Tf
+<2d586d657373616765686f6c646572636c617373> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+171.24 76.626 Td
+/F1.0 10.5 Tf
+<3a20737065636966792066756c6c792d7175616c6966696564206e616d65206f6620636c61737320746f2075736520617320746865206d65737361676520686f6c6465722e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+56.8805 54.846 Td
+/F1.0 10.5 Tf
+<a5> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+66.24 54.846 Td
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+66.24 54.846 Td
+/F3.0 10.5 Tf
+<2d58636f7079696e6a617273> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+129.24 54.846 Td
+/F1.0 10.5 Tf
+[<3a20636f70> 20.0195 <79207265736f75726365732066726f6d20616e> 20.0195 <7920696e707574206a61727320746f206f7574707574202864656661756c74206265686176696f722073696e636520312e312e3129>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.0 0.0 0.0 scn
+0.0 0.0 0.0 SCN
+1 w
+0 J
+0 j
+[] 0 d
+/Stamp2 Do
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+49.24 14.263 Td
+/F1.0 9 Tf
+<3330> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+Q
+Q
+
+endstream
+endobj
+172 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/CropBox [0 0 595.28 841.89]
+/BleedBox [0 0 595.28 841.89]
+/TrimBox [0 0 595.28 841.89]
+/ArtBox [0 0 595.28 841.89]
+/Contents 171 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+/Font << /F3.0 26 0 R
+/F1.0 8 0 R
+/F2.0 22 0 R
+>>
+/XObject << /Stamp2 361 0 R
+>>
+>>
+/Annots [174 0 R 175 0 R]
+>>
+endobj
+173 0 obj
+[172 0 R /XYZ 0 246.55 null]
+endobj
+174 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (#antTasks-iajc)
+>>
+/Subtype /Link
+/Rect [508.4502 182.46 547.04 196.74]
+/Type /Annot
+>>
+endobj
+175 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (#antTasks-iajc)
+>>
+/Subtype /Link
+/Rect [48.24 166.68 73.062 180.96]
+/Type /Annot
+>>
+endobj
+176 0 obj
+<< /Length 15432
+>>
+stream
+q
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+/DeviceRGB cs
+0.2 0.2 0.2 scn
+/DeviceRGB CS
+0.2 0.2 0.2 SCN
+
+BT
+56.8805 793.926 Td
+/F1.0 10.5 Tf
+<a5> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.7985 Tw
+
+BT
+66.24 793.926 Td
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.7985 Tw
+
+BT
+66.24 793.926 Td
+/F3.0 10.5 Tf
+<2d58736f75726365726f6f74636f707966696c746572207b66696c7465727d> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.7985 Tw
+
+BT
+229.7885 793.926 Td
+/F1.0 10.5 Tf
+[<3a20636f70> 20.0195 <79207265736f75726365732066726f6d20736f75726365206469726563746f7269657320746f206f757470757420286d696e75732066696c6573>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+66.24 778.146 Td
+/F1.0 10.5 Tf
+<73706563696669656420696e2066696c74657229> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+56.8805 756.366 Td
+/F1.0 10.5 Tf
+<a5> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+66.24 756.366 Td
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+66.24 756.366 Td
+/F3.0 10.5 Tf
+<2d5874616766696c65207b66696c657d> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+150.24 756.366 Td
+/F1.0 10.5 Tf
+<3a207573652066696c6520746f20636f6e74726f6c20696e6372656d656e74616c20636f6d70696c6174696f6e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+56.8805 734.586 Td
+/F1.0 10.5 Tf
+<a5> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+66.24 734.586 Td
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+66.24 734.586 Td
+/F3.0 10.5 Tf
+<2d58737263646972207b6469727d> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+139.74 734.586 Td
+/F1.0 10.5 Tf
+<3a2061646420746f206c697374206f6620616a6320736f7572636520726f6f74732028616c6c20736f757263652066696c65732077696c6c20626520696e636c75646564292e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 706.806 Td
+/F1.0 10.5 Tf
+[<5370656369616c20636f6e7369646572> 20.0195 <6174696f6e73207768656e207573696e67204a6176616320616e6420636f6d70696c6572> 20.0195 <6172673a>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+56.8805 679.026 Td
+/F1.0 10.5 Tf
+<a5> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.1535 Tw
+
+BT
+66.24 679.026 Td
+/F1.0 10.5 Tf
+[<546865206e616d65732061626f7665206d61> 20.0195 <792064696666657220736c696768746c792066726f6d207768617420796f75206d69676874206578706563742066726f6d20416a6354> 29.7852 <61736b3b2075736520746865736520666f726d73>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+66.24 663.246 Td
+/F1.0 10.5 Tf
+[<7768656e2073706563696679696e6720636f6d70696c6572> 20.0195 <6172672e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+56.8805 641.466 Td
+/F1.0 10.5 Tf
+<a5> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.517 Tw
+
+BT
+66.24 641.466 Td
+/F1.0 10.5 Tf
+[<42> 20.0195 <792064656661756c742074686520616461707465722077696c6c206d696d696320746865204a61766163207461736bd57320636f70> 20.0195 <79696e67206f66207265736f757263652066696c65732062> 20.0195 <792073706563696679696e6720>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.517 Tw
+
+BT
+515.54 641.466 Td
+/F3.0 10.5 Tf
+<22> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.517 Tw
+
+BT
+520.79 641.466 Td
+/F4.0 10.5 Tf
+<2f4356532f> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+2.4417 Tw
+
+BT
+66.24 628.521 Td
+/F4.0 10.5 Tf
+<2c> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+2.4417 Tw
+
+BT
+71.49 628.521 Td
+/F4.0 10.5 Tf
+<2f> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+2.4417 Tw
+
+BT
+76.74 628.521 Td
+/F3.0 10.5 Tf
+<2e6a6176612c> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+2.4417 Tw
+
+BT
+108.24 628.521 Td
+/F4.0 10.5 Tf
+<2f> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+2.4417 Tw
+
+BT
+113.49 628.521 Td
+/F4.0 10.5 Tf
+<2e616a22> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+2.4417 Tw
+
+BT
+134.49 628.521 Td
+/F4.0 10.5 Tf
+<20666f722074686520736f75726365726f6f7420636f70792066696c7465722e20546f206368616e67652074686973206265686176696f722c20737570706c7920796f7572206f776e> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+66.24 612.741 Td
+/F4.0 10.5 Tf
+<76616c75652028652e672e2c20> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+134.49 612.741 Td
+/F4.0 10.5 Tf
+<22> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+139.74 612.741 Td
+/F4.0 10.5 Tf
+<2f> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+144.99 612.741 Td
+/F3.0 10.5 Tf
+<22> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+150.24 612.741 Td
+/F1.0 10.5 Tf
+[<20746f20636f70> 20.0195 <79206e6f7468696e67292e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+56.8805 590.961 Td
+/F1.0 10.5 Tf
+<a5> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.66 Tw
+
+BT
+66.24 590.961 Td
+/F1.0 10.5 Tf
+[<57> 49.8047 <61726e696e67202d20646566696e65207468652073797374656d2070726f706572747920>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.66 Tw
+
+BT
+259.937 590.961 Td
+/F3.0 10.5 Tf
+<6275696c642e636f6d70696c65722e636c65616e> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.66 Tw
+
+BT
+364.937 590.961 Td
+/F1.0 10.5 Tf
+<20746f20636f6d70696c6520616c6c2066696c65732c207768656e20617661696c61626c652e> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+3.6514 Tw
+
+BT
+66.24 575.181 Td
+/F1.0 10.5 Tf
+<4a61766163207072756e65732074686520736f757263652066696c65206c697374206f66202275702d746f2d646174652220736f757263652066696c6573206261736564206f6e207468652074696d657374616d7073206f66> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.9274 Tw
+
+BT
+66.24 559.401 Td
+/F1.0 10.5 Tf
+<636f72726573706f6e64696e67202e636c6173732066696c65732c20616e642077696c6c206e6f7420636f6d70696c65206966206e6f20736f757263657320617265206f7574206f6620646174652e20546869732069732077726f6e6720666f72> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.1769 Tw
+
+BT
+66.24 543.621 Td
+/F1.0 10.5 Tf
+[<616a6320776869636820726571756972657320616c6c207468652066696c657320666f72206561636820636f6d70696c6520616e64207768696368206d61> 20.0195 <7920726566657220696e6469726563746c7920746f20736f7572636573207573696e67>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+66.24 527.841 Td
+/F1.0 10.5 Tf
+<617267756d656e742066696c65732e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+3.1074 Tw
+
+BT
+66.24 500.061 Td
+/F1.0 10.5 Tf
+[<54> 29.7852 <6f20776f726b2061726f756e6420746869732c207365742074686520676c6f62616c2070726f706572747920>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+3.1074 Tw
+
+BT
+313.6696 500.061 Td
+/F3.0 10.5 Tf
+<6275696c642e636f6d70696c65722e636c65616e> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+3.1074 Tw
+
+BT
+418.6696 500.061 Td
+/F1.0 10.5 Tf
+<2e20546869732074656c6c732074686520636f6d70696c6572> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.8679 Tw
+
+BT
+66.24 484.281 Td
+/F1.0 10.5 Tf
+<6164617074657220746f2064656c65746520616c6c202e636c6173732066696c657320696e207468652064657374696e6174696f6e206469726563746f727920616e642072652d6578656375746520746865206a61766163207461736b20736f> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+66.24 468.501 Td
+/F1.0 10.5 Tf
+<6a617661632063616e20726563616c63756c61746520746865206c697374206f6620736f757263652066696c65732e20652e672e2c> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.9608 0.9608 0.9608 scn
+70.24 452.685 m
+543.04 452.685 l
+545.2491 452.685 547.04 450.8941 547.04 448.685 c
+547.04 405.205 l
+547.04 402.9959 545.2491 401.205 543.04 401.205 c
+70.24 401.205 l
+68.0309 401.205 66.24 402.9959 66.24 405.205 c
+66.24 448.685 l
+66.24 450.8941 68.0309 452.685 70.24 452.685 c
+h
+f
+0.8 0.8 0.8 SCN
+0.75 w
+70.24 452.685 m
+543.04 452.685 l
+545.2491 452.685 547.04 450.8941 547.04 448.685 c
+547.04 405.205 l
+547.04 402.9959 545.2491 401.205 543.04 401.205 c
+70.24 401.205 l
+68.0309 401.205 66.24 402.9959 66.24 405.205 c
+66.24 448.685 l
+66.24 450.8941 68.0309 452.685 70.24 452.685 c
+h
+S
+Q
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+77.24 429.86 Td
+/F3.0 11 Tf
+<416e74202d446275696c642e636f6d70696c65723d6f72672e6173706563746a2e746f6f6c732e616e742e7461736b646566732e416a633131436f6d70696c657241646170746572> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+77.24 415.12 Td
+/F3.0 11 Tf
+<ca2020202d446275696c642e636f6d70696c65722e636c65616e3d616e797468696e67202e2e2e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+66.24 377.241 Td
+/F1.0 10.5 Tf
+<4361766561747320746f20636f6e7369646572207768656e207573696e67207468697320676c6f62616c20> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+280.7235 377.241 Td
+/F3.0 10.5 Tf
+<6275696c642e636f6d70696c65722e636c65616e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+385.7235 377.241 Td
+/F1.0 10.5 Tf
+<2070726f70657274793a> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+70.6765 349.461 Td
+/F1.0 10.5 Tf
+<312e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.1271 Tw
+
+BT
+84.24 349.461 Td
+/F1.0 10.5 Tf
+<4966206a617661632062656c696576657320746865726520617265206e6f206f75742d6f662d6461746520736f757263652066696c65732c207468656e207468652061646170746572206973206e657665722063616c6c656420616e64> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+3.0104 Tw
+
+BT
+84.24 333.681 Td
+/F1.0 10.5 Tf
+<63616e6e6f7420636c65616e2075702c20616e64207468652022636f6d70696c65222077696c6c2061707065617220746f20636f6d706c657465207375636365737366756c6c792074686f75676820697420646964> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+84.24 317.901 Td
+/F1.0 10.5 Tf
+<6e6f7468696e672e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+70.6765 296.121 Td
+/F1.0 10.5 Tf
+<322e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.8639 Tw
+
+BT
+84.24 296.121 Td
+/F1.0 10.5 Tf
+[<436c65616e696e672077696c6c206d616b> 20.0195 <6573207374657077697365206275696c642070726f636573736573206661696c206966207468657920646570656e64206f6e2074686520726573756c7473206f6620746865207072696f72>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+84.24 280.341 Td
+/F1.0 10.5 Tf
+[<636f6d70696c6174696f6e206265696e6720696e207468652073616d65206469726563746f7279> 89.8438 <2c2073696e636520636c65616e696e672064656c6574657320616c6c202e636c6173732066696c65732e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+70.6765 258.561 Td
+/F1.0 10.5 Tf
+<332e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.2641 Tw
+
+BT
+84.24 258.561 Td
+/F1.0 10.5 Tf
+<5468697320636c65616e2070726f63657373206f6e6c79207065726d697473206f6e6520636f6d70696c652070726f6365737320617420612074696d6520666f7220656163682064657374696e6174696f6e206469726563746f7279> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+84.24 242.781 Td
+/F1.0 10.5 Tf
+[<62656361757365206974207472> 20.0195 <61636b7320726563757273696f6e2062> 20.0195 <792077726974696e672061207461672066696c6520746f207468652064657374696e6174696f6e206469726563746f7279> 89.8438 <2e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+70.6765 221.001 Td
+/F1.0 10.5 Tf
+<342e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+84.24 221.001 Td
+/F1.0 10.5 Tf
+[<5768656e2072756e6e696e6720696e6372656d656e74616c6c79> 89.8438 <2c2074686520636c65616e2068617070656e73206f6e6c79206265666f72652074686520696e697469616c20636f6d70696c652e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 181.161 Td
+/F2.0 18 Tf
+<342e352e20416a6331302028616a6329> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.6326 Tw
+
+BT
+48.24 153.141 Td
+/F1.0 10.5 Tf
+[<54686973207461736b2068616e646c6573207468652073616d6520617267756d656e74732061732074686f736520757365642062> 20.0195 <7920746865204173706563744a20312e30207461736b2e20546869732073686f756c64207065726d6974>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.6168 Tw
+
+BT
+48.24 137.361 Td
+/F1.0 10.5 Tf
+<74686f73652077697468206578697374696e67206275696c642073637269707473207573696e672074686520416a6320416e74207461736b20746f20636f6e74696e7565207573696e67207468652073616d652073637269707473207768656e> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.0388 Tw
+
+BT
+48.24 121.581 Td
+/F1.0 10.5 Tf
+[<636f6d70696c696e67207769746820312e312e20546869732077696c6c206c69737420616e> 20.0195 <7920757365206f66206f7074696f6e73206e6f206c6f6e67657220737570706f7274656420696e20312e312028652e672e2c20>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.0388 Tw
+
+BT
+463.0012 121.581 Td
+/F3.0 10.5 Tf
+<6c656e69656e742c207374726963742c> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.4884 Tw
+
+BT
+48.24 105.801 Td
+/F3.0 10.5 Tf
+<776f726b696e676469722c2070726570726f636573732c207573656a61766163> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.4884 Tw
+
+BT
+219.2168 105.801 Td
+/F1.0 10.5 Tf
+<2cc9292c20616e6420646f6573206e6f742070726f766964652061636365737320746f20746865206e6577206665617475726573206f66204173706563744a> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.2629 Tw
+
+BT
+48.24 90.021 Td
+/F1.0 10.5 Tf
+[<312e312e2028446576656c6f70657273207573696e67204173706563744a20312e31206f6e6c792073686f756c642075706772> 20.0195 <616465207468656972207363726970747320746f2075736520416a6354> 29.7852 <61736b20696e73746561642e20546869732077696c6c>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 74.241 Td
+/F1.0 10.5 Tf
+<6e6f7420776f726b20666f72204173706563744a20312e32206f72206c617465722e29> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.0 0.0 0.0 scn
+0.0 0.0 0.0 SCN
+1 w
+0 J
+0 j
+[] 0 d
+/Stamp1 Do
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+535.978 14.263 Td
+/F1.0 9 Tf
+<3331> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+Q
+Q
+
+endstream
+endobj
+177 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/CropBox [0 0 595.28 841.89]
+/BleedBox [0 0 595.28 841.89]
+/TrimBox [0 0 595.28 841.89]
+/ArtBox [0 0 595.28 841.89]
+/Contents 176 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+/Font << /F1.0 8 0 R
+/F3.0 26 0 R
+/F4.0 149 0 R
+/F2.0 22 0 R
+>>
+/XObject << /Stamp1 360 0 R
+>>
+>>
+>>
+endobj
+178 0 obj
+[177 0 R /XYZ 0 205.185 null]
+endobj
+179 0 obj
+<< /Length 21873
+>>
+stream
+q
+/DeviceRGB cs
+0.2 0.2 0.2 scn
+/DeviceRGB CS
+0.2 0.2 0.2 SCN
+
+BT
+48.24 792.006 Td
+/F2.0 13 Tf
+<342e352e312e20416a6331302028616a6329204f7074696f6e73> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.0371 Tw
+
+BT
+48.24 765.446 Td
+/F1.0 10.5 Tf
+<4d6f7374206174747269627574657320616e64206e657374656420656c656d656e747320617265206f7074696f6e616c2e2054686520636f6d70696c65722072657175697265732074686174207468652073616d652076657273696f6e206f66> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.5314 Tw
+
+BT
+48.24 749.666 Td
+/F3.0 10.5 Tf
+<6173706563746a72742e6a6172> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.5314 Tw
+
+BT
+116.49 749.666 Td
+/F1.0 10.5 Tf
+<20626520737065636966696564206f6e2074686520636c617373706174682c20616e64207468617420736f6d6520736f75726365732062652062652073706563696669656420287573696e67206f6e65206f72> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 733.886 Td
+/F1.0 10.5 Tf
+<6d6f7265206f6620> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+90.1455 733.886 Td
+/F3.0 10.5 Tf
+<61726766696c6573> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+132.1455 733.886 Td
+/F1.0 10.5 Tf
+<20616e6420> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+156.6945 733.886 Td
+/F3.0 10.5 Tf
+<737263646972> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+188.1945 733.886 Td
+/F1.0 10.5 Tf
+<202877697468207061747465726e7329292e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 706.106 Td
+/F1.0 10.5 Tf
+[<426f6f6c65616e20706172> 20.0195 <616d65746572732064656661756c7420746f20>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+202.3273 706.106 Td
+/F3.0 10.5 Tf
+<66616c7365> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+228.5773 706.106 Td
+/F1.0 10.5 Tf
+<20756e6c657373206f7468657277697365207374617465642e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 678.9242 Td
+/F5.0 9.975 Tf
+[<54> 29.7852 <61626c6520312e20416a6354> 29.7852 <61736b2028616a6329206f7074696f6e7320666f722073706563696679696e6720736f7572636573>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 649.519 249.4 21.78 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 649.519 249.4 21.78 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 627.739 249.4 21.78 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 627.739 249.4 21.78 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 605.959 249.4 21.78 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 605.959 249.4 21.78 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 552.619 249.4 53.34 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 552.619 249.4 53.34 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 530.839 249.4 21.78 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 530.839 249.4 21.78 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 477.499 249.4 53.34 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 477.499 249.4 53.34 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 455.719 249.4 21.78 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 455.719 249.4 21.78 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 402.379 249.4 53.34 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 402.379 249.4 53.34 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 349.039 249.4 53.34 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 349.039 249.4 53.34 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 295.699 249.4 53.34 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 295.699 249.4 53.34 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 258.139 249.4 37.56 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 258.139 249.4 37.56 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 236.359 249.4 21.78 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 236.359 249.4 21.78 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 198.799 249.4 37.56 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 198.799 249.4 37.56 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 161.239 249.4 37.56 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 161.239 249.4 37.56 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 139.459 249.4 21.78 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 139.459 249.4 21.78 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 70.339 249.4 69.12 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 70.339 249.4 69.12 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 48.559 249.4 21.78 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 48.559 249.4 21.78 re
+f
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 671.299 m
+297.64 671.299 l
+S
+[] 0 d
+1.25 w
+0.8667 0.8667 0.8667 SCN
+48.24 649.519 m
+297.64 649.519 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 671.549 m
+48.24 648.894 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 671.549 m
+297.64 648.894 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 656.335 Td
+/F2.0 10.5 Tf
+<417474726962757465> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 671.299 m
+547.04 671.299 l
+S
+[] 0 d
+1.25 w
+0.8667 0.8667 0.8667 SCN
+297.64 649.519 m
+547.04 649.519 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 671.549 m
+297.64 648.894 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 671.549 m
+547.04 648.894 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 656.335 Td
+/F2.0 10.5 Tf
+<4465736372697074696f6e> Tj
+ET
+
+0.0 0.0 0.0 scn
+1.25 w
+0.8667 0.8667 0.8667 SCN
+48.24 649.519 m
+297.64 649.519 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 627.739 m
+297.64 627.739 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 650.144 m
+48.24 627.489 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 650.144 m
+297.64 627.489 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 634.555 Td
+/F1.0 10.5 Tf
+<737263646972> Tj
+ET
+
+0.0 0.0 0.0 scn
+1.25 w
+0.8667 0.8667 0.8667 SCN
+297.64 649.519 m
+547.04 649.519 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 627.739 m
+547.04 627.739 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 650.144 m
+297.64 627.489 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 650.144 m
+547.04 627.489 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 634.555 Td
+/F1.0 10.5 Tf
+<5468652062617365206469726563746f7279206f6620746865206a6176612066696c65732e20536565> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 627.739 m
+297.64 627.739 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 605.959 m
+297.64 605.959 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 627.989 m
+48.24 605.709 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 627.989 m
+297.64 605.709 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 612.775 Td
+/F1.0 10.5 Tf
+<64657374646972> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 627.739 m
+547.04 627.739 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 605.959 m
+547.04 605.959 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 627.989 m
+297.64 605.709 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 627.989 m
+547.04 605.709 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 612.775 Td
+/F1.0 10.5 Tf
+<54686520746172676574206469726563746f727920666f7220746865206f7574707574202e636c6173732066696c6573> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 605.959 m
+297.64 605.959 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 552.619 m
+297.64 552.619 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 606.209 m
+48.24 552.369 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 606.209 m
+297.64 552.369 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 590.995 Td
+/F1.0 10.5 Tf
+<696e636c75646573> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 605.959 m
+547.04 605.959 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 552.619 m
+547.04 552.619 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 606.209 m
+297.64 552.369 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 606.209 m
+547.04 552.369 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 590.995 Td
+/F1.0 10.5 Tf
+[<436f6d6d612d7365706172> 20.0195 <61746564206c697374206f66207061747465726e73206f662066696c65732074686174>] TJ
+ET
+
+
+BT
+300.64 575.215 Td
+/F1.0 10.5 Tf
+<6d75737420626520696e636c756465642e204e6f2066696c65732061726520696e636c75646564207768656e> Tj
+ET
+
+
+BT
+300.64 559.435 Td
+/F1.0 10.5 Tf
+<6f6d69747465642e> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 552.619 m
+297.64 552.619 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 530.839 m
+297.64 530.839 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 552.869 m
+48.24 530.589 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 552.869 m
+297.64 530.589 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 537.655 Td
+/F1.0 10.5 Tf
+<696e636c7564657366696c65> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 552.619 m
+547.04 552.619 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 530.839 m
+547.04 530.839 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 552.869 m
+297.64 530.589 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 552.869 m
+547.04 530.589 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 537.655 Td
+/F1.0 10.5 Tf
+<546865207061746820746f20612066696c6520636f6e7461696e696e6720696e636c756465207061747465726e732e> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 530.839 m
+297.64 530.839 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 477.499 m
+297.64 477.499 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 531.089 m
+48.24 477.249 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 531.089 m
+297.64 477.249 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 515.875 Td
+/F1.0 10.5 Tf
+<6578636c75646573> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 530.839 m
+547.04 530.839 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 477.499 m
+547.04 477.499 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 531.089 m
+297.64 477.249 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 531.089 m
+547.04 477.249 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 515.875 Td
+/F1.0 10.5 Tf
+[<436f6d6d612d7365706172> 20.0195 <61746564206c697374206f66207061747465726e73206f662066696c65732074686174>] TJ
+ET
+
+
+BT
+300.64 500.095 Td
+/F1.0 10.5 Tf
+<6d757374206265206578636c756465642e204e6f2066696c657320286578636570742064656661756c74> Tj
+ET
+
+
+BT
+300.64 484.315 Td
+/F1.0 10.5 Tf
+<6578636c756465732920617265206578636c75646564207768656e206f6d69747465642e> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 477.499 m
+297.64 477.499 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 455.719 m
+297.64 455.719 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 477.749 m
+48.24 455.469 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 477.749 m
+297.64 455.469 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 462.535 Td
+/F1.0 10.5 Tf
+<6578636c7564657366696c65> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 477.499 m
+547.04 477.499 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 455.719 m
+547.04 455.719 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 477.749 m
+297.64 455.469 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 477.749 m
+547.04 455.469 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 462.535 Td
+/F1.0 10.5 Tf
+<546865207061746820746f20612066696c6520636f6e7461696e696e67206578636c756465207061747465726e732e> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 455.719 m
+297.64 455.719 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 402.379 m
+297.64 402.379 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 455.969 m
+48.24 402.129 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 455.969 m
+297.64 402.129 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 440.755 Td
+/F1.0 10.5 Tf
+<64656661756c746578636c75646573> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 455.719 m
+547.04 455.719 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 402.379 m
+547.04 402.379 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 455.969 m
+297.64 402.129 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 455.969 m
+547.04 402.129 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 440.755 Td
+/F1.0 10.5 Tf
+<496620747275652c207468656e2064656661756c74206578636c756465732061726520757365642e2044656661756c74> Tj
+ET
+
+
+BT
+300.64 424.975 Td
+/F1.0 10.5 Tf
+<6578636c75646573206172652075736564207768656e206f6d69747465642028692e652e2c2064656661756c747320746f> Tj
+ET
+
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+300.64 409.195 Td
+/F3.0 10.5 Tf
+<74727565> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+321.64 409.195 Td
+/F1.0 10.5 Tf
+<292e> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 402.379 m
+297.64 402.379 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 349.039 m
+297.64 349.039 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 402.629 m
+48.24 348.789 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 402.629 m
+297.64 348.789 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 387.415 Td
+/F1.0 10.5 Tf
+<636c617373706174682c20636c61737370617468726566> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 402.379 m
+547.04 402.379 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 349.039 m
+547.04 349.039 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 402.629 m
+297.64 348.789 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 402.629 m
+547.04 348.789 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 387.415 Td
+/F1.0 10.5 Tf
+<54686520636c6173737061746820746f207573652c206f7074696f6e616c6c7920676976656e2061732061> Tj
+ET
+
+
+BT
+300.64 371.635 Td
+/F1.0 10.5 Tf
+<7265666572656e636520746f206120636c61737370617468205061746820656c656d656e7420646566696e6564> Tj
+ET
+
+
+BT
+300.64 355.855 Td
+/F1.0 10.5 Tf
+<656c736577686572652e> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 349.039 m
+297.64 349.039 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 295.699 m
+297.64 295.699 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 349.289 m
+48.24 295.449 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 349.289 m
+297.64 295.449 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 334.075 Td
+/F1.0 10.5 Tf
+<626f6f74636c617373706174682c20626f6f74636c61737370617468726566> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 349.039 m
+547.04 349.039 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 295.699 m
+547.04 295.699 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 349.289 m
+297.64 295.449 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 349.289 m
+547.04 295.449 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 334.075 Td
+/F1.0 10.5 Tf
+<54686520626f6f74636c6173737061746820746f207573652c206f7074696f6e616c6c7920676976656e2061732061> Tj
+ET
+
+
+BT
+300.64 318.295 Td
+/F1.0 10.5 Tf
+<7265666572656e636520746f206120626f6f74636c61737370617468205061746820656c656d656e74> Tj
+ET
+
+
+BT
+300.64 302.515 Td
+/F1.0 10.5 Tf
+<646566696e656420656c736577686572652e> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 295.699 m
+297.64 295.699 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 258.139 m
+297.64 258.139 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 295.949 m
+48.24 257.889 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 295.949 m
+297.64 257.889 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 280.735 Td
+/F1.0 10.5 Tf
+<65787464697273> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 295.699 m
+547.04 295.699 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 258.139 m
+547.04 258.139 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 295.949 m
+297.64 257.889 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 295.949 m
+547.04 257.889 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 280.735 Td
+/F1.0 10.5 Tf
+<506174687320746f206469726563746f7269657320636f6e7461696e74696e6720696e7374616c6c6564> Tj
+ET
+
+
+BT
+300.64 264.955 Td
+/F1.0 10.5 Tf
+<657874656e73696f6e732e> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 258.139 m
+297.64 258.139 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 236.359 m
+297.64 236.359 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 258.389 m
+48.24 236.109 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 258.389 m
+297.64 236.109 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 243.175 Td
+/F1.0 10.5 Tf
+<6465627567> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 258.139 m
+547.04 258.139 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 236.359 m
+547.04 236.359 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 258.389 m
+297.64 236.109 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 258.389 m
+547.04 236.109 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 243.175 Td
+/F1.0 10.5 Tf
+<496620747275652c20656d697420646562756720696e666f20696e20746865202e636c6173732066696c65732e> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 236.359 m
+297.64 236.359 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 198.799 m
+297.64 198.799 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 236.609 m
+48.24 198.549 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 236.609 m
+297.64 198.549 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 221.395 Td
+/F1.0 10.5 Tf
+<6465707265636174696f6e> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 236.359 m
+547.04 236.359 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 198.799 m
+547.04 198.799 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 236.609 m
+297.64 198.549 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 236.609 m
+547.04 198.549 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 221.395 Td
+/F1.0 10.5 Tf
+<496620747275652c20656d6974206d657373616765732061626f757420757365206f662064657072656361746564> Tj
+ET
+
+
+BT
+300.64 205.615 Td
+/F1.0 10.5 Tf
+<4150492e> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 198.799 m
+297.64 198.799 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 161.239 m
+297.64 161.239 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 199.049 m
+48.24 160.989 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 199.049 m
+297.64 160.989 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 183.835 Td
+/F1.0 10.5 Tf
+<766572626f7365> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 198.799 m
+547.04 198.799 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 161.239 m
+547.04 161.239 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 199.049 m
+297.64 160.989 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 199.049 m
+547.04 160.989 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 183.835 Td
+/F1.0 10.5 Tf
+<456d697420636f6d70696c657220737461747573206d6573736167657320647572696e6720746865> Tj
+ET
+
+
+BT
+300.64 168.055 Td
+/F1.0 10.5 Tf
+<636f6d70696c652e> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 161.239 m
+297.64 161.239 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 139.459 m
+297.64 139.459 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 161.489 m
+48.24 139.209 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 161.489 m
+297.64 139.209 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 146.275 Td
+/F1.0 10.5 Tf
+<76657273696f6e> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 161.239 m
+547.04 161.239 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 139.459 m
+547.04 139.459 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 161.489 m
+297.64 139.209 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 161.489 m
+547.04 139.209 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 146.275 Td
+/F1.0 10.5 Tf
+<456d69742076657273696f6e20696e666f726d6174696f6e20616e6420717569742e> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 139.459 m
+297.64 139.459 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 70.339 m
+297.64 70.339 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 139.709 m
+48.24 70.089 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 139.709 m
+297.64 70.089 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 124.495 Td
+/F1.0 10.5 Tf
+<6661696c6f6e6572726f72> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 139.459 m
+547.04 139.459 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 70.339 m
+547.04 70.339 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 139.709 m
+297.64 70.089 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 139.709 m
+547.04 70.089 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 124.495 Td
+/F1.0 10.5 Tf
+<496620747275652c207468726f77204275696c64457863657074696f6e20746f2068616c74206275696c64206966> Tj
+ET
+
+
+BT
+300.64 108.715 Td
+/F1.0 10.5 Tf
+[<74686572652061726520616e> 20.0195 <7920636f6d70696c6572206572726f72732e2049662066616c73652c20636f6e74696e7565>] TJ
+ET
+
+
+BT
+300.64 92.935 Td
+/F1.0 10.5 Tf
+<6e6f74776974687374616e64696e6720636f6d70696c65206572726f72732e2044656661756c747320746f> Tj
+ET
+
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+300.64 77.155 Td
+/F3.0 10.5 Tf
+<74727565> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+321.64 77.155 Td
+/F1.0 10.5 Tf
+<2e> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 70.339 m
+297.64 70.339 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 48.559 m
+297.64 48.559 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 70.589 m
+48.24 48.309 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 70.589 m
+297.64 48.309 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 55.375 Td
+/F1.0 10.5 Tf
+<736f75726365> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 70.339 m
+547.04 70.339 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 48.559 m
+547.04 48.559 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 70.589 m
+297.64 48.309 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 70.589 m
+547.04 48.309 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 55.375 Td
+/F1.0 10.5 Tf
+[<56> 60.0586 <616c7565206f66202d736f75726365206f7074696f6e202d2069676e6f72656420756e6c65737320>] TJ
+ET
+
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+500.1499 55.375 Td
+/F3.0 10.5 Tf
+<312e34> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+515.8999 55.375 Td
+/F1.0 10.5 Tf
+<2e> Tj
+ET
+
+0.0 0.0 0.0 scn
+q
+0.0 0.0 0.0 scn
+0.0 0.0 0.0 SCN
+1 w
+0 J
+0 j
+[] 0 d
+/Stamp2 Do
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+49.24 14.263 Td
+/F1.0 9 Tf
+<3332> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+Q
+Q
+
+endstream
+endobj
+180 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/CropBox [0 0 595.28 841.89]
+/BleedBox [0 0 595.28 841.89]
+/TrimBox [0 0 595.28 841.89]
+/ArtBox [0 0 595.28 841.89]
+/Contents 179 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+/Font << /F2.0 22 0 R
+/F1.0 8 0 R
+/F3.0 26 0 R
+/F5.0 182 0 R
+>>
+/XObject << /Stamp2 361 0 R
+>>
+>>
+>>
+endobj
+181 0 obj
+[180 0 R /XYZ 0 841.89 null]
+endobj
+182 0 obj
+<< /Type /Font
+/BaseFont /247feb+NotoSerif-Italic
+/Subtype /TrueType
+/FontDescriptor 383 0 R
+/FirstChar 32
+/LastChar 255
+/Widths 385 0 R
+/ToUnicode 384 0 R
+>>
+endobj
+183 0 obj
+<< /Length 22285
+>>
+stream
+q
+/DeviceRGB cs
+0.2 0.2 0.2 scn
+/DeviceRGB CS
+0.2 0.2 0.2 SCN
+
+BT
+48.24 794.5242 Td
+/F5.0 9.975 Tf
+[<54> 29.7852 <61626c6520322e20506172> 20.0195 <616d65746572732069676e6f7265642062> 20.0195 <7920746865206f6c6420616a63207461736b> 20.0195 <6465662c20627574206e6f7720737570706f72746564206f72206275676779>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 765.119 166.2665 21.78 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+214.5065 765.119 166.2665 21.78 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+380.773 765.119 166.267 21.78 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 743.339 166.2665 21.78 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+214.5065 743.339 166.2665 21.78 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+380.773 743.339 166.267 21.78 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 705.779 166.2665 37.56 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+214.5065 705.779 166.2665 37.56 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+380.773 705.779 166.267 37.56 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 668.219 166.2665 37.56 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+214.5065 668.219 166.2665 37.56 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+380.773 668.219 166.267 37.56 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 646.439 166.2665 21.78 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+214.5065 646.439 166.2665 21.78 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+380.773 646.439 166.267 21.78 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 608.879 166.2665 37.56 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+214.5065 608.879 166.2665 37.56 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+380.773 608.879 166.267 37.56 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 555.539 166.2665 53.34 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+214.5065 555.539 166.2665 53.34 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+380.773 555.539 166.267 53.34 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 533.759 166.2665 21.78 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+214.5065 533.759 166.2665 21.78 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+380.773 533.759 166.267 21.78 re
+f
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 786.899 m
+214.5065 786.899 l
+S
+[] 0 d
+1.25 w
+0.8667 0.8667 0.8667 SCN
+48.24 765.119 m
+214.5065 765.119 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 787.149 m
+48.24 764.494 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+214.5065 787.149 m
+214.5065 764.494 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 771.935 Td
+/F2.0 10.5 Tf
+<417474726962757465> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+214.5065 786.899 m
+380.773 786.899 l
+S
+[] 0 d
+1.25 w
+0.8667 0.8667 0.8667 SCN
+214.5065 765.119 m
+380.773 765.119 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+214.5065 787.149 m
+214.5065 764.494 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+380.773 787.149 m
+380.773 764.494 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+217.5065 771.935 Td
+/F2.0 10.5 Tf
+<4465736372697074696f6e> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+380.773 786.899 m
+547.04 786.899 l
+S
+[] 0 d
+1.25 w
+0.8667 0.8667 0.8667 SCN
+380.773 765.119 m
+547.04 765.119 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+380.773 787.149 m
+380.773 764.494 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 787.149 m
+547.04 764.494 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+383.773 771.935 Td
+/F2.0 10.5 Tf
+<537570706f727465643f> Tj
+ET
+
+0.0 0.0 0.0 scn
+1.25 w
+0.8667 0.8667 0.8667 SCN
+48.24 765.119 m
+214.5065 765.119 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 743.339 m
+214.5065 743.339 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 765.744 m
+48.24 743.089 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+214.5065 765.744 m
+214.5065 743.089 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 750.155 Td
+/F1.0 10.5 Tf
+<656e636f64696e67> Tj
+ET
+
+0.0 0.0 0.0 scn
+1.25 w
+0.8667 0.8667 0.8667 SCN
+214.5065 765.119 m
+380.773 765.119 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+214.5065 743.339 m
+380.773 743.339 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+214.5065 765.744 m
+214.5065 743.089 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+380.773 765.744 m
+380.773 743.089 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+217.5065 750.155 Td
+/F1.0 10.5 Tf
+<44656661756c7420656e636f64696e67206f6620736f757263652066696c65732e> Tj
+ET
+
+0.0 0.0 0.0 scn
+1.25 w
+0.8667 0.8667 0.8667 SCN
+380.773 765.119 m
+547.04 765.119 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+380.773 743.339 m
+547.04 743.339 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+380.773 765.744 m
+380.773 743.089 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 765.744 m
+547.04 743.089 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+383.773 750.155 Td
+/F1.0 10.5 Tf
+<796573> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 743.339 m
+214.5065 743.339 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 705.779 m
+214.5065 705.779 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 743.589 m
+48.24 705.529 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+214.5065 743.589 m
+214.5065 705.529 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 728.375 Td
+/F1.0 10.5 Tf
+<6f7074696d697a65> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+214.5065 743.339 m
+380.773 743.339 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+214.5065 705.779 m
+380.773 705.779 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+214.5065 743.589 m
+214.5065 705.529 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+380.773 743.589 m
+380.773 705.529 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+217.5065 728.375 Td
+/F1.0 10.5 Tf
+<5768657468657220736f757263652073686f756c64206265> Tj
+ET
+
+
+BT
+217.5065 712.595 Td
+/F1.0 10.5 Tf
+<636f6d70696c65642077697468206f7074696d697a6174696f6e2e> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+380.773 743.339 m
+547.04 743.339 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+380.773 705.779 m
+547.04 705.779 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+380.773 743.589 m
+380.773 705.529 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 743.589 m
+547.04 705.529 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+383.773 728.375 Td
+/F1.0 10.5 Tf
+<7965733f> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 705.779 m
+214.5065 705.779 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 668.219 m
+214.5065 668.219 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 706.029 m
+48.24 667.969 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+214.5065 706.029 m
+214.5065 667.969 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 690.815 Td
+/F1.0 10.5 Tf
+<746172676574> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+214.5065 705.779 m
+380.773 705.779 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+214.5065 668.219 m
+380.773 668.219 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+214.5065 706.029 m
+214.5065 667.969 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+380.773 706.029 m
+380.773 667.969 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+217.5065 690.815 Td
+/F1.0 10.5 Tf
+[<47656e6572> 20.0195 <61746520636c6173732066696c657320666f72207370656369666963>] TJ
+ET
+
+
+BT
+217.5065 675.035 Td
+/F1.0 10.5 Tf
+<564d2076657273696f6e2c206f6e65206f66205b> Tj
+ET
+
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+317.6345 675.035 Td
+/F3.0 10.5 Tf
+<312e3120312e32> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+354.3845 675.035 Td
+/F1.0 10.5 Tf
+<5d2e> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+380.773 705.779 m
+547.04 705.779 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+380.773 668.219 m
+547.04 668.219 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+380.773 706.029 m
+380.773 667.969 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 706.029 m
+547.04 667.969 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+383.773 690.815 Td
+/F1.0 10.5 Tf
+<796573> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 668.219 m
+214.5065 668.219 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 646.439 m
+214.5065 646.439 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 668.469 m
+48.24 646.189 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+214.5065 668.469 m
+214.5065 646.189 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 653.255 Td
+/F1.0 10.5 Tf
+<646570656e64> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+214.5065 668.219 m
+380.773 668.219 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+214.5065 646.439 m
+380.773 646.439 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+214.5065 668.469 m
+214.5065 646.189 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+380.773 668.469 m
+380.773 646.189 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+217.5065 653.255 Td
+/F1.0 10.5 Tf
+[<456e61626c657320646570656e64656e63792d7472> 20.0195 <61636b696e672e>] TJ
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+380.773 668.219 m
+547.04 668.219 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+380.773 646.439 m
+547.04 646.439 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+380.773 668.469 m
+380.773 646.189 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 668.469 m
+547.04 646.189 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+383.773 653.255 Td
+/F1.0 10.5 Tf
+<6e6f> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 646.439 m
+214.5065 646.439 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 608.879 m
+214.5065 608.879 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 646.689 m
+48.24 608.629 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+214.5065 646.689 m
+214.5065 608.629 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 631.475 Td
+/F1.0 10.5 Tf
+<696e636c756465416e7452756e74696d65> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+214.5065 646.439 m
+380.773 646.439 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+214.5065 608.879 m
+380.773 608.879 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+214.5065 646.689 m
+214.5065 608.629 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+380.773 646.689 m
+380.773 608.629 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+217.5065 631.475 Td
+/F1.0 10.5 Tf
+<5768657468657220746f20696e636c7564652074686520416e742072756e2d> Tj
+ET
+
+
+BT
+217.5065 615.695 Td
+/F1.0 10.5 Tf
+[<74696d65206c696272> 20.0195 <61726965732e>] TJ
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+380.773 646.439 m
+547.04 646.439 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+380.773 608.879 m
+547.04 608.879 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+380.773 646.689 m
+380.773 608.629 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 646.689 m
+547.04 608.629 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+383.773 631.475 Td
+/F1.0 10.5 Tf
+<6e6f> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 608.879 m
+214.5065 608.879 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 555.539 m
+214.5065 555.539 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 609.129 m
+48.24 555.289 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+214.5065 609.129 m
+214.5065 555.289 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 593.915 Td
+/F1.0 10.5 Tf
+<696e636c7564654a61766152756e74696d65> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+214.5065 608.879 m
+380.773 608.879 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+214.5065 555.539 m
+380.773 555.539 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+214.5065 609.129 m
+214.5065 555.289 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+380.773 609.129 m
+380.773 555.289 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+217.5065 593.915 Td
+/F1.0 10.5 Tf
+<5768657468657220746f20696e636c756465207468652072756e2d> Tj
+ET
+
+
+BT
+217.5065 578.135 Td
+/F1.0 10.5 Tf
+[<74696d65206c696272> 20.0195 <61726965732066726f6d20746865>] TJ
+ET
+
+
+BT
+217.5065 562.355 Td
+/F1.0 10.5 Tf
+<657865637574696e6720564d2e> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+380.773 608.879 m
+547.04 608.879 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+380.773 555.539 m
+547.04 555.539 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+380.773 609.129 m
+380.773 555.289 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 609.129 m
+547.04 555.289 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+383.773 593.915 Td
+/F1.0 10.5 Tf
+<6e6f> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 555.539 m
+214.5065 555.539 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 533.759 m
+214.5065 533.759 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 555.789 m
+48.24 533.509 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+214.5065 555.789 m
+214.5065 533.509 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 540.575 Td
+/F1.0 10.5 Tf
+<74687265616473> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+214.5065 555.539 m
+380.773 555.539 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+214.5065 533.759 m
+380.773 533.759 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+214.5065 555.789 m
+214.5065 533.509 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+380.773 555.789 m
+380.773 533.509 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+217.5065 540.575 Td
+/F1.0 10.5 Tf
+<4d756c74692d746872656164656420636f6d70696c6174696f6e> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+380.773 555.539 m
+547.04 555.539 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+380.773 533.759 m
+547.04 533.759 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+380.773 555.789 m
+380.773 533.509 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 555.789 m
+547.04 533.509 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+383.773 540.575 Td
+/F1.0 10.5 Tf
+<6e6f> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+3.0568 Tw
+
+BT
+48.24 509.795 Td
+/F1.0 10.5 Tf
+[<54686520666f6c6c6f77696e67207461626c652073686f77732074686174206d616e> 20.0195 <79206f662074686520756e6971756520706172> 20.0195 <616d657465727320696e204173706563744a20312e3020617265206e6f206c6f6e676572>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 494.015 Td
+/F1.0 10.5 Tf
+<737570706f727465642e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 466.8332 Td
+/F5.0 9.975 Tf
+[<54> 29.7852 <61626c6520332e20506172> 20.0195 <616d657465727320756e6971756520746f20616a63>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 437.428 249.4 21.78 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 437.428 249.4 21.78 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 384.088 249.4 53.34 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 384.088 249.4 53.34 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 362.308 249.4 21.78 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 362.308 249.4 21.78 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 308.968 249.4 53.34 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 308.968 249.4 53.34 re
+f
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 459.208 m
+297.64 459.208 l
+S
+[] 0 d
+1.25 w
+0.8667 0.8667 0.8667 SCN
+48.24 437.428 m
+297.64 437.428 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 459.458 m
+48.24 436.803 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 459.458 m
+297.64 436.803 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 444.244 Td
+/F2.0 10.5 Tf
+<417474726962757465> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 459.208 m
+547.04 459.208 l
+S
+[] 0 d
+1.25 w
+0.8667 0.8667 0.8667 SCN
+297.64 437.428 m
+547.04 437.428 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 459.458 m
+297.64 436.803 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 459.458 m
+547.04 436.803 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 444.244 Td
+/F2.0 10.5 Tf
+<4465736372697074696f6e> Tj
+ET
+
+0.0 0.0 0.0 scn
+1.25 w
+0.8667 0.8667 0.8667 SCN
+48.24 437.428 m
+297.64 437.428 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 384.088 m
+297.64 384.088 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 438.053 m
+48.24 383.838 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 438.053 m
+297.64 383.838 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 422.464 Td
+/F1.0 10.5 Tf
+<58> Tj
+ET
+
+0.0 0.0 0.0 scn
+1.25 w
+0.8667 0.8667 0.8667 SCN
+297.64 437.428 m
+547.04 437.428 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 384.088 m
+547.04 384.088 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 438.053 m
+297.64 383.838 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 438.053 m
+547.04 383.838 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 422.464 Td
+/F1.0 10.5 Tf
+[<646570726563617465642058206f7074696f6e7320696e636c7564652072657765617661626c6520286f6e2062> 20.0195 <79>] TJ
+ET
+
+
+BT
+300.64 406.684 Td
+/F1.0 10.5 Tf
+[<64656661756c74292072657765617661626c653a636f6d70726573732028636f6d707265737365642062> 20.0195 <79>] TJ
+ET
+
+
+BT
+300.64 390.904 Td
+/F1.0 10.5 Tf
+<64656661756c7429> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 384.088 m
+297.64 384.088 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 362.308 m
+297.64 362.308 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 384.338 m
+48.24 362.058 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 384.338 m
+297.64 362.058 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 369.124 Td
+/F1.0 10.5 Tf
+<656d61637373796d> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 384.088 m
+547.04 384.088 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 362.308 m
+547.04 362.308 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 384.338 m
+297.64 362.058 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 384.338 m
+547.04 362.058 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 369.124 Td
+/F1.0 10.5 Tf
+[<47656e6572> 20.0195 <6174652073796d626f6c7320666f7220456d6163732049444520737570706f72742e>] TJ
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 362.308 m
+297.64 362.308 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 308.968 m
+297.64 308.968 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 362.558 m
+48.24 308.718 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 362.558 m
+297.64 308.718 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 347.344 Td
+/F1.0 10.5 Tf
+<61726766696c6573> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 362.308 m
+547.04 362.308 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 308.968 m
+547.04 308.968 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 362.558 m
+297.64 308.718 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 362.558 m
+547.04 308.718 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 347.344 Td
+/F1.0 10.5 Tf
+<4120636f6d6d612d64656c696d69746564206c697374206f662061726766696c6573207468617420636f6e7461696e2061> Tj
+ET
+
+
+BT
+300.64 331.564 Td
+/F1.0 10.5 Tf
+<6c696e652d64656c696d69746564206c697374206f6620736f757263652066696c6520706174687320286162736f6c757465> Tj
+ET
+
+
+BT
+300.64 315.784 Td
+/F1.0 10.5 Tf
+<6f722072656c617469766520746f207468652061726766696c65292e> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 280.954 Td
+/F2.0 10.5 Tf
+<342e352e312e312e2061726766696c6573202d20617267756d656e74206c6973742066696c6573> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.9738 Tw
+
+BT
+48.24 255.124 Td
+/F1.0 10.5 Tf
+<416e20617267756d656e742066696c6520697320612066696c652028757375616c6c7920> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.9738 Tw
+
+BT
+230.6134 255.124 Td
+/F3.0 10.5 Tf
+<7b66696c657d2e6c7374> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.9738 Tw
+
+BT
+283.1134 255.124 Td
+/F1.0 10.5 Tf
+<2920636f6e7461696e696e672061206c697374206f6620736f757263652066696c6520706174687320286162736f6c757465206f72> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.2407 Tw
+
+BT
+48.24 239.344 Td
+/F1.0 10.5 Tf
+[<72656c617469766520746f207468652061726766696c65292e2059> 69.8242 <6f752063616e2075736520697420746f207370656369667920616c6c20736f757263652066696c657320746f20626520636f6d70696c65642c20776869636820616a6320726571756972657320746f>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.7313 Tw
+
+BT
+48.24 223.564 Td
+/F1.0 10.5 Tf
+<61766f696420736561726368696e6720657665727920706f737369626c6520736f757263652066696c6520696e2074686520736f757263652070617468207768656e206275696c64696e6720617370656374732e20496620796f752073706563696679> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.7846 Tw
+
+BT
+48.24 207.784 Td
+/F1.0 10.5 Tf
+[<616e2061726766696c6520746f2074686520616a63207461736b2c2069742077696c6c206e6f7420696e636c75646520616c6c2066696c657320696e20616e> 20.0195 <792073706563696669656420736f75726365206469726563746f72792028776869636820697320746865>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.4177 Tw
+
+BT
+48.24 192.004 Td
+/F1.0 10.5 Tf
+[<64656661756c74206265686176696f7220666f7220746865204a61766163207461736b207768656e206e6f20696e636c756465732061726520737065636966696564292e20436f6e76657273656c79> 89.8438 <2c20696620796f752073706563696679>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.7811 Tw
+
+BT
+48.24 176.224 Td
+/F1.0 10.5 Tf
+<6578636c756465732c20746865792077696c6c2062652072656d6f7665642066726f6d20746865206c697374206f662066696c657320636f6d70696c6564206576656e206966207468657920776572652073706563696669656420696e20616e> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 160.444 Td
+/F1.0 10.5 Tf
+<617267756d656e742066696c652e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.4397 Tw
+
+BT
+48.24 132.664 Td
+/F1.0 10.5 Tf
+<54686520636f6d70696c657220616c736f206163636570747320617267756d656e7473207468617420617265206e6f7420736f757263652066696c65732c20627574207468652049444520737570706f727420666f7220737563682066696c6573> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 116.884 Td
+/F1.0 10.5 Tf
+<7661726965732c20616e64204a6176616320646f6573206e6f7420737570706f7274207468656d2e204265207375726520746f20696e636c7564652065786163746c79206f6e6520617267756d656e74206f6e2065616368206c696e652e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 82.384 Td
+/F2.0 13 Tf
+[<342e352e322e20416a63313020706172> 20.0195 <616d657465727320737065636966696564206173206e657374656420656c656d656e7473>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.0232 Tw
+
+BT
+48.24 55.824 Td
+/F1.0 10.5 Tf
+<54686973207461736b20666f726d7320616e20696d706c696369742046696c6553657420616e6420737570706f72747320616c6c2061747472696275746573206f6620> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.0232 Tw
+
+BT
+379.0631 55.824 Td
+/F3.0 10.5 Tf
+<3c66696c657365743e> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.0232 Tw
+
+BT
+426.3131 55.824 Td
+/F1.0 10.5 Tf
+<2028646972206265636f6d65732073726364697229206173> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.0 0.0 0.0 scn
+0.0 0.0 0.0 SCN
+1 w
+0 J
+0 j
+[] 0 d
+/Stamp1 Do
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+535.978 14.263 Td
+/F1.0 9 Tf
+<3333> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+Q
+Q
+
+endstream
+endobj
+184 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/CropBox [0 0 595.28 841.89]
+/BleedBox [0 0 595.28 841.89]
+/TrimBox [0 0 595.28 841.89]
+/ArtBox [0 0 595.28 841.89]
+/Contents 183 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+/Font << /F5.0 182 0 R
+/F2.0 22 0 R
+/F1.0 8 0 R
+/F3.0 26 0 R
+>>
+/XObject << /Stamp1 360 0 R
+>>
+>>
+>>
+endobj
+185 0 obj
+[184 0 R /XYZ 0 296.968 null]
+endobj
+186 0 obj
+[184 0 R /XYZ 0 101.068 null]
+endobj
+187 0 obj
+<< /Length 11960
+>>
+stream
+q
+/DeviceRGB cs
+0.2 0.2 0.2 scn
+/DeviceRGB CS
+0.2 0.2 0.2 SCN
+
+1.6513 Tw
+
+BT
+48.24 794.676 Td
+/F1.0 10.5 Tf
+<77656c6c20617320746865206e657374656420> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.6513 Tw
+
+BT
+146.3738 794.676 Td
+/F3.0 10.5 Tf
+<3c696e636c7564653e> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.6513 Tw
+
+BT
+193.6238 794.676 Td
+/F1.0 10.5 Tf
+<2c20> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.6513 Tw
+
+BT
+200.6196 794.676 Td
+/F3.0 10.5 Tf
+<3c6578636c7564653e> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.6513 Tw
+
+BT
+247.8696 794.676 Td
+/F1.0 10.5 Tf
+<2c20616e6420> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.6513 Tw
+
+BT
+278.3462 794.676 Td
+/F3.0 10.5 Tf
+<3c7061747465726e7365743e> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.6513 Tw
+
+BT
+341.3463 794.676 Td
+/F1.0 10.5 Tf
+<20656c656d656e74732e2054686573652063616e206265207573656420746f2073706563696679> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 778.896 Td
+/F1.0 10.5 Tf
+<736f757263652066696c65732e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.1071 Tw
+
+BT
+48.24 751.116 Td
+/F3.0 10.5 Tf
+<616a63d5732060737263646972> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.1071 Tw
+
+BT
+116.1691 751.116 Td
+/F1.0 10.5 Tf
+<2c20> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.1071 Tw
+
+BT
+122.6206 751.116 Td
+/F3.0 10.5 Tf
+<636c61737370617468> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.1071 Tw
+
+BT
+169.8706 751.116 Td
+/F1.0 10.5 Tf
+<2c20> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.1071 Tw
+
+BT
+176.3222 751.116 Td
+/F3.0 10.5 Tf
+<626f6f74636c61737370617468> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.1071 Tw
+
+BT
+244.5722 751.116 Td
+/F1.0 10.5 Tf
+<2c20> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.1071 Tw
+
+BT
+251.0238 751.116 Td
+/F3.0 10.5 Tf
+<65787464697273> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.1071 Tw
+
+BT
+287.7738 751.116 Td
+/F1.0 10.5 Tf
+<2c20616e6420> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.1071 Tw
+
+BT
+317.1619 751.116 Td
+/F3.0 10.5 Tf
+<6a766d617267> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.1071 Tw
+
+BT
+348.6619 751.116 Td
+/F1.0 10.5 Tf
+[<20617474726962757465732061726520706174682d6c696b> 20.0195 <65207374727563747572657320616e64>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.6133 Tw
+
+BT
+48.24 735.336 Td
+/F1.0 10.5 Tf
+<63616e20616c736f2062652073657420766961206e657374656420> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.6133 Tw
+
+BT
+186.3348 735.336 Td
+/F3.0 10.5 Tf
+<3c7372633e> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.6133 Tw
+
+BT
+212.5848 735.336 Td
+/F1.0 10.5 Tf
+<2c20> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.6133 Tw
+
+BT
+219.5425 735.336 Td
+/F3.0 10.5 Tf
+<3c636c617373706174683e> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.6133 Tw
+
+BT
+277.2925 735.336 Td
+/F1.0 10.5 Tf
+<2c20> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.6133 Tw
+
+BT
+284.2503 735.336 Td
+/F3.0 10.5 Tf
+<3c626f6f74636c617373706174683e> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.6133 Tw
+
+BT
+363.0003 735.336 Td
+/F1.0 10.5 Tf
+<2c20> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.6133 Tw
+
+BT
+369.9581 735.336 Td
+/F3.0 10.5 Tf
+<3c657874646972733e> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.6133 Tw
+
+BT
+417.2081 735.336 Td
+/F1.0 10.5 Tf
+<2c20616e6420> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.6133 Tw
+
+BT
+447.6087 735.336 Td
+/F3.0 10.5 Tf
+<3c6a766d617267733e> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.6133 Tw
+
+BT
+494.8587 735.336 Td
+/F1.0 10.5 Tf
+<20656c656d656e74732c> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 719.556 Td
+/F1.0 10.5 Tf
+[<726573706563746976656c79> 89.8438 <2e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 685.056 Td
+/F2.0 13 Tf
+<342e352e332e2053616d706c65206f6620616a63207461736b> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.5607 Tw
+
+BT
+48.24 658.496 Td
+/F1.0 10.5 Tf
+[<46> 40.0391 <6f6c6c6f77696e672069732061206465636c6172> 20.0195 <6174696f6e20666f722074686520616a63207461736b20616e6420612073616d706c6520696e766f636174696f6e207468617420757365732074686520616a6320636f6d70696c657220746f>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 642.716 Td
+/F1.0 10.5 Tf
+<636f6d70696c65207468652066696c6573206c697374656420696e20> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+175.647 642.716 Td
+/F3.0 10.5 Tf
+<64656661756c742e6c7374> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+233.397 642.716 Td
+/F1.0 10.5 Tf
+<20696e746f207468652064657374206469723a> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.9608 0.9608 0.9608 scn
+52.24 626.9 m
+543.04 626.9 l
+545.2491 626.9 547.04 625.1091 547.04 622.9 c
+547.04 328.84 l
+547.04 326.6309 545.2491 324.84 543.04 324.84 c
+52.24 324.84 l
+50.0309 324.84 48.24 326.6309 48.24 328.84 c
+48.24 622.9 l
+48.24 625.1091 50.0309 626.9 52.24 626.9 c
+h
+f
+0.8 0.8 0.8 SCN
+0.75 w
+52.24 626.9 m
+543.04 626.9 l
+545.2491 626.9 547.04 625.1091 547.04 622.9 c
+547.04 328.84 l
+547.04 326.6309 545.2491 324.84 543.04 324.84 c
+52.24 324.84 l
+50.0309 324.84 48.24 326.6309 48.24 328.84 c
+48.24 622.9 l
+48.24 625.1091 50.0309 626.9 52.24 626.9 c
+h
+S
+Q
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 604.075 Td
+/F3.0 11 Tf
+<3c70726f6a656374206e616d653d226578616d706c65222064656661756c743d22636f6d70696c6522203e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 589.335 Td
+/F3.0 11 Tf
+<ca203c7461736b646566206e616d653d22616a6322> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 574.595 Td
+/F3.0 11 Tf
+<ca202020636c6173736e616d653d226f72672e6173706563746a2e746f6f6c732e616e742e7461736b646566732e416a63313022203e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 559.855 Td
+/F3.0 11 Tf
+<ca2020203c212d2d206465636c61726520636c6173736573206e656564656420746f2072756e20746865207461736b7320616e6420746f6f6c73202d2d3e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 545.115 Td
+/F3.0 11 Tf
+<ca2020203c636c617373706174683e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 530.375 Td
+/F3.0 11 Tf
+<ca20202020203c70617468656c656d656e74206c6f636174696f6e3d22247b686f6d652e6469727d2f746f6f6c732f6173706563746a2f6c69622f6173706563746a746f6f6c732e6a6172222f3e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 515.635 Td
+/F3.0 11 Tf
+<ca2020203c2f636c617373706174683e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 500.895 Td
+/F3.0 11 Tf
+<ca203c2f7461736b6465663e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 471.415 Td
+/F3.0 11 Tf
+<ca203c746172676574206e616d653d22636f6d70696c6522203e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 456.675 Td
+/F3.0 11 Tf
+<ca2020203c6d6b646972206469723d226465737422202f3e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 441.935 Td
+/F3.0 11 Tf
+<ca2020203c616a6320646573746469723d2264657374222061726766696c65733d2264656661756c742e6c737422203e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 427.195 Td
+/F3.0 11 Tf
+<ca20202020203c212d2d206465636c61726520636c6173736573206e656564656420746f20636f6d70696c6520746865207461726765742066696c6573202d2d3e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 412.455 Td
+/F3.0 11 Tf
+<ca20202020203c636c617373706174683e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 397.715 Td
+/F3.0 11 Tf
+<ca202020202020203c70617468656c656d656e74206c6f636174696f6e3d22247b686f6d652e6469727d2f746f6f6c732f6173706563746a2f6c69622f6173706563746a72742e6a6172222f3e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 382.975 Td
+/F3.0 11 Tf
+<ca20202020203c2f636c617373706174683e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 368.235 Td
+/F3.0 11 Tf
+<ca2020203c2f616a633e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 353.495 Td
+/F3.0 11 Tf
+<ca203c2f7461726765743e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 338.755 Td
+/F3.0 11 Tf
+<3c2f70726f6a6563743e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 300.876 Td
+/F1.0 10.5 Tf
+<54686973206275696c642073637269707420736e6970706574> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.9608 0.9608 0.9608 scn
+52.24 285.06 m
+543.04 285.06 l
+545.2491 285.06 547.04 283.2691 547.04 281.06 c
+547.04 208.1 l
+547.04 205.8909 545.2491 204.1 543.04 204.1 c
+52.24 204.1 l
+50.0309 204.1 48.24 205.8909 48.24 208.1 c
+48.24 281.06 l
+48.24 283.2691 50.0309 285.06 52.24 285.06 c
+h
+f
+0.8 0.8 0.8 SCN
+0.75 w
+52.24 285.06 m
+543.04 285.06 l
+545.2491 285.06 547.04 283.2691 547.04 281.06 c
+547.04 208.1 l
+547.04 205.8909 545.2491 204.1 543.04 204.1 c
+52.24 204.1 l
+50.0309 204.1 48.24 205.8909 48.24 208.1 c
+48.24 281.06 l
+48.24 283.2691 50.0309 285.06 52.24 285.06 c
+h
+S
+Q
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 262.235 Td
+/F3.0 11 Tf
+<3c616a63207372636469723d22247b7372637d22> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 247.495 Td
+/F3.0 11 Tf
+<ca20202020646573746469723d22247b6275696c647d22> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 232.755 Td
+/F3.0 11 Tf
+<ca2020202061726766696c65733d2264656d6f2e6c737422> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 218.015 Td
+/F3.0 11 Tf
+<2f3e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.8647 Tw
+
+BT
+48.24 180.136 Td
+/F1.0 10.5 Tf
+[<636f6d70696c657320616c6c202e6a6176612066696c65732073706563696669656420696e207468652064656d6f2e6c737420616e642073746f72657320746865202e636c6173732066696c657320696e2074686520247b6275696c647d206469726563746f7279> 89.8438 <2e>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.8794 Tw
+
+BT
+48.24 164.356 Td
+/F1.0 10.5 Tf
+[<556e6c696b> 20.0195 <6520746865204a61766163207461736b2c2074686520696e636c756465732061747472696275746520697320656d7074792062> 20.0195 <792064656661756c742c20736f206f6e6c792074686f73652066696c65732073706563696669656420696e>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 148.576 Td
+/F1.0 10.5 Tf
+<64656d6f2e6c73742061726520696e636c756465642e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 120.796 Td
+/F1.0 10.5 Tf
+<54686973206e657874206578616d706c65> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.0 0.0 0.0 scn
+0.0 0.0 0.0 SCN
+1 w
+0 J
+0 j
+[] 0 d
+/Stamp2 Do
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+49.24 14.263 Td
+/F1.0 9 Tf
+<3334> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+Q
+Q
+
+endstream
+endobj
+188 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/CropBox [0 0 595.28 841.89]
+/BleedBox [0 0 595.28 841.89]
+/TrimBox [0 0 595.28 841.89]
+/ArtBox [0 0 595.28 841.89]
+/Contents 187 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+/Font << /F1.0 8 0 R
+/F3.0 26 0 R
+/F2.0 22 0 R
+>>
+/XObject << /Stamp2 361 0 R
+>>
+>>
+>>
+endobj
+189 0 obj
+[188 0 R /XYZ 0 703.74 null]
+endobj
+190 0 obj
+<< /Length 12572
+>>
+stream
+q
+q
+/DeviceRGB cs
+0.9608 0.9608 0.9608 scn
+52.24 805.89 m
+543.04 805.89 l
+545.2491 805.89 547.04 804.0991 547.04 801.89 c
+547.04 714.19 l
+547.04 711.9809 545.2491 710.19 543.04 710.19 c
+52.24 710.19 l
+50.0309 710.19 48.24 711.9809 48.24 714.19 c
+48.24 801.89 l
+48.24 804.0991 50.0309 805.89 52.24 805.89 c
+h
+f
+/DeviceRGB CS
+0.8 0.8 0.8 SCN
+0.75 w
+52.24 805.89 m
+543.04 805.89 l
+545.2491 805.89 547.04 804.0991 547.04 801.89 c
+547.04 714.19 l
+547.04 711.9809 545.2491 710.19 543.04 710.19 c
+52.24 710.19 l
+50.0309 710.19 48.24 711.9809 48.24 714.19 c
+48.24 801.89 l
+48.24 804.0991 50.0309 805.89 52.24 805.89 c
+h
+S
+Q
+/DeviceRGB cs
+0.2 0.2 0.2 scn
+/DeviceRGB CS
+0.2 0.2 0.2 SCN
+
+BT
+59.24 783.065 Td
+/F3.0 11 Tf
+<3c616a63207372636469723d22247b7372637d22> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 768.325 Td
+/F3.0 11 Tf
+<ca20202020646573746469723d22247b6275696c647d22> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 753.585 Td
+/F3.0 11 Tf
+<ca20202020696e636c756465733d2273706163657761722f2a2c636f6f7264696e6174696f6e2f2a22> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 738.845 Td
+/F3.0 11 Tf
+<ca202020206578636c756465733d2273706163657761722f44656275672e6a61766122> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 724.105 Td
+/F3.0 11 Tf
+<2f3e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.9706 Tw
+
+BT
+48.24 686.226 Td
+/F1.0 10.5 Tf
+<636f6d70696c6573202e6a6176612066696c657320756e6465722074686520> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.9706 Tw
+
+BT
+207.0984 686.226 Td
+/F3.0 10.5 Tf
+<247b7372637d> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.9706 Tw
+
+BT
+238.5984 686.226 Td
+/F1.0 10.5 Tf
+<206469726563746f727920696e2074686520737061636577617220616e6420636f6f7264696e6174696f6e207061636b616765732c20616e64> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.142 Tw
+
+BT
+48.24 670.446 Td
+/F1.0 10.5 Tf
+<73746f72657320746865202e636c6173732066696c657320696e2074686520> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.142 Tw
+
+BT
+190.5102 670.446 Td
+/F3.0 10.5 Tf
+<247b6275696c647d> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.142 Tw
+
+BT
+232.5102 670.446 Td
+/F1.0 10.5 Tf
+[<206469726563746f7279> 89.8438 <2e20416c6c20736f757263652066696c657320756e6465722073706163657761722f20616e6420636f6f7264696e6174696f6e2f>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 654.666 Td
+/F1.0 10.5 Tf
+<61726520757365642c206578636570742044656275672e6a6176612e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 626.886 Td
+/F1.0 10.5 Tf
+<536565202e2e2f6578616d706c65732f6275696c642e786d6c20666f7220616e206578616d706c65206275696c64207363726970742e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 587.046 Td
+/F2.0 18 Tf
+<342e362e2049736f6c6174696e672070726f626c656d732072756e6e696e672074686520416e74207461736b73> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.578 Tw
+
+BT
+48.24 559.026 Td
+/F1.0 10.5 Tf
+[<496620796f7520686176652070726f626c656d73207769746820746865207461736b73206e6f7420736f6c7665642062> 20.0195 <792074686520646f63756d656e746174696f6e2c20706c656173652074727920746f2073656520696620796f752068617665>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 543.246 Td
+/F1.0 10.5 Tf
+<7468652073616d652070726f626c656d73207768656e2072756e6e696e6720616a63206469726563746c79206f6e2074686520636f6d6d616e64206c696e652e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+56.8805 515.466 Td
+/F1.0 10.5 Tf
+<a5> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.5043 Tw
+
+BT
+66.24 515.466 Td
+/F1.0 10.5 Tf
+[<4966207468652070726f626c656d206f6363757273206f6e2074686520636f6d6d616e64206c696e6520616c736f2c207468656e207468652070726f626c656d206973206e6f7420696e20746865207461736b2e20284974206d61> 20.0195 <79206265>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+66.24 499.686 Td
+/F1.0 10.5 Tf
+<696e2074686520746f6f6c733b20706c656173652073656e6420627567207265706f7274732e29> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+56.8805 477.906 Td
+/F1.0 10.5 Tf
+<a5> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.8508 Tw
+
+BT
+66.24 477.906 Td
+/F1.0 10.5 Tf
+[<4966207468652070726f626c656d20646f6573206e6f74206f63637572206f6e2074686520636f6d6d616e64206c696e652c207468656e206974206d61> 20.0195 <79206c696520696e2074686520706172> 20.0195 <616d657465727320796f7520617265>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+66.24 462.126 Td
+/F1.0 10.5 Tf
+<737570706c79696e6720696e20416e74206f7220696e20746865207461736bd5732068616e646c696e67206f66207468656d2e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+56.8805 440.346 Td
+/F1.0 10.5 Tf
+<a5> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.9673 Tw
+
+BT
+66.24 440.346 Td
+/F1.0 10.5 Tf
+<496620746865206275696c6420736372697074206c6f6f6b7320636f727265637420616e64207468652070726f626c656d206f6e6c79206f6363757273207768656e206275696c64696e672066726f6d20416e742c207468656e> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+66.24 424.566 Td
+/F1.0 10.5 Tf
+<706c656173652073656e642061207265706f72742028696e636c7564696e6720796f7572206275696c642066696c652c20696620706f737369626c65292e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 390.066 Td
+/F2.0 13 Tf
+<342e362e312e204b6e6f776e2069737375657320776974682074686520416e74207461736b73> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.3551 Tw
+
+BT
+48.24 363.506 Td
+/F1.0 10.5 Tf
+[<46> 40.0391 <6f7220746865206d6f73742075702d746f2d6461746520696e666f726d6174696f6e206f6e206b6e6f776e2070726f626c656d732c207365652074686520>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2588 0.5451 0.7922 scn
+0.2588 0.5451 0.7922 SCN
+
+2.3551 Tw
+
+BT
+397.3953 363.506 Td
+/F1.0 10.5 Tf
+<627567206461746162617365> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.3551 Tw
+
+BT
+465.8374 363.506 Td
+/F1.0 10.5 Tf
+<20666f7220756e7265736f6c766564> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2588 0.5451 0.7922 scn
+0.2588 0.5451 0.7922 SCN
+
+BT
+48.24 347.726 Td
+/F1.0 10.5 Tf
+<636f6d70696c65722062756773> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+119.178 347.726 Td
+/F1.0 10.5 Tf
+<206f7220> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2588 0.5451 0.7922 scn
+0.2588 0.5451 0.7922 SCN
+
+BT
+135.621 347.726 Td
+/F1.0 10.5 Tf
+[<7461736b> 20.0195 <6465662062756773>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+198.0013 347.726 Td
+/F1.0 10.5 Tf
+<202e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.9197 Tw
+
+BT
+48.24 319.946 Td
+/F1.0 10.5 Tf
+[<5768656e2072756e6e696e6720416e74206275696c64207363726970747320756e6465722045636c6970736520322e782076617269616e74732c20796f752077696c6c2067657420612056> 60.0586 <65726966794572726f72206265636175736520746865>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.171 Tw
+
+BT
+48.24 304.166 Td
+/F1.0 10.5 Tf
+[<45636c6970736520416e7420737570706f7274206661696c7320746f2069736f6c6174652074686520416e742072756e74696d652070726f7065726c79> 89.8438 <2e2054> 29.7852 <6f2072756e20696e207468697320636f6e746578742c207365742075702069616a6320746f>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 288.386 Td
+/F1.0 10.5 Tf
+[<666f726b2028616e642075736520666f726b> 20.0195 <636c61737370617468292e2045636c6970736520332e302077696c6c20666f726b20416e742070726f63657373657320746f2061766f69642070726f626c656d73206c696b> 20.0195 <6520746869732e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.0149 Tw
+
+BT
+48.24 260.606 Td
+/F1.0 10.5 Tf
+[<4d656d6f727920616e6420666f726b696e673a20557365727320656d61696c206d6f7374206f6674656e2061626f75742074686520616a63207461736b2072756e6e696e67206f7574206f66206d656d6f7279> 89.8438 <2e2054686973206973206e6f742061>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.1776 Tw
+
+BT
+48.24 244.826 Td
+/F1.0 10.5 Tf
+[<70726f626c656d207769746820746865207461736b3b20736f6d6520636f6d70696c65732074616b> 20.0195 <652061206c6f74206f66206d656d6f7279> 89.8438 <2c206f6674656e206d6f7265207468616e2073696d696c617220636f6d70696c6573207573696e67>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 229.046 Td
+/F1.0 10.5 Tf
+<6a617661632e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.305 Tw
+
+BT
+48.24 201.266 Td
+/F1.0 10.5 Tf
+[<46> 40.0391 <6f726b696e67206973206e6f7720737570706f7274656420696e20626f74682074686520>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2588 0.5451 0.7922 scn
+0.2588 0.5451 0.7922 SCN
+
+0.305 Tw
+
+BT
+237.9988 201.266 Td
+/F1.0 10.5 Tf
+[<416a633131436f6d70696c657241> 20.0195 <64617074657220286a6176616329>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.305 Tw
+
+BT
+388.1595 201.266 Td
+/F1.0 10.5 Tf
+<20616e6420> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2588 0.5451 0.7922 scn
+0.2588 0.5451 0.7922 SCN
+
+0.305 Tw
+
+BT
+413.3184 201.266 Td
+/F1.0 10.5 Tf
+[<416a6354> 29.7852 <61736b202869616a6329>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.305 Tw
+
+BT
+479.7546 201.266 Td
+/F1.0 10.5 Tf
+<2c20616e6420796f752063616e> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.1141 Tw
+
+BT
+48.24 185.486 Td
+/F1.0 10.5 Tf
+[<73657420746865206d6178696d756d206d656d6f727920617661696c61626c652e2059> 69.8242 <6f752063616e20616c736f206e6f7420666f726b20616e6420696e63726561736520746865206d656d6f727920617661696c61626c6520746f>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.0134 Tw
+
+BT
+48.24 169.706 Td
+/F1.0 10.5 Tf
+<416e7420287365652074686520416e7420646f63756d656e746174696f6e2c20736561726368696e6720666f7220414e545f4f5054532c20746865207661726961626c6520746865792075736520696e207468656972207363726970747320746f> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 153.926 Td
+/F1.0 10.5 Tf
+<7061737320564d206f7074696f6e732c20652e672e2c20414e545f4f5054533d2d586d783132386d292e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 119.426 Td
+/F2.0 13 Tf
+<342e362e322e20416e74207461736b207175657374696f6e7320616e642062756773> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.6717 Tw
+
+BT
+48.24 92.866 Td
+/F1.0 10.5 Tf
+[<46> 40.0391 <6f72207175657374696f6e732c20796f752063616e2073656e6420656d61696c20746f20>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2588 0.5451 0.7922 scn
+0.2588 0.5451 0.7922 SCN
+
+0.6717 Tw
+
+BT
+237.2585 92.866 Td
+/F1.0 10.5 Tf
+[<6173706563746a2d757365727340646576> 69.8242 <2e65636c697073652e6f7267>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.6717 Tw
+
+BT
+385.0373 92.866 Td
+/F1.0 10.5 Tf
+<2e2028446f206a6f696e20746865206c69737420746f2070617274696369706174652129> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.5177 Tw
+
+BT
+48.24 77.086 Td
+/F1.0 10.5 Tf
+[<57> 60.0586 <6520616c736f2077656c636f6d6520616e> 20.0195 <7920627567207265706f7274732c20706174636865732c20616e642066656174757265733b20796f752063616e207375626d6974207468656d20746f2074686520627567206461746162617365>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 61.306 Td
+/F1.0 10.5 Tf
+<617420> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2588 0.5451 0.7922 scn
+0.2588 0.5451 0.7922 SCN
+
+BT
+60.5565 61.306 Td
+/F1.0 10.5 Tf
+<687474703a2f2f627567732e65636c697073652e6f72672f62756773> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+196.1535 61.306 Td
+/F1.0 10.5 Tf
+<207573696e6720746865204173706563744a2070726f6475637420616e6420416e7420636f6d706f6e656e742e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.0 0.0 0.0 scn
+0.0 0.0 0.0 SCN
+1 w
+0 J
+0 j
+[] 0 d
+/Stamp1 Do
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+535.978 14.263 Td
+/F1.0 9 Tf
+<3335> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+Q
+Q
+
+endstream
+endobj
+191 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/CropBox [0 0 595.28 841.89]
+/BleedBox [0 0 595.28 841.89]
+/TrimBox [0 0 595.28 841.89]
+/ArtBox [0 0 595.28 841.89]
+/Contents 190 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+/Font << /F3.0 26 0 R
+/F1.0 8 0 R
+/F2.0 22 0 R
+>>
+/XObject << /Stamp1 360 0 R
+>>
+>>
+/Annots [194 0 R 195 0 R 196 0 R 197 0 R 198 0 R 200 0 R 201 0 R]
+>>
+endobj
+192 0 obj
+[191 0 R /XYZ 0 611.07 null]
+endobj
+193 0 obj
+[191 0 R /XYZ 0 408.75 null]
+endobj
+194 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (http://bugs.eclipse.org/bugs)
+>>
+/Subtype /Link
+/Rect [397.3953 360.44 465.8374 374.72]
+/Type /Annot
+>>
+endobj
+195 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (http://bugs.eclipse.org/bugs/buglist.cgi?&product=AspectJ&component=Compiler&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED)
+>>
+/Subtype /Link
+/Rect [48.24 344.66 119.178 358.94]
+/Type /Annot
+>>
+endobj
+196 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (http://bugs.eclipse.org/bugs/buglist.cgi?&product=AspectJ&component=Ant&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED)
+>>
+/Subtype /Link
+/Rect [135.621 344.66 198.0013 358.94]
+/Type /Annot
+>>
+endobj
+197 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (#antTasks-adapter)
+>>
+/Subtype /Link
+/Rect [237.9988 198.2 388.1595 212.48]
+/Type /Annot
+>>
+endobj
+198 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (#antTasks-iajc)
+>>
+/Subtype /Link
+/Rect [413.3184 198.2 479.7546 212.48]
+/Type /Annot
+>>
+endobj
+199 0 obj
+[191 0 R /XYZ 0 138.11 null]
+endobj
+200 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (mailto:aspectj-users@dev.eclipse.org)
+>>
+/Subtype /Link
+/Rect [237.2585 89.8 385.0373 104.08]
+/Type /Annot
+>>
+endobj
+201 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (http://bugs.eclipse.org/bugs)
+>>
+/Subtype /Link
+/Rect [60.5565 58.24 196.1535 72.52]
+/Type /Annot
+>>
+endobj
+202 0 obj
+<< /Length 11495
+>>
+stream
+q
+/DeviceRGB cs
+0.2 0.2 0.2 scn
+/DeviceRGB CS
+0.2 0.2 0.2 SCN
+
+BT
+48.24 782.394 Td
+/F2.0 22 Tf
+[<4368617074657220352e204c6f61642d54696d652057> 60.0586 <656176696e67>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 741.146 Td
+/F2.0 18 Tf
+<352e312e20496e74726f64756374696f6e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.6605 Tw
+
+BT
+48.24 713.126 Td
+/F1.0 10.5 Tf
+[<546865204173706563744a207765617665722074616b> 20.0195 <657320636c6173732066696c657320617320696e70757420616e642070726f647563657320636c6173732066696c6573206173206f75747075742e205468652077656176696e67>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.2576 Tw
+
+BT
+48.24 697.346 Td
+/F1.0 10.5 Tf
+[<70726f6365737320697473656c662063616e2074616b> 20.0195 <6520706c616365206174206f6e65206f6620746872656520646966666572656e742074696d65733a20636f6d70696c652d74696d652c20706f73742d636f6d70696c652074696d652c20616e64>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.1027 Tw
+
+BT
+48.24 681.566 Td
+/F1.0 10.5 Tf
+[<6c6f61642d74696d652e2054686520636c6173732066696c65732070726f64756365642062> 20.0195 <79207468652077656176696e672070726f636573732028616e642068656e6365207468652072756e2d74696d65206265686176696f7572206f6620616e>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 665.786 Td
+/F1.0 10.5 Tf
+<6170706c69636174696f6e2920617265207468652073616d65207265676172646c657373206f662074686520617070726f6163682063686f73656e2e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+56.8805 638.006 Td
+/F1.0 10.5 Tf
+<a5> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+3.6398 Tw
+
+BT
+66.24 638.006 Td
+/F1.0 10.5 Tf
+<436f6d70696c652d74696d652077656176696e67206973207468652073696d706c65737420617070726f6163682e205768656e20796f7520686176652074686520736f7572636520636f646520666f7220616e> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+3.988 Tw
+
+BT
+66.24 622.226 Td
+/F1.0 10.5 Tf
+<6170706c69636174696f6e2c20616a632077696c6c20636f6d70696c652066726f6d20736f7572636520616e642070726f6475636520776f76656e20636c6173732066696c6573206173206f75747075742e20546865> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.4796 Tw
+
+BT
+66.24 606.446 Td
+/F1.0 10.5 Tf
+[<696e766f636174696f6e206f66207468652077656176657220697320696e74656772> 20.0195 <616c20746f2074686520616a6320636f6d70696c6174696f6e2070726f636573732e205468652061737065637473207468656d73656c766573206d61> 20.0195 <79>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.4067 Tw
+
+BT
+66.24 590.666 Td
+/F1.0 10.5 Tf
+<626520696e20736f75726365206f722062696e61727920666f726d2e2049662074686520617370656374732061726520726571756972656420666f722074686520616666656374656420636c617373657320746f20636f6d70696c652c207468656e> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.7241 Tw
+
+BT
+66.24 574.886 Td
+/F1.0 10.5 Tf
+<796f75206d75737420776561766520617420636f6d70696c652d74696d652e2041737065637473206172652072657175697265642c20652e672e2c207768656e207468657920616464206d656d6265727320746f206120636c617373> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+66.24 559.106 Td
+/F1.0 10.5 Tf
+<616e64206f7468657220636c6173736573206265696e6720636f6d70696c6564207265666572656e636520746865206164646564206d656d626572732e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+56.8805 537.326 Td
+/F1.0 10.5 Tf
+<a5> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.5903 Tw
+
+BT
+66.24 537.326 Td
+/F1.0 10.5 Tf
+<506f73742d636f6d70696c652077656176696e672028616c736f20736f6d6574696d65732063616c6c65642062696e6172792077656176696e6729206973207573656420746f207765617665206578697374696e6720636c617373> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.0285 Tw
+
+BT
+66.24 521.546 Td
+/F1.0 10.5 Tf
+[<66696c657320616e64204a41522066696c65732e204173207769746820636f6d70696c652d74696d652077656176696e672c207468652061737065637473207573656420666f722077656176696e67206d61> 20.0195 <7920626520696e20736f75726365>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+66.24 505.766 Td
+/F1.0 10.5 Tf
+[<6f722062696e61727920666f726d2c20616e64206d61> 20.0195 <79207468656d73656c76657320626520776f76656e2062> 20.0195 <7920617370656374732e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+56.8805 483.986 Td
+/F1.0 10.5 Tf
+<a5> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.087 Tw
+
+BT
+66.24 483.986 Td
+/F1.0 10.5 Tf
+[<4c6f61642d74696d652077656176696e6720284c> 69.8242 <5457292069732073696d706c792062696e6172792077656176696e67206465666572656420756e74696c2074686520706f696e742074686174206120636c617373206c6f61646572>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.9288 Tw
+
+BT
+66.24 468.206 Td
+/F1.0 10.5 Tf
+[<6c6f616473206120636c6173732066696c6520616e6420646566696e65732074686520636c61737320746f20746865204a564d2e2054> 29.7852 <6f20737570706f727420746869732c206f6e65206f72206d6f7265202277656176696e6720636c617373>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.0897 Tw
+
+BT
+66.24 452.426 Td
+/F1.0 10.5 Tf
+[<6c6f6164657273222c206569746865722070726f7669646564206578706c696369746c792062> 20.0195 <79207468652072756e2d74696d6520656e7669726f6e6d656e74206f7220656e61626c6564207468726f7567682061202277656176696e67>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+66.24 436.646 Td
+/F1.0 10.5 Tf
+<6167656e7422206172652072657175697265642e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.4766 Tw
+
+BT
+48.24 408.866 Td
+/F1.0 10.5 Tf
+[<59> 69.8242 <6f75206d61> 20.0195 <7920616c736f206865617220746865207465726d202272756e2d74696d652077656176696e67222e2057> 60.0586 <6520646566696e652074686973206173207468652077656176696e67206f6620636c617373657320746861742068617665>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.4943 Tw
+
+BT
+48.24 393.086 Td
+/F1.0 10.5 Tf
+<616c7265616479206265656e20646566696e656420746f20746865204a564d2028776974686f75742072656c6f6164696e672074686f736520636c6173736573292e204173706563744a203520646f6573206e6f742070726f76696465> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.802 Tw
+
+BT
+48.24 377.306 Td
+/F1.0 10.5 Tf
+<6578706c6963697420737570706f727420666f722072756e2d74696d652077656176696e6720616c74686f7567682073696d706c6520636f64696e67207061747465726e732063616e20737570706f72742064796e616d6963616c6c79> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 361.526 Td
+/F1.0 10.5 Tf
+<656e61626c696e6720616e642064697361626c696e672061647669636520696e20617370656374732e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 327.026 Td
+/F2.0 13 Tf
+[<352e312e312e2057> 60.0586 <656176696e6720636c6173732066696c6573206d6f7265207468616e206f6e6365>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.6773 Tw
+
+BT
+48.24 300.466 Td
+/F1.0 10.5 Tf
+[<4173206f66204173706563744a203520617370656374732028636f6465207374796c65206f7220616e6e6f746174696f6e207374796c652920616e6420776f76656e20636c6173736573206172652072657765617661626c652062> 20.0195 <79>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.4274 Tw
+
+BT
+48.24 284.686 Td
+/F1.0 10.5 Tf
+<64656661756c742e20496620796f752061726520646576656c6f70696e67204173706563744a206170706c69636174696f6e7320746861742061726520746f206265207573656420696e2061206c6f61642d74696d652077656176696e67> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.9681 Tw
+
+BT
+48.24 268.906 Td
+/F1.0 10.5 Tf
+<656e7669726f6e6d656e74207769746820616e206f6c6465722076657273696f6e206f662074686520636f6d70696c657220796f75206e65656420746f20737065636966792074686520> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.9681 Tw
+
+BT
+435.6119 268.906 Td
+/F3.0 10.5 Tf
+<2d5872657765617661626c65> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.9681 Tw
+
+BT
+498.6119 268.906 Td
+/F1.0 10.5 Tf
+<20636f6d70696c6572> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.1079 Tw
+
+BT
+48.24 253.126 Td
+/F1.0 10.5 Tf
+<6f7074696f6e207768656e206275696c64696e67207468656d2e205468697320636175736573204173706563744a20746f2073617665206164646974696f6e616c20737461746520696e2074686520636c6173732066696c657320746861742069732075736564> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 237.346 Td
+/F1.0 10.5 Tf
+<746f20737570706f72742073756273657175656e7420726577656176696e672e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 197.506 Td
+/F2.0 18 Tf
+[<352e322e204c6f61642d74696d652057> 60.0586 <656176696e6720526571756972656d656e7473>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.4851 Tw
+
+BT
+48.24 169.486 Td
+/F1.0 10.5 Tf
+<416c6c206c6f61642d74696d652077656176696e6720697320646f6e6520696e2074686520636f6e74657874206f66206120636c617373206c6f616465722c20616e642068656e63652074686520736574206f662061737065637473207573656420666f72> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.2362 Tw
+
+BT
+48.24 153.706 Td
+/F1.0 10.5 Tf
+[<77656176696e6720616e642074686520747970657320746861742063616e20626520776f76656e206172652061666665637465642062> 20.0195 <792074686520636c617373206c6f616465722064656c65676174696f6e206d6f64656c2e2054686973>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+3.6739 Tw
+
+BT
+48.24 137.926 Td
+/F1.0 10.5 Tf
+[<656e73757265732074686174204c> 69.8242 <545720636f6d706c696573207769746820746865204a6176612032207365637572697479206d6f64656c2e2054686520666f6c6c6f77696e672072756c657320676f7665726e20746865>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 122.146 Td
+/F1.0 10.5 Tf
+[<696e746572> 20.0195 <616374696f6e206f66206c6f61642d74696d652077656176696e67207769746820636c617373206c6f6164696e673a>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+52.6765 94.366 Td
+/F1.0 10.5 Tf
+<312e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.4611 Tw
+
+BT
+66.24 94.366 Td
+/F1.0 10.5 Tf
+[<416c6c206173706563747320746f206265207573656420666f722077656176696e67206d75737420626520646566696e656420746f2074686520776561766572206265666f726520616e> 20.0195 <7920747970657320746f20626520776f76656e>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+3.2674 Tw
+
+BT
+66.24 78.586 Td
+/F1.0 10.5 Tf
+[<617265206c6f616465642e20546869732061766f696473207479706573206265696e6720226d6973736564222062> 20.0195 <792061737065637473206164646564206c617465722c20776974682074686520726573756c742074686174>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+66.24 62.806 Td
+/F1.0 10.5 Tf
+<696e76617269616e7473206163726f7373207479706573206661696c2e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.0 0.0 0.0 scn
+0.0 0.0 0.0 SCN
+1 w
+0 J
+0 j
+[] 0 d
+/Stamp2 Do
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+49.24 14.263 Td
+/F1.0 9 Tf
+<3336> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+Q
+Q
+
+endstream
+endobj
+203 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/CropBox [0 0 595.28 841.89]
+/BleedBox [0 0 595.28 841.89]
+/TrimBox [0 0 595.28 841.89]
+/ArtBox [0 0 595.28 841.89]
+/Contents 202 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+/Font << /F2.0 22 0 R
+/F1.0 8 0 R
+/F3.0 26 0 R
+>>
+/XObject << /Stamp2 361 0 R
+>>
+>>
+>>
+endobj
+204 0 obj
+[203 0 R /XYZ 0 841.89 null]
+endobj
+205 0 obj
+[203 0 R /XYZ 0 765.17 null]
+endobj
+206 0 obj
+[203 0 R /XYZ 0 345.71 null]
+endobj
+207 0 obj
+[203 0 R /XYZ 0 221.53 null]
+endobj
+208 0 obj
+<< /Length 13951
+>>
+stream
+q
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+/DeviceRGB cs
+0.2 0.2 0.2 scn
+/DeviceRGB CS
+0.2 0.2 0.2 SCN
+
+BT
+52.6765 793.926 Td
+/F1.0 10.5 Tf
+<322e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.3641 Tw
+
+BT
+66.24 793.926 Td
+/F1.0 10.5 Tf
+[<416c6c20617370656374732076697369626c6520746f20746865207765617665722061726520757361626c652e20412076697369626c6520617370656374206973206f6e6520646566696e65642062> 20.0195 <79207468652077656176696e6720636c617373>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.5805 Tw
+
+BT
+66.24 778.146 Td
+/F1.0 10.5 Tf
+[<6c6f61646572206f72206f6e65206f662069747320706172656e7420636c617373206c6f61646572732e20416c6c20636f6e63726574652076697369626c6520617370656374732061726520776f76656e20616e6420616c6c206162737472> 20.0195 <616374>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+66.24 762.366 Td
+/F1.0 10.5 Tf
+[<76697369626c652061737065637473206d61> 20.0195 <7920626520657874656e6465642e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+52.6765 740.586 Td
+/F1.0 10.5 Tf
+<332e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.8496 Tw
+
+BT
+66.24 740.586 Td
+/F1.0 10.5 Tf
+[<4120636c617373206c6f61646572206d61> 20.0195 <79206f6e6c7920776561766520636c6173736573207468617420697420646566696e65732e204974206d61> 20.0195 <79206e6f7420776561766520636c6173736573206c6f616465642062> 20.0195 <792061>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+66.24 724.806 Td
+/F1.0 10.5 Tf
+<64656c6567617465206f7220706172656e7420636c617373206c6f616465722e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 684.966 Td
+/F2.0 18 Tf
+[<352e332e20436f6e6669677572> 20.0195 <6174696f6e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.1499 Tw
+
+BT
+48.24 656.946 Td
+/F1.0 10.5 Tf
+[<4e657720696e204173706563744a2035206172652061206e756d626572206f66206d656368616e69736d7320746f206d616b> 20.0195 <65206c6f61642d74696d652077656176696e67206561737920746f207573652e20546865206c6f61642d>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.4347 Tw
+
+BT
+48.24 641.166 Td
+/F1.0 10.5 Tf
+[<74696d652077656176696e67206d656368616e69736d2069732063686f73656e207468726f756768204a564d2073746172747570206f7074696f6e732e20436f6e6669677572> 20.0195 <6174696f6e2066696c65732064657465726d696e6520746865>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.517 Tw
+
+BT
+48.24 625.386 Td
+/F1.0 10.5 Tf
+[<736574206f66206173706563747320746f206265207573656420666f722077656176696e6720616e642077686963682074797065732077696c6c20626520776f76656e2e2041> 20.0195 <64646974696f6e616c20646961676e6f73746963206f7074696f6e73>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 609.606 Td
+/F1.0 10.5 Tf
+[<616c6c6f7720746865207573657220746f2064656275672074686520636f6e6669677572> 20.0195 <6174696f6e20616e642077656176696e672070726f636573732e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 575.106 Td
+/F2.0 13 Tf
+[<352e332e312e20456e61626c696e67204c6f61642d74696d652057> 60.0586 <656176696e67>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+3.4156 Tw
+
+BT
+48.24 548.546 Td
+/F1.0 10.5 Tf
+[<4173706563744a203520737570706f727473207365766572> 20.0195 <616c207761> 20.0195 <7973206f6620656e61626c696e67206c6f61642d74696d652077656176696e6720666f7220616e206170706c69636174696f6e3a206167656e74732c2061>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.5053 Tw
+
+BT
+48.24 532.766 Td
+/F1.0 10.5 Tf
+[<636f6d6d616e642d6c696e65206c61756e6368207363726970742c20616e64206120736574206f6620696e746572666163657320666f7220696e74656772> 20.0195 <6174696f6e206f66204173706563744a206c6f61642d74696d652077656176696e6720696e>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 516.986 Td
+/F1.0 10.5 Tf
+<637573746f6d20656e7669726f6e6d656e74732e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 489.206 Td
+/F2.0 10.5 Tf
+[<41> 20.0195 <67656e7473>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.8761 Tw
+
+BT
+63.24 470.426 Td
+/F1.0 10.5 Tf
+<4173706563744a203520736869707320776974682061206c6f61642d74696d652077656176696e67206167656e74207468617420656e61626c6573206c6f61642d74696d652077656176696e672e2054686973206167656e7420616e64> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+5.5128 Tw
+
+BT
+63.24 454.646 Td
+/F1.0 10.5 Tf
+[<69747320636f6e6669677572> 20.0195 <6174696f6e20697320657865637574696f6e20656e7669726f6e6d656e7420646570656e64656e742e20436f6e6669677572> 20.0195 <6174696f6e20666f722074686520737570706f72746564>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.9226 Tw
+
+BT
+63.24 438.866 Td
+/F1.0 10.5 Tf
+<656e7669726f6e6d656e747320697320646973637573736564206c6174657220696e207468697320636861707465722e202b205573696e67204a6176612035204a564d544920796f752063616e207370656369667920746865> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+3.9282 Tw
+
+BT
+63.24 423.086 Td
+/F3.0 10.5 Tf
+<2d6a6176616167656e743a70617468746f2f6173706563746a7765617665722e6a6172> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+3.9282 Tw
+
+BT
+246.99 423.086 Td
+/F1.0 10.5 Tf
+<206f7074696f6e20746f20746865204a564d2e202b2053696e6365204173706563744a20312e392e372c20746865206f62736f6c657465> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.3954 Tw
+
+BT
+63.24 407.306 Td
+/F1.0 10.5 Tf
+[<4f72> 20.0195 <61636c652f424541204a526f636b6974206167656e74206973206e6f206c6f6e6765722070617274206f66204173706563744a2e204a526f636b6974204a444b206e6576657220737570706f72746564204a6176612076657273696f6e73>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.8258 Tw
+
+BT
+63.24 391.526 Td
+/F1.0 10.5 Tf
+[<686967686572207468616e20312e362e205365766572> 20.0195 <616c204a526f636b6974204a564d20666561747572657320617265206e6f772070617274206f6620486f7453706f7420616e6420746f6f6c73206c696b> 20.0195 <65204d697373696f6e>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+63.24 375.746 Td
+/F1.0 10.5 Tf
+[<436f6e74726f6c20617661696c61626c6520666f72204f70656e4a444b20616e64204f72> 20.0195 <61636c65204a444b2e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 347.966 Td
+/F2.0 10.5 Tf
+[<436f6d6d616e642d6c696e65207772> 20.0195 <6170706572207363726970747320>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+215.7148 347.966 Td
+/F4.0 10.5 Tf
+<616a> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.6918 Tw
+
+BT
+63.24 329.186 Td
+/F1.0 10.5 Tf
+<54686520> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.6918 Tw
+
+BT
+85.3518 329.186 Td
+/F3.0 10.5 Tf
+<616a> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.6918 Tw
+
+BT
+95.8518 329.186 Td
+/F1.0 10.5 Tf
+[<20636f6d6d616e642072756e73204a6176612070726f6772> 20.0195 <616d7320696e204a61766120312e34206f72206c617465722062> 20.0195 <792073657474696e6720757020>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.6918 Tw
+
+BT
+422.7422 329.186 Td
+/F3.0 10.5 Tf
+<57656176696e6755524c436c6173734c6f61646572> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.6918 Tw
+
+BT
+532.9922 329.186 Td
+/F1.0 10.5 Tf
+<206173> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.6162 Tw
+
+BT
+63.24 313.406 Td
+/F1.0 10.5 Tf
+[<7468652073797374656d20636c617373206c6f616465722e2046> 40.0391 <6f72206d6f726520696e666f726d6174696f6e2c2073656520>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2588 0.5451 0.7922 scn
+0.2588 0.5451 0.7922 SCN
+
+0.6162 Tw
+
+BT
+321.7335 313.406 Td
+/F1.0 10.5 Tf
+<3f3f3f> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.6162 Tw
+
+BT
+337.4835 313.406 Td
+/F1.0 10.5 Tf
+<2e202b2054686520> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.6162 Tw
+
+BT
+374.6855 313.406 Td
+/F3.0 10.5 Tf
+<616a35> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.6162 Tw
+
+BT
+390.4355 313.406 Td
+/F1.0 10.5 Tf
+[<20636f6d6d616e642072756e73204a6176612070726f6772> 20.0195 <616d73>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.8282 Tw
+
+BT
+63.24 297.626 Td
+/F1.0 10.5 Tf
+[<696e204a61766120352062> 20.0195 <79207573696e672074686520>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.8282 Tw
+
+BT
+183.4194 297.626 Td
+/F3.0 10.5 Tf
+<2d6a6176616167656e743a70617468746f2f6173706563746a7765617665722e6a6172> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.8282 Tw
+
+BT
+367.1694 297.626 Td
+/F1.0 10.5 Tf
+[<206f7074696f6e206465736372696265642061626f76652e2046> 40.0391 <6f72206d6f7265>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+63.24 281.846 Td
+/F1.0 10.5 Tf
+<696e666f726d6174696f6e2c2073656520> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2588 0.5451 0.7922 scn
+0.2588 0.5451 0.7922 SCN
+
+BT
+147.9645 281.846 Td
+/F1.0 10.5 Tf
+<3f3f3f> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+163.7145 281.846 Td
+/F1.0 10.5 Tf
+<2e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 254.066 Td
+/F2.0 10.5 Tf
+<437573746f6d20636c617373206c6f61646572> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.2188 Tw
+
+BT
+63.24 235.286 Td
+/F1.0 10.5 Tf
+<41207075626c696320696e746572666163652069732070726f766964656420746f20616c6c6f7720612075736572207772697474656e20636c617373206c6f6164657220746f20696e7374616e746961746520612077656176657220616e64> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+3.4514 Tw
+
+BT
+63.24 219.506 Td
+/F1.0 10.5 Tf
+<776561766520636c6173736573206166746572206c6f6164696e6720616e64206265666f726520646566696e696e67207468656d20696e20746865204a564d2e205468697320656e61626c6573206c6f61642d74696d65> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.0295 Tw
+
+BT
+63.24 203.726 Td
+/F1.0 10.5 Tf
+<77656176696e6720746f20626520737570706f7274656420696e20656e7669726f6e6d656e7473207768657265206e6f2077656176696e67206167656e7420697320617661696c61626c652e20497420616c736f20616c6c6f777320746865> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.479 Tw
+
+BT
+63.24 187.946 Td
+/F1.0 10.5 Tf
+[<7573657220746f206578706c696369746c792072657374726963742062> 20.0195 <7920636c617373206c6f6164657220776869636820636c61737365732063616e20626520776f76656e2e2046> 40.0391 <6f72206d6f726520696e666f726d6174696f6e2c20736565>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2588 0.5451 0.7922 scn
+0.2588 0.5451 0.7922 SCN
+
+BT
+63.24 172.166 Td
+/F1.0 10.5 Tf
+<3f3f3f> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+78.99 172.166 Td
+/F1.0 10.5 Tf
+<20616e64207468652041504920646f63756d656e746174696f6e20616e6420736f7572636520666f7220> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+296.6865 172.166 Td
+/F3.0 10.5 Tf
+<57656176696e6755524c436c6173734c6f61646572> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+406.9365 172.166 Td
+/F1.0 10.5 Tf
+<20616e6420> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+431.4855 172.166 Td
+/F3.0 10.5 Tf
+<57656176696e6741646170746572> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+504.9855 172.166 Td
+/F1.0 10.5 Tf
+<2e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 137.666 Td
+/F2.0 13 Tf
+[<352e332e322e20436f6e6669677572696e67204c6f61642d74696d652057> 60.0586 <656176696e67207769746820616f702e786d6c2066696c6573>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.3781 Tw
+
+BT
+48.24 111.106 Td
+/F1.0 10.5 Tf
+<5468652077656176657220697320636f6e66696775726564207573696e67206f6e65206f72206d6f726520> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+2.3781 Tw
+
+BT
+290.6836 111.106 Td
+/F3.0 10.5 Tf
+<4d4554412d494e462f616f702e786d6c> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.3781 Tw
+
+BT
+374.6836 111.106 Td
+/F1.0 10.5 Tf
+<2066696c6573206c6f6361746564206f6e2074686520636c617373206c6f61646572> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.4205 Tw
+
+BT
+48.24 95.326 Td
+/F1.0 10.5 Tf
+[<73656172636820706174682e20456163682066696c65206d61> 20.0195 <79206465636c6172652061206c697374206f66206173706563747320746f206265207573656420666f722077656176696e672c2074797065207061747465726e732064657363726962696e67>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.1094 Tw
+
+BT
+48.24 79.546 Td
+/F1.0 10.5 Tf
+<77686963682074797065732073686f756c6420776f76656e2c20616e64206120736574206f66206f7074696f6e7320746f2062652070617373656420746f20746865207765617665722e20496e206164646974696f6e204173706563744a2035> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.7834 Tw
+
+BT
+48.24 63.766 Td
+/F1.0 10.5 Tf
+[<737570706f7274732074686520646566696e6974696f6e206f6620636f6e6372657465206173706563747320696e20584d4c2e204173706563747320646566696e656420696e2074686973207761> 20.0195 <79206d75737420657874656e6420616e>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.0 0.0 0.0 scn
+0.0 0.0 0.0 SCN
+1 w
+0 J
+0 j
+[] 0 d
+/Stamp1 Do
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+535.978 14.263 Td
+/F1.0 9 Tf
+<3337> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+Q
+Q
+
+endstream
+endobj
+209 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/CropBox [0 0 595.28 841.89]
+/BleedBox [0 0 595.28 841.89]
+/TrimBox [0 0 595.28 841.89]
+/ArtBox [0 0 595.28 841.89]
+/Contents 208 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+/Font << /F1.0 8 0 R
+/F2.0 22 0 R
+/F3.0 26 0 R
+/F4.0 149 0 R
+>>
+/XObject << /Stamp1 360 0 R
+>>
+>>
+/Annots [212 0 R 213 0 R 214 0 R]
+>>
+endobj
+210 0 obj
+[209 0 R /XYZ 0 708.99 null]
+endobj
+211 0 obj
+[209 0 R /XYZ 0 593.79 null]
+endobj
+212 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (#aj)
+>>
+/Subtype /Link
+/Rect [321.7335 310.34 337.4835 324.62]
+/Type /Annot
+>>
+endobj
+213 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (#aj)
+>>
+/Subtype /Link
+/Rect [147.9645 278.78 163.7145 293.06]
+/Type /Annot
+>>
+endobj
+214 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (#aj)
+>>
+/Subtype /Link
+/Rect [63.24 169.1 78.99 183.38]
+/Type /Annot
+>>
+endobj
+215 0 obj
+[209 0 R /XYZ 0 156.35 null]
+endobj
+216 0 obj
+<< /Length 8466
+>>
+stream
+q
+/DeviceRGB cs
+0.2 0.2 0.2 scn
+/DeviceRGB CS
+0.2 0.2 0.2 SCN
+
+1.6454 Tw
+
+BT
+48.24 794.676 Td
+/F1.0 10.5 Tf
+[<6162737472> 20.0195 <616374206173706563742076697369626c6520746f20746865207765617665722e20546865206162737472> 20.0195 <61637420617370656374206d61> 20.0195 <7920646566696e65206162737472> 20.0195 <61637420706f696e74637574732028627574206e6f74>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 778.896 Td
+/F1.0 10.5 Tf
+[<6162737472> 20.0195 <616374206d6574686f6473292e2054686520666f6c6c6f77696e67206578616d706c652073686f777320612073696d706c6520616f702e786d6c2066696c653a>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.9608 0.9608 0.9608 scn
+52.24 763.08 m
+543.04 763.08 l
+545.2491 763.08 547.04 761.2891 547.04 759.08 c
+547.04 67.04 l
+547.04 64.8309 545.2491 63.04 543.04 63.04 c
+52.24 63.04 l
+50.0309 63.04 48.24 64.8309 48.24 67.04 c
+48.24 759.08 l
+48.24 761.2891 50.0309 763.08 52.24 763.08 c
+h
+f
+0.8 0.8 0.8 SCN
+0.75 w
+52.24 763.08 m
+543.04 763.08 l
+545.2491 763.08 547.04 761.2891 547.04 759.08 c
+547.04 67.04 l
+547.04 64.8309 545.2491 63.04 543.04 63.04 c
+52.24 63.04 l
+50.0309 63.04 48.24 64.8309 48.24 67.04 c
+48.24 759.08 l
+48.24 761.2891 50.0309 763.08 52.24 763.08 c
+h
+S
+Q
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 740.255 Td
+/F3.0 11 Tf
+<3c6173706563746a3e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 710.775 Td
+/F3.0 11 Tf
+<ca203c617370656374733e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 696.035 Td
+/F3.0 11 Tf
+<ca2020203c212d2d206465636c6172652074776f206578697374696e67206173706563747320746f2074686520776561766572202d2d3e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 681.295 Td
+/F3.0 11 Tf
+<ca2020203c617370656374206e616d653d22636f6d2e4d79417370656374222f3e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 666.555 Td
+/F3.0 11 Tf
+<ca2020203c617370656374206e616d653d22636f6d2e4d794173706563742e496e6e6572222f3e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 637.075 Td
+/F3.0 11 Tf
+<ca2020203c212d2d20646566696e65206120636f6e63726574652061737065637420696e6c696e65202d2d3e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 622.335 Td
+/F3.0 11 Tf
+<ca2020203c636f6e63726574652d617370656374206e616d653d22636f6d2e78797a2e74726163696e672e4d7954726163696e6722> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 607.595 Td
+/F3.0 11 Tf
+<ca2020202020202020202020202020202020202020657874656e64733d2274726163696e672e416273747261637454726163696e6722> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 592.855 Td
+/F3.0 11 Tf
+<ca2020202020202020202020202020202020202020707265636564656e63653d22636f6d2e78797a2e66697273742c202a223e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 578.115 Td
+/F3.0 11 Tf
+<ca20202020203c706f696e74637574206e616d653d2274726163696e6753636f7065222065787072657373696f6e3d2277697468696e286f72672e6d61772e2a29222f3e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 563.375 Td
+/F3.0 11 Tf
+<ca2020203c2f636f6e63726574652d6173706563743e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 533.895 Td
+/F3.0 11 Tf
+<ca2020203c212d2d204f662074686520736574206f662061737065637473206465636c6172656420746f2074686520776561766572> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 519.155 Td
+/F3.0 11 Tf
+<ca20202020202020207573652061737065637473206d61746368696e67207468652074797065207061747465726e2022636f6d2e2e2a2220666f722077656176696e672e202d2d3e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 504.415 Td
+/F3.0 11 Tf
+<ca2020203c696e636c7564652077697468696e3d22636f6d2e2e2a222f3e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 474.935 Td
+/F3.0 11 Tf
+<ca2020203c212d2d204f662074686520736574206f662061737065637473206465636c6172656420746f2074686520776561766572> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 460.195 Td
+/F3.0 11 Tf
+<ca2020202020202020646f206e6f742075736520616e7920617370656374732077697468207468652040436f6f6c41737065637420616e6e6f746174696f6e20666f722077656176696e67202d2d3e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 445.455 Td
+/F3.0 11 Tf
+<ca2020203c6578636c7564652077697468696e3d2240436f6f6c417370656374202a222f3e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 415.975 Td
+/F3.0 11 Tf
+<ca203c2f617370656374733e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 386.495 Td
+/F3.0 11 Tf
+<ca203c776561766572206f7074696f6e733d222d766572626f7365223e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 371.755 Td
+/F3.0 11 Tf
+<ca2020203c212d2d2057656176652074797065732074686174206172652077697468696e20746865206a617661782e2a206f72206f72672e6173706563746a2e2a> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 357.015 Td
+/F3.0 11 Tf
+<ca20202020202020207061636b616765732e20416c736f20776561766520616c6c20747970657320696e2074686520666f6f207061636b616765207468617420646f> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 342.275 Td
+/F3.0 11 Tf
+<ca20202020202020206e6f7420686176652074686520404e6f576561766520616e6e6f746174696f6e2e202d2d3e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 327.535 Td
+/F3.0 11 Tf
+<ca2020203c696e636c7564652077697468696e3d226a617661782e2a222f3e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 312.795 Td
+/F3.0 11 Tf
+<ca2020203c696e636c7564652077697468696e3d226f72672e6173706563746a2e2a222f3e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 298.055 Td
+/F3.0 11 Tf
+<ca2020203c696e636c7564652077697468696e3d222821404e6f576561766520666f6f2e2a2920414e4420666f6f2e2a222f3e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 268.575 Td
+/F3.0 11 Tf
+<ca2020203c212d2d20446f206e6f742077656176652074797065732077697468696e207468652022626172222070616b616765202d2d3e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 253.835 Td
+/F3.0 11 Tf
+<ca2020203c6578636c7564652077697468696e3d226261722e2a222f3e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 224.355 Td
+/F3.0 11 Tf
+<ca2020203c212d2d2044756d7020616c6c2074797065732077697468696e207468652022636f6d2e666f6f2e62617222207061636b616765> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 209.615 Td
+/F3.0 11 Tf
+<ca2020202020202020746f2074686520222e2f5f616a64756d702220666f6c646572206f6e206469736b2028666f7220646961676e6f7374696320707572706f73657329202d2d3e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 194.875 Td
+/F3.0 11 Tf
+<ca2020203c64756d702077697468696e3d22636f6d2e666f6f2e6261722e2a222f3e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 165.395 Td
+/F3.0 11 Tf
+<ca2020203c212d2d2044756d7020616c6c2074797065732077697468696e207468652022636f6d2e666f6f2e62617222207061636b61676520616e64207375622d7061636b616765732c> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 150.655 Td
+/F3.0 11 Tf
+<ca2020202020202020626f7468206265666f72652061726520616674657220746865792061726520776f76656e2c> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 135.915 Td
+/F3.0 11 Tf
+<ca202020202020202077686963682063616e206265207573656420666f7220627974652d636f64652067656e6572617465642061742072756e74696d65> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 121.175 Td
+/F3.0 11 Tf
+<ca2020203c64756d702077697468696e3d22636f6d2e666f6f2e6261722e2e2a22206265666f7265616e6461667465723d2274727565222f3e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 106.435 Td
+/F3.0 11 Tf
+<ca203c2f7765617665723e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 76.955 Td
+/F3.0 11 Tf
+<3c2f6173706563746a3e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.0 0.0 0.0 scn
+0.0 0.0 0.0 SCN
+1 w
+0 J
+0 j
+[] 0 d
+/Stamp2 Do
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+49.24 14.263 Td
+/F1.0 9 Tf
+<3338> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+Q
+Q
+
+endstream
+endobj
+217 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/CropBox [0 0 595.28 841.89]
+/BleedBox [0 0 595.28 841.89]
+/TrimBox [0 0 595.28 841.89]
+/ArtBox [0 0 595.28 841.89]
+/Contents 216 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+/Font << /F1.0 8 0 R
+/F3.0 26 0 R
+>>
+/XObject << /Stamp2 361 0 R
+>>
+>>
+>>
+endobj
+218 0 obj
+<< /Length 19049
+>>
+stream
+q
+/DeviceRGB cs
+0.2 0.2 0.2 scn
+/DeviceRGB CS
+0.2 0.2 0.2 SCN
+
+21.5153 Tw
+
+BT
+48.24 794.676 Td
+/F1.0 10.5 Tf
+[<5468652044> 20.0195 <544420646566696e696e672074686520666f726d6174206f6620746869732066696c6520697320617661696c61626c6520686572653a>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2588 0.5451 0.7922 scn
+0.2588 0.5451 0.7922 SCN
+
+BT
+48.24 778.896 Td
+/F1.0 10.5 Tf
+[<687474703a2f2f777777> 69.8242 <2e65636c697073652e6f72672f6173706563746a2f6474642f>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2588 0.5451 0.7922 scn
+0.2588 0.5451 0.7922 SCN
+
+BT
+220.5783 778.896 Td
+/F1.0 10.5 Tf
+<6173706563746a2e647464> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+274.4643 778.896 Td
+/F1.0 10.5 Tf
+<2e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.9659 Tw
+
+BT
+48.24 751.116 Td
+/F1.0 10.5 Tf
+[<416e20616f702e786d6c2066696c6520636f6e7461696e732074776f206b> 20.0195 <65792073656374696f6e733a20>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.9659 Tw
+
+BT
+266.4078 751.116 Td
+/F3.0 10.5 Tf
+<61737065637473> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.9659 Tw
+
+BT
+303.1578 751.116 Td
+/F1.0 10.5 Tf
+<20646566696e6573206f6e65206f72206d6f7265206173706563747320746f207468652077656176657220616e64> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.1947 Tw
+
+BT
+48.24 735.336 Td
+/F1.0 10.5 Tf
+<636f6e74726f6c7320776869636820617370656374732061726520746f206265207573656420696e207468652077656176696e672070726f636573733b20> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.1947 Tw
+
+BT
+370.0611 735.336 Td
+/F3.0 10.5 Tf
+<776561766572> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.1947 Tw
+
+BT
+401.5611 735.336 Td
+/F1.0 10.5 Tf
+<20646566696e657320776561766572206f7074696f6e7320616e64> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 719.556 Td
+/F1.0 10.5 Tf
+<77686963682074797065732073686f756c6420626520776f76656e2e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.6935 Tw
+
+BT
+48.24 691.776 Td
+/F1.0 10.5 Tf
+[<5468652073696d706c657374207761> 20.0195 <7920746f20646566696e6520616e2061737065637420746f207468652077656176657220697320746f2073706563696679207468652066756c6c792d7175616c6966696564206e616d65206f6620746865>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.7125 Tw
+
+BT
+48.24 675.996 Td
+/F1.0 10.5 Tf
+[<617370656374207479706520696e20616e2061737065637420656c656d656e742e2059> 69.8242 <6f752063616e20616c736f206465636c6172652028616e6420646566696e6520746f207468652077656176657229206173706563747320696e6c696e6520696e>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.1711 Tw
+
+BT
+48.24 660.216 Td
+/F1.0 10.5 Tf
+<74686520616f702e786d6c2066696c652e205468697320697320646f6e65207573696e672074686520> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.1711 Tw
+
+BT
+243.5854 660.216 Td
+/F3.0 10.5 Tf
+<636f6e63726574652d617370656374> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.1711 Tw
+
+BT
+322.3354 660.216 Td
+/F1.0 10.5 Tf
+[<20656c656d656e742e204120636f6e63726574652d617370656374206465636c6172> 20.0195 <6174696f6e206d757374>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.2814 Tw
+
+BT
+48.24 644.436 Td
+/F1.0 10.5 Tf
+[<70726f76696465206120706f696e7463757420646566696e6974696f6e20666f72206576657279206162737472> 20.0195 <61637420706f696e7463757420696e20746865206162737472> 20.0195 <6163742061737065637420697420657874656e64732e2054686973>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.0 Tw
+
+BT
+48.24 628.656 Td
+/F1.0 10.5 Tf
+[<6d656368616e69736d20697320612075736566756c207761> 20.0195 <79206f662065787465726e616c697a696e6720636f6e6669677572> 20.0195 <6174696f6e20666f7220696e6672> 20.0195 <6173747275637475726520616e6420617578696c696172792061737065637473>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.9212 Tw
+
+BT
+48.24 612.876 Td
+/F1.0 10.5 Tf
+[<77686572652074686520706f696e7463757420646566696e6974696f6e73207468656d73656c7665732063616e20626520636f6e736964657265642070617274206f662074686520636f6e6669677572> 20.0195 <6174696f6e206f6620746865>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 597.096 Td
+/F1.0 10.5 Tf
+<736572766963652e20526566657220746f20746865206e6578742073656374696f6e20666f72206d6f72652064657461696c732e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.5129 Tw
+
+BT
+48.24 569.316 Td
+/F1.0 10.5 Tf
+<54686520> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.5129 Tw
+
+BT
+70.1729 569.316 Td
+/F3.0 10.5 Tf
+<61737065637473> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.5129 Tw
+
+BT
+106.9229 569.316 Td
+/F1.0 10.5 Tf
+[<20656c656d656e74206d61> 20.0195 <79206f7074696f6e616c6c7920636f6e7461696e206f6e65206f72206d6f726520>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.5129 Tw
+
+BT
+339.201 569.316 Td
+/F3.0 10.5 Tf
+<696e636c756465> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.5129 Tw
+
+BT
+375.951 569.316 Td
+/F1.0 10.5 Tf
+<20616e6420> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.5129 Tw
+
+BT
+401.5257 569.316 Td
+/F3.0 10.5 Tf
+<6578636c756465> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.5129 Tw
+
+BT
+438.2757 569.316 Td
+/F1.0 10.5 Tf
+[<20656c656d656e7473202862> 20.0195 <792064656661756c742c>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.1846 Tw
+
+BT
+48.24 553.536 Td
+/F1.0 10.5 Tf
+<616c6c20646566696e6564206173706563747320617265207573656420666f722077656176696e67292e2053706563696679696e6720696e636c756465206f72206578636c75646520656c656d656e7473207265737472696374732074686520736574206f66> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.5202 Tw
+
+BT
+48.24 537.756 Td
+/F1.0 10.5 Tf
+[<646566696e6564206173706563747320746f206265207573656420666f722077656176696e6720746f2074686f7365207468617420617265206d6174636865642062> 20.0195 <7920616e20696e636c756465207061747465726e2c20627574206e6f742062> 20.0195 <79>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.1122 Tw
+
+BT
+48.24 521.976 Td
+/F1.0 10.5 Tf
+<616e206578636c756465207061747465726e2e2054686520> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.1122 Tw
+
+BT
+173.4494 521.976 Td
+/F3.0 10.5 Tf
+<77697468696e> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.1122 Tw
+
+BT
+204.9494 521.976 Td
+/F1.0 10.5 Tf
+<20617474726962757465206163636570747320612074797065207061747465726e206f66207468652073616d6520666f726d20617320612077697468696e207063642c> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 506.196 Td
+/F1.0 10.5 Tf
+[<657863657074207468617420262620616e64207c7c20617265207265706c616365642062> 20.0195 <792027> 80.0781 <414e442720616e6420274f52272e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.6277 Tw
+
+BT
+48.24 478.416 Td
+/F1.0 10.5 Tf
+<4e6f7465207468617420> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.6277 Tw
+
+BT
+98.268 478.416 Td
+/F3.0 10.5 Tf
+<696e636c756465> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.6277 Tw
+
+BT
+135.018 478.416 Td
+/F1.0 10.5 Tf
+<20616e6420> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.6277 Tw
+
+BT
+160.8224 478.416 Td
+/F3.0 10.5 Tf
+<6578636c756465> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.6277 Tw
+
+BT
+197.5724 478.416 Td
+/F1.0 10.5 Tf
+<20656c656d656e74732061666665637420616c6c2061737065637473206465636c6172656420746f207468652077656176657220696e636c7564696e672074686f736520696e> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.5321 Tw
+
+BT
+48.24 462.636 Td
+/F1.0 10.5 Tf
+[<6f7468657220616f702e786d6c2066696c65732e2054> 29.7852 <6f2068656c702061766f696420756e6578706563746564206265686176696f75722061206c696e74207761726e696e672069732069737375656420696620616e20617370656374206973206e6f74>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.2665 Tw
+
+BT
+48.24 446.856 Td
+/F1.0 10.5 Tf
+<6465636c61726564206173206120726573756c74206f66206f66206170706c79696e672074686573652066696c746572732e20416c736f206e6f746520> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.2665 Tw
+
+BT
+335.5119 446.856 Td
+/F3.0 10.5 Tf
+<617370656374> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.2665 Tw
+
+BT
+367.0119 446.856 Td
+/F1.0 10.5 Tf
+<20616e6420> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.2665 Tw
+
+BT
+392.0939 446.856 Td
+/F3.0 10.5 Tf
+<636f6e63726574652d617370656374> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.2665 Tw
+
+BT
+470.8439 446.856 Td
+/F1.0 10.5 Tf
+<20656c656d656e7473206d757374> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.9706 Tw
+
+BT
+48.24 431.076 Td
+/F1.0 10.5 Tf
+<6265207573656420746f206465636c617265206173706563747320746f207468652077656176657220692e652e20> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.9706 Tw
+
+BT
+286.0761 431.076 Td
+/F3.0 10.5 Tf
+<696e636c756465> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.9706 Tw
+
+BT
+322.8261 431.076 Td
+/F1.0 10.5 Tf
+<20616e6420> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.9706 Tw
+
+BT
+351.3162 431.076 Td
+/F3.0 10.5 Tf
+<6578636c756465> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.9706 Tw
+
+BT
+388.0662 431.076 Td
+/F1.0 10.5 Tf
+<20656c656d656e74732063616e6e6f7420626520757365642066696e64> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 415.296 Td
+/F1.0 10.5 Tf
+<61737065637473206f6e2074686520636c617373206c6f616465722073656172636820706174682e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.4862 Tw
+
+BT
+48.24 387.516 Td
+/F1.0 10.5 Tf
+<54686520> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.4862 Tw
+
+BT
+70.1462 387.516 Td
+/F3.0 10.5 Tf
+<776561766572> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.4862 Tw
+
+BT
+101.6462 387.516 Td
+/F1.0 10.5 Tf
+<20656c656d656e74206973207573656420746f2070617373206f7074696f6e7320746f207468652077656176657220616e6420746f20737065636966792074686520736574206f6620747970657320746861742073686f756c64> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.1352 Tw
+
+BT
+48.24 371.736 Td
+/F1.0 10.5 Tf
+<626520776f76656e2e204966206e6f20696e636c75646520656c656d656e74732061726520737065636966696564207468656e20616c6c2074797065732076697369626c6520746f20746865207765617665722077696c6c20626520776f76656e2e20496e> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.4446 Tw
+
+BT
+48.24 355.956 Td
+/F1.0 10.5 Tf
+<6164646974696f6e2074686520> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.4446 Tw
+
+BT
+114.5388 355.956 Td
+/F3.0 10.5 Tf
+<64756d70> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.4446 Tw
+
+BT
+135.5388 355.956 Td
+/F1.0 10.5 Tf
+[<20656c656d656e742063616e20626520757365642063617074757265206f6e206469736b2062> 20.0195 <7974652d636f6465206f6620776f76656e20636c617373657320666f7220646961676e6f73746963>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 340.176 Td
+/F1.0 10.5 Tf
+[<707572706f73657320626f7468206265666f72652c20696e207468652063617365206f662074686f73652067656e6572> 20.0195 <617465642061742072756e74696d652c20616e64206166746572207468652077656176696e672070726f636573732e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.1984 Tw
+
+BT
+48.24 312.396 Td
+/F1.0 10.5 Tf
+[<5768656e207365766572> 20.0195 <616c20636f6e6669677572> 20.0195 <6174696f6e2066696c6573206172652076697369626c652066726f6d206120676976656e2077656176696e6720636c617373206c6f6164657220746865697220636f6e74656e747320617265>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.8615 Tw
+
+BT
+48.24 296.616 Td
+/F1.0 10.5 Tf
+<636f6e6365707475616c6c79206d65726765642e205468652066696c657320617265206d657267656420696e20746865206f7264657220746865792061726520666f756e64206f6e207468652073656172636820706174682028776974682061> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 280.836 Td
+/F1.0 10.5 Tf
+<726567756c617220> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+87.93 280.836 Td
+/F3.0 10.5 Tf
+<6765745265736f75726365417353747265616d> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+187.68 280.836 Td
+/F1.0 10.5 Tf
+<206c6f6f6b757029206163636f7264696e6720746f2074686520666f6c6c6f77696e672072756c65733a> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+56.8805 253.056 Td
+/F1.0 10.5 Tf
+<a5> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.8626 Tw
+
+BT
+66.24 253.056 Td
+/F1.0 10.5 Tf
+<54686520736574206f6620617661696c61626c6520617370656374732069732074686520736574206f6620616c6c206465636c6172656420616e6420646566696e656420617370656374732028> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.8626 Tw
+
+BT
+442.0158 253.056 Td
+/F3.0 10.5 Tf
+<617370656374> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.8626 Tw
+
+BT
+473.5158 253.056 Td
+/F1.0 10.5 Tf
+<20616e6420> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.8626 Tw
+
+BT
+499.79 253.056 Td
+/F3.0 10.5 Tf
+<636f6e63726574652d> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+66.24 237.276 Td
+/F3.0 10.5 Tf
+<617370656374> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+97.74 237.276 Td
+/F1.0 10.5 Tf
+<20656c656d656e7473206f662074686520> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+179.745 237.276 Td
+/F3.0 10.5 Tf
+<61737065637473> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+216.495 237.276 Td
+/F1.0 10.5 Tf
+<2073656374696f6e292e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+56.8805 215.496 Td
+/F1.0 10.5 Tf
+<a5> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.3765 Tw
+
+BT
+66.24 215.496 Td
+/F1.0 10.5 Tf
+[<54686520736574206f662061737065637473207573656420666f722077656176696e672069732074686520737562736574206f662074686520617661696c61626c652061737065637473207468617420617265206d6174636865642062> 20.0195 <79206174>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.7371 Tw
+
+BT
+66.24 199.716 Td
+/F1.0 10.5 Tf
+[<6c65617374206f6e6520696e636c7564652073746174656d656e7420616e6420617265206e6f74206d6174636865642062> 20.0195 <7920616e> 20.0195 <79206578636c7564652073746174656d656e74732e20496620746865726520617265206e6f>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+66.24 183.936 Td
+/F1.0 10.5 Tf
+<696e636c7564652073746174656d656e7473207468656e20616c6c206e6f6e2d6578636c7564656420617370656374732061726520696e636c756465642e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+56.8805 162.156 Td
+/F1.0 10.5 Tf
+<a5> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.1318 Tw
+
+BT
+66.24 162.156 Td
+/F1.0 10.5 Tf
+[<54686520736574206f6620747970657320746f20626520776f76656e206172652074686f7365207479706573206d6174636865642062> 20.0195 <79206174206c65617374206f6e652077656176657220>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.1318 Tw
+
+BT
+465.9507 162.156 Td
+/F3.0 10.5 Tf
+<696e636c756465> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.1318 Tw
+
+BT
+502.7007 162.156 Td
+/F1.0 10.5 Tf
+<20656c656d656e74> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.6939 Tw
+
+BT
+66.24 146.376 Td
+/F1.0 10.5 Tf
+[<616e64206e6f74206d6174636865642062> 20.0195 <7920616e> 20.0195 <792077656176657220>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.6939 Tw
+
+BT
+239.4784 146.376 Td
+/F3.0 10.5 Tf
+<6578636c756465> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.6939 Tw
+
+BT
+276.2284 146.376 Td
+/F1.0 10.5 Tf
+<20656c656d656e742e20496620746865726520617265206e6f2077656176657220696e636c7564652073746174656d656e7473> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+66.24 130.596 Td
+/F1.0 10.5 Tf
+<7468656e20616c6c206e6f6e2d6578636c756465642074797065732061726520696e636c756465642e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+56.8805 108.816 Td
+/F1.0 10.5 Tf
+<a5> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.0715 Tw
+
+BT
+66.24 108.816 Td
+/F1.0 10.5 Tf
+[<54686520776561766572206f7074696f6e732061726520646572697665642062> 20.0195 <792074616b696e672074686520756e696f6e206f6620746865206f7074696f6e732073706563696669656420696e2065616368206f6620746865>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.6748 Tw
+
+BT
+66.24 93.036 Td
+/F1.0 10.5 Tf
+[<776561766572206f7074696f6e73206174747269627574652073706563696669636174696f6e732e20576865726520616e206f7074696f6e2074616b> 20.0195 <657320612076616c756520652e672e20>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.6748 Tw
+
+BT
+447.3789 93.036 Td
+/F3.0 10.5 Tf
+<2d7761726e3a6e6f6e65> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.6748 Tw
+
+BT
+499.8789 93.036 Td
+/F1.0 10.5 Tf
+<20746865206d6f7374> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+66.24 77.256 Td
+/F1.0 10.5 Tf
+<726563656e746c7920646566696e65642076616c75652077696c6c20626520757365642e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.0 0.0 0.0 scn
+0.0 0.0 0.0 SCN
+1 w
+0 J
+0 j
+[] 0 d
+/Stamp1 Do
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+535.978 14.263 Td
+/F1.0 9 Tf
+<3339> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+Q
+Q
+
+endstream
+endobj
+219 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/CropBox [0 0 595.28 841.89]
+/BleedBox [0 0 595.28 841.89]
+/TrimBox [0 0 595.28 841.89]
+/ArtBox [0 0 595.28 841.89]
+/Contents 218 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+/Font << /F1.0 8 0 R
+/F3.0 26 0 R
+>>
+/XObject << /Stamp1 360 0 R
+>>
+>>
+/Annots [220 0 R 221 0 R]
+>>
+endobj
+220 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (http://www.eclipse.org/aspectj/dtd/aspectj.dtd)
+>>
+/Subtype /Link
+/Rect [48.24 775.83 220.5783 790.11]
+/Type /Annot
+>>
+endobj
+221 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (http://www.eclipse.org/aspectj/dtd/aspectj.dtd)
+>>
+/Subtype /Link
+/Rect [220.5783 775.83 274.4643 790.11]
+/Type /Annot
+>>
+endobj
+222 0 obj
+<< /Length 11931
+>>
+stream
+q
+/DeviceRGB cs
+0.2 0.2 0.2 scn
+/DeviceRGB CS
+0.2 0.2 0.2 SCN
+
+1.2226 Tw
+
+BT
+48.24 794.676 Td
+/F1.0 10.5 Tf
+<4974206973206e6f7420616e206572726f7220666f72207468652073616d652061737065637420746f20626520646566696e656420746f207468652077656176657220696e206d6f7265207468616e206f6e652076697369626c6520> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.2226 Tw
+
+BT
+520.79 794.676 Td
+/F3.0 10.5 Tf
+<4d4554412d> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.1967 Tw
+
+BT
+48.24 778.896 Td
+/F3.0 10.5 Tf
+<494e462f616f702e786d6c> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.1967 Tw
+
+BT
+105.99 778.896 Td
+/F1.0 10.5 Tf
+<2066696c652e20486f77657665722c206966207468652073616d6520636f6e63726574652061737065637420697320646566696e656420696e206d6f7265207468616e206f6e6520616f702e786d6c2066696c65207468656e> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.2552 Tw
+
+BT
+48.24 763.116 Td
+/F1.0 10.5 Tf
+[<616e206572726f722077696c6c206265206973737565642e204120636f6e63726574652061737065637420646566696e656420696e2074686973207761> 20.0195 <792077696c6c206265207573656420746f207765617665207479706573206c6f616465642062> 20.0195 <79>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 747.336 Td
+/F1.0 10.5 Tf
+<74686520636c617373206c6f616465722074686174206c6f616465642074686520616f702e786d6c2066696c6520696e2077686963682069742077617320646566696e65642e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.5506 Tw
+
+BT
+48.24 719.556 Td
+/F1.0 10.5 Tf
+<4120> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+2.5506 Tw
+
+BT
+60.9126 719.556 Td
+/F3.0 10.5 Tf
+<4d4554412d494e462f616f702e786d6c> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.5506 Tw
+
+BT
+144.9126 719.556 Td
+/F1.0 10.5 Tf
+[<2063616e2062652067656e6572> 20.0195 <617465642062> 20.0195 <79207573696e67206569746865722074686520>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+2.5506 Tw
+
+BT
+352.175 719.556 Td
+/F3.0 10.5 Tf
+<2d6f7574786d6c> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.5506 Tw
+
+BT
+388.925 719.556 Td
+/F1.0 10.5 Tf
+<206f7220> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+2.5506 Tw
+
+BT
+410.4692 719.556 Td
+/F3.0 10.5 Tf
+<2d6f7574786d6c66696c65> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.5506 Tw
+
+BT
+468.2192 719.556 Td
+/F1.0 10.5 Tf
+<206f7074696f6e73206f6620746865> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.9976 Tw
+
+BT
+48.24 703.776 Td
+/F1.0 10.5 Tf
+<4173706563744a20636f6d70696c65722e2049742077696c6c2073696d706c7920636f6e7461696e20612028706f737369626c7920656d7074792920736574206f662061737065637420656c656d656e74733b206f6e6520666f722065616368> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.3427 Tw
+
+BT
+48.24 687.996 Td
+/F1.0 10.5 Tf
+[<6162737472> 20.0195 <616374206f7220636f6e63726574652061737065637420646566696e65642e205768656e207573656420696e20636f6e6a756374696f6e20776974682074686520>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+2.3427 Tw
+
+BT
+425.6655 687.996 Td
+/F3.0 10.5 Tf
+<2d6f75746a6172> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.3427 Tw
+
+BT
+462.4155 687.996 Td
+/F1.0 10.5 Tf
+<206f7074696f6e2061204a4152206973> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 672.216 Td
+/F1.0 10.5 Tf
+<70726f647563656420746861742063616e206265207573656420776974682074686520> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+227.034 672.216 Td
+/F3.0 10.5 Tf
+<616a35> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+242.784 672.216 Td
+/F1.0 10.5 Tf
+<20636f6d6d616e64206f722061206c6f61642d74696d652077656176696e6720656e7669726f6e6d656e742e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 637.716 Td
+/F2.0 13 Tf
+<352e332e332e205573696e6720436f6e63726574652041737065637473> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.964 Tw
+
+BT
+48.24 611.156 Td
+/F1.0 10.5 Tf
+[<497420697320706f737369626c6520746f206d616b> 20.0195 <6520616e206162737472> 20.0195 <6163742061737065637420636f6e63726574652062> 20.0195 <79206d65616e73206f662074686520>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.964 Tw
+
+BT
+401.0149 611.156 Td
+/F3.0 10.5 Tf
+<4d4554412d494e462f616f702e786d6c> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.964 Tw
+
+BT
+485.0149 611.156 Td
+/F1.0 10.5 Tf
+<2066696c652e2054686973206973> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+3.3372 Tw
+
+BT
+48.24 595.376 Td
+/F1.0 10.5 Tf
+[<75736566756c207761> 20.0195 <7920746f20696d706c656d656e74206162737472> 20.0195 <61637420706f696e7463757473206174206465706c6f> 20.0195 <796d656e742074696d652c20616e6420616c736f20676976657320636f6e74726f6c206f766572>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.4825 Tw
+
+BT
+48.24 579.596 Td
+/F1.0 10.5 Tf
+<707265636564656e6365207468726f7567682074686520> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+2.4825 Tw
+
+BT
+177.5296 579.596 Td
+/F3.0 10.5 Tf
+<707265636564656e6365> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.4825 Tw
+
+BT
+230.0296 579.596 Td
+/F1.0 10.5 Tf
+<20617474726962757465206f662074686520> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+2.4825 Tw
+
+BT
+320.7363 579.596 Td
+/F3.0 10.5 Tf
+<636f6e63726574652d617370656374> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.4825 Tw
+
+BT
+399.4863 579.596 Td
+/F1.0 10.5 Tf
+<20584d4c20656c656d656e742e20436f6e736964657220746865> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 563.816 Td
+/F1.0 10.5 Tf
+<666f6c6c6f77696e673a> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.9608 0.9608 0.9608 scn
+52.24 548.0 m
+543.04 548.0 l
+545.2491 548.0 547.04 546.2091 547.04 544.0 c
+547.04 323.64 l
+547.04 321.4309 545.2491 319.64 543.04 319.64 c
+52.24 319.64 l
+50.0309 319.64 48.24 321.4309 48.24 323.64 c
+48.24 544.0 l
+48.24 546.2091 50.0309 548.0 52.24 548.0 c
+h
+f
+0.8 0.8 0.8 SCN
+0.75 w
+52.24 548.0 m
+543.04 548.0 l
+545.2491 548.0 547.04 546.2091 547.04 544.0 c
+547.04 323.64 l
+547.04 321.4309 545.2491 319.64 543.04 319.64 c
+52.24 319.64 l
+50.0309 319.64 48.24 321.4309 48.24 323.64 c
+48.24 544.0 l
+48.24 546.2091 50.0309 548.0 52.24 548.0 c
+h
+S
+Q
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 525.175 Td
+/F3.0 11 Tf
+<7061636b616765206d797061636b3b> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 495.695 Td
+/F3.0 11 Tf
+<40417370656374> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 480.955 Td
+/F3.0 11 Tf
+<7075626c696320616273747261637420636c617373204162737472616374417370656374207b> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 451.475 Td
+/F3.0 11 Tf
+<ca2020202f2f20616273747261637420706f696e746375743a206e6f2065787072657373696f6e20697320646566696e6564> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 436.735 Td
+/F3.0 11 Tf
+<ca20202040506f696e74637574> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 421.995 Td
+/F3.0 11 Tf
+<ca202020616273747261637420766f69642073636f706528293b> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 392.515 Td
+/F3.0 11 Tf
+<ca202020404265666f7265282273636f7065282920262620657865637574696f6e282a202a2e2e646f536f6d65282e2e29292229> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 377.775 Td
+/F3.0 11 Tf
+<ca2020207075626c696320766f6964206265666f7265284a6f696e506f696e74206a7029207b> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 363.035 Td
+/F3.0 11 Tf
+<ca2020202020202e2e2e2e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 348.295 Td
+/F3.0 11 Tf
+<ca2020207d> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 333.555 Td
+/F3.0 11 Tf
+<7d> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 295.676 Td
+/F1.0 10.5 Tf
+<5468697320617370656374206973206571756976616c656e7420746f2074686520666f6c6c6f77696e6720696e20636f6465207374796c653a> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.9608 0.9608 0.9608 scn
+52.24 279.86 m
+543.04 279.86 l
+545.2491 279.86 547.04 278.0691 547.04 275.86 c
+547.04 99.72 l
+547.04 97.5109 545.2491 95.72 543.04 95.72 c
+52.24 95.72 l
+50.0309 95.72 48.24 97.5109 48.24 99.72 c
+48.24 275.86 l
+48.24 278.0691 50.0309 279.86 52.24 279.86 c
+h
+f
+0.8 0.8 0.8 SCN
+0.75 w
+52.24 279.86 m
+543.04 279.86 l
+545.2491 279.86 547.04 278.0691 547.04 275.86 c
+547.04 99.72 l
+547.04 97.5109 545.2491 95.72 543.04 95.72 c
+52.24 95.72 l
+50.0309 95.72 48.24 97.5109 48.24 99.72 c
+48.24 275.86 l
+48.24 278.0691 50.0309 279.86 52.24 279.86 c
+h
+S
+Q
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 257.035 Td
+/F3.0 11 Tf
+<7061636b616765206d797061636b3b> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 227.555 Td
+/F3.0 11 Tf
+<7075626c696320616273747261637420617370656374204162737472616374417370656374207b> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 198.075 Td
+/F3.0 11 Tf
+<ca2020202f2f20616273747261637420706f696e746375743a206e6f2065787072657373696f6e20697320646566696e6564> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 183.335 Td
+/F3.0 11 Tf
+<ca202020616273747261637420706f696e746375742073636f706528293b> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 153.855 Td
+/F3.0 11 Tf
+<ca2020206265666f72652829203a2073636f7065282920262620657865637574696f6e282a202a2e2e646f536f6d65282e2e2929207b> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 139.115 Td
+/F3.0 11 Tf
+<ca2020202020202e2e2e2e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 124.375 Td
+/F3.0 11 Tf
+<ca2020207d> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 109.635 Td
+/F3.0 11 Tf
+<7d> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.6236 Tw
+
+BT
+48.24 71.756 Td
+/F1.0 10.5 Tf
+<54686973206173706563742028696e20656974686572207374796c65292063616e206265206d61646520636f6e6372657465207573696e6720> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.6236 Tw
+
+BT
+342.8519 71.756 Td
+/F3.0 10.5 Tf
+<4d4554412d494e462f616f702e786d6c> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.6236 Tw
+
+BT
+426.8519 71.756 Td
+/F1.0 10.5 Tf
+[<2e20497420646566696e657320746865206162737472> 20.0195 <616374>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 55.976 Td
+/F1.0 10.5 Tf
+<706f696e7463757420> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+92.7915 55.976 Td
+/F3.0 10.5 Tf
+<73636f70652829> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+129.5415 55.976 Td
+/F1.0 10.5 Tf
+<2e205768656e207573696e672074686973206d656368616e69736d2074686520666f6c6c6f77696e672072756c6573206170706c793a> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.0 0.0 0.0 scn
+0.0 0.0 0.0 SCN
+1 w
+0 J
+0 j
+[] 0 d
+/Stamp2 Do
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+49.24 14.263 Td
+/F1.0 9 Tf
+<3430> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+Q
+Q
+
+endstream
+endobj
+223 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/CropBox [0 0 595.28 841.89]
+/BleedBox [0 0 595.28 841.89]
+/TrimBox [0 0 595.28 841.89]
+/ArtBox [0 0 595.28 841.89]
+/Contents 222 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+/Font << /F1.0 8 0 R
+/F3.0 26 0 R
+/F2.0 22 0 R
+>>
+/XObject << /Stamp2 361 0 R
+>>
+>>
+>>
+endobj
+224 0 obj
+[223 0 R /XYZ 0 656.4 null]
+endobj
+225 0 obj
+<< /Length 13746
+>>
+stream
+q
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+/DeviceRGB cs
+0.2 0.2 0.2 scn
+/DeviceRGB CS
+0.2 0.2 0.2 SCN
+
+BT
+56.8805 793.926 Td
+/F1.0 10.5 Tf
+<a5> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+66.24 793.926 Td
+/F1.0 10.5 Tf
+[<54686520706172656e7420617370656374206d757374206265206162737472> 20.0195 <6163742e2049742063616e20626520616e20404173706563744a206f72206120726567756c617220636f6465207374796c65206173706563742e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+56.8805 772.146 Td
+/F1.0 10.5 Tf
+<a5> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.7959 Tw
+
+BT
+66.24 772.146 Td
+/F1.0 10.5 Tf
+[<4f6e6c7920612073696d706c65206162737472> 20.0195 <61637420706f696e746375742063616e20626520696d706c656d656e74656420692e652e206120706f696e74637574207468617420646f65736ed574206578706f7365207374617465>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.6361 Tw
+
+BT
+66.24 756.366 Td
+/F1.0 10.5 Tf
+<287468726f75676820> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.6361 Tw
+
+BT
+113.5486 756.366 Td
+/F3.0 10.5 Tf
+<6172677328292c207468697328292c2074617267657428292c2069662829> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.6361 Tw
+
+BT
+272.9567 756.366 Td
+/F1.0 10.5 Tf
+[<292e20496e20404173706563744a2073796e74617820617320696c6c75737472> 20.0195 <6174656420696e20746869732073616d706c652c2074686973>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.8941 Tw
+
+BT
+66.24 740.586 Td
+/F1.0 10.5 Tf
+[<6d65616e7320746865206d6574686f64207468617420686f7374732074686520706f696e74637574206d757374206265206162737472> 20.0195 <6163742c2068617665206e6f20617267756d656e74732c20616e642072657475726e>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+66.24 724.806 Td
+/F1.0 10.5 Tf
+<766f69642e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+56.8805 703.026 Td
+/F1.0 10.5 Tf
+<a5> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+66.24 703.026 Td
+/F1.0 10.5 Tf
+[<54686520636f6e637265746520617370656374206d75737420696d706c656d656e7420616c6c20696e68657269746564206162737472> 20.0195 <61637420706f696e74637574732e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+56.8805 681.246 Td
+/F1.0 10.5 Tf
+<a5> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.2197 Tw
+
+BT
+66.24 681.246 Td
+/F1.0 10.5 Tf
+[<54686520636f6e637265746520617370656374206d61> 20.0195 <79206e6f7420696d706c656d656e74206d6574686f647320736f20746865206162737472> 20.0195 <6163742061737065637420697420657874656e6473206d61> 20.0195 <79206e6f74>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+66.24 665.466 Td
+/F1.0 10.5 Tf
+[<636f6e7461696e20616e> 20.0195 <79206162737472> 20.0195 <616374206d6574686f64732e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.1088 Tw
+
+BT
+48.24 637.686 Td
+/F5.0 10.5 Tf
+<41206c696d69746174696f6e206f662074686520696d706c656d656e746174696f6e206f662074686973206665617475726520696e204173706563744a20312e352e302069732074686174206173706563747320646566696e6564207573696e6720616f702e786d6c> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.2482 Tw
+
+BT
+48.24 621.906 Td
+/F5.0 10.5 Tf
+[<617265206e6f74206578706f73656420746f20746865207765617665722e2054686973206d65616e732074686174207468657920617265206e6f742061666665637465642062> 20.0195 <792061647669636520616e64204954447320646566696e656420696e>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 606.126 Td
+/F5.0 10.5 Tf
+<6f7468657220617370656374732e20537570706f727420666f722074686973206361706162696c6974792077696c6c20626520636f6e7369646572656420696e2061206675747572652072656c656173652e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.5721 Tw
+
+BT
+48.24 578.346 Td
+/F1.0 10.5 Tf
+<4966206d6f726520636f6d706c65782061737065637420696e6865726974616e63652069732072657175697265642075736520726567756c61722061737065637420696e6865726974616e636520696e7374656164206f6620584d4c2e20546865> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 562.566 Td
+/F1.0 10.5 Tf
+[<666f6c6c6f77696e6720584d4c20646566696e6974696f6e2073686f777320612076616c696420636f6e6372657465207375622d61737065637420666f7220746865206162737472> 20.0195 <61637420617370656374732061626f76653a>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.9608 0.9608 0.9608 scn
+52.24 546.75 m
+543.04 546.75 l
+545.2491 546.75 547.04 544.9591 547.04 542.75 c
+547.04 410.83 l
+547.04 408.6209 545.2491 406.83 543.04 406.83 c
+52.24 406.83 l
+50.0309 406.83 48.24 408.6209 48.24 410.83 c
+48.24 542.75 l
+48.24 544.9591 50.0309 546.75 52.24 546.75 c
+h
+f
+0.8 0.8 0.8 SCN
+0.75 w
+52.24 546.75 m
+543.04 546.75 l
+545.2491 546.75 547.04 544.9591 547.04 542.75 c
+547.04 410.83 l
+547.04 408.6209 545.2491 406.83 543.04 406.83 c
+52.24 406.83 l
+50.0309 406.83 48.24 408.6209 48.24 410.83 c
+48.24 542.75 l
+48.24 544.9591 50.0309 546.75 52.24 546.75 c
+h
+S
+Q
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 523.925 Td
+/F3.0 11 Tf
+<3c6173706563746a3e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 509.185 Td
+/F3.0 11 Tf
+<ca2020203c617370656374733e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 494.445 Td
+/F3.0 11 Tf
+<ca202020202020203c636f6e63726574652d617370656374206e616d653d226d797061636b2e5f5f4d795f5f416273747261637441737065637422> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 479.705 Td
+/F3.0 11 Tf
+<657874656e64733d226d797061636b2e4162737472616374417370656374223e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 464.965 Td
+/F3.0 11 Tf
+<ca20202020202020202020203c706f696e74637574206e616d653d2273636f7065222065787072657373696f6e3d2277697468696e28796f75727061636b6167652e2e2a29222f3e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 450.225 Td
+/F3.0 11 Tf
+<ca202020202020203c2f636f6e63726574652d6173706563743e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 435.485 Td
+/F3.0 11 Tf
+<ca2020203c617370656374733e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 420.745 Td
+/F3.0 11 Tf
+<3c2f6173706563746a3e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.2329 Tw
+
+BT
+48.24 382.866 Td
+/F1.0 10.5 Tf
+<497420697320696d706f7274616e7420746f2072656d656d62657220746861742074686520> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.2329 Tw
+
+BT
+233.988 382.866 Td
+/F3.0 10.5 Tf
+<6e616d65> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.2329 Tw
+
+BT
+254.988 382.866 Td
+/F1.0 10.5 Tf
+<2061747472696275746520696e2074686520> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.2329 Tw
+
+BT
+336.8853 382.866 Td
+/F3.0 10.5 Tf
+<636f6e63726574652d617370656374> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.2329 Tw
+
+BT
+415.6353 382.866 Td
+/F1.0 10.5 Tf
+<2064697265637469766520646566696e6573207468652066756c6c79> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.565 Tw
+
+BT
+48.24 367.086 Td
+/F1.0 10.5 Tf
+<7175616c6966696564206e616d6520746861742077696c6c20626520676976656e20746f2074686520636f6e6372657465206173706563742e204974206d75737420612076616c696420636c617373206e616d65206265636175736520746865> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.4266 Tw
+
+BT
+48.24 351.306 Td
+/F1.0 10.5 Tf
+[<6173706563742077696c6c2062652067656e6572> 20.0195 <61746564206f6e2074686520666c792062> 20.0195 <7920746865207765617665722e2059> 69.8242 <6f75206d75737420616c736f20656e73757265207468617420746865726520617265206e6f206e616d65>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.5716 Tw
+
+BT
+48.24 335.526 Td
+/F1.0 10.5 Tf
+<636f6c6c6973696f6e732e204e6f746520746861742074686520636f6e6372657465206173706563742077696c6c20626520646566696e65642061742074686520636c6173736c6f61646572206c6576656c20666f7220776869636820746865> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.4266 Tw
+
+BT
+48.24 319.746 Td
+/F1.0 10.5 Tf
+<616f702e786d6c2069732076697369626c652e205468697320696d706c696573207468617420696620796f75206e65656420746f207573652074686520> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.4266 Tw
+
+BT
+352.5974 319.746 Td
+/F3.0 10.5 Tf
+<6173706563746f66> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.4266 Tw
+
+BT
+394.5974 319.746 Td
+/F1.0 10.5 Tf
+<206d6574686f647320746f206163636573732074686520617370656374> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.5368 Tw
+
+BT
+48.24 303.966 Td
+/F1.0 10.5 Tf
+<696e7374616e63652873292028646570656e64696e67206f6e2074686520706572636c61757365206f66207468652061737065637420697420657874656e64732920796f75206861766520746f20757365207468652068656c70657220415049> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+48.24 288.186 Td
+/F3.0 10.5 Tf
+<6f72672e6173706563746a2e6c616e672e417370656374732e6173706563744f66282e2e29> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+242.49 288.186 Td
+/F1.0 10.5 Tf
+<20617320696e3a> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.9608 0.9608 0.9608 scn
+52.24 272.37 m
+543.04 272.37 l
+545.2491 272.37 547.04 270.5791 547.04 268.37 c
+547.04 180.67 l
+547.04 178.4609 545.2491 176.67 543.04 176.67 c
+52.24 176.67 l
+50.0309 176.67 48.24 178.4609 48.24 180.67 c
+48.24 268.37 l
+48.24 270.5791 50.0309 272.37 52.24 272.37 c
+h
+f
+0.8 0.8 0.8 SCN
+0.75 w
+52.24 272.37 m
+543.04 272.37 l
+545.2491 272.37 547.04 270.5791 547.04 268.37 c
+547.04 180.67 l
+547.04 178.4609 545.2491 176.67 543.04 176.67 c
+52.24 176.67 l
+50.0309 176.67 48.24 178.4609 48.24 180.67 c
+48.24 268.37 l
+48.24 270.5791 50.0309 272.37 52.24 272.37 c
+h
+S
+Q
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 249.545 Td
+/F3.0 11 Tf
+<2f2f20657863657074696f6e2068616e646c696e67206f6d6974746564> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 234.805 Td
+/F3.0 11 Tf
+<436c617373206d79436f6e6372657465417370656374436c617373203d20436c6173732e666f724e616d6528226d797061636b2e5f5f4d795f5f416273747261637441737065637422293b> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 205.325 Td
+/F3.0 11 Tf
+<2f2f206865726520776520617265207573696e6720612073696e676c65746f6e20617370656374> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 190.585 Td
+/F3.0 11 Tf
+<416273747261637441737065637420636f6e6372657465496e7374616e6365203d20417370656374732e6173706563744f66286d79436f6e6372657465417370656374436c617373293b> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 145.986 Td
+/F2.0 13 Tf
+<352e332e342e205573696e6720436f6e6372657465204173706563747320746f20646566696e6520707265636564656e6365> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.2135 Tw
+
+BT
+48.24 119.426 Td
+/F1.0 10.5 Tf
+<41732064657363726962656420696e207468652070726576696f75732073656374696f6e2c2074686520> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+2.2135 Tw
+
+BT
+267.6133 119.426 Td
+/F3.0 10.5 Tf
+<636f6e63726574652d617370656374> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.2135 Tw
+
+BT
+346.3633 119.426 Td
+/F1.0 10.5 Tf
+<20656c656d656e7420696e20> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+2.2135 Tw
+
+BT
+411.7724 119.426 Td
+/F3.0 10.5 Tf
+<4d4554412d494e462f616f702e786d6c> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.2135 Tw
+
+BT
+495.7724 119.426 Td
+/F1.0 10.5 Tf
+<20676976657320746865> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.1596 Tw
+
+BT
+48.24 103.646 Td
+/F1.0 10.5 Tf
+<6f7074696f6e20746f206465636c6172652074686520707265636564656e63652c206a75737420617320> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+2.1596 Tw
+
+BT
+266.3115 103.646 Td
+/F3.0 10.5 Tf
+<404465636c617265507265636564656e6365> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.1596 Tw
+
+BT
+360.8115 103.646 Td
+/F1.0 10.5 Tf
+<206f7220> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+2.1596 Tw
+
+BT
+381.5737 103.646 Td
+/F3.0 10.5 Tf
+<6465636c61726520707265636564656e6365> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.1596 Tw
+
+BT
+478.2333 103.646 Td
+/F1.0 10.5 Tf
+<20646f20696e20617370656374> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 87.866 Td
+/F1.0 10.5 Tf
+<736f7572636520636f64652e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+3.2783 Tw
+
+BT
+48.24 60.086 Td
+/F1.0 10.5 Tf
+[<536f6d6574696d6573206974206973206e656365737361727920746f206465636c61726520707265636564656e636520776974686f757420657874656e64696e6720616e> 20.0195 <79206162737472> 20.0195 <616374206173706563742e204974206973>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.0 0.0 0.0 scn
+0.0 0.0 0.0 SCN
+1 w
+0 J
+0 j
+[] 0 d
+/Stamp1 Do
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+535.978 14.263 Td
+/F1.0 9 Tf
+<3431> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+Q
+Q
+
+endstream
+endobj
+226 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/CropBox [0 0 595.28 841.89]
+/BleedBox [0 0 595.28 841.89]
+/TrimBox [0 0 595.28 841.89]
+/ArtBox [0 0 595.28 841.89]
+/Contents 225 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+/Font << /F1.0 8 0 R
+/F3.0 26 0 R
+/F5.0 182 0 R
+/F2.0 22 0 R
+>>
+/XObject << /Stamp1 360 0 R
+>>
+>>
+>>
+endobj
+227 0 obj
+[226 0 R /XYZ 0 164.67 null]
+endobj
+228 0 obj
+<< /Length 15275
+>>
+stream
+q
+/DeviceRGB cs
+0.2 0.2 0.2 scn
+/DeviceRGB CS
+0.2 0.2 0.2 SCN
+
+0.1 Tw
+
+BT
+48.24 794.676 Td
+/F1.0 10.5 Tf
+<7468657265666f726520706f737369626c6520746f207573652074686520> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.1 Tw
+
+BT
+192.7264 794.676 Td
+/F3.0 10.5 Tf
+<636f6e63726574652d617370656374> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.1 Tw
+
+BT
+271.4764 794.676 Td
+/F1.0 10.5 Tf
+<20656c656d656e7420776974686f75742074686520> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.1 Tw
+
+BT
+378.3673 794.676 Td
+/F3.0 10.5 Tf
+<657874656e6473> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.1 Tw
+
+BT
+415.1173 794.676 Td
+/F1.0 10.5 Tf
+[<2061747472696275746520616e6420776974686f757420616e> 20.0195 <79>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 778.896 Td
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+48.24 778.896 Td
+/F3.0 10.5 Tf
+<706f696e74637574> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+90.24 778.896 Td
+/F1.0 10.5 Tf
+<206e657374656420656c656d656e74732c206a757374206120> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+208.6905 778.896 Td
+/F3.0 10.5 Tf
+<707265636564656e6365> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+261.1905 778.896 Td
+/F1.0 10.5 Tf
+<206174747269627574652e20436f6e73696465722074686520666f6c6c6f77696e673a> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.9608 0.9608 0.9608 scn
+52.24 763.08 m
+543.04 763.08 l
+545.2491 763.08 547.04 761.2891 547.04 759.08 c
+547.04 656.64 l
+547.04 654.4309 545.2491 652.64 543.04 652.64 c
+52.24 652.64 l
+50.0309 652.64 48.24 654.4309 48.24 656.64 c
+48.24 759.08 l
+48.24 761.2891 50.0309 763.08 52.24 763.08 c
+h
+f
+0.8 0.8 0.8 SCN
+0.75 w
+52.24 763.08 m
+543.04 763.08 l
+545.2491 763.08 547.04 761.2891 547.04 759.08 c
+547.04 656.64 l
+547.04 654.4309 545.2491 652.64 543.04 652.64 c
+52.24 652.64 l
+50.0309 652.64 48.24 654.4309 48.24 656.64 c
+48.24 759.08 l
+48.24 761.2891 50.0309 763.08 52.24 763.08 c
+h
+S
+Q
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 740.255 Td
+/F3.0 11 Tf
+<3c6173706563746a3e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 725.515 Td
+/F3.0 11 Tf
+<ca2020203c617370656374733e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 710.775 Td
+/F3.0 11 Tf
+<ca202020202020203c636f6e63726574652d617370656374206e616d653d226d797061636b2e5f5f4d794465636c617265507265636564656e636522> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 696.035 Td
+/F3.0 11 Tf
+<ca202020202020202020202020202020202020202020202020707265636564656e63653d222a2e2e2a53656375726974792a2c204c6f6767696e672b2c202a222f3e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 681.295 Td
+/F3.0 11 Tf
+<ca2020203c2f617370656374733e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 666.555 Td
+/F3.0 11 Tf
+<3c2f6173706563746a3e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.0265 Tw
+
+BT
+48.24 628.676 Td
+/F1.0 10.5 Tf
+[<54686973206465706c6f> 20.0195 <796d656e742074696d6520646566696e6974696f6e73206973206f6e6c79206465636c6172696e67206120707265636564656e63652072756c652e2059> 69.8242 <6f75206861766520746f2072656d656d6265722074686174>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.9312 Tw
+
+BT
+48.24 612.896 Td
+/F1.0 10.5 Tf
+<74686520> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.9312 Tw
+
+BT
+68.8612 612.896 Td
+/F3.0 10.5 Tf
+<6e616d65> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.9312 Tw
+
+BT
+89.8612 612.896 Td
+/F1.0 10.5 Tf
+<20617474726962757465206d75737420626520612076616c69642066756c6c79207175616c696669656420636c617373206e616d6520746861742077696c6c206265207468656e20726573657276656420666f722074686973> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 597.116 Td
+/F1.0 10.5 Tf
+[<636f6e63726574652d61737065637420616e64206d757374206e6f7420636f6e666c6963742077697468206f7468657220636c617373657320796f75206465706c6f> 20.0195 <79> 89.8438 <2e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 562.616 Td
+/F2.0 13 Tf
+[<352e332e352e2057> 60.0586 <6561766572204f7074696f6e73>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.474 Tw
+
+BT
+48.24 536.056 Td
+/F1.0 10.5 Tf
+[<546865207461626c652062656c6f77206c6973747320746865204173706563744a206f7074696f6e7320737570706f727465642062> 20.0195 <79204c> 69.8242 <5457> 89.8438 <2e20416c6c206f74686572206f7074696f6e732077696c6c2062652069676e6f72656420616e642061>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 520.276 Td
+/F1.0 10.5 Tf
+<7761726e696e67206973737565642e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 482.68 249.4 21.78 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 482.68 249.4 21.78 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 366.22 249.4 116.46 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 366.22 249.4 116.46 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 265.54 249.4 100.68 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 265.54 249.4 100.68 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 196.42 249.4 69.12 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 196.42 249.4 69.12 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 143.08 249.4 53.34 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 143.08 249.4 53.34 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 105.52 249.4 37.56 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 105.52 249.4 37.56 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 83.74 249.4 21.78 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 83.74 249.4 21.78 re
+f
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 504.46 m
+297.64 504.46 l
+S
+[] 0 d
+1.25 w
+0.8667 0.8667 0.8667 SCN
+48.24 482.68 m
+297.64 482.68 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 504.71 m
+48.24 482.055 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 504.71 m
+297.64 482.055 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 489.496 Td
+/F2.0 10.5 Tf
+<4f7074696f6e> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 504.46 m
+547.04 504.46 l
+S
+[] 0 d
+1.25 w
+0.8667 0.8667 0.8667 SCN
+297.64 482.68 m
+547.04 482.68 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 504.71 m
+297.64 482.055 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 504.71 m
+547.04 482.055 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 489.496 Td
+/F2.0 10.5 Tf
+<507572706f7365> Tj
+ET
+
+0.0 0.0 0.0 scn
+1.25 w
+0.8667 0.8667 0.8667 SCN
+48.24 482.68 m
+297.64 482.68 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 366.22 m
+297.64 366.22 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 483.305 m
+48.24 365.97 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 483.305 m
+297.64 365.97 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+51.24 469.9 Td
+/F3.0 10.5 Tf
+<2d766572626f7365> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+0.0 0.0 0.0 scn
+1.25 w
+0.8667 0.8667 0.8667 SCN
+297.64 482.68 m
+547.04 482.68 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 366.22 m
+547.04 366.22 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 483.305 m
+297.64 365.97 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 483.305 m
+547.04 365.97 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 467.716 Td
+/F1.0 10.5 Tf
+<497373756520696e666f726d6174696f6e616c206d657373616765732061626f7574207468652077656176696e67> Tj
+ET
+
+
+BT
+300.64 451.936 Td
+/F1.0 10.5 Tf
+<70726f636573732e204d6573736167657320697373756564207768696c652074686520776561766572206973> Tj
+ET
+
+
+BT
+300.64 436.156 Td
+/F1.0 10.5 Tf
+[<6265696e6720626f6f74737472> 20.0195 <61707065642061726520616363756d756c6174656420756e74696c20616c6c>] TJ
+ET
+
+
+BT
+300.64 420.376 Td
+/F1.0 10.5 Tf
+<6f7074696f6e7320617265207061727365642e20496620746865206d6573736167657320617265207265717569726564> Tj
+ET
+
+
+BT
+300.64 404.596 Td
+/F1.0 10.5 Tf
+<746f206265206f757470757420696d6d6564696174656c7920796f752063616e2075736520746865206f7074696f6e> Tj
+ET
+
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+300.64 388.816 Td
+/F3.0 10.5 Tf
+<2d44616a2e77656176696e672e766572626f73653d74727565> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+431.89 388.816 Td
+/F1.0 10.5 Tf
+<206f6e20746865204a564d2073746172747570> Tj
+ET
+
+
+BT
+300.64 373.036 Td
+/F1.0 10.5 Tf
+<636f6d6d616e64206c696e652e> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 366.22 m
+297.64 366.22 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 265.54 m
+297.64 265.54 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 366.47 m
+48.24 265.29 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 366.47 m
+297.64 265.29 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+51.24 353.44 Td
+/F3.0 10.5 Tf
+<2d6465627567> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 366.22 m
+547.04 366.22 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 265.54 m
+547.04 265.54 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 366.47 m
+297.64 265.29 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 366.47 m
+547.04 265.29 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 351.256 Td
+/F1.0 10.5 Tf
+<49737375652061206d6573736167657320666f72206561636820636c6173732070617373656420746f20746865> Tj
+ET
+
+
+BT
+300.64 335.476 Td
+/F1.0 10.5 Tf
+<77656176657220696e6469636174696e6720776865746865722069742077617320776f76656e2c> Tj
+ET
+
+
+BT
+300.64 319.696 Td
+/F1.0 10.5 Tf
+<6578636c75646564206f722069676e6f7265642e20416c736f206973737565206d6573736167657320666f72> Tj
+ET
+
+
+BT
+300.64 303.916 Td
+/F1.0 10.5 Tf
+<636c617373657320646566696e656420647572696e67207468652077656176696e672070726f636573732073756368> Tj
+ET
+
+
+BT
+300.64 288.136 Td
+/F1.0 10.5 Tf
+<61732061726f756e642061647669636520636c6f737572657320616e6420636f6e63726574652061737065637473> Tj
+ET
+
+
+BT
+300.64 272.356 Td
+/F1.0 10.5 Tf
+<646566696e656420696e20> Tj
+ET
+
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+354.3055 272.356 Td
+/F3.0 10.5 Tf
+<4d4554412d494e462f616f702e786d6c> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+438.3055 272.356 Td
+/F1.0 10.5 Tf
+<2e> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 265.54 m
+297.64 265.54 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 196.42 m
+297.64 196.42 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 265.79 m
+48.24 196.17 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 265.79 m
+297.64 196.17 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+51.24 252.76 Td
+/F3.0 10.5 Tf
+<2d73686f775765617665496e666f> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 265.54 m
+547.04 265.54 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 196.42 m
+547.04 196.42 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 265.79 m
+297.64 196.17 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 265.79 m
+547.04 196.17 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 250.576 Td
+/F1.0 10.5 Tf
+<497373756520696e666f726d6174696f6e616c206d65737361676573207768656e6576657220746865> Tj
+ET
+
+
+BT
+300.64 234.796 Td
+/F1.0 10.5 Tf
+[<77656176657220746f7563686573206120636c6173732066696c652e2054686973206f7074696f6e206d61> 20.0195 <7920616c736f>] TJ
+ET
+
+
+BT
+300.64 219.016 Td
+/F1.0 10.5 Tf
+[<626520656e61626c6564207573696e67207468652053> 20.0195 <797374656d2070726f7065727479>] TJ
+ET
+
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+300.64 203.236 Td
+/F3.0 10.5 Tf
+<2d446f72672e6173706563746a2e7765617665722e73686f775765617665496e666f3d74727565> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+505.39 203.236 Td
+/F1.0 10.5 Tf
+<2e> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 196.42 m
+297.64 196.42 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 143.08 m
+297.64 143.08 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 196.67 m
+48.24 142.83 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 196.67 m
+297.64 142.83 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+51.24 183.64 Td
+/F3.0 10.5 Tf
+<2d586c696e7466696c653a70617468546f415265736f75726365> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 196.42 m
+547.04 196.42 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 143.08 m
+547.04 143.08 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 196.67 m
+297.64 142.83 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 196.67 m
+547.04 142.83 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 181.456 Td
+/F1.0 10.5 Tf
+<436f6e666967757265206c696e74206d657373616765732061732073706563696669656420696e2074686520676976656e> Tj
+ET
+
+
+BT
+300.64 165.676 Td
+/F1.0 10.5 Tf
+<7265736f75726365202876697369626c652066726f6d207468697320616f702e786d6c2066696c6527> Tj
+ET
+
+
+BT
+300.64 149.896 Td
+/F1.0 10.5 Tf
+<636c6173736c6f6164657229> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 143.08 m
+297.64 143.08 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 105.52 m
+297.64 105.52 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 143.33 m
+48.24 105.27 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 143.33 m
+297.64 105.27 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+51.24 130.3 Td
+/F3.0 10.5 Tf
+<2d586c696e743a64656661756c742c202d586c696e743a69676e6f72652c20c9> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 143.08 m
+547.04 143.08 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 105.52 m
+547.04 105.52 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 143.33 m
+297.64 105.27 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 143.33 m
+547.04 105.27 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 128.116 Td
+/F1.0 10.5 Tf
+<436f6e666967757265206c696e74206d657373616765732c20726566657220746f20646f63756d656e746174696f6e> Tj
+ET
+
+
+BT
+300.64 112.336 Td
+/F1.0 10.5 Tf
+<666f72206d65616e696e6766756c6c2076616c756573> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 105.52 m
+297.64 105.52 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 83.74 m
+297.64 83.74 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 105.77 m
+48.24 83.49 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 105.77 m
+297.64 83.49 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+51.24 92.74 Td
+/F3.0 10.5 Tf
+<2d6e6f7761726e2c202d7761726e3a6e6f6e65> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 105.52 m
+547.04 105.52 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 83.74 m
+547.04 83.74 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 105.77 m
+297.64 83.49 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 105.77 m
+547.04 83.49 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 90.556 Td
+/F1.0 10.5 Tf
+<5375707072657373207761726e696e67206d65737361676573> Tj
+ET
+
+0.0 0.0 0.0 scn
+q
+0.0 0.0 0.0 scn
+0.0 0.0 0.0 SCN
+1 w
+0 J
+0 j
+[] 0 d
+/Stamp2 Do
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+49.24 14.263 Td
+/F1.0 9 Tf
+<3432> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+Q
+Q
+
+endstream
+endobj
+229 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/CropBox [0 0 595.28 841.89]
+/BleedBox [0 0 595.28 841.89]
+/TrimBox [0 0 595.28 841.89]
+/ArtBox [0 0 595.28 841.89]
+/Contents 228 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+/Font << /F1.0 8 0 R
+/F3.0 26 0 R
+/F2.0 22 0 R
+>>
+/XObject << /Stamp2 361 0 R
+>>
+>>
+>>
+endobj
+230 0 obj
+[229 0 R /XYZ 0 581.3 null]
+endobj
+231 0 obj
+<< /Length 12726
+>>
+stream
+q
+/DeviceRGB cs
+1.0 1.0 1.0 scn
+48.24 784.11 249.4 21.78 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 784.11 249.4 21.78 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 746.55 249.4 37.56 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 746.55 249.4 37.56 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 724.77 249.4 21.78 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 724.77 249.4 21.78 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+48.24 529.41 249.4 195.36 re
+f
+0.0 0.0 0.0 scn
+1.0 1.0 1.0 scn
+297.64 529.41 249.4 195.36 re
+f
+0.0 0.0 0.0 scn
+0.5 w
+/DeviceRGB CS
+0.8667 0.8667 0.8667 SCN
+48.24 805.89 m
+297.64 805.89 l
+S
+[] 0 d
+1.25 w
+0.8667 0.8667 0.8667 SCN
+48.24 784.11 m
+297.64 784.11 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 806.14 m
+48.24 783.485 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 806.14 m
+297.64 783.485 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+51.24 790.926 Td
+/F2.0 10.5 Tf
+<4f7074696f6e> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 805.89 m
+547.04 805.89 l
+S
+[] 0 d
+1.25 w
+0.8667 0.8667 0.8667 SCN
+297.64 784.11 m
+547.04 784.11 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 806.14 m
+297.64 783.485 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 806.14 m
+547.04 783.485 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 790.926 Td
+/F2.0 10.5 Tf
+<507572706f7365> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 784.11 m
+297.64 784.11 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 746.55 m
+297.64 746.55 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 784.36 m
+48.24 746.3 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 784.36 m
+297.64 746.3 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+51.24 771.33 Td
+/F3.0 10.5 Tf
+<2d5872657765617661626c65> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 784.11 m
+547.04 784.11 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 746.55 m
+547.04 746.55 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 784.36 m
+297.64 746.3 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 784.36 m
+547.04 746.3 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 769.146 Td
+/F1.0 10.5 Tf
+<50726f6475636520636c6173732066696c657320746861742063616e2073756273657175656e746c79206265> Tj
+ET
+
+
+BT
+300.64 753.366 Td
+/F1.0 10.5 Tf
+<7265776f76656e> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 746.55 m
+297.64 746.55 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 724.77 m
+297.64 724.77 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 746.8 m
+48.24 724.52 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 746.8 m
+297.64 724.52 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+51.24 733.77 Td
+/F3.0 10.5 Tf
+<2d586e6f496e6c696e65> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 746.55 m
+547.04 746.55 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 724.77 m
+547.04 724.77 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 746.8 m
+297.64 724.52 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 746.8 m
+547.04 724.52 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 731.586 Td
+/F1.0 10.5 Tf
+<446f6ed57420696e6c696e652061726f756e64206164766963652e> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 724.77 m
+297.64 724.77 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 529.41 m
+297.64 529.41 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+48.24 725.02 m
+48.24 529.16 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 725.02 m
+297.64 529.16 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+51.24 711.99 Td
+/F3.0 10.5 Tf
+<2d586d65737361676548616e646c6572436c6173733ac9> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+0.0 0.0 0.0 scn
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 724.77 m
+547.04 724.77 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 529.41 m
+547.04 529.41 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+297.64 725.02 m
+297.64 529.16 l
+S
+[] 0 d
+0.5 w
+0.8667 0.8667 0.8667 SCN
+547.04 725.02 m
+547.04 529.16 l
+S
+[] 0 d
+1 w
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+300.64 709.806 Td
+/F1.0 10.5 Tf
+<50726f7669646520616c7465726e6174697665206f75747075742064657374696e6174696f6e20746f> Tj
+ET
+
+
+BT
+300.64 694.026 Td
+/F1.0 10.5 Tf
+<7374646f75742f73746465727220666f7220616c6c20776561766572206d657373616765732e2054686520676976656e> Tj
+ET
+
+
+BT
+300.64 678.246 Td
+/F1.0 10.5 Tf
+<76616c7565206d757374206265207468652066756c6c207175616c696669656420636c617373206e616d65206f662061> Tj
+ET
+
+
+BT
+300.64 662.466 Td
+/F1.0 10.5 Tf
+<636c617373207468617420696d706c656d656e747320746865> Tj
+ET
+
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+300.64 646.686 Td
+/F3.0 10.5 Tf
+<6f72672e6173706563746a2e6272696467652e494d65737361676548616e646c6572> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.2 0.2 0.2 scn
+
+BT
+479.14 646.686 Td
+/F1.0 10.5 Tf
+<20696e74657266616365> Tj
+ET
+
+
+BT
+300.64 630.906 Td
+/F1.0 10.5 Tf
+<616e642069732076697369626c6520746f2074686520636c6173736c6f61646572207769746820776869636820746865> Tj
+ET
+
+
+BT
+300.64 615.126 Td
+/F1.0 10.5 Tf
+<776561766572206265696e6720636f6e66696775726564206973206173736f6369617465642e204578657263697365> Tj
+ET
+
+
+BT
+300.64 599.346 Td
+/F1.0 10.5 Tf
+<63617574696f6e207768656e207061636b6167696e67206120637573746f6d206d657373616765> Tj
+ET
+
+
+BT
+300.64 583.566 Td
+/F1.0 10.5 Tf
+<68616e646c6572207769746820616e206170706c69636174696f6e207468617420697320746f20626520776f76656e2e> Tj
+ET
+
+
+BT
+300.64 567.786 Td
+/F1.0 10.5 Tf
+<5468652068616e646c6572202861732077656c6c20617320636c6173736573206f6e207768696368206974> Tj
+ET
+
+
+BT
+300.64 552.006 Td
+/F1.0 10.5 Tf
+[<646570656e6473292063616e6e6f7420697473656c6620626520776f76656e2062> 20.0195 <79207468652061737065637473>] TJ
+ET
+
+
+BT
+300.64 536.226 Td
+/F1.0 10.5 Tf
+<7468617420617265206465636c6172656420746f207468652073616d65207765617665722e> Tj
+ET
+
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 493.386 Td
+/F2.0 18 Tf
+<352e342e205370656369616c206361736573> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.7375 Tw
+
+BT
+48.24 465.366 Td
+/F1.0 10.5 Tf
+[<54686520666f6c6c6f77696e6720636c617373657320617265206e6f74206578706f73656420746f20746865204c> 69.8242 <545720696e6672> 20.0195 <61737472756374757265207265676172646c657373206f662074686520>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.7375 Tw
+
+BT
+477.735 465.366 Td
+/F3.0 10.5 Tf
+<616f702e786d6c> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.7375 Tw
+
+BT
+514.485 465.366 Td
+/F1.0 10.5 Tf
+<2066696c65287329> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 449.586 Td
+/F1.0 10.5 Tf
+<757365643a> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+56.8805 421.806 Td
+/F1.0 10.5 Tf
+<a5> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+66.24 421.806 Td
+/F1.0 10.5 Tf
+<416c6c20> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+82.872 421.806 Td
+/F3.0 10.5 Tf
+<6f72672e6173706563746a2e2a> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+151.122 421.806 Td
+/F1.0 10.5 Tf
+[<20636c61737365732028616e64207375627061636b6167657329202d2061732074686f736520617265206e65656465642062> 20.0195 <792074686520696e6672> 20.0195 <6173747275637475726520697473656c66>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+56.8805 400.026 Td
+/F1.0 10.5 Tf
+<a5> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+66.24 400.026 Td
+/F1.0 10.5 Tf
+<416c6c20> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+82.872 400.026 Td
+/F3.0 10.5 Tf
+<6a6176612e20616e6420> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+135.372 400.026 Td
+/F3.0 10.5 Tf
+<6a617661782e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+166.872 400.026 Td
+/F1.0 10.5 Tf
+<20636c61737365732028616e64207375627061636b6167657329> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+-0.5 Tc
+
+0.0 Tc
+
+-0.5 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+56.8805 378.246 Td
+/F1.0 10.5 Tf
+<a5> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+66.24 378.246 Td
+/F1.0 10.5 Tf
+<416c6c20> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+82.872 378.246 Td
+/F3.0 10.5 Tf
+<73756e2e7265666c6563742e2a> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+151.122 378.246 Td
+/F1.0 10.5 Tf
+<20636c6173736573202d2061732074686f736520617265204a444b20737065636966696320636c61737365732075736564207768656e207265666c6563746976652063616c6c73206f6363757273> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.4495 Tw
+
+BT
+48.24 350.466 Td
+/F1.0 10.5 Tf
+<44657370697465207468657365207265737472696374696f6e732c20697420697320706572666563746c7920706f737369626c6520746f206d617463682063616c6c206a6f696e20706f696e747320666f722063616c6c7320746f207468657365207479706573> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.1117 Tw
+
+BT
+48.24 334.686 Td
+/F1.0 10.5 Tf
+<70726f766964696e67207468652063616c6c696e6720636c617373206973206578706f73656420746f20746865207765617665722e205375627479706573206f66207468657365206578636c75646564207479706573207468617420617265> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 318.906 Td
+/F1.0 10.5 Tf
+[<6578706f73656420746f2074686520776561766572206d61> 20.0195 <79206f6620636f7572736520626520776f76656e2e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+3.0075 Tw
+
+BT
+48.24 291.126 Td
+/F1.0 10.5 Tf
+[<4e6f746520746861742064796e616d69632070726f787920726570726573656e746174696f6e7320617265206578706f73656420746f20746865204c> 69.8242 <545720696e6672> 20.0195 <6173747275637475726520616e6420617265206e6f74>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 275.346 Td
+/F1.0 10.5 Tf
+<636f6e736964657265642061207370656369616c20636173652e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.3925 Tw
+
+BT
+48.24 247.566 Td
+/F1.0 10.5 Tf
+<536f6d65206c696e74206f7074696f6e732062656861766520646966666572656e746c79207768656e207573656420756e646572206c6f61642d74696d652077656176696e672e2054686520> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.3925 Tw
+
+BT
+457.79 247.566 Td
+/F3.0 10.5 Tf
+<6164766963654469644e6f744d61746368> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.3925 Tw
+
+BT
+547.04 247.566 Td
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 231.786 Td
+/F1.0 10.5 Tf
+<776f6ed5742062652068616e646c65642061732061207761726e2028617320647572696e6720636f6d70696c652074696d65292062757420617320616e20696e666f206d6573736167652e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 191.946 Td
+/F2.0 18 Tf
+[<352e352e2052756e74696d6520526571756972656d656e747320666f72204c6f61642d74696d652057> 60.0586 <656176696e67>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.4497 Tw
+
+BT
+48.24 163.926 Td
+/F1.0 10.5 Tf
+[<54> 29.7852 <6f20757365204c> 69.8242 <54572074686520>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.4497 Tw
+
+BT
+129.2863 163.926 Td
+/F3.0 10.5 Tf
+<6173706563746a7765617665722e6a6172> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.4497 Tw
+
+BT
+218.5363 163.926 Td
+/F1.0 10.5 Tf
+[<206c696272> 20.0195 <617279206d75737420626520616464656420746f2074686520636c617373706174682e205468697320636f6e7461696e7320746865204173706563744a>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.9154 Tw
+
+BT
+48.24 148.146 Td
+/F1.0 10.5 Tf
+[<352072756e74696d652c207765617665722c2077656176696e6720636c617373206c6f6164657220616e642077656176696e67206167656e74732e20497420616c736f20636f6e7461696e73207468652044> 20.0195 <544420666f722070617273696e67>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 132.366 Td
+/F1.0 10.5 Tf
+[<584d4c2077656176696e6720636f6e6669677572> 20.0195 <6174696f6e2066696c65732e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 92.526 Td
+/F2.0 18 Tf
+[<352e362e20537570706f727465642041> 20.0195 <67656e7473>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.0 0.0 0.0 scn
+0.0 0.0 0.0 SCN
+1 w
+0 J
+0 j
+[] 0 d
+/Stamp1 Do
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+535.978 14.263 Td
+/F1.0 9 Tf
+<3433> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+Q
+Q
+
+endstream
+endobj
+232 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/CropBox [0 0 595.28 841.89]
+/BleedBox [0 0 595.28 841.89]
+/TrimBox [0 0 595.28 841.89]
+/ArtBox [0 0 595.28 841.89]
+/Contents 231 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+/Font << /F2.0 22 0 R
+/F3.0 26 0 R
+/F1.0 8 0 R
+>>
+/XObject << /Stamp1 360 0 R
+>>
+>>
+>>
+endobj
+233 0 obj
+[232 0 R /XYZ 0 517.41 null]
+endobj
+234 0 obj
+<< /Limits [(compatibility) (versionCompatibility)]
+/Names [(compatibility) 243 0 R (concrete-aspect) 224 0 R (concrete-aspect-precedence) 227 0 R (configuring-load-time-weaving-with-aopxml-files) 215 0 R (eclipse-aspectj) 23 0 R (example) 102 0 R (javaCompatibility) 245 0 R (jrockit) 240 0 R (ltw) 204 0 R (ltw-agents) 236 0 R (ltw-configuration) 210 0 R (ltw-introduction) 205 0 R (ltw-packaging) 235 0 R (ltw-rules) 207 0 R (ltw-specialcases) 233 0 R (runtimeCompatibility) 247 0 R (sourceCompatibility) 251 0 R (tools-intro) 21 0 R (upgrading) 253 0 R (versionCompatibility) 244 0 R]
+>>
+endobj
+235 0 obj
+[232 0 R /XYZ 0 215.97 null]
+endobj
+236 0 obj
+[232 0 R /XYZ 0 116.55 null]
+endobj
+237 0 obj
+<< /Length 2799
+>>
+stream
+q
+/DeviceRGB cs
+0.2 0.2 0.2 scn
+/DeviceRGB CS
+0.2 0.2 0.2 SCN
+
+BT
+48.24 792.006 Td
+/F2.0 13 Tf
+<352e362e312e204a564d5449> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.0054 Tw
+
+BT
+48.24 765.446 Td
+/F1.0 10.5 Tf
+[<5768656e207573696e67204a617661203520746865204a564d5449206167656e742063616e20626520757365642062> 20.0195 <79207374617274696e6720746865204a564d20776974682074686520666f6c6c6f77696e67206f7074696f6e>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 749.666 Td
+/F1.0 10.5 Tf
+<286164617074206163636f7264696e6720746f20746865207061746820746f206173706563746a7765617665722e6a6172293a> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.9608 0.9608 0.9608 scn
+52.24 733.85 m
+543.04 733.85 l
+545.2491 733.85 547.04 732.0591 547.04 729.85 c
+547.04 701.11 l
+547.04 698.9009 545.2491 697.11 543.04 697.11 c
+52.24 697.11 l
+50.0309 697.11 48.24 698.9009 48.24 701.11 c
+48.24 729.85 l
+48.24 732.0591 50.0309 733.85 52.24 733.85 c
+h
+f
+0.8 0.8 0.8 SCN
+0.75 w
+52.24 733.85 m
+543.04 733.85 l
+545.2491 733.85 547.04 732.0591 547.04 729.85 c
+547.04 701.11 l
+547.04 698.9009 545.2491 697.11 543.04 697.11 c
+52.24 697.11 l
+50.0309 697.11 48.24 698.9009 48.24 701.11 c
+48.24 729.85 l
+48.24 732.0591 50.0309 733.85 52.24 733.85 c
+h
+S
+Q
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+59.24 711.025 Td
+/F3.0 11 Tf
+<2d6a6176616167656e743a70617468746f2f6173706563746a7765617665722e6a6172> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 666.426 Td
+/F2.0 13 Tf
+<352e362e322e204a526f636b69742077697468204a61766120312e332f312e342028757365204a564d5449206f6e204a617661203529> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.0302 Tw
+
+BT
+48.24 639.866 Td
+/F1.0 10.5 Tf
+[<53696e6365204173706563744a20312e392e372c20746865206f62736f6c657465204f72> 20.0195 <61636c652f424541204a526f636b6974206167656e74206973206e6f206c6f6e6765722070617274206f66204173706563744a2e204a526f636b6974204a444b>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.9286 Tw
+
+BT
+48.24 624.086 Td
+/F1.0 10.5 Tf
+[<6e6576657220737570706f72746564204a6176612076657273696f6e7320686967686572207468616e20312e362e205365766572> 20.0195 <616c204a526f636b6974204a564d20666561747572657320617265206e6f772070617274206f66>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 608.306 Td
+/F1.0 10.5 Tf
+[<486f7453706f7420616e6420746f6f6c73206c696b> 20.0195 <65204d697373696f6e20436f6e74726f6c20617661696c61626c6520666f72204f70656e4a444b20616e64204f72> 20.0195 <61636c65204a444b2e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.0 0.0 0.0 scn
+0.0 0.0 0.0 SCN
+1 w
+0 J
+0 j
+[] 0 d
+/Stamp2 Do
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+49.24 14.263 Td
+/F1.0 9 Tf
+<3434> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+Q
+Q
+
+endstream
+endobj
+238 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/CropBox [0 0 595.28 841.89]
+/BleedBox [0 0 595.28 841.89]
+/TrimBox [0 0 595.28 841.89]
+/ArtBox [0 0 595.28 841.89]
+/Contents 237 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+/Font << /F2.0 22 0 R
+/F1.0 8 0 R
+/F3.0 26 0 R
+>>
+/XObject << /Stamp2 361 0 R
+>>
+>>
+>>
+endobj
+239 0 obj
+[238 0 R /XYZ 0 841.89 null]
+endobj
+240 0 obj
+[238 0 R /XYZ 0 685.11 null]
+endobj
+241 0 obj
+<< /Length 11703
+>>
+stream
+q
+/DeviceRGB cs
+0.2 0.2 0.2 scn
+/DeviceRGB CS
+0.2 0.2 0.2 SCN
+
+BT
+48.24 782.394 Td
+/F2.0 22 Tf
+<4368617074657220362e204173706563744a2076657273696f6e20636f6d7061746962696c697479> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 741.146 Td
+/F2.0 18 Tf
+[<362e312e2056> 60.0586 <657273696f6e20436f6d7061746962696c697479>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.0189 Tw
+
+BT
+48.24 713.126 Td
+/F1.0 10.5 Tf
+[<53> 20.0195 <797374656d732c20636f64652c20616e64206275696c6420746f6f6c73206368616e6765206f7665722074696d652c206f6674656e206e6f7420696e20737465702e2047656e6572> 20.0195 <616c6c79> 89.8438 <2c206c617465722076657273696f6e73206f6620746865>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.1208 Tw
+
+BT
+48.24 697.346 Td
+/F1.0 10.5 Tf
+<6275696c6420746f6f6c7320756e6465727374616e64206561726c6965722076657273696f6e73206f662074686520636f64652c206275742073797374656d732073686f756c6420696e636c7564652076657273696f6e73206f6620746865> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 681.566 Td
+/F1.0 10.5 Tf
+[<72756e74696d65207573656420746f206275696c6420746865204173706563744a2070726f6772> 20.0195 <616d2e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 647.066 Td
+/F2.0 13 Tf
+<362e312e312e204a61766120636f6d7061746962696c697479> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.7395 Tw
+
+BT
+48.24 620.506 Td
+/F1.0 10.5 Tf
+[<4173706563744a2070726f6772> 20.0195 <616d732063616e2072756e206f6e20616e> 20.0195 <79204a61766120564d206f66207468652072657175697265642076657273696f6e2e20546865204173706563744a20746f6f6c732070726f64756365204a617661>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.0032 Tw
+
+BT
+48.24 604.726 Td
+/F1.0 10.5 Tf
+[<62> 20.0195 <797465636f6465202e636c6173732066696c657320746861742072756e206f6e204a61766120636f6d70617469626c6520564dd5732e2049662061204a61766120636c617373206973206368616e6765642062> 20.0195 <7920616e206173706563742c20746865>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.6128 Tw
+
+BT
+48.24 588.946 Td
+/F1.0 10.5 Tf
+<726573756c74696e6720636c6173732069732062696e61727920636f6d70617469626c652028617320646566696e656420696e20746865204a617661204c616e67756167652053706563696669636174696f6e292e20467572746865722c20746865> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.4009 Tw
+
+BT
+48.24 573.166 Td
+/F1.0 10.5 Tf
+[<4173706563744a20636f6d70696c657220616e642077656176696e6720646f20616c6c2074686520657863657074696f6e20636865636b696e67207265717569726564206f66204a61766120636f6d70696c6572732062> 20.0195 <7920746865204a617661>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 557.386 Td
+/F1.0 10.5 Tf
+<73706563696669636174696f6e732e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.3414 Tw
+
+BT
+48.24 529.606 Td
+/F1.0 10.5 Tf
+[<4c696b> 20.0195 <65206f74686572204a61766120636f6d70696c6572732c20746865204173706563744a20636f6d70696c65722063616e2074617267657420706172746963756c6172204a6176612076657273696f6e732e204f6276696f75736c79> 89.8438 <2c20636f6465>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.5902 Tw
+
+BT
+48.24 513.826 Td
+/F1.0 10.5 Tf
+<7461726765746564206174206f6e652076657273696f6e2063616e6e6f742062652072756e20696e206120564d206f662061206c65737365722076657273696f6e2e2054686520> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.5902 Tw
+
+BT
+406.4069 513.826 Td
+/F3.0 10.5 Tf
+<6173706563746a72742e6a6172> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.5902 Tw
+
+BT
+474.6569 513.826 Td
+/F1.0 10.5 Tf
+<2069732064657369676e656420746f> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.4083 Tw
+
+BT
+48.24 498.046 Td
+/F1.0 10.5 Tf
+[<74616b> 20.0195 <6520616476616e74616765206f6620666561747572657320617661696c61626c6520696e204a6176612032206f72204a61766120352c206275742077696c6c2072756e20696e2061204a444b20312e312e7820656e7669726f6e6d656e742c20736f>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.4461 Tw
+
+BT
+48.24 482.266 Td
+/F1.0 10.5 Tf
+[<796f752063616e20757365204173706563744a20746f20746172676574206f6c646572206f7220726573747269637465642076657273696f6e73206f66204a6176612e20486f77657665722c207468657265206d61> 20.0195 <792062652072657374726963746564>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.3632 Tw
+
+BT
+48.24 466.486 Td
+/F1.0 10.5 Tf
+[<76617269616e7473206f66204a444b20312e312e78207468617420646f206e6f74206861766520415049d57320757365642062> 20.0195 <7920746865204173706563744a2072756e74696d652e20496620796f75206465706c6f> 20.0195 <7920746f206f6e65206f66>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.1181 Tw
+
+BT
+48.24 450.706 Td
+/F1.0 10.5 Tf
+<74686f73652c20796f752063616e20656d61696c20> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2588 0.5451 0.7922 scn
+0.2588 0.5451 0.7922 SCN
+
+1.1181 Tw
+
+BT
+157.4918 450.706 Td
+/F1.0 10.5 Tf
+<6173706563746a2d6465764065636c697073652e6f7267> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.1181 Tw
+
+BT
+276.6878 450.706 Td
+/F1.0 10.5 Tf
+<206f7220646f776e6c6f6164207468652072756e74696d6520636f646520746f206d6f6469667920697420666f7220796f7572> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 434.926 Td
+/F1.0 10.5 Tf
+<656e7669726f6e6d656e742e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.3008 Tw
+
+BT
+48.24 407.146 Td
+/F1.0 10.5 Tf
+<41736964652066726f6d207468652072756e74696d652c2072756e6e696e6720746865204173706563744a20746f6f6c73207468656d73656c7665732077696c6c20726571756972652061206d6f726520726563656e742076657273696f6e206f66> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 391.366 Td
+/F1.0 10.5 Tf
+[<4a6176612e2059> 69.8242 <6f75206d6967687420757365204a617661203520746f2072756e20746865204173706563744a20636f6d70696c657220746f2070726f6475636520636f646520666f72204a61766120312e312e382e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 356.866 Td
+/F2.0 13 Tf
+[<362e312e322e2052756e74696d65206c696272> 20.0195 <61727920636f6d7061746962696c697479>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.5595 Tw
+
+BT
+48.24 330.306 Td
+/F1.0 10.5 Tf
+[<5768656e206465706c6f> 20.0195 <79696e67204173706563744a2070726f6772> 20.0195 <616d732c20696e636c756465206f6e2074686520636c617373706174682074686520636c61737365732c20617370656374732c20616e6420746865204173706563744a>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.5902 Tw
+
+BT
+48.24 314.526 Td
+/F1.0 10.5 Tf
+[<72756e74696d65206c696272> 20.0195 <6172792028>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.5902 Tw
+
+BT
+135.9873 314.526 Td
+/F3.0 10.5 Tf
+<6173706563746a72742e6a6172> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.5902 Tw
+
+BT
+204.2373 314.526 Td
+/F1.0 10.5 Tf
+<292e20557365207468652076657273696f6e206f66207468652072756e74696d6520746861742063616d6520776974682074686520746f6f6c73207573656420746f> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.0864 Tw
+
+BT
+48.24 298.746 Td
+/F1.0 10.5 Tf
+[<6275696c64207468652070726f6772> 20.0195 <616d2e204966207468652072756e74696d65206973206561726c696572207468616e20746865206275696c6420746f6f6c7320757365642c206974d5732076657279206c696b> 20.0195 <656c7920746f206661696c2e20496620746865>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 282.966 Td
+/F1.0 10.5 Tf
+[<72756e74696d65206973206c61746572207468616e20746865206275696c6420746f6f6c7320757365642c206974d57320706f737369626c652028627574206e6f742067756172> 20.0195 <616e746565642920746861742069742077696c6c20776f726b2e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.6473 Tw
+
+BT
+48.24 255.186 Td
+/F1.0 10.5 Tf
+[<476976656e20746861742c207468726565207363656e6172696f732063617573652070726f626c656d732e2046697273742c20796f75206465706c6f> 20.0195 <79206e6577206173706563747320696e746f20616e20616e206578697374696e67>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.7946 Tw
+
+BT
+48.24 239.406 Td
+/F1.0 10.5 Tf
+<73797374656d207468617420616c726561647920686173206173706563747320746861742077657265206275696c742077697468206120646966666572656e742076657273696f6e2e205365636f6e642c207468652072756e74696d65206973> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+3.4584 Tw
+
+BT
+48.24 223.626 Td
+/F1.0 10.5 Tf
+[<616c7265616479206465706c6f> 20.0195 <79656420696e20796f75722073797374656d20616e642063616e6e6f74206265206368616e6765642028652e672e2c20736f6d65206170706c69636174696f6e207365727665727320707574>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+3.8313 Tw
+
+BT
+48.24 207.846 Td
+/F3.0 10.5 Tf
+<6173706563746a72742e6a6172> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+3.8313 Tw
+
+BT
+116.49 207.846 Td
+/F1.0 10.5 Tf
+[<206f6e2074686520626f6f74636c61737370617468292e2054686972642c20796f752028756e696e74656e74696f6e616c6c7929206465706c6f> 20.0195 <792074776f2076657273696f6e73206f6620746865>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 192.066 Td
+/F1.0 10.5 Tf
+[<72756e74696d652c20616e6420746865206f6e65206c6f616465642062> 20.0195 <79206120706172656e74206c6f616465722069732075736564292e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.7372 Tw
+
+BT
+48.24 164.286 Td
+/F1.0 10.5 Tf
+[<496e206561726c6965722076657273696f6e73206f66204173706563744a2c2074686573652070726f626c656d732070726573656e7420696e206f627363757265207761> 20.0195 <79732028652e672e2c20756e61626c6520746f207265736f6c76652061>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.0856 Tw
+
+BT
+48.24 148.506 Td
+/F1.0 10.5 Tf
+[<636c617373292e20496e206c617465722076657273696f6e732c206120737461636b207472> 20.0195 <616365206d69676874206576656e20737065636966792074686174207468652072756e74696d652076657273696f6e206973206f7574206f662073796e632077697468>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.929 Tw
+
+BT
+48.24 132.726 Td
+/F1.0 10.5 Tf
+[<616e206173706563742e2054> 29.7852 <6f2066696e64206f7574206966207468652072756e74696d6520796f75206465706c6f> 20.0195 <79656420697320746865206f6e652061637475616c6c79206265696e6720757365642c206c6f672074686520646566696e696e67>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 116.946 Td
+/F1.0 10.5 Tf
+<636c617373206c6f6164657220666f7220746865206173706563747320616e642072756e74696d652e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 82.446 Td
+/F2.0 13 Tf
+<362e312e332e204173706563742062696e61727920636f6d7061746962696c697479> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.1004 Tw
+
+BT
+48.24 55.886 Td
+/F1.0 10.5 Tf
+[<47656e6572> 20.0195 <616c6c79> 89.8438 <2c2062696e61727920617370656374732063616e20626520726561642062> 20.0195 <79206c617465722076657273696f6e73206f6620746865207765617665722069662074686520617370656374732077657265206275696c742062> 20.0195 <79>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.0 0.0 0.0 scn
+0.0 0.0 0.0 SCN
+1 w
+0 J
+0 j
+[] 0 d
+/Stamp1 Do
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+535.978 14.263 Td
+/F1.0 9 Tf
+<3435> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+Q
+Q
+
+endstream
+endobj
+242 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/CropBox [0 0 595.28 841.89]
+/BleedBox [0 0 595.28 841.89]
+/TrimBox [0 0 595.28 841.89]
+/ArtBox [0 0 595.28 841.89]
+/Contents 241 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+/Font << /F2.0 22 0 R
+/F1.0 8 0 R
+/F3.0 26 0 R
+>>
+/XObject << /Stamp1 360 0 R
+>>
+>>
+/Annots [246 0 R]
+>>
+endobj
+243 0 obj
+[242 0 R /XYZ 0 841.89 null]
+endobj
+244 0 obj
+[242 0 R /XYZ 0 765.17 null]
+endobj
+245 0 obj
+[242 0 R /XYZ 0 665.75 null]
+endobj
+246 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (mailto:aspectj-dev@eclipse.org)
+>>
+/Subtype /Link
+/Rect [157.4918 447.64 276.6878 461.92]
+/Type /Annot
+>>
+endobj
+247 0 obj
+[242 0 R /XYZ 0 375.55 null]
+endobj
+248 0 obj
+[242 0 R /XYZ 0 101.13 null]
+endobj
+249 0 obj
+<< /Length 9149
+>>
+stream
+q
+/DeviceRGB cs
+0.2 0.2 0.2 scn
+/DeviceRGB CS
+0.2 0.2 0.2 SCN
+
+1.3401 Tw
+
+BT
+48.24 794.676 Td
+/F1.0 10.5 Tf
+<76657273696f6e20312e322e31206f72206c617465722e2028536f6d65206675747572652077656176657273206d69676874206861766520646f63756d656e746564206c696d69746174696f6e7320696e20686f7720666172206261636b> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.3432 Tw
+
+BT
+48.24 778.896 Td
+/F1.0 10.5 Tf
+[<7468657920676f2e29204966206120706f73742d312e322e312077656176657220726561647320616e20617370656374206275696c742062> 20.0195 <792061206c617465722076657273696f6e2c2069742077696c6c20656d69742061206d6573736167652e20496620746865>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.5591 Tw
+
+BT
+48.24 763.116 Td
+/F1.0 10.5 Tf
+[<77656176657220726561647320696e20612062696e6172792061737065637420616e6420777269746573206974206f757420616761696e2c2074686520726573756c742077696c6c20626520696e2074686520666f726d2070726f64756365642062> 20.0195 <79>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 747.336 Td
+/F1.0 10.5 Tf
+[<74686174207765617665722c206e6f7420746865206f726967696e616c20666f726d206f66207468652061737065637420286a757374206c696b> 20.0195 <65206f7468657220776561766572206f7574707574292e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+4.0585 Tw
+
+BT
+48.24 719.556 Td
+/F1.0 10.5 Tf
+[<5769746820756e72656c6561736564206f7220646576656c6f706d656e742076657273696f6e73206f662074686520746f6f6c732c20746865726520617265206e6f2067756172> 20.0195 <616e7465657320666f722062696e617279>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.4666 Tw
+
+BT
+48.24 703.776 Td
+/F1.0 10.5 Tf
+[<636f6d7061746962696c697479> 89.8438 <2c20756e6c6573732074686579206172652073746174656420696e207468652072656c65617365206e6f7465732e20496620796f75207573652061737065637473206275696c74207769746820646576656c6f706d656e74>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 687.996 Td
+/F1.0 10.5 Tf
+[<76657273696f6e73206f6620746865207765617665722c206265206361726566756c20746f2072656275696c6420616e642072656465706c6f> 20.0195 <79207769746820746865206e6578742072656c65617365642076657273696f6e2e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 653.496 Td
+/F2.0 13 Tf
+<362e312e342e2041737065637420736f7572636520636f6d7061746962696c697479> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.7208 Tw
+
+BT
+48.24 626.936 Td
+/F1.0 10.5 Tf
+[<47656e6572> 20.0195 <616c6c79> 89.8438 <2c204173706563744a20736f757263652066696c65732063616e20626520726561642062> 20.0195 <79206c617465722076657273696f6e73206f662074686520636f6d70696c65722e204c616e677561676520666561747572657320646f>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.3067 Tw
+
+BT
+48.24 611.156 Td
+/F1.0 10.5 Tf
+[<6e6f74206368616e676520696e20646f742072656c65617365732028652e672e2c2066726f6d20312e322e3120746f20312e322e32292e20496e20736f6d6520766572792072> 20.0195 <6172652063617365732c2061206c616e677561676520666561747572652077696c6c>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.0038 Tw
+
+BT
+48.24 595.376 Td
+/F1.0 10.5 Tf
+[<6e6f206c6f6e67657220626520737570706f72746564206f72206d61> 20.0195 <79206368616e676520697473206d65616e696e673b2074686573652063617365732061726520646f63756d656e74656420696e207468652072656c65617365206e6f746573>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.5885 Tw
+
+BT
+48.24 579.596 Td
+/F1.0 10.5 Tf
+[<666f7220746861742076657273696f6e2e20536f6d65206368616e676573206c696b> 20.0195 <6520746869732077657265206e6563657373617279207768656e206d6f76696e6720746f2062696e6172792077656176696e6720696e2074686520312e31>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.7007 Tw
+
+BT
+48.24 563.816 Td
+/F1.0 10.5 Tf
+[<72656c656173652c2062757420617420746869732074696d6520776520646f6ed57420616e7469636970617465206d6f726520696e20746865206675747572652e2059> 69.8242 <6f75206d6967687420616c736f2066696e64207468617420746865>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.7534 Tw
+
+BT
+48.24 548.036 Td
+/F1.0 10.5 Tf
+[<70726f6772> 20.0195 <616d206265686176657320646966666572656e746c7920696620796f752072656c696564206f6e206265686176696f7220737065636966696320746f207468617420636f6d70696c65722f7765617665722c20627574207768696368>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 532.256 Td
+/F1.0 10.5 Tf
+<6973206e6f742073706563696669656420696e2074686520> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2588 0.5451 0.7922 scn
+0.2588 0.5451 0.7922 SCN
+
+BT
+157.125 532.256 Td
+/F1.0 10.5 Tf
+[<53656d616e7469637320617070656e64697820746f207468652050726f6772> 20.0195 <616d6d696e67204775696465>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+393.0913 532.256 Td
+/F1.0 10.5 Tf
+<2e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 497.756 Td
+/F2.0 13 Tf
+[<362e312e352e2050726f626c656d73207768656e2075706772> 20.0195 <6164696e6720746f206e6577204173706563744a2076657273696f6e73>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.1305 Tw
+
+BT
+48.24 471.196 Td
+/F1.0 10.5 Tf
+[<4c6574d573207361> 20.0195 <7920796f75722070726f6772> 20.0195 <616d206265686176657320646966666572656e746c79206166746572206265696e67206275696c7420776974682061206e65772076657273696f6e206f6620746865204173706563744a20746f6f6c732e>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.2303 Tw
+
+BT
+48.24 455.416 Td
+/F1.0 10.5 Tf
+[<497420636f756c6420626520612062756720746861742077617320696e74726f64756365642062> 20.0195 <792074686520746f6f6c732c20627574206f6674656e20697420726573756c74732066726f6d2072656c79696e67206f6e206265686176696f722074686174>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.6701 Tw
+
+BT
+48.24 439.636 Td
+/F1.0 10.5 Tf
+[<776173206e6f742067756172> 20.0195 <616e746565642062> 20.0195 <792074686520636f6d70696c65722e2046> 40.0391 <6f72206578616d706c652c20746865206f72646572206f6620616476696365206163726f73732074776f2061737065637473206973206e6f74>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.2535 Tw
+
+BT
+48.24 423.856 Td
+/F1.0 10.5 Tf
+[<67756172> 20.0195 <616e7465656420756e6c657373207468657265206973206120707265636564656e63652072656c6174696f6e73686970206265747765656e2074686520617370656374732e204966207468652070726f6772> 20.0195 <616d20696d706c696369746c79>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.615 Tw
+
+BT
+48.24 408.076 Td
+/F1.0 10.5 Tf
+<72656c696573206f6e2061206365727461696e206f726465722074686174206f627461696e7320696e206f6e6520636f6d70696c65722c2069742063616e206661696c207768656e206275696c742077697468206120646966666572656e74> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 392.296 Td
+/F1.0 10.5 Tf
+<636f6d70696c65722e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.1006 Tw
+
+BT
+48.24 364.516 Td
+/F1.0 10.5 Tf
+[<416e6f74686572207472> 20.0195 <6170206973206465706c6f> 20.0195 <79696e6720696e746f207468652073616d652073797374656d2c207768656e2074686520>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+2.1006 Tw
+
+BT
+359.0456 364.516 Td
+/F3.0 10.5 Tf
+<6173706563746a72742e6a6172> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.1006 Tw
+
+BT
+427.2956 364.516 Td
+/F1.0 10.5 Tf
+<20686173206e6f74206265656e206368616e676564> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 348.736 Td
+/F1.0 10.5 Tf
+[<6163636f7264696e676c79> 89.8438 <2e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.2406 Tw
+
+BT
+48.24 320.956 Td
+/F1.0 10.5 Tf
+[<46696e616c6c79> 89.8438 <2c207768656e207570646174696e6720746f20612076657273696f6e207468617420686173206e6577206c616e67756167652066656174757265732c20746865726520697320612074656d70746174696f6e20746f206368616e6765>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.1081 Tw
+
+BT
+48.24 305.176 Td
+/F1.0 10.5 Tf
+<626f74682074686520636f646520616e642074686520746f6f6c73206174207468652073616d652074696d652e204974d573206265737420746f2076616c696461746520746865206f6c6420636f6465207769746820746865206e657720746f6f6c73> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.0058 Tw
+
+BT
+48.24 289.396 Td
+/F1.0 10.5 Tf
+<6265666f7265207570646174696e672074686520636f646520746f20757365206e65772066656174757265732e20546861742064697374696e677569736865732070726f626c656d73206f66206e657720656e67696e656572696e672066726f6d> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 273.616 Td
+/F1.0 10.5 Tf
+<74686f7365206f66206e65772073656d616e746963732e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+0.0 0.0 0.0 scn
+0.0 0.0 0.0 SCN
+1 w
+0 J
+0 j
+[] 0 d
+/Stamp2 Do
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+49.24 14.263 Td
+/F1.0 9 Tf
+<3436> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+Q
+Q
+
+endstream
+endobj
+250 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/CropBox [0 0 595.28 841.89]
+/BleedBox [0 0 595.28 841.89]
+/TrimBox [0 0 595.28 841.89]
+/ArtBox [0 0 595.28 841.89]
+/Contents 249 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+/Font << /F1.0 8 0 R
+/F2.0 22 0 R
+/F3.0 26 0 R
+>>
+/XObject << /Stamp2 361 0 R
+>>
+>>
+/Annots [252 0 R]
+>>
+endobj
+251 0 obj
+[250 0 R /XYZ 0 672.18 null]
+endobj
+252 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (../progguide/semantics.html)
+>>
+/Subtype /Link
+/Rect [157.125 529.19 393.0913 543.47]
+/Type /Annot
+>>
+endobj
+253 0 obj
+[250 0 R /XYZ 0 516.44 null]
+endobj
+254 0 obj
+<< /Border [0 0 0]
+/Dest (tools-intro)
+/Subtype /Link
+/Rect [48.24 748.79 220.1145 763.07]
+/Type /Annot
+>>
+endobj
+255 0 obj
+<< /Border [0 0 0]
+/Dest (tools-intro)
+/Subtype /Link
+/Rect [541.1705 748.79 547.04 763.07]
+/Type /Annot
+>>
+endobj
+256 0 obj
+<< /Border [0 0 0]
+/Dest (eclipse-aspectj)
+/Subtype /Link
+/Rect [60.24 730.31 259.047 744.59]
+/Type /Annot
+>>
+endobj
+257 0 obj
+<< /Border [0 0 0]
+/Dest (eclipse-aspectj)
+/Subtype /Link
+/Rect [541.1705 730.31 547.04 744.59]
+/Type /Annot
+>>
+endobj
+258 0 obj
+<< /Border [0 0 0]
+/Dest (bytecode-concepts)
+/Subtype /Link
+/Rect [60.24 711.83 400.0828 726.11]
+/Type /Annot
+>>
+endobj
+259 0 obj
+<< /Border [0 0 0]
+/Dest (bytecode-concepts)
+/Subtype /Link
+/Rect [541.1705 711.83 547.04 726.11]
+/Type /Annot
+>>
+endobj
+260 0 obj
+<< /Border [0 0 0]
+/Dest (_name)
+/Subtype /Link
+/Rect [60.24 693.35 109.3905 707.63]
+/Type /Annot
+>>
+endobj
+261 0 obj
+<< /Border [0 0 0]
+/Dest (_name)
+/Subtype /Link
+/Rect [541.1705 693.35 547.04 707.63]
+/Type /Annot
+>>
+endobj
+262 0 obj
+<< /Border [0 0 0]
+/Dest (_synopsis)
+/Subtype /Link
+/Rect [60.24 674.87 123.4498 689.15]
+/Type /Annot
+>>
+endobj
+263 0 obj
+<< /Border [0 0 0]
+/Dest (_synopsis)
+/Subtype /Link
+/Rect [541.1705 674.87 547.04 689.15]
+/Type /Annot
+>>
+endobj
+264 0 obj
+<< /Border [0 0 0]
+/Dest (ajc)
+/Subtype /Link
+/Rect [60.24 656.39 137.709 670.67]
+/Type /Annot
+>>
+endobj
+265 0 obj
+<< /Border [0 0 0]
+/Dest (ajc)
+/Subtype /Link
+/Rect [541.1705 656.39 547.04 670.67]
+/Type /Annot
+>>
+endobj
+266 0 obj
+<< /Border [0 0 0]
+/Dest (_name_2)
+/Subtype /Link
+/Rect [60.24 637.91 109.3905 652.19]
+/Type /Annot
+>>
+endobj
+267 0 obj
+<< /Border [0 0 0]
+/Dest (_name_2)
+/Subtype /Link
+/Rect [535.301 637.91 547.04 652.19]
+/Type /Annot
+>>
+endobj
+268 0 obj
+<< /Border [0 0 0]
+/Dest (_synopsis_2)
+/Subtype /Link
+/Rect [60.24 619.43 123.4498 633.71]
+/Type /Annot
+>>
+endobj
+269 0 obj
+<< /Border [0 0 0]
+/Dest (_synopsis_2)
+/Subtype /Link
+/Rect [535.301 619.43 547.04 633.71]
+/Type /Annot
+>>
+endobj
+270 0 obj
+<< /Border [0 0 0]
+/Dest (_description)
+/Subtype /Link
+/Rect [60.24 600.95 137.709 615.23]
+/Type /Annot
+>>
+endobj
+271 0 obj
+<< /Border [0 0 0]
+/Dest (_description)
+/Subtype /Link
+/Rect [535.301 600.95 547.04 615.23]
+/Type /Annot
+>>
+endobj
+272 0 obj
+<< /Border [0 0 0]
+/Dest (_examples_2)
+/Subtype /Link
+/Rect [60.24 582.47 128.4165 596.75]
+/Type /Annot
+>>
+endobj
+273 0 obj
+<< /Border [0 0 0]
+/Dest (_examples_2)
+/Subtype /Link
+/Rect [535.301 582.47 547.04 596.75]
+/Type /Annot
+>>
+endobj
+274 0 obj
+<< /Border [0 0 0]
+/Dest (aj)
+/Subtype /Link
+/Rect [48.24 563.99 117.2145 578.27]
+/Type /Annot
+>>
+endobj
+275 0 obj
+<< /Border [0 0 0]
+/Dest (aj)
+/Subtype /Link
+/Rect [535.301 563.99 547.04 578.27]
+/Type /Annot
+>>
+endobj
+276 0 obj
+<< /Border [0 0 0]
+/Dest (_examples_3)
+/Subtype /Link
+/Rect [60.24 545.51 128.4165 559.79]
+/Type /Annot
+>>
+endobj
+277 0 obj
+<< /Border [0 0 0]
+/Dest (_examples_3)
+/Subtype /Link
+/Rect [535.301 545.51 547.04 559.79]
+/Type /Annot
+>>
+endobj
+278 0 obj
+<< /Border [0 0 0]
+/Dest (ajbrowser)
+/Subtype /Link
+/Rect [48.24 527.03 141.165 541.31]
+/Type /Annot
+>>
+endobj
+279 0 obj
+<< /Border [0 0 0]
+/Dest (ajbrowser)
+/Subtype /Link
+/Rect [535.301 527.03 547.04 541.31]
+/Type /Annot
+>>
+endobj
+280 0 obj
+<< /Border [0 0 0]
+/Dest (ajbrowser-intro)
+/Subtype /Link
+/Rect [60.24 508.55 143.4105 522.83]
+/Type /Annot
+>>
+endobj
+281 0 obj
+<< /Border [0 0 0]
+/Dest (ajbrowser-intro)
+/Subtype /Link
+/Rect [535.301 508.55 547.04 522.83]
+/Type /Annot
+>>
+endobj
+282 0 obj
+<< /Border [0 0 0]
+/Dest (ajbrowser-building)
+/Subtype /Link
+/Rect [60.24 490.07 173.2723 504.35]
+/Type /Annot
+>>
+endobj
+283 0 obj
+<< /Border [0 0 0]
+/Dest (ajbrowser-building)
+/Subtype /Link
+/Rect [535.301 490.07 547.04 504.35]
+/Type /Annot
+>>
+endobj
+284 0 obj
+<< /Border [0 0 0]
+/Dest (ajbrowser-navigating)
+/Subtype /Link
+/Rect [60.24 471.59 230.3713 485.87]
+/Type /Annot
+>>
+endobj
+285 0 obj
+<< /Border [0 0 0]
+/Dest (ajbrowser-navigating)
+/Subtype /Link
+/Rect [535.301 471.59 547.04 485.87]
+/Type /Annot
+>>
+endobj
+286 0 obj
+<< /Border [0 0 0]
+/Dest (ajbrowser-running)
+/Subtype /Link
+/Rect [60.24 453.11 173.7973 467.39]
+/Type /Annot
+>>
+endobj
+287 0 obj
+<< /Border [0 0 0]
+/Dest (ajbrowser-running)
+/Subtype /Link
+/Rect [535.301 453.11 547.04 467.39]
+/Type /Annot
+>>
+endobj
+288 0 obj
+<< /Border [0 0 0]
+/Dest (ajbrowser-problems)
+/Subtype /Link
+/Rect [60.24 434.63 319.674 448.91]
+/Type /Annot
+>>
+endobj
+289 0 obj
+<< /Border [0 0 0]
+/Dest (ajbrowser-problems)
+/Subtype /Link
+/Rect [535.301 434.63 547.04 448.91]
+/Type /Annot
+>>
+endobj
+290 0 obj
+<< /Border [0 0 0]
+/Dest (antTasks)
+/Subtype /Link
+/Rect [48.24 416.15 147.1733 430.43]
+/Type /Annot
+>>
+endobj
+291 0 obj
+<< /Border [0 0 0]
+/Dest (antTasks)
+/Subtype /Link
+/Rect [535.301 416.15 547.04 430.43]
+/Type /Annot
+>>
+endobj
+292 0 obj
+<< /Border [0 0 0]
+/Dest (antTasks-intro)
+/Subtype /Link
+/Rect [60.24 397.67 143.4105 411.95]
+/Type /Annot
+>>
+endobj
+293 0 obj
+<< /Border [0 0 0]
+/Dest (antTasks-intro)
+/Subtype /Link
+/Rect [535.301 397.67 547.04 411.95]
+/Type /Annot
+>>
+endobj
+294 0 obj
+<< /Border [0 0 0]
+/Dest (antTasks-install)
+/Subtype /Link
+/Rect [60.24 379.19 178.1153 393.47]
+/Type /Annot
+>>
+endobj
+295 0 obj
+<< /Border [0 0 0]
+/Dest (antTasks-install)
+/Subtype /Link
+/Rect [535.301 379.19 547.04 393.47]
+/Type /Annot
+>>
+endobj
+296 0 obj
+<< /Border [0 0 0]
+/Dest (antTasks-iajc)
+/Subtype /Link
+/Rect [60.24 360.71 146.0798 374.99]
+/Type /Annot
+>>
+endobj
+297 0 obj
+<< /Border [0 0 0]
+/Dest (antTasks-iajc)
+/Subtype /Link
+/Rect [535.301 360.71 547.04 374.99]
+/Type /Annot
+>>
+endobj
+298 0 obj
+<< /Border [0 0 0]
+/Dest (antTasks-adapter)
+/Subtype /Link
+/Rect [60.24 342.23 229.8043 356.51]
+/Type /Annot
+>>
+endobj
+299 0 obj
+<< /Border [0 0 0]
+/Dest (antTasks-adapter)
+/Subtype /Link
+/Rect [535.301 342.23 547.04 356.51]
+/Type /Annot
+>>
+endobj
+300 0 obj
+<< /Border [0 0 0]
+/Dest (antTasks-ajc)
+/Subtype /Link
+/Rect [60.24 323.75 131.5875 338.03]
+/Type /Annot
+>>
+endobj
+301 0 obj
+<< /Border [0 0 0]
+/Dest (antTasks-ajc)
+/Subtype /Link
+/Rect [535.301 323.75 547.04 338.03]
+/Type /Annot
+>>
+endobj
+302 0 obj
+<< /Border [0 0 0]
+/Dest (antTasks-problems)
+/Subtype /Link
+/Rect [60.24 305.27 284.1735 319.55]
+/Type /Annot
+>>
+endobj
+303 0 obj
+<< /Border [0 0 0]
+/Dest (antTasks-problems)
+/Subtype /Link
+/Rect [535.301 305.27 547.04 319.55]
+/Type /Annot
+>>
+endobj
+304 0 obj
+<< /Border [0 0 0]
+/Dest (ltw)
+/Subtype /Link
+/Rect [48.24 286.79 159.3924 301.07]
+/Type /Annot
+>>
+endobj
+305 0 obj
+<< /Border [0 0 0]
+/Dest (ltw)
+/Subtype /Link
+/Rect [535.301 286.79 547.04 301.07]
+/Type /Annot
+>>
+endobj
+306 0 obj
+<< /Border [0 0 0]
+/Dest (ltw-introduction)
+/Subtype /Link
+/Rect [60.24 268.31 143.4105 282.59]
+/Type /Annot
+>>
+endobj
+307 0 obj
+<< /Border [0 0 0]
+/Dest (ltw-introduction)
+/Subtype /Link
+/Rect [535.301 268.31 547.04 282.59]
+/Type /Annot
+>>
+endobj
+308 0 obj
+<< /Border [0 0 0]
+/Dest (ltw-rules)
+/Subtype /Link
+/Rect [60.24 249.83 250.1109 264.11]
+/Type /Annot
+>>
+endobj
+309 0 obj
+<< /Border [0 0 0]
+/Dest (ltw-rules)
+/Subtype /Link
+/Rect [535.301 249.83 547.04 264.11]
+/Type /Annot
+>>
+endobj
+310 0 obj
+<< /Border [0 0 0]
+/Dest (ltw-configuration)
+/Subtype /Link
+/Rect [60.24 231.35 149.2588 245.63]
+/Type /Annot
+>>
+endobj
+311 0 obj
+<< /Border [0 0 0]
+/Dest (ltw-configuration)
+/Subtype /Link
+/Rect [535.301 231.35 547.04 245.63]
+/Type /Annot
+>>
+endobj
+312 0 obj
+<< /Border [0 0 0]
+/Dest (ltw-specialcases)
+/Subtype /Link
+/Rect [60.24 212.87 144.2505 227.15]
+/Type /Annot
+>>
+endobj
+313 0 obj
+<< /Border [0 0 0]
+/Dest (ltw-specialcases)
+/Subtype /Link
+/Rect [535.301 212.87 547.04 227.15]
+/Type /Annot
+>>
+endobj
+314 0 obj
+<< /Border [0 0 0]
+/Dest (ltw-packaging)
+/Subtype /Link
+/Rect [60.24 194.39 313.3104 208.67]
+/Type /Annot
+>>
+endobj
+315 0 obj
+<< /Border [0 0 0]
+/Dest (ltw-packaging)
+/Subtype /Link
+/Rect [535.301 194.39 547.04 208.67]
+/Type /Annot
+>>
+endobj
+316 0 obj
+<< /Border [0 0 0]
+/Dest (ltw-agents)
+/Subtype /Link
+/Rect [60.24 175.91 168.3163 190.19]
+/Type /Annot
+>>
+endobj
+317 0 obj
+<< /Border [0 0 0]
+/Dest (ltw-agents)
+/Subtype /Link
+/Rect [535.301 175.91 547.04 190.19]
+/Type /Annot
+>>
+endobj
+318 0 obj
+<< /Border [0 0 0]
+/Dest (compatibility)
+/Subtype /Link
+/Rect [48.24 157.43 205.7715 171.71]
+/Type /Annot
+>>
+endobj
+319 0 obj
+<< /Border [0 0 0]
+/Dest (compatibility)
+/Subtype /Link
+/Rect [535.301 157.43 547.04 171.71]
+/Type /Annot
+>>
+endobj
+320 0 obj
+<< /Border [0 0 0]
+/Dest (versionCompatibility)
+/Subtype /Link
+/Rect [60.24 138.95 188.3919 153.23]
+/Type /Annot
+>>
+endobj
+321 0 obj
+<< /Border [0 0 0]
+/Dest (versionCompatibility)
+/Subtype /Link
+/Rect [535.301 138.95 547.04 153.23]
+/Type /Annot
+>>
+endobj
+322 0 obj
+<< /Type /Outlines
+/Count 36
+/First 323 0 R
+/Last 357 0 R
+>>
+endobj
+323 0 obj
+<< /Title <feff0054006800650020004100730070006500630074004a0054004d00200044006500760065006c006f0070006d0065006e007400200045006e007600690072006f006e006d0065006e0074002000470075006900640065>
+/Parent 322 0 R
+/Count 0
+/Next 324 0 R
+/Dest [7 0 R /XYZ 0 841.89 null]
+>>
+endobj
+324 0 obj
+<< /Title <feff005400610062006c00650020006f006600200043006f006e00740065006e00740073>
+/Parent 322 0 R
+/Count 0
+/Next 325 0 R
+/Prev 323 0 R
+/Dest [10 0 R /XYZ 0 841.89 null]
+>>
+endobj
+325 0 obj
+<< /Title <feff004300680061007000740065007200200031002e00200049006e00740072006f00640075006300740069006f006e00200074006f00200074006800650020004100730070006500630074004a00200074006f006f006c0073>
+/Parent 322 0 R
+/Count 9
+/First 326 0 R
+/Last 334 0 R
+/Next 335 0 R
+/Prev 324 0 R
+/Dest [20 0 R /XYZ 0 841.89 null]
+>>
+endobj
+326 0 obj
+<< /Title <feff0031002e0031002e0020005400680065002000450063006c00690070007300650020004100730070006500630074004a00200069006d0070006c0065006d0065006e0074006100740069006f006e>
+/Parent 325 0 R
+/Count 0
+/Next 327 0 R
+/Dest [20 0 R /XYZ 0 765.17 null]
+>>
+endobj
+327 0 obj
+<< /Title <feff0031002e0032002e002000420079007400650063006f00640065002000770065006100760069006e0067002c00200069006e006300720065006d0065006e00740061006c00200063006f006d00700069006c006100740069006f006e002c00200061006e00640020006d0065006d006f00720079002000750073006100670065>
+/Parent 325 0 R
+/Count 0
+/Next 328 0 R
+/Prev 326 0 R
+/Dest [20 0 R /XYZ 0 310.37 null]
+>>
+endobj
+328 0 obj
+<< /Title <feff0031002e0033002e0020004e0061006d0065>
+/Parent 325 0 R
+/Count 0
+/Next 329 0 R
+/Prev 327 0 R
+/Dest [38 0 R /XYZ 0 841.89 null]
+>>
+endobj
+329 0 obj
+<< /Title <feff0031002e0034002e002000530079006e006f0070007300690073>
+/Parent 325 0 R
+/Count 0
+/Next 330 0 R
+/Prev 328 0 R
+/Dest [38 0 R /XYZ 0 742.83 null]
+>>
+endobj
+330 0 obj
+<< /Title <feff0031002e0035002e0020004400650073006300720069007000740069006f006e>
+/Parent 325 0 R
+/Count 0
+/Next 331 0 R
+/Prev 329 0 R
+/Dest [38 0 R /XYZ 0 654.01 null]
+>>
+endobj
+331 0 obj
+<< /Title <feff0031002e0036002e0020004e0061006d0065>
+/Parent 325 0 R
+/Count 0
+/Next 332 0 R
+/Prev 330 0 R
+/Dest [72 0 R /XYZ 0 336.23 null]
+>>
+endobj
+332 0 obj
+<< /Title <feff0031002e0037002e002000530079006e006f0070007300690073>
+/Parent 325 0 R
+/Count 0
+/Next 333 0 R
+/Prev 331 0 R
+/Dest [72 0 R /XYZ 0 268.37 null]
+>>
+endobj
+333 0 obj
+<< /Title <feff0031002e0038002e0020004400650073006300720069007000740069006f006e>
+/Parent 325 0 R
+/Count 0
+/Next 334 0 R
+/Prev 332 0 R
+/Dest [72 0 R /XYZ 0 135.33 null]
+>>
+endobj
+334 0 obj
+<< /Title <feff0031002e0039002e0020004500780061006d0070006c00650073>
+/Parent 325 0 R
+/Count 0
+/Prev 333 0 R
+/Dest [77 0 R /XYZ 0 405.64 null]
+>>
+endobj
+335 0 obj
+<< /Title <feff004300680061007000740065007200200032002e0020004400650073006300720069007000740069006f006e>
+/Parent 322 0 R
+/Count 1
+/First 336 0 R
+/Last 336 0 R
+/Next 337 0 R
+/Prev 325 0 R
+/Dest [84 0 R /XYZ 0 841.89 null]
+>>
+endobj
+336 0 obj
+<< /Title <feff0032002e0031002e0020004500780061006d0070006c00650073>
+/Parent 335 0 R
+/Count 0
+/Dest [84 0 R /XYZ 0 650.27 null]
+>>
+endobj
+337 0 obj
+<< /Title <feff004300680061007000740065007200200033002e0020004100730070006500630074004a002000420072006f0077007300650072>
+/Parent 322 0 R
+/Count 5
+/First 338 0 R
+/Last 342 0 R
+/Next 343 0 R
+/Prev 335 0 R
+/Dest [89 0 R /XYZ 0 841.89 null]
+>>
+endobj
+338 0 obj
+<< /Title <feff0033002e0031002e00200049006e00740072006f00640075006300740069006f006e>
+/Parent 337 0 R
+/Count 0
+/Next 339 0 R
+/Dest [89 0 R /XYZ 0 765.17 null]
+>>
+endobj
+339 0 obj
+<< /Title <feff0033002e0032002e0020004200750069006c00640069006e0067002000500072006f006700720061006d0073>
+/Parent 337 0 R
+/Count 0
+/Next 340 0 R
+/Prev 338 0 R
+/Dest [89 0 R /XYZ 0 529.89 null]
+>>
+endobj
+340 0 obj
+<< /Title <feff0033002e0033002e0020004e0061007600690067006100740069006e0067002000500072006f006700720061006d0020005300740072007500630074007500720065>
+/Parent 337 0 R
+/Count 0
+/Next 341 0 R
+/Prev 339 0 R
+/Dest [100 0 R /XYZ 0 841.89 null]
+>>
+endobj
+341 0 obj
+<< /Title <feff0033002e0034002e002000520075006e006e0069006e0067002000500072006f006700720061006d0073>
+/Parent 337 0 R
+/Count 0
+/Next 342 0 R
+/Prev 340 0 R
+/Dest [104 0 R /XYZ 0 472.38 null]
+>>
+endobj
+342 0 obj
+<< /Title <feff0033002e0035002e002000490073006f006c006100740069006e0067002000700072006f0062006c0065006d0073002000720075006e006e0069006e006700200074006800650020004100730070006500630074004a002000620072006f0077007300650072>
+/Parent 337 0 R
+/Count 0
+/Prev 341 0 R
+/Dest [104 0 R /XYZ 0 254.28 null]
+>>
+endobj
+343 0 obj
+<< /Title <feff004300680061007000740065007200200034002e0020004100730070006500630074004a00200041006e00740020005400610073006b0073>
+/Parent 322 0 R
+/Count 6
+/First 344 0 R
+/Last 349 0 R
+/Next 350 0 R
+/Prev 337 0 R
+/Dest [118 0 R /XYZ 0 841.89 null]
+>>
+endobj
+344 0 obj
+<< /Title <feff0034002e0031002e00200049006e00740072006f00640075006300740069006f006e>
+/Parent 343 0 R
+/Count 0
+/Next 345 0 R
+/Dest [118 0 R /XYZ 0 765.17 null]
+>>
+endobj
+345 0 obj
+<< /Title <feff0034002e0032002e00200049006e007300740061006c006c0069006e006700200041006e00740020005400610073006b0073>
+/Parent 343 0 R
+/Count 0
+/Next 346 0 R
+/Prev 344 0 R
+/Dest [118 0 R /XYZ 0 535.07 null]
+>>
+endobj
+346 0 obj
+<< /Title <feff0034002e0033002e00200041006a0063005400610073006b0020002800690061006a00630029>
+/Parent 343 0 R
+/Count 0
+/Next 347 0 R
+/Prev 345 0 R
+/Dest [129 0 R /XYZ 0 551.45 null]
+>>
+endobj
+347 0 obj
+<< /Title <feff0034002e0034002e00200041006a0063003100310043006f006d00700069006c00650072004100640061007000740065007200200028006a00610076006100630029>
+/Parent 343 0 R
+/Count 0
+/Next 348 0 R
+/Prev 346 0 R
+/Dest [166 0 R /XYZ 0 382.67 null]
+>>
+endobj
+348 0 obj
+<< /Title <feff0034002e0035002e00200041006a006300310030002000280061006a00630029>
+/Parent 343 0 R
+/Count 0
+/Next 349 0 R
+/Prev 347 0 R
+/Dest [177 0 R /XYZ 0 205.185 null]
+>>
+endobj
+349 0 obj
+<< /Title <feff0034002e0036002e002000490073006f006c006100740069006e0067002000700072006f0062006c0065006d0073002000720075006e006e0069006e0067002000740068006500200041006e00740020007400610073006b0073>
+/Parent 343 0 R
+/Count 0
+/Prev 348 0 R
+/Dest [191 0 R /XYZ 0 611.07 null]
+>>
+endobj
+350 0 obj
+<< /Title <feff004300680061007000740065007200200035002e0020004c006f00610064002d00540069006d0065002000570065006100760069006e0067>
+/Parent 322 0 R
+/Count 6
+/First 351 0 R
+/Last 356 0 R
+/Next 357 0 R
+/Prev 343 0 R
+/Dest [203 0 R /XYZ 0 841.89 null]
+>>
+endobj
+351 0 obj
+<< /Title <feff0035002e0031002e00200049006e00740072006f00640075006300740069006f006e>
+/Parent 350 0 R
+/Count 0
+/Next 352 0 R
+/Dest [203 0 R /XYZ 0 765.17 null]
+>>
+endobj
+352 0 obj
+<< /Title <feff0035002e0032002e0020004c006f00610064002d00740069006d0065002000570065006100760069006e006700200052006500710075006900720065006d0065006e00740073>
+/Parent 350 0 R
+/Count 0
+/Next 353 0 R
+/Prev 351 0 R
+/Dest [203 0 R /XYZ 0 221.53 null]
+>>
+endobj
+353 0 obj
+<< /Title <feff0035002e0033002e00200043006f006e00660069006700750072006100740069006f006e>
+/Parent 350 0 R
+/Count 0
+/Next 354 0 R
+/Prev 352 0 R
+/Dest [209 0 R /XYZ 0 708.99 null]
+>>
+endobj
+354 0 obj
+<< /Title <feff0035002e0034002e0020005300700065006300690061006c002000630061007300650073>
+/Parent 350 0 R
+/Count 0
+/Next 355 0 R
+/Prev 353 0 R
+/Dest [232 0 R /XYZ 0 517.41 null]
+>>
+endobj
+355 0 obj
+<< /Title <feff0035002e0035002e002000520075006e00740069006d006500200052006500710075006900720065006d0065006e0074007300200066006f00720020004c006f00610064002d00740069006d0065002000570065006100760069006e0067>
+/Parent 350 0 R
+/Count 0
+/Next 356 0 R
+/Prev 354 0 R
+/Dest [232 0 R /XYZ 0 215.97 null]
+>>
+endobj
+356 0 obj
+<< /Title <feff0035002e0036002e00200053007500700070006f00720074006500640020004100670065006e00740073>
+/Parent 350 0 R
+/Count 0
+/Prev 355 0 R
+/Dest [232 0 R /XYZ 0 116.55 null]
+>>
+endobj
+357 0 obj
+<< /Title <feff004300680061007000740065007200200036002e0020004100730070006500630074004a002000760065007200730069006f006e00200063006f006d007000610074006900620069006c006900740079>
+/Parent 322 0 R
+/Count 1
+/First 358 0 R
+/Last 358 0 R
+/Prev 350 0 R
+/Dest [242 0 R /XYZ 0 841.89 null]
+>>
+endobj
+358 0 obj
+<< /Title <feff0036002e0031002e002000560065007200730069006f006e00200043006f006d007000610074006900620069006c006900740079>
+/Parent 357 0 R
+/Count 0
+/Dest [242 0 R /XYZ 0 765.17 null]
+>>
+endobj
+359 0 obj
+<< /Nums [0 << /P (i)
+>> 1 << /P (ii)
+>> 2 << /P (1)
+>> 3 << /P (2)
+>> 4 << /P (3)
+>> 5 << /P (4)
+>> 6 << /P (5)
+>> 7 << /P (6)
+>> 8 << /P (7)
+>> 9 << /P (8)
+>> 10 << /P (9)
+>> 11 << /P (10)
+>> 12 << /P (11)
+>> 13 << /P (12)
+>> 14 << /P (13)
+>> 15 << /P (14)
+>> 16 << /P (15)
+>> 17 << /P (16)
+>> 18 << /P (17)
+>> 19 << /P (18)
+>> 20 << /P (19)
+>> 21 << /P (20)
+>> 22 << /P (21)
+>> 23 << /P (22)
+>> 24 << /P (23)
+>> 25 << /P (24)
+>> 26 << /P (25)
+>> 27 << /P (26)
+>> 28 << /P (27)
+>> 29 << /P (28)
+>> 30 << /P (29)
+>> 31 << /P (30)
+>> 32 << /P (31)
+>> 33 << /P (32)
+>> 34 << /P (33)
+>> 35 << /P (34)
+>> 36 << /P (35)
+>> 37 << /P (36)
+>> 38 << /P (37)
+>> 39 << /P (38)
+>> 40 << /P (39)
+>> 41 << /P (40)
+>> 42 << /P (41)
+>> 43 << /P (42)
+>> 44 << /P (43)
+>> 45 << /P (44)
+>> 46 << /P (45)
+>> 47 << /P (46)
+>>]
+>>
+endobj
+360 0 obj
+<< /Type /XObject
+/Subtype /Form
+/BBox [0 0 595.28 841.89]
+/Length 162
+>>
+stream
+q
+/DeviceRGB cs
+0.0 0.0 0.0 scn
+/DeviceRGB CS
+0.0 0.0 0.0 SCN
+1 w
+0 J
+0 j
+[] 0 d
+q
+0.25 w
+/DeviceRGB CS
+0.8667 0.8667 0.8667 SCN
+48.24 30.0 m
+547.04 30.0 l
+S
+Q
+Q
+
+endstream
+endobj
+361 0 obj
+<< /Type /XObject
+/Subtype /Form
+/BBox [0 0 595.28 841.89]
+/Length 162
+>>
+stream
+q
+/DeviceRGB cs
+0.0 0.0 0.0 scn
+/DeviceRGB CS
+0.0 0.0 0.0 SCN
+1 w
+0 J
+0 j
+[] 0 d
+q
+0.25 w
+/DeviceRGB CS
+0.8667 0.8667 0.8667 SCN
+48.24 30.0 m
+547.04 30.0 l
+S
+Q
+Q
+
+endstream
+endobj
+362 0 obj
+<< /Length1 18864
+/Length 11954
+/Filter [/FlateDecode]
+>>
+stream
+xœ| `SÇ•è̽’,ÿ-[òG²¥+_ËòO’mYþK–mùÿ·eYþ`,ÿ þáÁ¸(!!)’%4!,Mx©H³„Ðn6í†4Ýn^6¯¥mÚ² Û¦mÒ4d³4Ûöõ;s%Û²!M÷]qï9sæÌ™sÎœsf$ƒ0B(íA4êih1dÎKŽt#„‡ÚÓ7æšüÎoÚ¢sÞ·}†™©z:ü!*wprhlÿ÷|Œ !¿Œ!×ô$òƒª: ýƒ†Fç·T¶<‹ä-„t¿põÓe[w@Û'pg ìªðg@;ê Ãc3;¾a‹]†:àãÉщ>~î¿¥Ð?Ú¯Œ¹vLRWð>h«„:3î8òô¿ TãùÇNNLϼz«ø&B•¯CûLN LÞ¬ZPà˜C "sÅ¡]w_ÚZøg(Fäúþ©¬ÏÉû—ŽëŸ-ÿž“ŠëEÉP#
+y.è'>²tž=Ë¿_Þ&®ç)ù^]<¤ ½ˆÂÐ÷¯E¡èJfJA]@ÿ?-HxJh¸Òó¦ÿ âÏ)D
+)P@Q‚ ”QECC²"]óòp„r2Þ6Aµð‘”¤@RÔóè'´ Í
+æÐág¨ÿ3š¥®òw ÀöÔÌÔ<2Â{7UýæPÁ…{îûàfáÞ÷.¸çàî&mT5:w/¡±z#äôëFû… }aª|„f…ïÂ{î˨x›9Q=õÜ¿ZþHxÊÓæ·Õ‹Ðþš\ƒwÀ;€öïQ²ð{H%$’FáÂJ&DË_P7ÐÛp×Ò–¿ìEƒ0Ž†þ xüîJ´º…rõÈ ”" u¨Áåß ^„ò<RøEyÂd”'8Íã+Hú*²ÑO¡.ê]¤…>Á3H,úQ‚3(@°‰QÈAÁ8s˜#oêCÔ/ºŽÎùŠ ? CÞ*<V
+˜ƒ0­Lë*&c
+Q¡.)c÷Û6–¹Œ;šœP>bcÛ÷Ÿør_$ò•`¨¨ÕЃ)‹¶1nÜԹ˷/”õØ€ÞÅÀ€R¶t @—†.B1Jî$vò"N²`¾@%•å_¤8˜ ë¦5e®~wc“³Ì¦P«ÛuiUîÖÆ7¡Rž¤[TêöãI2#„utˆ¹˜öúÂáËa¨·'5¨Ÿíwu9Ý´ ú.Ðe Ü’Tw2ks'ïüm4Ì|ÀÆÚÊÜ©„jMóê85kCb·PÆ2 F0öOŸ¬‡¸¼‘&ìψËA¼ å,S¾Ð³àº¼¼§—eÂØ…‹AA “e aÔè„^——¯R¸Ë·»Ãz†q¾w²åÍ5N§›Ò”3Ã.€À¿"V«PKÚWp¿¬ @ SµšLüÐe+ê…Š{O“ÓSgP¯â%d5¤¶»©ÒòúJ‹¬•´ìYiYíÞÂ6kZœ n¦ªŸ-r¹÷ô‚=m!ª`ÃÜ!_(ÔìB¸„É3´ó¸ pUÕ?¸…‰ èåÛ,…tYã+!_x^RÀ
+ºÃ
+u»ÚséÒ(hf¼C1Q@åJ­¯0
+Èð "÷h"UÆÉ°íì0ã¶6:É܈xxx…ÁëÇ«Wûºš°@LH Í+"LwyªÂW¸î
+¾¾Z­ÜÐ\µÒÌ,ˆÙš–BœõDÀy•s·æJ¼§ Ö»ÀLÀfx‹Y¸hµk!ÆÁ,°Uý l‹³Ço³K±“ŒŽjp½D—Ž¯ä"‹jºhŵt8_ ƒDæ!»ó%
+S¥=%í Íù*q…‡RJ€¤Â
+¡Ô 1¯xՊоUÀøzßeŒx˜x†QßeÊ [Q
+µÔŠƒ
+,WàX£¢5Ò(k•àÐÖ0ch+dP­¸µ>ú~(UúNèÍPzíFßF7‘
+d:uyJˆLÏÌþÌìl÷4îžîd Xðð`øG ›ŸïšJðSÉpÓäÀÔi¸S h:5‰¤HÆï>¢`?rIøöú,UP¤è(BËdgæóä¤Üÿ$ÙýÊK¼Rø>ú!r ø² ¢Y´//¡ëðÙr½ƒ~ƒ~Ä·£°‡„ ‡Áj…ïõº††VimCg¿døn4ΣwÑÇøáUX?À`߆ŽÀþy‰K¡,œS˜EGøÑ"©RDöº¤
+½bá¥ÅÇlù&z =.{¡Íh¯·ô.z‡àK?« m"/‘”»¶ ]ÔÁBDI)±H*’‰~(ú9µ‹šðùÙÀ
+®R¨ÓÀø[lÃe‚÷ŸP&*™zžº¼¼m¹Wø¡ð’§ƼŒ-¸Oá“àȆ %œj¦öPoÑ)ô0}I H|Cð±0AØ/Ü!<,<#ü\´ ú©_Šß¤ß¿?ˆñ”ø_Å·ýý¿îÿr€ Àð@À[±Sç?Ê
+z8h1Ø<üHðéà/BšCù]hbè–°°ž°3aÿ.É–tIþ-\îÿ^„2¢7âJÄÇÒtéé/dVÙc²×e‹‘‘呃‘WàóVä§DI` ˆ>VO“£D-Ѩ%êA:kÉ@/}Cxévu¯àsÀûÉòçø…P„‘fé, eÌTR2iÅÆë©ëŸVv7KYƒBn`e2Ö WX©ðÒßq7’LLHcJÒf“w6?î,}zge\ ôøû‹÷,Ý\ <„—8¾Á©
+„nÁ9²WGXwykw~þî·ŽŒì²FPw~zíekwî™ëXýê«Xõë§s»¬ßù駄V ÐjôÒ"&aRRá2)25Yh<Qü5 uAÁý@ëkÅ<­Ÿ~ÇÚ•ûô¯¹¯¾Ê½ýLn·õåk<­ýXCßCP‘°µI-U#£ææ¹xnÏSg¸ýx~ïäœ|3w<V†(ÕdÁ¦,½À”•MôŒ$4íî莌OŒ¬ËcrÓbÅ;‡[¦«PªIc“U–(])/#¾AURó¼¼Lj™‘’á§Nñní†õ¹Ɖ@(gÃÊܽqUîºkAbˆfbªd´£`-ÎÍáŸß÷¿ ~­v-"ˆ›@Z¢ ÅuÀ@8\2‚ašxƒ ¡q;^ž»ÿÒlnîì+»w|gGÁ’4¶h¨ºf°H¡(¨®²ÆR׿Å}üæèè›8êùç±ô-[ÞàþøÂɛϵµ=wóäÉO϶¶žýÔ3·àÞ¾†À2Œ&~ Y5‰ ½"l”Àà°0®dÍ:…¶ÜjVêòUE-ÆGöÉõf¶ß ÊOd¥×çªÌâ(I³åNjz¾*ÀAhíßÀÜ dfdÑ©>P¥Õ&X+’y—(+íÖ;w7qçð{úÂD™ŸØ°x;š'lÊcCvy[f¸Æš®0œèsÍÌV>tôT;·Wž’£Ôp§OàC›Oìß]^°¹L“i7©ŒÚ‚êäŒöûù¹Þ²¦€Ÿj°¯DS±ÉW¸¾¼ð~B)„—ÀãE²‰ Ä‹æq{¦±gÁQ\l›mËŒ6µ”;½| _§·Y2œ;*öº6­npfgÁÀ76ëÊ ØWG|ýý]Å#ÕÉúæÙªÂî’x_6ÓZæêËvö•K ÙõC¶æ¯»l)K‹ÎR–ÝY¢áí……|© Öu4o/2~Ôü$À¡™@eF&/Dò¦»:K¼béñ|¢À¥ƒÔÜ8ÎBÑBŸ\­Ñ0AÜ›ø·øÑó¼Êxež·Óï.ÖOãOu£“é!†|«ÙÎEóòÛ¶ü èóedZ“ï@µêV«§Y5ÍíêêX‘ÙGE[ÒÒš§*Lui%Ô…
+dy“«ãC1¡–a¼ÿféwãþ`ðôcœX6<ˆ§
+n@|Œî†¹)`nZ”‡êÀ?Ý#ž‘X푹Ыm^‹c`Ùž@Öm°O•æ÷–k3·|k{ω¡ì¤ÊAKí®ŽŒò=—&§_œ-À¿*«KItìsM±eÃ8=&§½8¯½P[~MZ8ž¨žh+gÔu]cÖŠ-¦î½u¥ƒMŪ„æžÉR×[r
+GŽü4¹²¿ «½¥!5ëÜŒu¸&Y 1tT¤jŠ;L9ÎÊ"&Î\Å|Shxù#z‘×›™XUxÄZÌæÝŸÏòËQÒ:džæ Ìø'Ï?YPÓ™Ý~|kAá¶g‡†_ÜS¡ÈkŸ?Ó×6]›’\Pû`f‹ÕB%•»
+ÆîS¶wàtœ¥ÈÔFe ?5<ñêþšÆóÜâË[ß¾tr¬ʴ2‰Yb¦@'§š±BW¨øçû _ûûŽZ–ç÷Ä‚ó»Ç_oŒ’ õs£ÃWE zz   Q{ò¹^ˆs/Á˜Q(õÞ‘nðø¥»"wkãÐ÷Ž…tå] @\F7 .¿‡D$6b™?–í§'–)7u¹¿w;Ä=HøܯѷèÞ¼¼¹é[‹Ò‹Rõ÷ŽÍÍ­§—còÇ€¶Ÿr/5Ò7âmxö §­äçí\þœ> ¶¡»G˜•Ü;fðö¿1c¦vµÏU©äÙ­Ö¶ìhE'×m~¤Ïuv‡Í4øØæl”~
+ç$lž˜3›ÚÌñ)•›Mu¦:Ãna37/8í SÝÚ¥Ûw§ÚdÎÜuÑçà;a—ÈG9ˆZvÕˆÁçDFåi‘Ÿg9úÁJ='Š '$òA\’@ Yu$ß¡ÇSôyåÌъι¸@™©´%˲­Õcj™y¼»d³ª9c˜ÐY¼.F×]›áxâÚžþï_8¶¥°÷ï¯Í~bßDZºñþcßÚü÷É'‹îûÖOÿïá XðbÛÛʲj³ÿúàb¹¯&› £ÙÇnžïèu&Ù2cStäìÙ}_gNBLêÒÑÑÒtY‚‰ «<ô/_ðíC¹c÷£[‡_øÏ'ÊãÒÍLubUÛyK¯<Šýþ㕽åƒÿ“ËÑUvð™8Æ䘘çå—ð,È+Ï
+x©D®F°lÄ|&Nªà˜ ˜ÖcÈâýh5>]ïPZfà‚´Ê”xU~ó ~'(&>M©XzÛ0ï/n>˘$~‘±á‡ðÿÆý<Ú ÉJw8‚,‚×ï3)1áz% Qâ·;Ÿ®Ö”U6¤sxÿJ¾u} xR#=ì‚<¹ŠŒxTA²7=xR5#ÀÆ»3‡T,Ø«µmÊ.ŸiÑs‹ÜK§å¬Y/WèÍñrJƒ°`©û‡m;jã•U;:~üpÇŽJU|í\ÛAAeÙp½)\”¿iwÓ›WùøK¢ËQú;.Þq1SÍÛë™Ò-Õ5¹'w‡XpÖ›S­Ø»‹ç¥¨Ä>aòHZ4òäQ‘^œ“×Y:óÌ >}ø›Ûj¦¥rI¤iôÜÔø»Fûs_ÌZìj“FšÞ]ch}ö橃¿}¶#.½(>0Q¥m*I…„2ò[ç°ôM.AnB’‹Èa…zsWõzyŽ ªa—ýÜí¿_:â#éÓy¡cÉ´ó•æÿú¯—©ëç¹ÿü§!_A¸®pŸ-^o9óñIœKîD}ƒqÁkÖRÊu{óØ=¨ñûøPF™^. Ùrç’<Þ¬WÜU.l D¥ë¹óøS.|pääN9ücstô§|JÄrü¥÷ûWÆíqÉl e‰oöµahh’ì˶´”Ÿ°gÐh-]ظäîçê<™?äü„aH’«yu-<
+ºï'ôú‡ìã=µž³2<¿§•IB0mz‰ûïo;:ÿ]œúÖ¶\¥±,)bñ×_™ÉÊÞùƒÃ©„%1%Çe%FýRº¦ÞvðħÏ؃‚qµ.'ŽÏ Ò¹GÒõ^™ˆ@&°‹Z‘×ÈÅ˘zC݃K_Rðê '_½àc"vE¼E§ N)tfVAÙ×Zx3ÁpÌZöê5¾ÌõâÓk-‹áºœXòòL=<ûìyîÅS=?o+^&xæ<ýÖ‡t¬wÇ´—?â¤<í8p,÷$µ¨ˆ’¡rïô*ï¡—åf5mŽ
+~¿6‡;ìÂ+c+r¾t­P!q0‘’$‰õÇJ Ì’x£Å~UôôuZL`¦_e‹‹Ë’¸ŸcwÁXž rèŽÒDîéWd¿j­^æÛ ÒBåv»"£Bǽ´t®©Å–R‘ƒoá޸˄yÖ—^C¾kUýe²^YÀ¤ ,àÇôÅ)QéÖu"÷Wæèî<ª6•¨Ÿà*WÆð3ÂÙ+6˜#Á,¾·(üñz% ÃýÀÐ#).u‚ÓHµ9ñ"N»&
+
+Šâ‚§ëî²ý;ч| È~züȼðí¿ýŒA8o?ûÙ“Ï~~¦±ñÌ­gŸüô¬ýίtýOOM=Ý—–Ö÷wSSgtëÏdolÝzÕ÷ŒáæY‡ãìM´'ûaþ,J¿Ë
+¼Þ,uE.ôZP­÷qE{_ûš9ïëÿçä^R·}2¶é»–ÑC¾s/˜8Ýßy~owŽ_ìÔ)mÛAÙÁ­ò!¬>ø(¯ñY6콕ÂøÜRãç'²z‹Eq=ó3Ëýñy^댖D{“c4›;øÈJœ?t»¹Ù’T™ßæ:xÆ|Mæê›Íó…ᆤÆÍÓUj°—^Øg~¿ˆø}Ï.Ú»Uf}7~"ß åÙâÛýO eÕUÐê’ÁÊ…'™ê¹ŽÍwëKwœuu=Ükl«ŽÊvl²Æ35;Û;ŽôfU<pEšR³Õj©µnïÈÞ¿+×QUªÑ¶=hw.lÎL´¶èJJÓ7UéÕf‡É¼©¦4AÓ<°«lôˆm'{s'–ìLÖ ‘ðÅooù€˜Š©÷ˆA–öˆ¸ÞЙµ‚@†{ID”&Zô?ühm= ¶ñÑz#0¿ŽT`ǧa,“W.w{í/ñ¸Ô‡s¯ï/÷uiÆÎ]5í{[“=0Š‡ïþžÔ8ñí]´bmý,ÞhßUŸÞ:[N| ×ŸÝVÈóDòÙAà)…¬m2M~\ØžFFE(q”çD½Zâ*C~˜äÊå$s¥Œ‹Ù_|C•& K‹ÿq@©Í€ÿK«Le•Î)¸Å¤Dƒ< FÈZ—†:_¨®>×CŠÑKL‡#ˆµdÞ)âyGHLÎzs"ÑÀ3(½~PÖ\â½ù<…Qœ.$Tû2- ·´J]‚2”;w™{‰ûá?rbâõÀoð úž\/ MVÜž_<8øÝŠêgû¨AJ¥ÜŸç+Þb¼S$˜¿³=ÿÛ6}§ºñûè O ¹å
+ÙãPlqÑÁšƒ>;¸5›ô
+*UÄêåt@„äÕDÅ
+5áQÁB‡#„ÍMáìKÏf8¶ÀHeZ<.çÜÁêMçp„Æg'á)M4û‡EJ
+îֲȾ€¹‰`n–µœhMô„g¯ìé"¼Ñ6¼Ž—ó‹„Û/Qª“ärÊXËJýb‚OÈ”ø+Ô áû¤kA!¾©MJ•sç!6ŧó+—,K ŽËä>-šOÌ63d‹bt:à^cÖ/}“;à Q½ÍݦNˆ¤Hû{Éúðø6þQ{¼'öÅ·s·ý<I×íË«g¼µÐWêí»Þ{JjùD–¤mNüw›ï)¬ä{þåw$Wú‚»N_Zvsq¬6©éK‹VúuîúÿÝìs’Ý(„xAïvØ ûE:‚ßþ'®:Á×½¶éÎ."‡#Ö5µZ*÷µÍVªþRP•ÒÚž?ð`m÷ánCˆ2ý SXÙiµÍ¶¦ÿáÏ%ÕàäžÍIÕ[ŠÏ‰lQuL]Øœž_aª6Djìz—þ”šâp§VfÅi›æíÏžöÍçl*Õ
+.qT~mOáÀS[r¸‚Æ­V…¢xk“m³96Ö좴ýâp©<½$éŒçH¾Ú³—xˆíLI7jMq¥‡~2=;±õìd^Þäs£cÏŽf{ÏtÏ€œ“WbÍ=bK$Ù_x6•”mðÂ×ÊÊæÿÞeÝ=híê Ó–fl¶%<úÜæ‡ÙPiZÛ×¥E]{üìõsc²LùéŽbMÚ襃¿üYcQPR,[žë9GƒqWyy­EŸƒž‹(c¢VÍ+ûžÔK#AD8î¹HqTG2ÙÙFÑ4%àÛñ—ܸµÄ5ÚTÚcŽÝ~ƒ—ÍeC /•c+’ËLK¬ ?Ï·ÝîôHj"?ò¹­¿ü…‡_úÈIL$…ãE~jþx '¬Æaµ’öÙ}SÆ©ù@üóè¬VÍÄÅÅŸü²ïôxÁ’ƒJ®›¬2uV煇Ĥu ?{õ¥¦{²î,Ö<òî~¬Âñ–ùWæº'¿9œdŒ%ÊU…IdA°¥÷‰’QHk-ÄšŒ¾§`+^<›S#å^:Ào¬¾ûÝÌîíã¥ÊY¬ÊÒ¦$„b5÷> Êo‰\ƒ]‡{2d‰YLlj\¨ª@_Ú[<çZBdÙ’³'˜QE;½–îùªÔoõØÒz¾C-X=¡ð¬WþÐ:Ûçè:Ê»|Ö@*YžõNv9ñ")Xž+
+•Ëä)RV§ï<´‰±4AoPü¡kO“¦øÁ·ýì§)]FY#µ–§•bÒ{qi*Í¡¡I™ñ*2tñLtá`ýøQ{¼ÂToüQjSQâ}m}™eiöþ¾V*R' Š–§Î:k÷v›0¦q@´21*F)꛶•8îË>}¤°Ãšäï¯LÉV›ÛS‹šzŒí‡{³#¢ƒÃ´êHIœöN´®>—Ñ”tfÌlHhJ-ݳo§Òâ*]xà€'þi oúؾ¯>×;‰ìuþM²bøÅÖ.½·Ñ?t½Ûv +=:%|ÛSÑ&‡ÅºÉ¬$^ý®xK¬Y®Œ»bpá<ûêŸK‡+5†¶ù®‘d¨ž|Ù
+sÉâÑ´òå8Džìœ»ŒœuùîÆ ãêÒ“6¤'ýº;ÉÐàJ 0H¥Éui'åùs“,sc²q†o»s‚ðN 7dÄ6mlÏÁ ÞoüÂ#èHOÄOä¿IòpO[º(Z3Êm€4ÅÜa›“é+³Ò  uª1iËó5Çë›Ìl}“­•µÖ¤Vt¹z´Ük«k¤ òžAÉjWóCËØx‘¸ñ4âź]Ît…V™Õjɱç)£òz«fksn«š¬M¬«híÌ‚ ÅÖ4S“¿å¸T‘Ó”œÃgwW$+2Ê’sÒ3¶¸ÖUZ>Z•¨4–%æ–ME§&hóÒu±ñ%õ½ÖÆMIÀ¯vùêa99ÛÕ@Ö*óêR%¨Án×(ãs£HJ¥±0Á)ÙÑõ“•ìSšöx65¬q·ZbQ‡(È_¨®Þé¤.4+ÙÄ‘†ÅÙ¥ú‘^ o€uù¡ šÏÃ6f­¾>wÆ9¼F¸ï‚׫±we6ÝïÐyt4!Ëh±Ø\EJ²M‚˜ù>ïòÏåW&‡ê{OŽà?ò*Z2‘Þ¶³ŸK/X=Wƒÿz
+x1x~³´º­§‰…Ü}î@öÿ¬˜Br‹Y,>#ø £âT!ÇüKm¡ø•þ›5î¿Ë½DÎ'è[GºQÂFq»Úì5òÈâºF >J ¼ß¬-^ oÖ<üP‰~ü›‡‹{œ~°´ö'^–éwÞRDK…"ÿ$Õ 8°´,_’+ÓXe(÷—³·4Ü¿?ÃÝâYáÛ
+³%PÔ›mI”<øšÀ¶ôMMkKµÜx¼WË x6ƒX‹qñõîÅó^ØD§Gqç5ζZ¹¼¬¡YCmåù‡iN
+ƒ©ÑáEÏy„!Sõ¬Ó5%*–n̋•ÑúKÃòËD\t„&73S‰)ŽÓµê”˜?Žˆ‰:°%*–¾¬‰'›•ÌýžÛê9ŠˆR¥1—ß
+bâYþ "HiLÄõ¸Ç”ëpøK"ƒdÉÌå'X‹×>Àî‡ù_Äx¥">ùoZï¥u ö‹È1T8÷£kyË–…ÎðácU1Üþ¹:Äÿ‰Èböó?¢RD
+DZùA°!‘ ÚcgûNl-O sYF9èÝL²<`Å’Ž±-M•rÝÞê;>Áœé³Àg”çwEÞ_ˆ©WÎe˜ºœ`PEø8¿G5s¯'e©e”CJK–.ÌÆêÍj÷r3½O–bIcÖ¾¸Û3ÿAî6-‚œˆß±yקÖ9š$+›OèD2’·É`ã"áÕIí®œ¨NÔ”8Fg‰æø7˜;ë¶Mo¯ë4s·SjÇl¸¿¨9CF9(iF³>éÝÊ=Ó¿?‚’>0ÈwÂP˜ã¤Ôœç÷~˜•©¹ùyN*¾‹§(r¤ ¬ä˜ôÞ‰|rÉûò(ð[ÞïŠ-ucÛ§¶ÕuZzôxb1á­81±z¼ò¡ÇGpïàR*b?îÞ:ê<y˜{ÒÒœ!eÍEÜS¶±ÚϸýØMíPä7Œ³æþäÊþüÜÞê””êÞÜüþÊdê=ûT™RY6e·o+W*Ë·ÁLÎ..Êã©%§çù¢ùŠúÙ?¸ ªï‚T}Õ¯c´_QçÏ”ðGâ
+CÓÞ²ŠGû¼e1’¡ç¼e$EW¼å
+…ÐaÞ2òi¥·,@RÚé- Q4=ê-û!½BSŒRè·¼e”Dî- .Ü[DÁvo9
+^ö–ƒ©‚ϼå”å÷`éÄäÜÔÈÐð “™ž‘ÉTLL 0Uã}z¦xt”i&MÓLóÀôÀÔö~}ýÄÌÓ2052Ø<04;ꚪ›Ÿ˜™›„.c®¡‘ñ!FǬᬕSÓ#ãL†>=;#×5èêM%kX#ÓŒ‹™™rõŒ¹¦¶2ƒ¾¬Ü5È: m`zdhœ±¸Æl®3<2>¬záýLﳊÜïAždýðÌÌd¾Ápß}÷é‡øÁô}c†¡ O|šÇ¼Ýy„é™Ùþ‘ û0°\>1>ôL ÎÜçš s韆1gÇû¦˜™á¦¥ª–i˜÷ ×zÒ˜5‰dè™{뙞™é…Ù0€égâ‹[˜ª–x¦¤¸¥ª%i«²W6´Ú™¶âææâz{UY ÓÐÌ”6ÔÛªìU õP+gŠëÛ™šªz[30ìL1;&§¦§™‰)fdlrt„ˆªe`àËye'<3™žèécF]ãC³®!˜ÅäÀÔØÈ4™èo¼æ?62ãšáëCۦƉºæ&f§˜Y j¹kª+z˜î›™œ™ÖOŒê'¦† 嵨M I4‡¦Ð¬ßa4ƒ”‰Ò!+Ì„R´N
+£>X« äУðaPój¯i¾6
+‘ôÀªFáÝõqÞnÈ<g¡ÜÏk‘Ìf˜ÇmÉÖ»u|åÚuÒ
+•ñ}
+‡ü’ü-Q$ähÑ(É‘ÅBü†Aj°% J„,4 rè”
+Ó¯÷5"ZýÿY S-DȼJÀÊ€»
+°¬*T VQ ^¡8nDM`K-`A­°Ú¬¦u—›P7ÚŒzÐôÆè;è¿Ùñ‘ôôâtov'FÔò2¢ÿhЇÐ
+endstream
+endobj
+363 0 obj
+<< /Type /FontDescriptor
+/FontName /18afab+NotoSerif
+/FontFile2 362 0 R
+/FontBBox [-212 -250 1246 1047]
+/Flags 6
+/StemV 0
+/ItalicAngle 0
+/Ascent 1068
+/Descent -292
+/CapHeight 1462
+/XHeight 1098
+>>
+endobj
+364 0 obj
+<< /Length 1278
+/Filter [/FlateDecode]
+>>
+stream
+xœe×ËnÛF†á½®BËtHs&Ã@‘n¼èu{stÔ’ + ß}ù½¤ikÀÆ/‰œy¾_Ã!}øôôÓÓùtß~»]ês¿ïÇéÜnýíòåVû¾ô—Óygì¾êýë+þÖ×|ݶ“Ÿßßîýõé<.û‡‡Ýá÷í÷ûí}ÿáÇv)ý‡Ýá×[ë·ÓùeÿáÏOÏÛëç/×ë_ýµŸïûãîñqßúØú9_ɯ}à´Omûütÿ¸óϼ_ûÞòÚLL½´þv͵ßòù¥ïŽÇLJ1wýÜþó‘9ç)eÔÏù6=n?[i(JKiU:J§ÒSz•2¨Œ”Qe¢L*ÊEåJ¹ªÌ”Ye¡,*+eUÙ(›ÊNÙUÊ-уÁkä5x¼¯‘×à5ò¼F^ƒ×Èkðy ^#¯Ákä5x¼¯‘×à5ò¼F^ƒ×Èkðy ^#¯Åkåµx­¼¯•×âµòZ¼V^‹×ÊkñZy-^+¯Åkåµx­¼¯•×âµòZ¼V^‹×ÊkñZy-^+¯Ãëäux¼¯“×áuò:¼N^‡×Éëð:y^'¯Ãëäux¼¯“×áuò:¼N^‡×Éëð:y^'¯Çëåõx½¼¯—×ãõòz¼^^×Ëëñzy=^/¯Çëåõx½¼¯—×ãõòz¼^^×Ëëñzy=^/oÀä xƒ¼o7à ò¼AÞ€7ÈðyÞ oÀä xƒ¼o7à ò¼AÞ€7ÈðyÞ oÄåx£¼o”7âÝþj·ùº«üo—‰$‰JI•$’$*I$IT’H’¨$‘$QI"I¢’D’D%‰$‰JI•$’$*I$IT’D’¤$‰$III’’$’$u>áMò&¼IÞ„7É›ð&yÞ$o›äMx“¼ o’7áMò&¼IÞ„7É›ð&y¼U†o•aÁ[5ñ‚·j¶oS orÁÛ4Û‚·s
+¿âíJ¼âíJ¼â특âíâ¬x»¯x»¯x‡+Þ!Êw¹âB®x‡b®x‡+ÞïrÅ;àà2äÍkçÎœñJ¼Y³e¼Y†Œ7+|œÆx‹ oSŠŒ7+[Æ›ețךyÞ¢oVûòæµ– -ã­Œ‹·é€"¯åþR¦W*–Ó4Xq”êC™^Jú[(£à®^ƒ1»¢y]•¡Èk¹}¼YM-x e#e®ÊÙ_y+ë¡hÜŠ7k¶:û«/ âåæZå5«dUýµl¼uz5n¥¿[ç¾ÛeBø÷&Si|y»(ô%q& %+S%ñ*Aª¾ÛÊBijPUÃ6\¥h,ž(¶+L¥ºÝ,¥‚4G©5Þ<¥ô…ÂcD› [˧©ñ¡*t› [ jj¼aijü¼IµÙxʪw¹g¶FÉ›wžØ¶¥§Rô>¶Þís¡hâ>½:­O¯VRÇËí¾³P*#àÙi|e0¼Uýí,ì*o§¿Uáûì/ãÎþ*[§¿Uê,”¦Nö¹°•m€lšx°:š&\}M³¹»)üÒðL2„´\%CHËF7æÕ§‰ÇÊ»BŽLÉ…’)æjæ€Æ»J1:%¦H߯:=Së©ÿÛ³zýr»méükÀó¹žÌOçþí¿‡ë媳ôû7±Ùð
+endstream
+endobj
+365 0 obj
+[259 333 408 500 559 500 742 220 346 346 500 559 250 310 250 288 559 559 559 559 559 559 559 559 559 559 286 286 559 559 559 500 920 705 653 613 727 623 589 713 792 367 356 700 623 937 763 742 604 500 655 543 612 716 674 1046 660 625 500 359 500 359 500 458 500 562 613 492 613 535 369 538 634 319 299 584 310 944 645 577 613 613 471 451 352 634 579 861 578 564 511 428 559 428 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 361 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 857 259 500 500 500 500 500 500 1000 500 500 500 250 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500]
+endobj
+366 0 obj
+<< /Length1 16780
+/Length 10896
+/Filter [/FlateDecode]
+>>
+stream
+xœµ{ x[Õ•ð½ï=-ÞdÉÖbK¶õ¤gI¶µÚ²-ïò"yw;râ8rlyI,Ûñ’BH MBœYZ ʤ)Ð6()B‡¡lÓiSÈ04Bg¦PZ˜LËÇ$öóÞ“œØ& ýçû)÷½{Ͻ÷ܳÝsϹrFIÐ.D"s»=çŽÒÃz„ð0@ýýÁ¾‰ü„ˆ?,¡Ë4=X³á^˜ðÀŠ'†‚E/ö$B”!QöPßÔÁUì‚ù±C£ÛÿÉX„l!cÊp o€¬ß´ú
+­© P# MQrâyèA‚‡N€§…ßä›h_%#&(EÔ
+̨¦¹¹ÑðÝ¡áá£#}T½à' ¨]@/rxKÑ~Ò‰f TkP±9὇h‚¾m¨J”Z(…P4PÚ ô@Y¥”ë#ÆÑ}ðÞ×AÔ("±À
+>´YÈÀ»æ~‰
+É<TH\] ®
+4ŒOFæÄ´ÐÝ0P
+
+¨]ì" à5
+AÈ=¾³&ªü•ÝgÒ¡Ï÷ ç
+%8(ä4×à0µACÌ×<WŽÐ.¾—â|»ÿ<F<L¼èÿ<†IaÀ¨0¬œ‡qÐRÒ0È|½—àôsG÷𬿛³q¤¦áa¦ „À”Á„06Í*C1L%wspw.äà"° ¬ÄVËí³R/ó—$îP¯0`jÁrÔ‰Êá‚BàD€$
+ þÿtÀÓ…À)å ˜ì|ú2.¿ŒK.hËŸõ?»ëÙÃφžýüYáÎsOŸ»rŽ”þ-–>ãæð3/>C=Ÿ¬?¥=e?Ežxª?üÆÃdüññão'£Ð1\ò³co#üÇð£Ç>;¶pŒ,?†ß8†éc¸ùÈú#„ûÈ}G=BþìÈGˆ–#øµC¸ûàÈA"î`êAâµ»±'u&'.hEÔ‚VÔülè¡+C¤c°|°e¤±;ð³
+ߘž2=3Ó;…{¹ASÜ è2óÿ¸¶™«Âc:<Ìl†ÒËC¸ïôŒyjf†¯Á# âx¯Qd9*4#8'¸°<j¥ê‘݇ЗO.y²òpýÿÕGü ýØ„.À×߯û| ßÍðýß|þ|‹k{³Åê‰|¶·Üè­!&±kåb$Ös«Hññ;âyï’Ñãÿ+Z#Á9¢)þëëGà‡`Ì•P¡œ½Fª¸yÔGÔ—„œ
+åBðuáebå‰<`o‡¸ t ;q.õõ ‘G˜ˆ§ˆ—6/lü›à‹¹£<:%|-¨ ݆A?B¿DïÂ~­Çñ=±…øñ²ƒ<I¾O^¥„”zJ€Õ‚»Ï ®
+ia“ð´ð}‘E4*:-ú³¸Qü”øƒ¨¬¨-Q¿Ž®ŒöGßýëKÌhÌk±ÂØêØ+ˆ»-îœ$Zâ<"ùc|zü®ø•¥wJOK?—åÊ˾HhK¸3áÅ„_%JÀ¾üEƒU“ÜmI¢N¦sAy‰¬›{v˜Ø6¿OpîZý0õ!¯Èçw“ûÇbÉp…¨ÅîÚ}óqyÏ=‚sóçüð’3ì¿W…VØ3ËÓ•ÂFy¹ eØ¥ø…dÏmëxõÁšš¯þpýmždâÀíºrïö>÷G¬>õ}œü‡óž»ÜO¿ù1—òV®"¸rm„)/HPÈ å•‘x&¹ŠÇU]Íãªâp}üæÓî»<çÿÀ~ôýSì‡|λÛºø'Wûø`‘*„ r ÁaÈ˵Qy¹ùÎ%þE†ïÀ€µÊªRêL:e‡{õ`WÅíÃíšRÚ`MKLVªÒó2½µ·ñfƒœø¢–xäót
+'¡À¯\ºîÛ³ð9~ÖIDÈ•[F8sÒ¬ÇèmĵµŒÑ—Ú4[©ž)³ªØÝF©Ôè¶ÛÊŒ2™±Œ¿çYMàs
+­vßa AÆ ð ‹k-‘ª‡爑
+½1o‰’Ei$÷ÂW§°É™âp3†Êu9k«33[·¬Ú¹¯rC9ÝÕáò%»f 'Ÿœ>½½ÒÑ1YUv×FϺ‡_—gxº¦’LyņJ]ŠgÆW¼¡&c§¹e¼jâÎü5“%ݽùëk2,]w´x§{¼ª˜ìŽ;};ž²„÷¨d×{4 1À†"¬
+Ol)êdNÎÍwIHìÞk™^=ŸSÈ”Z5ó?'¼8õm ÅÑ–[,û ~ïØá(ÒFƒÑÚ"ÇŽäósMûð§kÞô'ut7'².^Vm «XX³öÔM¡ˆL‰ºDÆd##T·tpˆÃ—œk½™ì1¹óªÞ
+R=#Ä*èd¶‹¤„¤Tê,©Òn}iCßC/¬›zlÀÚÝ ÊëÚN7ìì}ð¸0&Nd ^ezRå1X—ïažÆD \Á“c{þvÌžéívÔV[|ÕÙô
+žûÛ»kÛ„…?yß½Óènµh‹,j[o£cþ¬,…I8ò/÷”ïÌ©Ã6¸t™rAH‡uza<fu
+ŒÛÝüï
+…±Û£É‹ó¿ .å9‡ðék§Á[”ÅÀ£¢Uà—À,]6| ëä” ˆX³IBr–’q\]UF–r6wûîì‰sßý›1—©v°¼çîVC;—ïØõüöb<—×YBëë67ëKÌɺÒο$;jìYUjA[¾1Ÿ‘á™Ê«ëô5ÏÜV³oØïßÝTÚ»ªRg]Û,ëûö°«lãáWžÞ‚œÖšªtea/¿¤¿ÆD‰-•™LiGv^K¹3Y™SÞ º«¾R¯ ”¿¸#ó]œf#¾'Ì"Ÿ dN¾ ,…\‰/®ÛÕÂ8r㳊›³Ç¢“Šë»ó|G6—o;=6þüþÆÊCWÊê7j±®°Åáóû妊v‹µ4ÆÖR¬ÇYØ”–cT¸6=:4~nwmËìÜ3O²—.ï"Þk(Ûýü¶¢Ÿ¾÷ ï>ð÷W ¦á}òJ/[Ѿoå ðM'Ù~àæ
+aOdrv€E’å.Î…u8¼Ñ„MkǤû‘:üB±X&Uëºæÿ”¬±š˜ü<NÆ?Š×™,I†ùž–x:Y+¬=£R)ÄQIMì6üþ](¹*Yž–N0VWd£ž¹^o.ÔI‚Á¨Ä4E²Mv_`Vµ4§k뛚ÒÙS°AzШC6T–¤HÁí:*3rlÈÂGˆŽ¦ðWN®J½cð¬/ª™é´³ï²¿íP™Rd²T“²ƒèÂéØ8¿á¿D“TÔ[s°©v}a’¦Äï­§*=ºÜ„è÷ÚÛþéõ`TJ®…|;Ó™3úÌõíiU£M ãµé;ÒÜÕÕ½Eɼ m^øD Ûþە†Ã*M7rÞ0?}©7\ô ä`ÃLW-M´žÝ}–ý"ä[sGÞòôt‘®Â_¦Ìë*ïÛÛšnÙpâ>¦ Z›£6¯oÉ…ÈBùä),mÌP¾:ÇXáÐ8mζG>:zôý#uœn9¹¹©Á¹¸FH1ºåòÊ¡” )TeXp¶çYö?2ßÓ¥2¦H¥©Feqò)÷wýì©Kg¦FÛ”O|ñûñ?Ž‡eñ^f¶:j´û ûåilÀi׫WŸü˜;ëÁÏ~ ëªà ÇËæ2Ì@h¬ÐÁ9úÖB'
+¤÷Æ_oéRS¥Ò£ª‹Ú,¾/Z\âf€?dÕ;TY…z?»/(NÎÎ ß·ä¦D²ûúZX´EÖäxåNé¨eKmùæÚÝìfÊá•¥d(wÎËÃËrSãÑTikíüÅml·L0¼ä‡<¯ì¾ðZĬ¥½¯EP+x•F–- ‹‘ã…x¥Kiâê&eWXtÿFÍÕçl|?£¸_)‰÷¸q™„2¯0sâ=,«~hÛ¾êzCöºZ Юè"^Ôs¯»Ö6Ø[ ]‡†¨·xÊÃt ®
+Šôⱦ-ÝåS"ûÉZN¦]ó¥7eʱŸ‘"£*™Âl‹B¯Þ¸Qí¨Ì`/Íÿ<R0Z®ÍÊ£ñ¥öÔW>ÊñÃêZbW_+÷H\»\ð
+ÞQÛ’ ›ŠËþ-ÞzF£ÔÙ™×CkW?ć]aü¢Àžp‘yÌà[‹#
+/W6õ¶œÎ¦¥lÿ¶Ya*He©%ü7á\MT„§ Œ@œd5Pq×åÔ's¯0=Ç—yÆç¬aÓàiš6 »Üš$¼BThîw²“¢kþcžg"øuâ-¾B¨º
+9ù˺8Šõ8ÞÑ<ûguvvnª¸ªgÿPý_÷p½¾ùR‚˜ªY_˜œRâ÷Œ/µ“—Ÿk½³·BÁöXÜ™‰A d øv”§ž¸jlØÜÐ4êÕ†m›‹cëá\òÞ:ÿ‚´biL»ôtR…ã["uöü¸B9+¸Ò’ÞJ}Vç]]›Ž¬15î=?ºùä¦\­{½[•Û^œYï¢Sv]onzà‚<·m0'¯Ö&÷íé¶êKZí¹­^wºeÝè ½ß-â¯ô2›ÚÜßY䨱™ëê²Ìk†¶7ôK%O»h6„}»a¹¾9ù(žOŒÌ˜tóšßÃiù¤­Ì”HIfc¨¹èýñT¢©ÌvòêMc§jä†|ýN|ˆÚ©Ï7Èùµt`çïÀZyKüo8Áúª_¦uÁ;>n?ïxyïÞ·X%K5(|ÄËü3·LT{ÆVe…}tRØGÏýnèäd©sâÌdüͽ6÷q×L–©Ÿl"™°Ûÿ=ƒà8Д¡I^‰ãv‘¹RƆ+‘wë<9Çû%Je’”í½À6Fk™ôx;q²7>E%‰^„°-Ž$ã动·¨(‘ÀjØDÈõÙ¯7RAXÔˆ¤êD¹S6¿_Uæ©J‘{½)ÄxŒ&E-Ö§†m
+qõtA É Ë PD(ZJ¬ð­Ø…©·±&A«– Ä
+Uì()’nPšÒlé©öåÙ'ØwXv”š±¦iˆÙËJãÄûc’• ”D—€%‚'æ®:ú×4j kú‡³ñOci­Fœgeʜ׻ȗæÜÔe:+9ztÔá”U¤°&ÓÚu]ºÊ©2xî^úëÃ÷`7©npÄÊø̓¹¸Xy3,ŽZ!-v•aÊž ÍJâÓvG{ oËè2jæ{¢·SñjÕó—õÑüõ8CA¶-²§eºÌFCœ2ö”­ê©³ $!)N0:Ïd±›æÏ»­Á`U¬2͢éìÛê*Zσrxû·‰&S#»‘)cå ûß)Þ°^.°× Ù—#ä1²åÇÔÂåÓ—Y5Ü=…½&RFk‹²¯}è(ÖFó¶ÖÈ^#v‡çbÙr·Jìžÿ¹»ØÐXKŸPþå‡0¹Ø!Pgq“Ã÷û©$AnÎ?+×$" ™¸âNgÑš˜Å\ÎmNÒø¡‚KSÓSÚ‘£<gÊ£ãfTM=¸zô{›òãRz1»Ûœ /ñtyfVçüþÃ'Äj'Îöù ž¾’‡„¤®¨ƒ¸SWÜê(k(hÉQÚöøç¿È*€äâPfiFbFûŽÎ<&nvv•é^è½¼š³
+ÞY3¢§‰L. EÎðMŽxÅðuѵñÄ`±U±2±Ý.I-°hÔ–bÿN@R”ÄrdzàÁ‘|–*mqÈ厶ÒÀš5Dæ±ßªâ Ç‚ÑivŠ±ä¥E²Ó]F«½ÑWuà–8‡Ol œØäz÷—ßàuê_ø„üdk]â¿¿â¬y‰GR¢góßí­_µïüÆþï æ©Š‡Z¸KB+wò®¼u… ÉI¶¾ãò¢½¿9qêý½…º¢f«ÎíHËóךÍçw¿ù«dÐr¼3ÅÔR‘ ²ê¿(YÙQÅM/|SajTN#¸áÒÅÍ„—„@µ!Å^
+*œ*LT¯ò— |w“˵ñ¡þ¢u E
+ Ea’Äk‰^Š?ÿ¢´5[.Ïn-uÖY«çìiÑÁDz*íÉU~}äè;‡¼Éæ’ôÂ…Å”µ9Ë©^Û¼(3×è‰AÁÉŒ*™‰Qw?%éø+¨›ô¦bwå2Sò"ówx¤ÛÉw¿¾×ã¹ûï·Ÿ½£r¾4yûËóÖÔ¹\Žo“Wž:ÙtG—m.®ñðŽ‡ß} Î}ÇùÛG†ŽúmœÌÒª-Í%éœÎ R / M\.¸¯2yΛª.j踑¬˜¬J§9õܹì¡GFû¿Õ¤Û±3:É”šœ®ŠÆjöÃT³SéçO/â—×ÊWeæÓÞò䢦¸×3qp>7’MˆbåÔfê;¨m@["ί(\rgÅßUk»qù`än‚Âá
+ — _•ÂúJ~Éø |™xVÒDP«öÿýæLIÁêâ4µµD'¼o%9TýõS³Ïm;Ó;Ž]–<n\AÏ¢ŽT £"ÐQ8Î)þ á2¼˜ó
+ã1Ä T©ßkÉ8×á;i‰(H‚$0¡W¸œU³¿õ.,ÍËE§×¹±¶ôÔ’8²WÒÜSêt¦ ¬3ZãÕ©CCík°[›Ât‚Žä( 2…[j¤ø«
+XŠùÚûq®LÈQOƒOkÿf»Tñ&©T­°L˜f\:ëÖ–ª0åë…ø´&š7ÓÍ´uíkíU/d ëÖ8<fùÿ`¼Ä
+ûï5÷þæ0Öauõ½—OMNœ
+Ž}Ìåû>ÿ»øîŸS½óC”xKÖÃÞÚÄ(Ui8/Š óz1ysr–¥08S%ø~C”ŽÝâÁ]ù#Ì<`C—pGŠu¾8;ÔÝ(mãâ”ö.ÞüjÃçnF¥C]uè7ÇŽ^:XÕÝ`·»èCa‹Äìù®kÓ‰ÀÆÃNŽî^V.°Ýù¨dùŒ;Jò]_ \ËcŞ‹Ò$ü}‰UÃH)ŠÖõ?´ÑåÚô݈·T‰™ø„X_jOáBüyhõê¡HÐÀʃfJ3™ÙEL‰9¹êàoŽùõªd{eV8ìº~– ‚‚3o\¼ðvþÈÃa"vHI© (¡•Ì‘=uóì¦"ÔoÏw™¢,UØæÉŒ–;ªÖº·MÞsG”Ê”šž›®Š£”Ƽ´Jþ§?¢ÍêJ‹
+>fóÚT­½ÃYåYÊôÂÚºÊ$ö«+%j1g'EÎôWdìøñýVSq¥†.jÍÉ[•”\ÔWÛ¾sµÕ=ýxß=]}k»uÐ'»G;<Sí¶âÉSòôrŸ3§TS>XcTšœ)ú<»59µ¢}“·íöÖ î7Aoíàf)m§u¹vGjRis ¢soO6Ðkzå‚Z”ÆÝ}çs˜Nœ™<h廜
+>ÊQ»3êh©«®'ß;Ñ”õPå°Ö­}
+ ÙkîûcÄ{Ä ñѺUÛ×÷äê+÷³ç÷®ë
+ë%bP†ªçâ©Hèi\æK·p®äk´¶¶m­ã±Jõy
+¿Ÿ^bÍ®±*’2òÓ„ø¢"='Mv^ûÚøÖ:68?Q¹±!ÓÜ:U‹÷[s5¢àÜI«S-
+Fr^ê Á|#×A.È,Ínq8Æ‘D˜z'S¡Ó¦%°—Ø«l(&ÕäÔÛ»´†8áþdC´ !!ž<geŠñËäeH¨²çΓÛSJØ^::Ù!cï¨øVnRyiN4~8¥0EŸÌѱp !á{@÷Ë+·¤sÙš‹ÉwÌ-“oHe\‰äŸÿ1Y)
+¢â¤±kÄ1U^ ~[fѧIÙ//ð§+ìǨõ–4!áÓ”•Æ£¤q”0J«¾H¹çOÖÕ¶œb#6«Kd¹Ž`0–qç̽B<1ï#7ÓYIÑÁ ã”9T솦úJµ3ØHÔð:T-§ÝœwXJ+¹<嶇ŠZžr㯤ÜäöB‡¿“f·çèÞÂV{3äÛÓ1Û…RmòÌ}‰IE^áü— oçh1Á²æ.»†ø–ˆ±ª£•É“}Iò1CR0“êÌ`Yö®âl.×N¢Íi÷žMÎUs™v\ZŽ»p}~>Re¬2S{pF[¹ÿ
+ ÜJ4ðdÎò—Ìáéîƒ2 #û`N€§amØ8íÖ2øfê¿~¤‡—'9ŽªhõÁ\<§yZ†yÓ.ÏÁh´pÑ·À<° ót³×Ð4Œ)ÿnG[ù¯ FÝäÌ´ŽÃX;´0ÖÁ<µ[Ï®Xý&†)€Í
+ï~hñVÄñ9õ^‹7ÃüØvl#¼›ùUÇ–an\†Á[Ù@6/ÕÿÊø÷4oa€ªé}aœ}üS»¢×{;Ô9+¬àimçéX µT Tw›kWÀ~iƒg´ë—ŸÛ öd3@=üŒ:¾î«æw^ê†wôpc8Ü *,I¾uHf’·„)žÆIž @9 /Z·cÿ+¹Ò £ñe:™âçôóûÉé²ß3üžëb‚§0ÈËrQ#Sù DôäyávÂÍ~ÎN·ðsÇnì®m
+ÿu±
+endstream
+endobj
+367 0 obj
+<< /Type /FontDescriptor
+/FontName /b37b0f+NotoSerif-Bold
+/FontFile2 366 0 R
+/FontBBox [-212 -250 1306 1058]
+/Flags 6
+/StemV 0
+/ItalicAngle 0
+/Ascent 1068
+/Descent -292
+/CapHeight 1462
+/XHeight 1098
+>>
+endobj
+368 0 obj
+<< /Length 1278
+/Filter [/FlateDecode]
+>>
+stream
+xœe×ËnÛF†á½®BËtHs&Ã@‘n¼èu{stÔ’ + ß}ù½¤ikÀÆ/‰œy¾_Ã!}øôôÓÓùtß~»]ês¿ïÇéÜnýíòåVû¾ô—Óygì¾êýë+þÖ×|ݶ“Ÿßßîýõé<.û‡‡Ýá÷í÷ûí}ÿáÇv)ý‡Ýá×[ë·ÓùeÿáÏOÏÛëç/×ë_ýµŸïûãîñqßúØú9_ɯ}à´Omûütÿ¸óϼ_ûÞòÚLL½´þv͵ßòù¥ïŽÇLJ1wýÜþó‘9ç)eÔÏù6=n?[i(JKiU:J§ÒSz•2¨Œ”Qe¢L*ÊEåJ¹ªÌ”Ye¡,*+eUÙ(›ÊNÙUÊ-уÁkä5x¼¯‘×à5ò¼F^ƒ×Èkðy ^#¯Ákä5x¼¯‘×à5ò¼F^ƒ×Èkðy ^#¯Åkåµx­¼¯•×âµòZ¼V^‹×ÊkñZy-^+¯Åkåµx­¼¯•×âµòZ¼V^‹×ÊkñZy-^+¯Ãëäux¼¯“×áuò:¼N^‡×Éëð:y^'¯Ãëäux¼¯“×áuò:¼N^‡×Éëð:y^'¯Çëåõx½¼¯—×ãõòz¼^^×Ëëñzy=^/¯Çëåõx½¼¯—×ãõòz¼^^×Ëëñzy=^/oÀä xƒ¼o7à ò¼AÞ€7ÈðyÞ oÀä xƒ¼o7à ò¼AÞ€7ÈðyÞ oÄåx£¼o”7âÝþj·ùº«üo—‰$‰JI•$’$*I$IT’H’¨$‘$QI"I¢’D’D%‰$‰JI•$’$*I$IT’D’¤$‰$III’’$’$u>áMò&¼IÞ„7É›ð&yÞ$o›äMx“¼ o’7áMò&¼IÞ„7É›ð&y¼U†o•aÁ[5ñ‚·j¶oS orÁÛ4Û‚·s
+¿âíJ¼âíJ¼â특âíâ¬x»¯x»¯x‡+Þ!Êw¹âB®x‡b®x‡+ÞïrÅ;àà2äÍkçÎœñJ¼Y³e¼Y†Œ7+|œÆx‹ oSŠŒ7+[Æ›ețךyÞ¢oVûòæµ– -ã­Œ‹·é€"¯åþR¦W*–Ó4Xq”êC™^Jú[(£à®^ƒ1»¢y]•¡Èk¹}¼YM-x e#e®ÊÙ_y+ë¡hÜŠ7k¶:û«/ âåæZå5«dUýµl¼uz5n¥¿[ç¾ÛeBø÷&Si|y»(ô%q& %+S%ñ*Aª¾ÛÊBijPUÃ6\¥h,ž(¶+L¥ºÝ,¥‚4G©5Þ<¥ô…ÂcD› [˧©ñ¡*t› [ jj¼aijü¼IµÙxʪw¹g¶FÉ›wžØ¶¥§Rô>¶Þís¡hâ>½:­O¯VRÇËí¾³P*#àÙi|e0¼Uýí,ì*o§¿Uáûì/ãÎþ*[§¿Uê,”¦Nö¹°•m€lšx°:š&\}M³¹»)üÒðL2„´\%CHËF7æÕ§‰ÇÊ»BŽLÉ…’)æjæ€Æ»J1:%¦H߯:=Së©ÿÛ³zýr»méükÀó¹žÌOçþí¿‡ë媳ôû7±Ùð
+endstream
+endobj
+369 0 obj
+[259 600 507 600 600 600 600 600 399 399 600 600 293 310 293 288 559 559 559 559 559 559 559 559 559 559 304 600 559 600 559 549 600 752 671 667 767 652 621 600 600 400 368 733 653 952 788 787 638 600 707 585 652 747 698 1066 731 600 600 414 600 414 600 600 600 599 648 526 648 570 407 560 666 352 345 636 352 985 666 612 645 647 522 487 404 666 605 855 645 579 528 441 559 441 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600]
+endobj
+370 0 obj
+<< /Length1 8892
+/Length 6083
+/Filter [/FlateDecode]
+>>
+stream
+xœ: XSWšçœ„„—@€
+â J€KB!¼ „GÁHÂÃB [[3µJµµS‡¯uÛi·ëXmm›ªÛµ;ÓnÇ>?ÇéÚŽµ~®i;n×m;N·Óv[.ûŸ{/Ètg¾ÝoÁsïÎùÿÿüÿþ×UFÅ¡íH†Ö7·äÍÿ2‡„Õ¶¾ßØ‘ãïüB2ÖÔ}›B YÑ‚â,ìÇö ŒÄŸÌ!y!B$0à›››N(ý$ìG oéï=Л‚r/BZf0àó+ƒþJØû†e”s²àóŒÁ‘ÐÔ3 Ë^€ù+0Ööù~ë½d„ó.ÂþñßÔÞ„z`¯æLÐ7¸ïêL989c£¡SßÙßCHGñ/ÆÂ_æhaï˜ç!ª+N`¬ƒïíê/ùÅÈ®Â
+:³Å¤ ïKm|âç–ËÆdùT~Døtrÿ
+êðãec§Å?^aÅ‹:‘À (1Œ$tã¯ð~[Óäç0ß+¾ñ‡¨
+·/^b,€ŠïßÎÿüÁD†ä(B¡ŒŒŠŽ‰]Ÿ Rk´‰à ÉK—-OA©+ÒV2ºt6#SŸ•½juŽåæåsFB…f ²­Y[\Rj+³—;**«ªkjëê MÍ®uîOëÿ~þÿù§­ýÿIF†0Ò8ë]Þpý¦Ž0bË–†9ÞÒaíÎæ|kò–憱¹ŽÍÉ ƒÓí­b;t¹a™ah)¶»¼º°½#7,7PR«»ÝûAʯ:R
+DZ”yؘ ]Ût4qÂI¥–êt)Ì…i0Õ4­’l:-ÞÀ2¤ÃYÆëlIÑ…q‡wªc§YfºnšõQ‘„¾rà ôÔ ·Š*@õ÷˜¦/Ö·qýbM(©Æ
+6]o.´šÅóp¸†M‡ã“LF+–oj°éÝ.WcÓPp·Éº¡½x­9*»¾ÓQ’•Ež·ÕîÚåàŸÐXHJ÷ggLUÿ†·¶¦.ÑÌ5ö¬øjp™`aïι¾WFP´* VSNHJfï<ÝÐÕ××ÕMô'[ÿÀßøC«€;¸›E\” dm8AŸe›%dÒ4{ °±°1Ôâ^|†üº.„•ÉÊ,e–5ËšœeRZñ™§6×·xê6?úhRWÒ£¤Pw—åá‡-wéÚÏ<ãÚl¨VgIŠZj¸Öl2ãŒ#G<GŽœ ŽË— ÓÌÜ]¸ÍО#™µXMŠËÕ«ÕS™;¼{¯(3Và{q »Y—8„Ó±¢¢B¤}Å@ {ôÊ_Ü93#¬çÏ]į ~‡¢0‹ñküÉ:ÜH.}ǃò°Z÷x
+î1%Ã]"µ1hãHz)´a Üu¥F/\à™õ•Æ¥K•â+yyEQ‘âÂëËËŠŠÈ• σôdˆ¯ÙKök¶~‹[[÷«äpãä
+¨w8g9ð|Iä©1Ss¦¹\ÀªÇ<åæ:K~ìÜ>ü&¹ü*ŸæãysR§²&Švl®Z€•B¢3S<<E
+óZÜÙUE¶²âšÛ7mÙÜ~K¹³¾º¢"˧cW©ÔÙú4|:¢híÞ£›§ õõiÇ~ùúq¿ŸÿYùúÍþ÷;ì¿Ë)õÒÒ/!Ž!“h *$³à2& ûg²îPÜ+œç¤ÿ¤—lçgì žè¥úð È~tTÑ:eM¢°80DH–JôFeb~L§¿ÿïÍ9®ºò’œTœý‘ËétýªÔ²¶±"æàßÙmU–’¾ø²–¼¡=Yê‰#1ÅÜc…shÜÒ¯'VP<1á/Ì“Œ¹ÕÑÍG-¦Â²©;w„ÊÖÈòâ±²vÙ?9õZª#áw€O åD¥µáy9’ I?ÖêÊ«Ú{tZ\²m7X²zÏ]1…ûî:|w ÿáùg¨p‡A&Èòø1°µ–P• Ÿ¨t‰G?ÿüê9ä¡Ïìü{rɸ½.x¢â(Nx°ýóñÿ }f§zæ‚|/|‰ù*ÈâôÎU :1øT 2¾õáÏêÛ¾@skmåÖ£éë1kç‡Y¼hk—òïó¿ìUS’l*“JHð»÷¢ÇsÑE.ñç±aV‰ã
+8e >.¦d=–çgdÝVöÀ_^¾»¦§ 0uoúÎíÛ¡ýbVŸ¶ Íó:2©ÑR𪅒®+ºV™i¢rÞ+¯*+qÖ;Þ÷û»:ÿoïÉz‹¬×6xA*·oÇÖ}J­íÉú›}’PážçÃŽMÃ+0õV圲5å2õlJÌnü‚­º×]±$Áâȶñõø©‡™[9O U;…zƒÑRŠçÅJ†œ.ÓšD½wnÎå^
+¶ÔþôjüLGÅ'öo¼ÍÝ}»–ϼý~üç_¬ÄÊ®…ü~l§¦µU ­Œ’æTáNñ‰¦UE©Å n÷GsöðÇ°½½x©†ï ×n¤u\C@WE®‹=åÀš­Ð³á*ÏîÐ ‰œ½ŽÏØ Ë[Сp£éW“Uðy­T¡MÞ7»/ó_v®×¦âgm|ì »¼.Iß
+‘‹Kþ–ZúM5…ÓecøYáû’þŽ™G2ußJÿàô½Â•l)Ö/ü“R:šÿç%Œ0aÚdK° Vó%X8ë$8²h»+ 3 Hp ZŽ¶Jðô.š‘à¤Àƒ¬BJÎXNÿ®«OJ0F±øE &(¿.Á2ÀùµËQ,I–à”JX ŽA…¤L‚—€¯LHpŠ•Ïã«Pœ\ÄWlÿ,/`Šó™Sœ?UŒŽm e÷­bŒ\Á¦1‡©nnò´0.ws}U…æ#Aw``rØ7^= UŽcǬeÄM
+0C!³y(4ÈŒŽ ïÑÉ32êêê󅀑 Àj`¨GFã}C¾áá-98\¼”ÇxjëZC1u‚©Úê*«*™ôò˜§3íužÚæVÓ^îv—7y:òD³HŠ£
+4ŠÆÐ4e}
+/ ÐøÙC ËZ|À&7õKRL
+õAyX ýw4äàXÈ«qÐI$@U# ô‰ðí‘ _3Ë .¬€¾w%¦C,Ê€º¨GYâ«ÐjÁ
+4Á•¹ 2¹á"=pympu^¸°NÔ…ºÑ-¨õ¢õèiŒ•“Á!Ž+çÄŠ77‡Èg
+endstream
+endobj
+371 0 obj
+<< /Type /FontDescriptor
+/FontName /61e12f+mplus1mn-regular
+/FontFile2 370 0 R
+/FontBBox [0 -270 1000 1025]
+/Flags 4
+/StemV 0
+/ItalicAngle 0
+/Ascent 860
+/Descent -140
+/CapHeight 860
+/XHeight 0
+>>
+endobj
+372 0 obj
+<< /Length 1278
+/Filter [/FlateDecode]
+>>
+stream
+xœe×ËnÛF†á½®BËtHs&Ã@‘n¼èu{stÔ’ + ß}ù½¤ikÀÆ/‰œy¾_Ã!}øôôÓÓùtß~»]ês¿ïÇéÜnýíòåVû¾ô—Óygì¾êýë+þÖ×|ݶ“Ÿßßîýõé<.û‡‡Ýá÷í÷ûí}ÿáÇv)ý‡Ýá×[ë·ÓùeÿáÏOÏÛëç/×ë_ýµŸïûãîñqßúØú9_ɯ}à´Omûütÿ¸óϼ_ûÞòÚLL½´þv͵ßòù¥ïŽÇLJ1wýÜþó‘9ç)eÔÏù6=n?[i(JKiU:J§ÒSz•2¨Œ”Qe¢L*ÊEåJ¹ªÌ”Ye¡,*+eUÙ(›ÊNÙUÊ-уÁkä5x¼¯‘×à5ò¼F^ƒ×Èkðy ^#¯Ákä5x¼¯‘×à5ò¼F^ƒ×Èkðy ^#¯Åkåµx­¼¯•×âµòZ¼V^‹×ÊkñZy-^+¯Åkåµx­¼¯•×âµòZ¼V^‹×ÊkñZy-^+¯Ãëäux¼¯“×áuò:¼N^‡×Éëð:y^'¯Ãëäux¼¯“×áuò:¼N^‡×Éëð:y^'¯Çëåõx½¼¯—×ãõòz¼^^×Ëëñzy=^/¯Çëåõx½¼¯—×ãõòz¼^^×Ëëñzy=^/oÀä xƒ¼o7à ò¼AÞ€7ÈðyÞ oÀä xƒ¼o7à ò¼AÞ€7ÈðyÞ oÄåx£¼o”7âÝþj·ùº«üo—‰$‰JI•$’$*I$IT’H’¨$‘$QI"I¢’D’D%‰$‰JI•$’$*I$IT’D’¤$‰$III’’$’$u>áMò&¼IÞ„7É›ð&yÞ$o›äMx“¼ o’7áMò&¼IÞ„7É›ð&y¼U†o•aÁ[5ñ‚·j¶oS orÁÛ4Û‚·s
+¿âíJ¼âíJ¼â특âíâ¬x»¯x»¯x‡+Þ!Êw¹âB®x‡b®x‡+ÞïrÅ;àà2äÍkçÎœñJ¼Y³e¼Y†Œ7+|œÆx‹ oSŠŒ7+[Æ›ețךyÞ¢oVûòæµ– -ã­Œ‹·é€"¯åþR¦W*–Ó4Xq”êC™^Jú[(£à®^ƒ1»¢y]•¡Èk¹}¼YM-x e#e®ÊÙ_y+ë¡hÜŠ7k¶:û«/ âåæZå5«dUýµl¼uz5n¥¿[ç¾ÛeBø÷&Si|y»(ô%q& %+S%ñ*Aª¾ÛÊBijPUÃ6\¥h,ž(¶+L¥ºÝ,¥‚4G©5Þ<¥ô…ÂcD› [˧©ñ¡*t› [ jj¼aijü¼IµÙxʪw¹g¶FÉ›wžØ¶¥§Rô>¶Þís¡hâ>½:­O¯VRÇËí¾³P*#àÙi|e0¼Uýí,ì*o§¿Uáûì/ãÎþ*[§¿Uê,”¦Nö¹°•m€lšx°:š&\}M³¹»)üÒðL2„´\%CHËF7æÕ§‰ÇÊ»BŽLÉ…’)æjæ€Æ»J1:%¦H߯:=Së©ÿÛ³zýr»méükÀó¹žÌOçþí¿‡ë媳ôû7±Ùð
+endstream
+endobj
+373 0 obj
+[500 500 500 364 500 364 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 364 364 500 500 500 500 500 364 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 364 500 500 500 500 500 500 500 364 364 500 500 500 364 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 1000 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364]
+endobj
+374 0 obj
+<< /Length1 6700
+/Length 3800
+/Filter [/FlateDecode]
+>>
+stream
+xœÕ9kl[×yß¹—=l‰²%Y±âèÐ×’íRmËï©6%‘”h:z‘”I'•I‰—†¯ð^ÊqVÏrS·×Y5'©S,A°YQ,W^á)AÑ:@ƒ>€Î †bÀ0×6¶[ÃY°Ck™ûÎ᥮tÃþìPçÜï}¾ó}ß9÷
+Q퇟䰡ƒ#k±ZQƒºZNª‘0uiî™DÑv¢½ùÚši@®éê„ùšZkÒ¶I¹y²íူÍup^€ªµlZMlwE¢ÚèXÐålµZC]­Nrr p“ši@3s“4É\‡é|çµâK ˜
+ÛÖD¥häé &FP·(ºŠÅoh 6m»äÔ¶?ÿ/-¸rY딜.ÍƬzÇ—æñ.OI4c»E¢ÅO—#Ýùh5%¢SLí–On o±è–¨».FJ³SµHÅù5kŠ9FFƒ¨µPzïÅVÍýRH³„ä ¾X÷¸W[?öTPÚÝ4A
+þ–¬û[­ ¡ŠÌè£Ø€Àp`L­V¶ð0…ˆ6;,ã¦Z¯€Ãn iB˜q®U8MÆ™­p–ÔÃfÓë 5C»'*¹0Æ/F´Ù)¬§/³TH­î³V«T\×@ØC\–¢Wžh’jÆ j­TÀJa*E Gê>+?î´â ëè Í0;.ÉÖÿf-h€vujC¶rêýAÍáDÀÑsäšßaGHS”tòôiv)§5JýKùdn¹’¾ WÑÕ´Æ _>º–fw9ÙÌÔUdµõ‡fr3yö¥P³è•Æ‚ïBOéÖünÚú×=°BNf¸y
+»“鬬û{i´BEÝжS—ìÔå¾Ê¨‘•ÞÀPÅš‰¡hg`¨Õ²–[W§€lªOŒU,C–ØŽ§Ò4ÃI,î-,ª4(ÉRHJPÍ1dkcááуÁó£çÕ¿
+[, X‘]AX05·­uepµAŽ/¡C°=6-VI^_‘—tƒ€ž{4`åîØßÐÊO
+V1’;‚e‚5Ã+¦8ïp°jaÅA‹’'Z”|Á^.§ÍéÖçÙ\ëÀK¼þþ®N<øúç%r~lÞAÎûŽßµà ÷¼?xE Â@¸?4¿yÁw)¾W8U`TFde³4ŽH—o}×0˹NàøôN«ªÐL/eš¥Bf(ÓœÆf©%1ƳÞE£,?_ %Šá«qhƈàшt£#š'‚iV#ÉýZ­ÔÏè‡ýp™nbt3Vi&]Ï-.éÓ–.|gö5’&%
+9p­o+b·° pÇ78ô1Ž²:~»ˆ32ZEæ:ö»Ø ’ÇÐb ZÞ€ÏfÇúÀA©-|›ønãÀm²ï61-”î8Þ¾U?8v‹·Èî[Ät³çFà×=bàÿ$–Ú>øÉcm³Cè½Ù{‚ãê5î7_'õ¯·½.TŸ{L¼{mæ5^µ¼š{uöUC-¼‚ñ¸d¹$ô^¿D—ÈÝK¥K‚ãAŒ^"'æÞ™ûñÜõ9ÃŹ7ænÎÝ+Í.Œ|†×·©Ø·f÷e³âFÒxl}©Íl(µ™Ðwâd¡tÍñR¬f­»M¶ËÂŽ¨#úfT £Ê ì“Ø×÷¬ Ñmº_/žãXS‹{Ç„cbtB< \Ü Ü Gýûqh°¦mû 1U ’Ç{ZÍ=MR°ôÔð *@!ðFýÍzápýõú»õbÎÀ;p ˜ýÙfb$ äåy¿Ïfó.˜Kø6>¥‘óZ»Ž±ãšé¼ãOç ùfèÜ… пɫíòµð¦W‹"à`À,–MóÍÐREµñF”Šíâ6P*Ŧ@>(jåÕBaR!“Ê$
+¥p(K¢…²üc”(Ïl6&ocÓ)ì‡D›‚ÝÆHŠ­LÐÃø¿
+Æ«Æ_®þJ5F¸Pb7ˆãýÆûÿ§_ÃUà}ø)LÀ¿sxïAxËpÏâµëðÏðsÎÏÀ7ð®ƒXp·ð·²]‡_A|ÉÖ³ð˜~²ð6|¿!ß\¢E‘v
+ÎÁ¼ç-Þÿ‚pèþ‰@$¸ÀgkÐ&@׃¦¨÷!o¯`¼‡{þ«"³9åöža›ÑšrH}›Órp F0ú#x NÃ3à‡^Òg¼zïÏ ©t®À÷ð~ZnãpV‡>„ëb ‡~Ž1`í|‰=L÷ _†Ó›†ÏŒ 4
+U¦FS“駦N Y³ÉìÄ*ø@ø¾ðçèž·ÄI\†›†„=Âvá{ÂBéÙÒ”ñ_x×ÆÊh„ø ‚ÊÎn­âe¬$‘ݾ{¬ íÖkLܽh2‹ß2^ýí‘)Ã'xj¾En™&Åk°–ÅqƒÔ±uÏÞ}=&³µI8{àÐЙ‹Ï : Þ¾ë<ûÊЖ¡WÎ:'¸}…œ¦ÄÞ![˜o&isÇžÝ{{vmh6ïî6›š›{ví¦.MÇþt.št{¼q·+>í>!œ~æÂˉطŽ Åܱ˜{(š€üèØÚÓ¼¡Éd–öî³î1žYöãž$ün•
+w'T5wÐn?yòdwœOÖ=MÛã²jGá¬};­«s<֣ɬ?.»³•ú²1õd$/³5¤’ÓrFÁ9 ™¨œ§jB¦>ÏQ:’“3eá£eNº‘ÝôáÆ¢IEÍ'§
+¸Š’‘ ÝÜç£ßfÚßçóø:é1h$à§ÇúÆÇû†ý—ŽŒÓ‘a§ÇïFÌMû†CÔëvvR9‰îä©ü\./+
+Íæi2K%Y¨|²üh_i,[^‰’“§“±ä4ME2ñB$Ž«ÈÉùtRa Áüe¢¸þtR¨ggä|†¥ëT¶§´„iUo©•<(ÓùdNUº•dª;›ÛGÜGa
+ŸÓˆgxÝ°uŽò,²Õ$¸¬#{Ÿ#|ÖÌ*ËGWYèDÊÃj`'êÿij(ª¼®¦Ð+U÷¯l3ÂÇ͸|<ï>„)ôsœaÌcùa½à“á}Xûã8#î×A
+Å]8‚T'×ðp¸Ìsó½6 !|z‘Ãd˜m½*G'ϱç02y^
+÷1ÏבF*‹p¥ªØ>‘ÿWq¥£ìªœ(\gšï:&Iù~ÎðáÅüÌqÓ<–•Œ(zü¢zþÓ|-l',óYÎpÝÌÒî:…´÷¡ ûTÞ­êÕ÷ƒ‚³ÌæøÉÕÍ}Ká“­1Ž|ù£•ÿ«(ÅØ·àCû—‘àýœˆøºäóÙ“)9¦š ™ä®;Ôdñ Ÿ*¤R²ZÙü3@ÿ¢ª¡Tñ¿­3È\
+endstream
+endobj
+375 0 obj
+<< /Type /FontDescriptor
+/FontName /8fe72e+NotoSerif
+/FontFile2 374 0 R
+/FontBBox [-212 -250 1246 1047]
+/Flags 6
+/StemV 0
+/ItalicAngle 0
+/Ascent 1068
+/Descent -292
+/CapHeight 1462
+/XHeight 1098
+>>
+endobj
+376 0 obj
+<< /Length 244
+/Filter [/FlateDecode]
+>>
+stream
+xœ]PÁjÃ0 ½û+tlÅN¶
+Á0ºKÝƲ}€cË™a±ãò÷“ÝÒÁï!½§‡ø¹é½ËÀßSÐf°Î›„KX“Fqrž5-§óÕ®g'ñ°-çÞÛ
+endstream
+endobj
+377 0 obj
+[259 1000 200 354 1000 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500]
+endobj
+378 0 obj
+<< /Length1 5112
+/Length 3482
+/Filter [/FlateDecode]
+>>
+stream
+xœ½W{P[Wz?犧 !‰‡s¤‹yJp‘
+c#ˆqãF5†c£5IçcØ1Ú1Z’¼zŒÖ$:)³'íª0îÅð$õîØs~NCUJ$‹ÚÑ´¯fñ¿?4Y^´ I!©_g‘.æŒõuæ²ñ®4+{SN®6O§7 Ð…EdsqIé–2füþÿ>*1«D×§Ö ¹ÔÞƒn•Èß(TÓj];Ü‚wØÍ®©TWWhQ©™]W³j-ªdîs¸vÉn£EÕ˜ý…LmrÕ6·EM1sS£l<äºQüOîbè¹V‹ë.–jj­Kí:è·x©æì© ‹šf>o¢'à˜š*V `ÒÍçË«m•aÎÓ²–z‹šif‡¹“W
+µ³ÌÞJ:—™«o¤Ø¨R·k õÈ+2[éY‘=Ü aÂ5—oCâÖò8‘÷•VøCö,ìýr&ÜTgF+ÇyÙzgå•t• ¹Z‹/C¢7_$m´­£ƒö½˜Kfˆ˜¹ò¨‹Ï—¼ÑËÅxP¹•os¸.à¼ïœé¸@ÅCe3j‘·äŽ/ƒYuÁdAŸ½H×Véc¤OÍr§ô»îó]|7Ô\4šÞ⨻U›r¹U}-!kŸáÊ®£´ s=þjpà ‘)²H¾Kž!×p'Ak¨ƒ¤ß£¯Ò¥|©YÚ-ù¤CÒŸI?–Þ–~£Ù¢iÓLišӚsÜÐ8Ì8w´F:ƒskÓµ•6­l¤™\½*Y3J."ôÆé»ôIÜ°BÚ4²ƒn>V4ôoš¬ø5jŽ_㺔×¼ô D2q§çÚmiÚܹ"xÅûóŸ{¯ÐFj¸t)þQüÃK—¸îñµ#tyŽß±r3”oNWëþªöØŸ?qF`ôr\8¶&›áÜÓÏ='øÕkoÓ×Q ð3©LéëñŸí¥íÒõÛq8†Ü²ö}Azè°0ismV»!MDAnª æÇŸ¶moéZý¢¯uÿ&éúUÙTý äÿúÉ”DC˜ž\_Õ´ ui2d­>?Sg8<.™ÇÇW¯qÝVø»eXTȦ4ƒ¾` 5èeSeS¾ÍÚÜÔXQYG››áŸ¾Ð?ÐpÏPdì_<=ýÖ{j­s#~{PÚWÛXçÜj[}MñµÛ›î-¬_蟘Ý"òÁt±ðêke
+µ†Ÿ g¤WKŽC‡sÝHèØub‹t·#¡;ÌJW+¤ë«+|/íˆõ¢”G <Z5ß Ei*ÜvDˆàÓ›šu"Dnÿ<Øï¸ßþåC%eMÝî§JºÛëMLÊ:¹†Æ&µÛ·–±ø-kcm}6ÇoþUéc|§ "=À+µ6RÏOðZ^zu!âé Z¬{&ƒµæƲÒò¦Fšò'ßbÒÛ·òœž5Å/f‰}hÞ³ˆ—燽[Í Âæ[JŸõgå´´õ¶5µlo;ðíº·ÑÞ¨fúþ½{KE'¡›ô<.‹Èûc²ÇµÕj×&¡*Ŷ`ƒ9M)/-k4×6žÜcµ{<‘…ÎlÚo_»|úHþ­Õ*ö­Ä™¨ÞÏW.dzo¡ÉP¾AŸ¾ÕVGÿýÔoìØÖÝ×yóͽ{¤ø{hMÅüŽcWñH‘TòGe°Ç®ŽD¿íĤ¢‡§Î–èBÜDK© ‡¿Á®Q»Åd.Û¼áñǃxoØ67”åØ”kÛÁ†ã÷Ó$â²âmèEÄ¥%Å8UMÖæ”÷¾
+úoÀŽßu¶Äe÷_’'xêÔ©È}qõs)#±×÷ý>îD]BUwã_ìmÑ”O¶j’ZçÛçÙaúhÜA_@þe|—îÞ»$›w¬Ý¦ÑÉ•rº¬ãÞÜŽ_•F—Ž_¢¯ÆoÇoÿâ4…¦p;ûý¯°Ëà}ÈÚ56²&ù"ÿtüMàýöjÉMO¼ræ‘wÖr˜ÈŸ¿JLIZÂËvU’ÖjbNÒ)ønMÒ©8){“tÞ‚Iz#ÙLŽ%élò&y4'tÒ`’¦$‹^HÒÉ /'i qÐW“t
+É—
+“t*)‘ê’ôFÒ(õ&él|_´¾~’bÚ
+/Güó¾XÕL5³* - ¿Œºœ#lÈ1Ø»k§ë†@°#´8Û
+ƺB‘y/³Ö)lKHXÀ;ë_
+`mµY-#)à6cÞHÔ
+²†:¥Ùæi±5{ìsµðâR–}ÐðÅbámõõ‚g™ƒ‹h](:¬[;}þ(ãÆŸ¯—ECs±<o .úþ˜w–…½‘€?*œ@m>â rn,Ä–¢^3›A~fæ βY4ñï[Šy™?fføc>Šˆgh)Æ¡YÿœÆ™yÁõF`x#3~Ïââ2W†‚_fÕ1gwψ(ëëéÜÕÉLí#X›Øx³{pÔÉÆÛŽö§»ß !&Ë$BüdžøH ]3ƒ~aÄJÒ@Z@õ“ZÌ]d '=DXõ’]°w&å $€ê
+ۘث}Љh¸?®õ€ | xÅï®CB“×8$æ0f€KFÄm½I]¯°ä¾bO" ýÐ]Äßò:rPØý_Z¼NÒMzD§Üé–\':g «NtO'8&¼%Œ$å&<ÇAqûAÔÔ)Öí°q`æ8nR§Œ(AåWÊ”ÿT^SB >Tn¯e|çÃ¥ea-Sy œ×”g•*g•yÅ­HJ‡rRyDyÔÛâÎT‚ó™ŒÊþ'Î* î„B•#Êôh—?pð!eÁQ½T›eF™SŽ)T`îWœ‚OO¦ŸXUèðc÷ïÑ
+endstream
+endobj
+379 0 obj
+<< /Type /FontDescriptor
+/FontName /936a7f+mplus1mn-bold
+/FontFile2 378 0 R
+/FontBBox [0 -275 1000 1042]
+/Flags 4
+/StemV 0
+/ItalicAngle 0
+/Ascent 860
+/Descent -140
+/CapHeight 860
+/XHeight 0
+>>
+endobj
+380 0 obj
+<< /Length 1278
+/Filter [/FlateDecode]
+>>
+stream
+xœe×ËnÛF†á½®BËtHs&Ã@‘n¼èu{stÔ’ + ß}ù½¤ikÀÆ/‰œy¾_Ã!}øôôÓÓùtß~»]ês¿ïÇéÜnýíòåVû¾ô—Óygì¾êýë+þÖ×|ݶ“Ÿßßîýõé<.û‡‡Ýá÷í÷ûí}ÿáÇv)ý‡Ýá×[ë·ÓùeÿáÏOÏÛëç/×ë_ýµŸïûãîñqßúØú9_ɯ}à´Omûütÿ¸óϼ_ûÞòÚLL½´þv͵ßòù¥ïŽÇLJ1wýÜþó‘9ç)eÔÏù6=n?[i(JKiU:J§ÒSz•2¨Œ”Qe¢L*ÊEåJ¹ªÌ”Ye¡,*+eUÙ(›ÊNÙUÊ-уÁkä5x¼¯‘×à5ò¼F^ƒ×Èkðy ^#¯Ákä5x¼¯‘×à5ò¼F^ƒ×Èkðy ^#¯Åkåµx­¼¯•×âµòZ¼V^‹×ÊkñZy-^+¯Åkåµx­¼¯•×âµòZ¼V^‹×ÊkñZy-^+¯Ãëäux¼¯“×áuò:¼N^‡×Éëð:y^'¯Ãëäux¼¯“×áuò:¼N^‡×Éëð:y^'¯Çëåõx½¼¯—×ãõòz¼^^×Ëëñzy=^/¯Çëåõx½¼¯—×ãõòz¼^^×Ëëñzy=^/oÀä xƒ¼o7à ò¼AÞ€7ÈðyÞ oÀä xƒ¼o7à ò¼AÞ€7ÈðyÞ oÄåx£¼o”7âÝþj·ùº«üo—‰$‰JI•$’$*I$IT’H’¨$‘$QI"I¢’D’D%‰$‰JI•$’$*I$IT’D’¤$‰$III’’$’$u>áMò&¼IÞ„7É›ð&yÞ$o›äMx“¼ o’7áMò&¼IÞ„7É›ð&y¼U†o•aÁ[5ñ‚·j¶oS orÁÛ4Û‚·s
+¿âíJ¼âíJ¼â특âíâ¬x»¯x»¯x‡+Þ!Êw¹âB®x‡b®x‡+ÞïrÅ;àà2äÍkçÎœñJ¼Y³e¼Y†Œ7+|œÆx‹ oSŠŒ7+[Æ›ețךyÞ¢oVûòæµ– -ã­Œ‹·é€"¯åþR¦W*–Ó4Xq”êC™^Jú[(£à®^ƒ1»¢y]•¡Èk¹}¼YM-x e#e®ÊÙ_y+ë¡hÜŠ7k¶:û«/ âåæZå5«dUýµl¼uz5n¥¿[ç¾ÛeBø÷&Si|y»(ô%q& %+S%ñ*Aª¾ÛÊBijPUÃ6\¥h,ž(¶+L¥ºÝ,¥‚4G©5Þ<¥ô…ÂcD› [˧©ñ¡*t› [ jj¼aijü¼IµÙxʪw¹g¶FÉ›wžØ¶¥§Rô>¶Þís¡hâ>½:­O¯VRÇËí¾³P*#àÙi|e0¼Uýí,ì*o§¿Uáûì/ãÎþ*[§¿Uê,”¦Nö¹°•m€lšx°:š&\}M³¹»)üÒðL2„´\%CHËF7æÕ§‰ÇÊ»BŽLÉ…’)æjæ€Æ»J1:%¦H߯:=Së©ÿÛ³zýr»méükÀó¹žÌOçþí¿‡ë媳ôû7±Ùð
+endstream
+endobj
+381 0 obj
+[500 364 500 364 364 364 364 364 500 364 364 364 500 364 500 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 500 364 364 364 364 364 500 364 364 364 364 364 364 364 364 364 500 500 364 500 364 364 364 364 364 364 364 364 364 364 500 500 500 500 500 500 500 500 500 500 364 500 364 500 500 500 364 500 500 500 500 500 500 500 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364]
+endobj
+382 0 obj
+<< /Length1 10908
+/Length 6997
+/Filter [/FlateDecode]
+>>
+stream
+xœ½z XW¶ð½UÕ‹ˆÐt7‹¶J5Å"" 4ˆ ÊÖ,
+H/6ÄAºÙÝØݨ¸ cLPb3YŒq|yã_ÒGÑ™Ñø2Ž1Æ8y&3qL4‰Yuô9Æɨ]ýŸ[]­`Ì›ÿÿ¿ÿû «êœsÏ=û=÷ˆ0B(­E4j¨2ff­ŠÚü*B¸¨ M¶®“ï}…åš²i™—m·}Bcª6«¹«¥ÓóçCˆ~!™¤ÅæéB2øA“Ÿ€ùá-=Í/%!ù9BŠ¯Z6;N¼î€±KpOoB„‘ƒìDÀ[;½+^?@µþ6à{;\M¶šÕ‹ÂaþfÀ­¶]T –Àx)à¬ÓÖéØÔ¹ú €ï"4ª¼Ëåñ2’:Ðã+ºÜŽ.YÂÀê·ˆøŠ£.Mvïú¯%‘yß¡Ñ ®cW]EÞYÎ]å÷ój™\šŠ($‡;xÁ<y¿7ø˜ã»drdGÑhø•&ÈNƒ8*P’X,KðI€hÀú~Fd›Dô‰Á7ýÔŒ¯Qˆ-¡ 3ŠbÐ=×¼ªªy0ŸE=Aäý”•ǘrÉ €N£c”¼<Ž,ÔñÀv
+N€ù9Lª»’é œƒû&À
+ÉË~ÉéÀuî³ü[ÌÀ‡LŠ`¾DÛ™—•éE¹ôExL_CVjñ™S¨Žr¡^Êx¿
+Æ0Z…! ‘PnQÃ(Uêè˜Ø¸±ã4ã'LŒgµ \bRrʤÔÉÿZ÷ÿŸ«ÀPk5›Œ5 ««*̯(/+WbÐäÏ“7{Ö̹Ós¦MÍÌHŸ2)%9)‘KÐÆÇ©£‘cF‡’ˤ†¦0šbàJX_rƒIæJKÓ ÎÙ€`Fhð±@*Éãc6v$gp6ßÃYä,¸Ã‰lÊKŸÂ8ÖwZϱƒ¸n¡à~=WËú. ðf’d Z-Ì` q­zÖ‡Xƒ¯dYkŸ¡AòF‡sÅŽ°ô)h l4€£òMâºð¤¹X
+³‡7i|%›k}Š†V<Kt¶¤¦Â§Zø€ÕG%•°­6 À¿|N;C£ª ñTÿØ0‚@@8 ¦Z-q|Ó`jÄ·v¡5ˆ³¨Q³d¦Õú¨2òfh$ÚLFÖ†FîLoà ›FkŸI*³sˆñ&›om#ÔS;I§ðEÜÐh¹>e;3³VàeÁª2{ë“$CX`Öð P)dJŸB@"n_—5  9JÉÎä@ ‘cà â¿e­q €MŸâ+M ¦Þdõè(°‰92 LÍ„¶HQ›^HŸ/“ëò©¹¢;ù$fÚŒVaŠ8ͧ.öÁ†(ÎòeôD3kèkÐM ²¸…ÖCH8?ÍjÞСlT«'Ì1ÅPWɆ>«½Ùß ±ÃJkf­­¯ \ËYµ¤Ð B©çAVÐ裊MÖ
+#W±°Î:C4$8@Ä1I†{ÄpVMP ”œOž$g­”†®FØ
+qƒ¾TÖàЋ|!TBÊ©¸4$MJPS\ªÑÖjƒWú
+†YQ1Ì“ –††è$è@£@Œ@"±Œ#5ÏZ9W˵²¾‚j+ñ„Gˆ² !æb®L#°aÁ‚0!- ‡L_Išfxp}óüZzÏpYh˜í“sÆ>"œ"°¼Ì‡H ̈Ò«Ÿ¬g®Ä‹V´°žû
+
+ÈZn%˶+³÷qFkžÀ df%Ñ¥D¸ÂT”>šYÑ
+¹ Kq­cèßÖNò³º¶µ¯¡–Ô8ŠˆÀ?ìÃÜ\ˆ7w
+àÄ
+´Ï¸¯`º`ó=
+Ä¢;gþXG›ÏaÚüW:¿öàÕƒTäîüÝÔÎpä ñ/PO<»óYjê3¸ê)ù$î®TÅ{áNqåºæ¹èq8Î<Vˆ—1x)L½Þ,P7‡)‰wd:¨©öûN;­ÆJˆà¸‚eY¥Sš% Žµ‘t/}…c¢ãJ¦Z
+,Õ:ß\e>cþÄ|Å,©6]5Q>#~»—Î ‹—Ïñ8Ú£‹6GáH³Bi†ŠÏCæŸG~IåGž‰¼Iç#8Q¢×Ñ$8¯Á<ˆŸ0ÓÒ*eØèdÕøð£¾$#y,¬óIõ!sÝÖŒ¯ÝÐߊ&Tø²ŒV_ÄÚ
+Ÿ€¬@1a Õz<ošpaOšy0ÒG¤R‚—‡ "a —Çëõvw×7<ɃHëîNó,ñxàExÈHZܨ_©¾ *áT‹º%$§Gžò˜r¤F[
+\
+lºûDˆWóÍÿ/O“òp G ¿ °-F­¨­ÎÓçàg)üë$:·5£.´!8+ ì»ágøu ¡ß£AV3Ì}ùGÔ×CNw£÷Ñ7øñ;4;Ðz@z?|»}%êâx´M€Æ 22Ý+ŠšEžô°]ÔQd¢hŒ¯ãpÎJ
+¤M rH•&r à#5¸ÿ}~ÿ·ƒĦÒ}~ðÆŸ%§o|Â/ó¯ÂÒopÕ~³ŸªÂË`ÛxŠÿM0^•`o«ä‹H÷VÏÆ2m®.kz®jz.¹„œéÐÍ[ùïåO;•~©¢ÓfÜÉ¥Ê×ýtzÍæ·vIŽÜâ’U5KY9uíå½gÂjò+À9È™Rr
+M@ˆËÅsqNv2—@'„‚BÉ°6 $ëh. _8º­yÑ¥Ü'ÿqâÐ;¯Ýæ³ñÙâ%©–š]xßÞÛÏ,qñ§Ö»_Ù¾e%ï¿À7ÎY¬å_
+æëfàÃŽT’/°9';¨"1wÙD­f¸!ê!™ÃíÑE¯]xíóüçPàw¯:wtëNþØõão[JYùÔ¯Ÿ}Œ:Öú§WógÖ/ß±cãö/"_éýòfw£ÞØõøá½›IÌ WõÈ’¢ÒÒѬ¥ƒž!-›“­ iKÀTÉ_©½3,ÒzÞ³±ÉöÎçü1þ&ÿü6ÙŸqhËr'u:‚:ËŸªTNãg°oû>ç?~·÷ì{‡Þ
+9ôC ž (4ɆgëT±ˆådgb:9E*£µø¹U)î©Q¼4*%·|urç†eÍÑDù?PLÝÊh ã©Ì¥gñüõ‡úŒr‹ef óæ­1éKëäññéÚ]ÿÉoê-0ºûA·AwKÑeA=äd§á\-‹`a¤â$òÖrX£Ù?$zœ’š ;f_Äoò¯¢¬x®åW½Ä_·l¥/‘á?á¯ó+üVü{ìƾ[q?ÐA׃Ž8â—
+ F$˜uN4žÖ±$0©JMƒ%2™1_çOð'ž+õt±²¾ûø¡zÐ4û½ß~ÍÿƒßM4QÛðœ\—PcPÛ“ ã…j7%‡Š›#µ
+cb‡ùÞ]Onù¥íß^îÅá÷ýñWn×ÊíÆ=ÿ¶…ÿÜÿþZ¼÷Å£¯´=òÀ’·:pvµíñ›7/[ÔÛTxù©Ï~Ñ;ÏÔ»òîüDI#Ú—‰9±ØÓ0õ¤üéL•½*³¥:â¿÷Ôì íf]Q{ØÆ„~0¯ˆYºÛŠ›ùmÕéë¡YÁŸç˜z¨¦$PÃQÄbhaY±¹:8Hx¬šM¶
+ü¢®Ì¥.ÙziÍ&¼Ó›uE›'ϪKÚúøÎÇ2;^¿¼®ù|"ÎáÀãð§åÙþ®~KkNÞÊ=…Ô…r¾øÛË8ã Ò7sAo
+ì±$o¹2N,--•é”:±¦@€•¤{P²¡ÅE8R¹%J…×7Fç„={~e¿“ç·Fϵíûj]×&g6ó½)®ÁÂg7íÅI¿9ÀÆOøEþýù+üÉÞ` ÁWú¢à+¤…|àlÁA….‹Î‰>öÒÅuXÞ¿£Éh*ß2tá ŒÆ$×lùô8ìG»Lsk:7ð¦Óü7Á=€Äp7ø’€ÒGÆé·þe,=…L±E¡Ä=ûB:­>ºÑÛ`¹õò}+ØBŸÇ’¸Þë%“†R¤ÄI,¶eé0oÚ¿òON©b.¼ÎoTÿêÛåÈan¯víºAŸÅƒßñm~쟰¦/Àš¾(Mú-G[Ï*.ŸRjƒëtDbuæ‹¡œw=kŽJ—ÖäNÿðpøñ˜R<gý†=­Æ8ÍgôÐmÍ?.FÕGì9CYžÖ…]FÆ£«Z­(0È«™“Ìk( å BÐ%lÆD²Œ¬pŽ¸¤ŽÇ ø§e£²§ç’5GüÝŒV«R"`Ij Þ`[ÝÒ3sÒœtžÿ SùTÛïð\þ<ÿ_øÆ —nÁ’?­ç/uoé_Ñ¿ãDäÖv¬Ýÿ[f“õ½å™õ{ù Ìì]XtÂ7G‡ðhç §þ$ß:«øõÿÀÿƯûvûèn^«Ju÷mXú©»:±>&“¿wÛ#ñÝr
+5Ú¸DÕHcá<C²uçD3²4Á¡{rø”§x†ÇÀÿT‰]›âõ³­Ioœ_ŸQ%[#‰í*¬ZZRÆŸ³ø[«I:M‹¿À+´ÑБ)RT© gÂH=1Ã[³P,ø´ äöÇP-Ý“~#[£ußfŸùͬ–FÔGüM„[níºþUp×®1'!žÄbm®VMP£“%$§ÐãHɨÏ> ÄÇUËÿëЯ«Ö)÷ìÌÝpØt7„Îi´rýÜx‹åèþÁ½–ª‡ñ¼e|{(vþ[/}Ï@ìì /zþýãuF‰×_ãT¾$ý•1OHŽÀ
+}j!‰O‡ÅvVΉokA&g£|[S¶rXêïÄF'ÔˆL÷?•
+)ú¹·²•¡¢ØN:Ǫ\õ®3gõ+ïA匛•óÐ
+Ss
+—¶¤í|ºvLF^Ps§BèÜ™œÍÂóPBcã‚u´¼!TG;gôðߺuÝ©a°{±ûS¬œñØfÝ[ËW†YðÃ"~÷ùPo͇~6â|<_ç(„–MþÕà|}õÐðª_ž|û•÷˜úÞã¯ðóΟÀj|ðÖ5üäu<wÞà¿Î × Ÿ”€Ì ÄØHñpwÄGtŠ¾»á J¾+”Ä¡§…=ýÙšü/ùëÝÆQòñª-™E ¯^^×þgŽo·HT–pë
+N:²Ÿ¿Ì«2‹´kÌ–P)eøè—Wø¿üœø6Ìú49CÛv§ÏÆ¡ó¾jºÛ*>ùÙ7«7“b­=k*SÊ_ ïRñ›,r£7Ý9ðí:ÇÇ)w·‰Üñš›'Itñ¶Ü@­/çó¾ø§
+¹„¦ztÇòƒâ›‹IJéøš%Cº¿‡-·=-ºfgûn:ç%¾ï¿ILÛ_>Ü¿ÈÓÁžÓ µ‘Lä…Î?¡­G<㇎IâgÆEÛ¢Å6?xã«7_8X6c•ë\ýÒ­Ž³¾gIkZV7-Ð7d:ÿðìá5íE†Þþ#eŽì’Ÿ5>òjWM¯P‹ý°oJJˆýIÁvœÜ,•N¦“qÁåIµr}}Ÿ¨×lW½½´>çû±ß¯ÛiÜ6¿ñÊ‚%Te Ž¿Ýí\6«+ØOº¡Æö0å™N\ÞÊ\•îž…üêÊ{ØF¼fcª½íïIþ¾?^?«,顇, S¸^wžMª†aÊý/ž³gîżßùdMkzžÛiÊÑ|J·,Lµus¿1aŒ‰œ‹UÉ$ª˜XÝt%ùF ¶N‰G­Q+°nIâhéóçKfVÏÞÄ_ülÞØiñ¿ôÕú­ø±å¥¦òº#‡ù1_ª‰ÌùKR;ä7¾]é L¤*£tлàID§Á
+8KñHœ[¥³¥r<úÈž´ˆW>²*[:üü;ñ?áÿCI»Kç[øj> á#rÿEÞ}?¹¬~BÏóü_üözÙ9ÿºà79‡¯‡ƇNáXÔ¬ÂÚà7„øaDãÔØq3ŒåXº!E7S…Û±Kµãò–~ØŸ¨ËÓ(øË»øÓ]|žæ/ɱðx‡eV‰qq®¿ÅϳÇ~8{Ü„š›q)cu(*[ ›k…Ó‹_VÎÞ¦í,—âhGõôMþ?óoðW;Ìñ¥Vœ„ÇÑó¦Yüò7þ¦]†š½ÿ¸½Žÿ(©%S57Þùcq&
+ýá£0À‚0…¤h¦Ó°¢óE˜AQ¨I„%(yEX
+µ»V„epR{V„åÐå‰ð(¤Fï‰pÊ@ŸŠðhO~y,Àáh"Ù0Wà"ÆQÏ‘ÿ!ÀŒ¬žÚ'©i…S(œNa•ÒSE˜A ô
+– 8z›ËžÉ‘£Éô …&1¬‡¡ÅL©Fs™—E8å1ŸŠðêÉDŽ@Ù²ýÅ®®w[K«—Íš:-‹çrµt8Ø2gS[ØÑÁÖ![ãð8ÜËöŒJ—×Åî¶æ2¯­£­iËéòötÁŒN[K›³…Mgï²°Až,·§Íåd§eLÍÍÊÎmv4¦%}Øœ6kc½n›ÝÑis?Ⱥš‡›÷Í#ˆz‡§­ÅÉš¶N½Íkc[Ûœ^0_¤;ìlc{‡ÙdösF«×Û5+3sùòå-‚²Œ&Wgf‹Ã› Ì®ÌaÃâtÁãí¶·¹L­`r‰Ëée®fïr›ÛA|
+Òïš;³<怷d-ƒ§8+a¶nzj)^dƒÙm kŒ9ž°"¨£F[`Ô O¾CÙûJaGÈù×î˜hdÁ¿ ð2wØÌ6ÁÜ^à´ýÁ7zh.Aâýãñ¯½øqN½3Eb• 0ÌÕÃÓ+ØÒ*ÈðŠñÉOh,jYì}$ÛGHöŠ’3„lygôüL´\øÉ
+¼Fˆì|xW Z#$Ï!a
+PîWÓ„¨þŸXfÞ^¡ÊÁ*¯h_P¦Mx&À
+1
+y7Ì¢"'±c@&T
+V›áMðBX;5𬼠„¹U@aa}VU/Ì(ààX‰°
++Q-¼+`„ðÙ°*·€­€È¸…Jð6º?:J"ª*²jÿWqe!F®9ñsš„5H8I.mÂ:èÖD0]‚…B,Cñˆñ³‹ùï|!+áî8©ÓeÂ\çÕÕ´nÁ†nѦàjõþodõÞõà‹If»„ž–!ØÖoâc Œ“ÈÏÎI(pîftÿ¿L¦ ç§Ñp^ˆ„““
+‘¿{ÆÀÙ8¥€ÿéH‡¦C÷ÑC®K «”B¼Ë!óaW‚Žj´²o„œ›¡j!+ä¹=€ šåðå@ôÿܦ¿ê
+endstream
+endobj
+383 0 obj
+<< /Type /FontDescriptor
+/FontName /247feb+NotoSerif-Italic
+/FontFile2 382 0 R
+/FontBBox [-254 -250 1238 1047]
+/Flags 70
+/StemV 0
+/ItalicAngle -12
+/Ascent 1068
+/Descent -292
+/CapHeight 1462
+/XHeight 1098
+>>
+endobj
+384 0 obj
+<< /Length 1278
+/Filter [/FlateDecode]
+>>
+stream
+xœe×ËnÛF†á½®BËtHs&Ã@‘n¼èu{stÔ’ + ß}ù½¤ikÀÆ/‰œy¾_Ã!}øôôÓÓùtß~»]ês¿ïÇéÜnýíòåVû¾ô—Óygì¾êýë+þÖ×|ݶ“Ÿßßîýõé<.û‡‡Ýá÷í÷ûí}ÿáÇv)ý‡Ýá×[ë·ÓùeÿáÏOÏÛëç/×ë_ýµŸïûãîñqßúØú9_ɯ}à´Omûütÿ¸óϼ_ûÞòÚLL½´þv͵ßòù¥ïŽÇLJ1wýÜþó‘9ç)eÔÏù6=n?[i(JKiU:J§ÒSz•2¨Œ”Qe¢L*ÊEåJ¹ªÌ”Ye¡,*+eUÙ(›ÊNÙUÊ-уÁkä5x¼¯‘×à5ò¼F^ƒ×Èkðy ^#¯Ákä5x¼¯‘×à5ò¼F^ƒ×Èkðy ^#¯Åkåµx­¼¯•×âµòZ¼V^‹×ÊkñZy-^+¯Åkåµx­¼¯•×âµòZ¼V^‹×ÊkñZy-^+¯Ãëäux¼¯“×áuò:¼N^‡×Éëð:y^'¯Ãëäux¼¯“×áuò:¼N^‡×Éëð:y^'¯Çëåõx½¼¯—×ãõòz¼^^×Ëëñzy=^/¯Çëåõx½¼¯—×ãõòz¼^^×Ëëñzy=^/oÀä xƒ¼o7à ò¼AÞ€7ÈðyÞ oÀä xƒ¼o7à ò¼AÞ€7ÈðyÞ oÄåx£¼o”7âÝþj·ùº«üo—‰$‰JI•$’$*I$IT’H’¨$‘$QI"I¢’D’D%‰$‰JI•$’$*I$IT’D’¤$‰$III’’$’$u>áMò&¼IÞ„7É›ð&yÞ$o›äMx“¼ o’7áMò&¼IÞ„7É›ð&y¼U†o•aÁ[5ñ‚·j¶oS orÁÛ4Û‚·s
+¿âíJ¼âíJ¼â특âíâ¬x»¯x»¯x‡+Þ!Êw¹âB®x‡b®x‡+ÞïrÅ;àà2äÍkçÎœñJ¼Y³e¼Y†Œ7+|œÆx‹ oSŠŒ7+[Æ›ețךyÞ¢oVûòæµ– -ã­Œ‹·é€"¯åþR¦W*–Ó4Xq”êC™^Jú[(£à®^ƒ1»¢y]•¡Èk¹}¼YM-x e#e®ÊÙ_y+ë¡hÜŠ7k¶:û«/ âåæZå5«dUýµl¼uz5n¥¿[ç¾ÛeBø÷&Si|y»(ô%q& %+S%ñ*Aª¾ÛÊBijPUÃ6\¥h,ž(¶+L¥ºÝ,¥‚4G©5Þ<¥ô…ÂcD› [˧©ñ¡*t› [ jj¼aijü¼IµÙxʪw¹g¶FÉ›wžØ¶¥§Rô>¶Þís¡hâ>½:­O¯VRÇËí¾³P*#àÙi|e0¼Uýí,ì*o§¿Uáûì/ãÎþ*[§¿Uê,”¦Nö¹°•m€lšx°:š&\}M³¹»)üÒðL2„´\%CHËF7æÕ§‰ÇÊ»BŽLÉ…’)æjæ€Æ»J1:%¦H߯:=Së©ÿÛ³zýr»méükÀó¹žÌOçþí¿‡ë媳ôû7±Ùð
+endstream
+endobj
+385 0 obj
+[259 600 600 600 600 600 600 600 346 346 600 600 250 600 250 600 559 559 559 559 600 559 600 600 600 600 600 600 600 600 600 600 600 705 600 600 725 600 600 600 600 367 356 600 600 600 600 600 620 600 600 543 612 600 600 600 600 600 600 600 600 600 600 600 600 579 562 486 579 493 317 556 599 304 291 568 304 895 599 574 577 560 467 463 368 599 538 818 545 527 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600]
+endobj
+xref
+0 386
+0000000000 65535 f
+0000000015 00000 n
+0000000275 00000 n
+0000000479 00000 n
+0000000896 00000 n
+0000000947 00000 n
+0000001219 00000 n
+0000001832 00000 n
+0000002128 00000 n
+0000002295 00000 n
+0000027122 00000 n
+0000027986 00000 n
+0000032103 00000 n
+0000032463 00000 n
+0000032507 00000 n
+0000032556 00000 n
+0000032624 00000 n
+0000032802 00000 n
+0000032980 00000 n
+0000033154 00000 n
+0000046891 00000 n
+0000047284 00000 n
+0000047328 00000 n
+0000047501 00000 n
+0000047545 00000 n
+0000047711 00000 n
+0000047882 00000 n
+0000048057 00000 n
+0000048228 00000 n
+0000048401 00000 n
+0000048445 00000 n
+0000064048 00000 n
+0000064441 00000 n
+0000064484 00000 n
+0000064635 00000 n
+0000064786 00000 n
+0000064940 00000 n
+0000065089 00000 n
+0000077098 00000 n
+0000077477 00000 n
+0000077521 00000 n
+0000077565 00000 n
+0000077609 00000 n
+0000077758 00000 n
+0000077934 00000 n
+0000077978 00000 n
+0000087757 00000 n
+0000088125 00000 n
+0000088293 00000 n
+0000097094 00000 n
+0000097449 00000 n
+0000106646 00000 n
+0000107001 00000 n
+0000114249 00000 n
+0000114591 00000 n
+0000128726 00000 n
+0000129132 00000 n
+0000129176 00000 n
+0000129220 00000 n
+0000129409 00000 n
+0000129599 00000 n
+0000129789 00000 n
+0000129954 00000 n
+0000129998 00000 n
+0000140156 00000 n
+0000140498 00000 n
+0000150144 00000 n
+0000150486 00000 n
+0000162840 00000 n
+0000163195 00000 n
+0000163239 00000 n
+0000163283 00000 n
+0000174460 00000 n
+0000174815 00000 n
+0000174859 00000 n
+0000174903 00000 n
+0000174947 00000 n
+0000192239 00000 n
+0000192645 00000 n
+0000192821 00000 n
+0000192995 00000 n
+0000193142 00000 n
+0000193296 00000 n
+0000193340 00000 n
+0000198386 00000 n
+0000198758 00000 n
+0000198802 00000 n
+0000198950 00000 n
+0000198994 00000 n
+0000210908 00000 n
+0000211287 00000 n
+0000211331 00000 n
+0000211897 00000 n
+0000212300 00000 n
+0000212344 00000 n
+0000212493 00000 n
+0000212537 00000 n
+0000212581 00000 n
+0000212734 00000 n
+0000212778 00000 n
+0000225874 00000 n
+0000226243 00000 n
+0000226289 00000 n
+0000226335 00000 n
+0000240726 00000 n
+0000241083 00000 n
+0000241129 00000 n
+0000241175 00000 n
+0000248717 00000 n
+0000249111 00000 n
+0000249157 00000 n
+0000249331 00000 n
+0000249603 00000 n
+0000249872 00000 n
+0000249918 00000 n
+0000249964 00000 n
+0000250144 00000 n
+0000250317 00000 n
+0000261841 00000 n
+0000262248 00000 n
+0000262294 00000 n
+0000262818 00000 n
+0000262864 00000 n
+0000263020 00000 n
+0000263180 00000 n
+0000263335 00000 n
+0000263498 00000 n
+0000263544 00000 n
+0000263715 00000 n
+0000276175 00000 n
+0000276566 00000 n
+0000276612 00000 n
+0000276763 00000 n
+0000276931 00000 n
+0000276977 00000 n
+0000277140 00000 n
+0000296717 00000 n
+0000297164 00000 n
+0000297330 00000 n
+0000297496 00000 n
+0000297658 00000 n
+0000297828 00000 n
+0000297991 00000 n
+0000298157 00000 n
+0000298322 00000 n
+0000298488 00000 n
+0000298653 00000 n
+0000298819 00000 n
+0000315399 00000 n
+0000315788 00000 n
+0000315961 00000 n
+0000316129 00000 n
+0000333245 00000 n
+0000333602 00000 n
+0000355760 00000 n
+0000356117 00000 n
+0000374167 00000 n
+0000374524 00000 n
+0000374570 00000 n
+0000374616 00000 n
+0000384793 00000 n
+0000385150 00000 n
+0000385196 00000 n
+0000392671 00000 n
+0000393028 00000 n
+0000393074 00000 n
+0000404436 00000 n
+0000404793 00000 n
+0000404839 00000 n
+0000404885 00000 n
+0000404931 00000 n
+0000405363 00000 n
+0000417426 00000 n
+0000417809 00000 n
+0000417855 00000 n
+0000418013 00000 n
+0000418168 00000 n
+0000433655 00000 n
+0000434026 00000 n
+0000434073 00000 n
+0000456001 00000 n
+0000456372 00000 n
+0000456418 00000 n
+0000456594 00000 n
+0000478934 00000 n
+0000479305 00000 n
+0000479352 00000 n
+0000479399 00000 n
+0000491414 00000 n
+0000491771 00000 n
+0000491817 00000 n
+0000504444 00000 n
+0000504867 00000 n
+0000504913 00000 n
+0000504959 00000 n
+0000505133 00000 n
+0000505406 00000 n
+0000505677 00000 n
+0000505839 00000 n
+0000505998 00000 n
+0000506044 00000 n
+0000506224 00000 n
+0000506395 00000 n
+0000517945 00000 n
+0000518302 00000 n
+0000518348 00000 n
+0000518394 00000 n
+0000518440 00000 n
+0000518486 00000 n
+0000532492 00000 n
+0000532897 00000 n
+0000532943 00000 n
+0000532989 00000 n
+0000533138 00000 n
+0000533287 00000 n
+0000533429 00000 n
+0000533475 00000 n
+0000541995 00000 n
+0000542339 00000 n
+0000561443 00000 n
+0000561813 00000 n
+0000562002 00000 n
+0000562194 00000 n
+0000574180 00000 n
+0000574537 00000 n
+0000574582 00000 n
+0000588383 00000 n
+0000588754 00000 n
+0000588800 00000 n
+0000604130 00000 n
+0000604487 00000 n
+0000604532 00000 n
+0000617313 00000 n
+0000617670 00000 n
+0000617716 00000 n
+0000618325 00000 n
+0000618371 00000 n
+0000618417 00000 n
+0000621270 00000 n
+0000621627 00000 n
+0000621673 00000 n
+0000621719 00000 n
+0000633477 00000 n
+0000633852 00000 n
+0000633898 00000 n
+0000633944 00000 n
+0000633990 00000 n
+0000634166 00000 n
+0000634212 00000 n
+0000634258 00000 n
+0000643461 00000 n
+0000643836 00000 n
+0000643882 00000 n
+0000644054 00000 n
+0000644100 00000 n
+0000644224 00000 n
+0000644349 00000 n
+0000644476 00000 n
+0000644605 00000 n
+0000644735 00000 n
+0000644866 00000 n
+0000644984 00000 n
+0000645103 00000 n
+0000645225 00000 n
+0000645348 00000 n
+0000645463 00000 n
+0000645580 00000 n
+0000645700 00000 n
+0000645820 00000 n
+0000645944 00000 n
+0000646068 00000 n
+0000646192 00000 n
+0000646317 00000 n
+0000646441 00000 n
+0000646565 00000 n
+0000646680 00000 n
+0000646795 00000 n
+0000646919 00000 n
+0000647043 00000 n
+0000647164 00000 n
+0000647286 00000 n
+0000647414 00000 n
+0000647542 00000 n
+0000647673 00000 n
+0000647804 00000 n
+0000647937 00000 n
+0000648070 00000 n
+0000648200 00000 n
+0000648330 00000 n
+0000648460 00000 n
+0000648591 00000 n
+0000648712 00000 n
+0000648833 00000 n
+0000648960 00000 n
+0000649087 00000 n
+0000649216 00000 n
+0000649345 00000 n
+0000649471 00000 n
+0000649597 00000 n
+0000649726 00000 n
+0000649855 00000 n
+0000649980 00000 n
+0000650105 00000 n
+0000650235 00000 n
+0000650365 00000 n
+0000650481 00000 n
+0000650597 00000 n
+0000650726 00000 n
+0000650855 00000 n
+0000650977 00000 n
+0000651099 00000 n
+0000651229 00000 n
+0000651359 00000 n
+0000651488 00000 n
+0000651617 00000 n
+0000651743 00000 n
+0000651869 00000 n
+0000651992 00000 n
+0000652115 00000 n
+0000652241 00000 n
+0000652367 00000 n
+0000652500 00000 n
+0000652633 00000 n
+0000652711 00000 n
+0000652992 00000 n
+0000653184 00000 n
+0000653513 00000 n
+0000653779 00000 n
+0000654159 00000 n
+0000654319 00000 n
+0000654495 00000 n
+0000654683 00000 n
+0000654843 00000 n
+0000655019 00000 n
+0000655207 00000 n
+0000655369 00000 n
+0000655610 00000 n
+0000655758 00000 n
+0000656015 00000 n
+0000656193 00000 n
+0000656405 00000 n
+0000656662 00000 n
+0000656871 00000 n
+0000657186 00000 n
+0000657452 00000 n
+0000657631 00000 n
+0000657856 00000 n
+0000658057 00000 n
+0000658314 00000 n
+0000658504 00000 n
+0000658795 00000 n
+0000659061 00000 n
+0000659240 00000 n
+0000659505 00000 n
+0000659702 00000 n
+0000659899 00000 n
+0000660212 00000 n
+0000660407 00000 n
+0000660707 00000 n
+0000660908 00000 n
+0000661735 00000 n
+0000662006 00000 n
+0000662277 00000 n
+0000674324 00000 n
+0000674538 00000 n
+0000675893 00000 n
+0000676810 00000 n
+0000687799 00000 n
+0000688018 00000 n
+0000689373 00000 n
+0000690289 00000 n
+0000696463 00000 n
+0000696676 00000 n
+0000698031 00000 n
+0000698947 00000 n
+0000702838 00000 n
+0000703052 00000 n
+0000703372 00000 n
+0000704289 00000 n
+0000707862 00000 n
+0000708072 00000 n
+0000709427 00000 n
+0000710342 00000 n
+0000717431 00000 n
+0000717655 00000 n
+0000719010 00000 n
+trailer
+<< /Size 386
+/Root 2 0 R
+/Info 1 0 R
+>>
+startxref
+719925
+%%EOF
diff --git a/docs/devguide/devguide.xml b/docs/devguide/devguide.xml
new file mode 100644
index 000000000..f526e5e87
--- /dev/null
+++ b/docs/devguide/devguide.xml
@@ -0,0 +1,77 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+
+<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.1//EN"
+ "../../lib/docbook/docbook-dtd/docbookx.dtd"
+[
+<!ENTITY aj SYSTEM "aj.xml">
+<!ENTITY ajc SYSTEM "ajc.xml">
+<!ENTITY ajdoc SYSTEM "ajdoc.xml">
+<!ENTITY antsupport SYSTEM "antsupport.xml">
+<!ENTITY compatibility SYSTEM "compatibility.xml">
+<!ENTITY ltw SYSTEM "ltw.xml">
+<!ENTITY tools-intro SYSTEM "tools-intro.xml">
+<!ENTITY weaving SYSTEM "weaving.xml">
+]>
+
+<book>
+ <bookinfo>
+ <title>The AspectJ<superscript>tm</superscript> Development Environment Guide</title>
+
+ <authorgroup>
+ <author>
+ <othername>the AspectJ Team</othername>
+ </author>
+ </authorgroup>
+
+ <legalnotice>
+ <para>Copyright (c) 1998-2001 Xerox Corporation,
+ 2002 Palo Alto Research Center, Incorporated,
+ 2003-2005 Contributors.
+ All rights reserved.
+ </para>
+ </legalnotice>
+
+ <abstract>
+ <para>
+ This guide describes how to build and deploy AspectJ programs
+ using the AspectJ tools and facilities. See also
+ <ulink url="../progguide/index.html">The
+ AspectJ Programming Guide</ulink>,
+ the documentation available with the AspectJ support available for
+ various integrated development environments (e.g.,
+ <ulink url="https://eclipse.org/ajdt">Eclipse AJDT</ulink>),
+ and the most-recent documentation available from
+ the AspectJ project page, at
+ <ulink url="https://eclipse.org/aspectj">
+ https://eclipse.org/aspectj</ulink>.
+ </para>
+ </abstract>
+ </bookinfo>
+ &tools-intro;
+
+<chapter id="command-line-tools" xreflabel="AspectJ command-line tools">
+ <title>AspectJ command-line tools</title>
+
+ <sect1 id="ajc-ref-top">
+ <title><literal>ajc</literal>, the AspectJ compiler/weaver</title>
+ &ajc;
+ </sect1>
+ <sect1 id="ajdoc-ref-top">
+ <title><literal>ajdoc</literal>, the AspectJ documentation tool</title>
+ <para><literal>ajdoc</literal> produces JavaDoc-style documentation
+ including crosscutting information.</para>
+ &ajdoc;
+ </sect1>
+ <sect1 id="aj-ref-top">
+ <title><literal>aj</literal>, the AspectJ load-time weaving script</title>
+ <para><literal>aj</literal> launches programs,
+ configuring basic load-time weaving.</para>
+ &aj;
+ </sect1>
+</chapter>
+
+ &antsupport;
+ &ltw;
+ &compatibility;
+
+</book>
diff --git a/docs/devguide/index.adoc b/docs/devguide/index.adoc
new file mode 100644
index 000000000..38d20ec64
--- /dev/null
+++ b/docs/devguide/index.adoc
@@ -0,0 +1,24 @@
+= The AspectJ^TM^ Development Environment Guide
+
+:doctype: book
+
+_by the AspectJ Team_
+
+_Copyright (c) 1998-2001 Xerox Corporation, 2002 Palo Alto Research Center, Incorporated, 2003-2005 Contributors.
+All rights reserved._
+
+This guide describes how to build and deploy AspectJ programs using the AspectJ tools and facilities. See also the
+xref:../progguide/progguide.adoc[AspectJ Programming Guide], the documentation available with the AspectJ support
+available for various integrated development environments (e.g. https://www.eclipse.org/ajdt/[Eclipse AJDT]), and the
+most-recent documentation available from the https://eclipse.org/aspectj[AspectJ project page].
+
+**Table of Contents**
+
+* xref:tools-intro.adoc[Introduction to the AspectJ tools]
+* xref:ajc.adoc[`ajc`, the AspectJ compiler/weaver]
+* xref:ajdoc.adoc[`ajdoc`, the AspectJ API documentation generator]
+* xref:aj.adoc[`aj`, the AspectJ load-time weaving launcher]
+* xref:ajbrowser.adoc[AspectJ Browser]
+* xref:antsupport.adoc[AspectJ Ant Tasks]
+* xref:ltw.adoc[Load-Time Weaving]
+* xref:compatibility.adoc[AspectJ version compatibility]
diff --git a/docs/devguide/jbuilder-buildOptions.gif b/docs/devguide/jbuilder-buildOptions.gif
new file mode 100644
index 000000000..5a34c9309
--- /dev/null
+++ b/docs/devguide/jbuilder-buildOptions.gif
Binary files differ
diff --git a/docs/devguide/jbuilder-building.gif b/docs/devguide/jbuilder-building.gif
new file mode 100644
index 000000000..63fe151a2
--- /dev/null
+++ b/docs/devguide/jbuilder-building.gif
Binary files differ
diff --git a/docs/devguide/jbuilder-configs.gif b/docs/devguide/jbuilder-configs.gif
new file mode 100644
index 000000000..1a262c1cf
--- /dev/null
+++ b/docs/devguide/jbuilder-configs.gif
Binary files differ
diff --git a/docs/devguide/jbuilder-structureNavigation.gif b/docs/devguide/jbuilder-structureNavigation.gif
new file mode 100644
index 000000000..bdd7ce815
--- /dev/null
+++ b/docs/devguide/jbuilder-structureNavigation.gif
Binary files differ
diff --git a/docs/devguide/ltw.adoc b/docs/devguide/ltw.adoc
new file mode 100644
index 000000000..81d25ee3c
--- /dev/null
+++ b/docs/devguide/ltw.adoc
@@ -0,0 +1,482 @@
+[[ltw]]
+== Load-Time Weaving
+
+[[ltw-introduction]]
+=== Introduction
+
+The AspectJ weaver takes class files as input and produces class files
+as output. The weaving process itself can take place at one of three
+different times: compile-time, post-compile time, and load-time. The
+class files produced by the weaving process (and hence the run-time
+behaviour of an application) are the same regardless of the approach
+chosen.
+
+* Compile-time weaving is the simplest approach. When you have the
+source code for an application, ajc will compile from source and produce
+woven class files as output. The invocation of the weaver is integral to
+the ajc compilation process. The aspects themselves may be in source or
+binary form. If the aspects are required for the affected classes to
+compile, then you must weave at compile-time. Aspects are required,
+e.g., when they add members to a class and other classes being compiled
+reference the added members.
+* Post-compile weaving (also sometimes called binary weaving) is used to
+weave existing class files and JAR files. As with compile-time weaving,
+the aspects used for weaving may be in source or binary form, and may
+themselves be woven by aspects.
+* Load-time weaving (LTW) is simply binary weaving defered until the
+point that a class loader loads a class file and defines the class to
+the JVM. To support this, one or more "weaving class loaders", either
+provided explicitly by the run-time environment or enabled through a
+"weaving agent" are required.
+
+You may also hear the term "run-time weaving". We define this as the
+weaving of classes that have already been defined to the JVM (without
+reloading those classes). AspectJ 5 does not provide explicit support
+for run-time weaving although simple coding patterns can support
+dynamically enabling and disabling advice in aspects.
+
+==== Weaving class files more than once
+
+As of AspectJ 5 aspects (code style or annotation style) and woven
+classes are reweavable by default. If you are developing AspectJ
+applications that are to be used in a load-time weaving environment with
+an older version of the compiler you need to specify the `-Xreweavable`
+compiler option when building them. This causes AspectJ to save
+additional state in the class files that is used to support subsequent
+reweaving.
+
+[[ltw-rules]]
+=== Load-time Weaving Requirements
+
+All load-time weaving is done in the context of a class loader, and
+hence the set of aspects used for weaving and the types that can be
+woven are affected by the class loader delegation model. This ensures
+that LTW complies with the Java 2 security model. The following rules
+govern the interaction of load-time weaving with class loading:
+
+[arabic]
+. All aspects to be used for weaving must be defined to the weaver
+before any types to be woven are loaded. This avoids types being
+"missed" by aspects added later, with the result that invariants across
+types fail.
+. All aspects visible to the weaver are usable. A visible aspect is one
+defined by the weaving class loader or one of its parent class loaders.
+All concrete visible aspects are woven and all abstract visible aspects
+may be extended.
+. A class loader may only weave classes that it defines. It may not
+weave classes loaded by a delegate or parent class loader.
+
+[[ltw-configuration]]
+=== Configuration
+
+New in AspectJ 5 are a number of mechanisms to make load-time weaving
+easy to use. The load-time weaving mechanism is chosen through JVM
+startup options. Configuration files determine the set of aspects to be
+used for weaving and which types will be woven. Additional diagnostic
+options allow the user to debug the configuration and weaving process.
+
+==== Enabling Load-time Weaving
+
+AspectJ 5 supports several ways of enabling load-time weaving for an
+application: agents, a command-line launch script, and a set of
+interfaces for integration of AspectJ load-time weaving in custom
+environments.
+
+Agents::
+AspectJ 5 ships with a load-time weaving agent that enables load-time
+weaving. This agent and its configuration is execution environment
+dependent. Configuration for the supported environments is discussed
+later in this chapter.
++
+Using Java 5 JVMTI you can specify the
+`-javaagent:pathto/aspectjweaver.jar` option to the JVM.
++
+Since AspectJ 1.9.7, the obsolete Oracle/BEA JRockit agent is no
+longer part of AspectJ. JRockit JDK never supported Java versions
+higher than 1.6. Several JRockit JVM features are now part of HotSpot
+and tools like Mission Control available for OpenJDK and Oracle JDK.
+
+Command-line wrapper scripts `aj`::
+The `aj` command runs Java programs in Java 1.4 or later by setting up
+`WeavingURLClassLoader` as the system class loader. For more
+information, see xref:#aj[`aj`, the AspectJ load-time weaving launcher].
++
+The `aj5` command runs Java programs in Java 5 by using the
+`-javaagent:pathto/aspectjweaver.jar` option described above. For more
+information, see xref:#aj[`aj`, the AspectJ load-time weaving launcher].
+
+Custom class loader::
+A public interface is provided to allow a user written class loader to
+instantiate a weaver and weave classes after loading and before
+defining them in the JVM. This enables load-time weaving to be
+supported in environments where no weaving agent is available. It also
+allows the user to explicitly restrict by class loader which classes
+can be woven. For more information, see xref:#aj[`aj`, the AspectJ load-time weaving launcher] and the API
+documentation and source for `WeavingURLClassLoader` and
+`WeavingAdapter`.
+
+[[configuring-load-time-weaving-with-aopxml-files]]
+==== Configuring Load-time Weaving with aop.xml files
+
+The weaver is configured using one or more `META-INF/aop.xml` files
+located on the class loader search path. Each file may declare a list of
+aspects to be used for weaving, type patterns describing which types
+should woven, and a set of options to be passed to the weaver. In
+addition AspectJ 5 supports the definition of concrete aspects in XML.
+Aspects defined in this way must extend an abstract aspect visible to
+the weaver. The abstract aspect may define abstract pointcuts (but not
+abstract methods). The following example shows a simple aop.xml file:
+
+[source, xml]
+....
+<aspectj>
+
+ <aspects>
+ <!-- declare two existing aspects to the weaver -->
+ <aspect name="com.MyAspect"/>
+ <aspect name="com.MyAspect.Inner"/>
+
+ <!-- define a concrete aspect inline -->
+ <concrete-aspect name="com.xyz.tracing.MyTracing"
+ extends="tracing.AbstractTracing"
+ precedence="com.xyz.first, *">
+ <pointcut name="tracingScope" expression="within(org.maw.*)"/>
+ </concrete-aspect>
+
+ <!-- Of the set of aspects declared to the weaver
+ use aspects matching the type pattern "com..*" for weaving. -->
+ <include within="com..*"/>
+
+ <!-- Of the set of aspects declared to the weaver
+ do not use any aspects with the @CoolAspect annotation for weaving -->
+ <exclude within="@CoolAspect *"/>
+
+ </aspects>
+
+ <weaver options="-verbose">
+ <!-- Weave types that are within the javax.* or org.aspectj.*
+ packages. Also weave all types in the foo package that do
+ not have the @NoWeave annotation. -->
+ <include within="javax.*"/>
+ <include within="org.aspectj.*"/>
+ <include within="(!@NoWeave foo.*) AND foo.*"/>
+
+ <!-- Do not weave types within the "bar" pakage -->
+ <exclude within="bar.*"/>
+
+ <!-- Dump all types within the "com.foo.bar" package
+ to the "./_ajdump" folder on disk (for diagnostic purposes) -->
+ <dump within="com.foo.bar.*"/>
+
+ <!-- Dump all types within the "com.foo.bar" package and sub-packages,
+ both before are after they are woven,
+ which can be used for byte-code generated at runtime
+ <dump within="com.foo.bar..*" beforeandafter="true"/>
+ </weaver>
+
+</aspectj>
+....
+
+The DTD defining the format of this file is available here:
+https://www.eclipse.org/aspectj/dtd/aspectj.dtd.
+
+An aop.xml file contains two key sections: `aspects` defines one or more
+aspects to the weaver and controls which aspects are to be used in the
+weaving process; `weaver` defines weaver options and which types should
+be woven.
+
+The simplest way to define an aspect to the weaver is to specify the
+fully-qualified name of the aspect type in an aspect element. You can
+also declare (and define to the weaver) aspects inline in the aop.xml
+file. This is done using the `concrete-aspect` element. A
+concrete-aspect declaration must provide a pointcut definition for every
+abstract pointcut in the abstract aspect it extends. This mechanism is a
+useful way of externalizing configuration for infrastructure and
+auxiliary aspects where the pointcut definitions themselves can be
+considered part of the configuration of the service. Refer to the next
+section for more details.
+
+The `aspects` element may optionally contain one or more `include` and
+`exclude` elements (by default, all defined aspects are used for
+weaving). Specifying include or exclude elements restricts the set of
+defined aspects to be used for weaving to those that are matched by an
+include pattern, but not by an exclude pattern. The `within` attribute
+accepts a type pattern of the same form as a within pcd, except that &&
+and || are replaced by 'AND' and 'OR'.
+
+Note that `include` and `exclude` elements affect all aspects declared
+to the weaver including those in other aop.xml files. To help avoid
+unexpected behaviour a lint warning is issued if an aspect is not
+declared as a result of of applying these filters. Also note `aspect`
+and `concrete-aspect` elements must be used to declare aspects to the
+weaver i.e. `include` and `exclude` elements cannot be used find aspects
+on the class loader search path.
+
+The `weaver` element is used to pass options to the weaver and to
+specify the set of types that should be woven. If no include elements
+are specified then all types visible to the weaver will be woven. In
+addition the `dump` element can be used capture on disk byte-code of
+woven classes for diagnostic purposes both before, in the case of those
+generated at runtime, and after the weaving process.
+
+When several configuration files are visible from a given weaving class
+loader their contents are conceptually merged. The files are merged in
+the order they are found on the search path (with a regular
+`getResourceAsStream` lookup) according to the following rules:
+
+* The set of available aspects is the set of all declared and defined
+aspects (`aspect` and `concrete-aspect` elements of the `aspects`
+section).
+* The set of aspects used for weaving is the subset of the available
+aspects that are matched by at least one include statement and are not
+matched by any exclude statements. If there are no include statements
+then all non-excluded aspects are included.
+* The set of types to be woven are those types matched by at least one
+weaver `include` element and not matched by any weaver `exclude`
+element. If there are no weaver include statements then all non-excluded
+types are included.
+* The weaver options are derived by taking the union of the options
+specified in each of the weaver options attribute specifications. Where
+an option takes a value e.g. `-warn:none` the most recently defined
+value will be used.
+
+It is not an error for the same aspect to be defined to the weaver in
+more than one visible `META-INF/aop.xml` file. However, if the same
+concrete aspect is defined in more than one aop.xml file then an error
+will be issued. A concrete aspect defined in this way will be used to
+weave types loaded by the class loader that loaded the aop.xml file in
+which it was defined.
+
+A `META-INF/aop.xml` can be generated by using either the `-outxml` or
+`-outxmlfile` options of the AspectJ compiler. It will simply contain a
+(possibly empty) set of aspect elements; one for each abstract or
+concrete aspect defined. When used in conjuction with the `-outjar`
+option a JAR is produced that can be used with the `aj5` command or a
+load-time weaving environment.
+
+[[concrete-aspect]]
+==== Using Concrete Aspects
+
+It is possible to make an abstract aspect concrete by means of the
+`META-INF/aop.xml` file. This is useful way to implement abstract
+pointcuts at deployment time, and also gives control over precedence
+through the `precedence` attribute of the `concrete-aspect` XML element.
+Consider the following:
+
+[source, java]
+....
+package mypack;
+
+@Aspect
+public abstract class AbstractAspect {
+
+ // abstract pointcut: no expression is defined
+ @Pointcut
+ abstract void scope();
+
+ @Before("scope() && execution(* *..doSome(..))")
+ public void before(JoinPoint jp) {
+ // ...
+ }
+}
+....
+
+This aspect is equivalent to the following in code style:
+
+[source, java]
+....
+package mypack;
+
+public abstract aspect AbstractAspect {
+
+ // abstract pointcut: no expression is defined
+ abstract pointcut scope();
+
+ before() : scope() && execution(* *..doSome(..)) {
+ // ...
+ }
+}
+....
+
+This aspect (in either style) can be made concrete using
+`META-INF/aop.xml`. It defines the abstract pointcut `scope()`. When
+using this mechanism the following rules apply:
+
+* The parent aspect must be abstract. It can be an @AspectJ or a regular
+code style aspect.
+* Only a simple abstract pointcut can be implemented i.e. a pointcut
+that doesn't expose state (through `args(), this(), target(), if()`). In
+@AspectJ syntax as illustrated in this sample, this means the method
+that hosts the pointcut must be abstract, have no arguments, and return
+void.
+* The concrete aspect must implement all inherited abstract pointcuts.
+* The concrete aspect may not implement methods so the abstract aspect
+it extends may not contain any abstract methods.
+
+_A limitation of the implementation of this feature in AspectJ 1.5.0 is
+that aspects defined using aop.xml are not exposed to the weaver. This
+means that they are not affected by advice and ITDs defined in other
+aspects. Support for this capability will be considered in a future
+release._
+
+If more complex aspect inheritance is required use regular aspect
+inheritance instead of XML. The following XML definition shows a valid
+concrete sub-aspect for the abstract aspects above:
+
+[source, xml]
+....
+<aspectj>
+ <aspects>
+ <concrete-aspect name="mypack.__My__AbstractAspect" extends="mypack.AbstractAspect">
+ <pointcut name="scope" expression="within(yourpackage..*)"/>
+ </concrete-aspect>
+ <aspects>
+</aspectj>
+....
+
+It is important to remember that the `name` attribute in the
+`concrete-aspect` directive defines the fully qualified name that will
+be given to the concrete aspect. It must a valid class name because the
+aspect will be generated on the fly by the weaver. You must also ensure
+that there are no name collisions. Note that the concrete aspect will be
+defined at the classloader level for which the aop.xml is visible. This
+implies that if you need to use the `aspectof` methods to access the
+aspect instance(s) (depending on the perclause of the aspect it extends)
+you have to use the helper API `org.aspectj.lang.Aspects.aspectOf(..)`
+as in:
+
+[source, java]
+....
+// exception handling omitted
+Class myConcreteAspectClass = Class.forName("mypack.__My__AbstractAspect");
+
+// here we are using a singleton aspect
+AbstractAspect concreteInstance = Aspects.aspectOf(myConcreteAspectClass);
+....
+
+[[concrete-aspect-precedence]]
+==== Using Concrete Aspects to define precedence
+
+As described in the previous section, the `concrete-aspect` element in
+`META-INF/aop.xml` gives the option to declare the precedence, just as
+`@DeclarePrecedence` or `declare precedence` do in aspect source code.
+
+Sometimes it is necessary to declare precedence without extending any
+abstract aspect. It is therefore possible to use the `concrete-aspect`
+element without the `extends` attribute and without any `pointcut`
+nested elements, just a `precedence` attribute. Consider the following:
+
+[source, xml]
+....
+<aspectj>
+ <aspects>
+ <concrete-aspect name="mypack.__MyDeclarePrecedence"
+ precedence="*..*Security*, Logging+, *"/>
+ </aspects>
+</aspectj>
+....
+
+This deployment time definitions is only declaring a precedence rule.
+You have to remember that the `name` attribute must be a valid fully
+qualified class name that will be then reserved for this concrete-aspect
+and must not conflict with other classes you deploy.
+
+[[weaver-options]]
+==== Weaver Options
+
+The table below lists the AspectJ options supported by LTW. All other
+options will be ignored and a warning issued.
+
+[cols=",",options="header",]
+|===
+|Option |Purpose
+|`-verbose` |Issue informational messages about the weaving process.
+Messages issued while the weaver is being bootstrapped are accumulated
+until all options are parsed. If the messages are required to be output
+immediately you can use the option `-Daj.weaving.verbose=true` on the
+JVM startup command line.
+
+|`-debug` |Issue a messages for each class passed to the weaver
+indicating whether it was woven, excluded or ignored. Also issue
+messages for classes defined during the weaving process such as around
+advice closures and concrete aspects defined in `META-INF/aop.xml`.
+
+|`-showWeaveInfo` |Issue informational messages whenever the weaver
+touches a class file. This option may also be enabled using the System
+property `-Dorg.aspectj.weaver.showWeaveInfo=true`.
+
+|`-Xlintfile:pathToAResource` |Configure lint messages as specified in
+the given resource (visible from this aop.xml file' classloader)
+
+|`-Xlint:default, -Xlint:ignore, ...` |Configure lint messages, refer to
+documentation for meaningfull values
+
+|`-nowarn, -warn:none` |Suppress warning messages
+
+|`-Xreweavable` |Produce class files that can subsequently be rewoven
+
+|`-XnoInline` |Don't inline around advice.
+
+|`-XmessageHandlerClass:...` |Provide alternative output destination to
+stdout/stderr for all weaver messages. The given value must be the full
+qualified class name of a class that implements the
+`org.aspectj.bridge.IMessageHandler` interface and is visible to the
+classloader with which the weaver being configured is associated.
+Exercise caution when packaging a custom message handler with an
+application that is to be woven. The handler (as well as classes on
+which it depends) cannot itself be woven by the aspects that are
+declared to the same weaver.
+|===
+
+[[ltw-specialcases]]
+=== Special cases
+
+The following classes are not exposed to the LTW infrastructure
+regardless of the `aop.xml` file(s) used:
+
+* All `org.aspectj.*` classes (and subpackages) - as those are needed by
+the infrastructure itself
+* All `java.*` and `javax.*` classes (and subpackages)
+* All `sun.reflect.*` classes - as those are JDK specific classes used
+when reflective calls occurs
+
+Despite these restrictions, it is perfectly possible to match call join
+points for calls to these types providing the calling class is exposed
+to the weaver. Subtypes of these excluded types that are exposed to the
+weaver may of course be woven.
+
+Note that dynamic proxy representations are exposed to the LTW
+infrastructure and are not considered a special case.
+
+Some lint options behave differently when used under load-time weaving.
+The `adviceDidNotMatch` won't be handled as a warn (as during compile
+time) but as an info message.
+
+[[ltw-packaging]]
+=== Runtime Requirements for Load-time Weaving
+
+To use LTW the `aspectjweaver.jar` library must be added to the
+classpath. This contains the AspectJ 5 runtime, weaver, weaving class
+loader and weaving agents. It also contains the DTD for parsing XML
+weaving configuration files.
+
+[[ltw-agents]]
+=== Supported Agents
+
+==== JVMTI
+
+When using Java 5 the JVMTI agent can be used by starting the JVM with
+the following option (adapt according to the path to aspectjweaver.jar):
+
+[source, text]
+....
+-javaagent:pathto/aspectjweaver.jar
+....
+
+[[jrockit]]
+==== JRockit with Java 1.3/1.4 (use JVMTI on Java 5)
+
+Since AspectJ 1.9.7, the obsolete Oracle/BEA JRockit agent is no longer
+part of AspectJ. JRockit JDK never supported Java versions higher than
+1.6. Several JRockit JVM features are now part of HotSpot and tools like
+Mission Control available for OpenJDK and Oracle JDK.
diff --git a/docs/devguide/ltw.xml b/docs/devguide/ltw.xml
new file mode 100644
index 000000000..79569ad38
--- /dev/null
+++ b/docs/devguide/ltw.xml
@@ -0,0 +1,608 @@
+<chapter id="ltw" xreflabel="Load-Time Weaving">
+ <title>Load-Time Weaving</title>
+
+ <sect1 id="ltw-introduction">
+ <title>Introduction</title>
+
+ <para> The AspectJ weaver takes class files as input and produces class files as output.
+ The weaving process itself can take place at one of three different times: compile-time,
+ post-compile time, and load-time. The class files produced by the weaving process (and
+ hence the run-time behaviour of an application) are the same regardless of the approach
+ chosen. </para>
+
+ <itemizedlist>
+ <listitem> <para>Compile-time weaving is the simplest approach. When you have the source code
+ for an application, ajc will compile from source and produce woven class files as
+ output. The invocation of the weaver is integral to the ajc compilation process. The
+ aspects themselves may be in source or binary form.
+ If the aspects are required for the affected classes to compile, then
+ you must weave at compile-time. Aspects are required, e.g., when they
+ add members to a class and other classes being compiled reference the
+ added members.
+ </para></listitem>
+ <listitem> <para>Post-compile weaving (also sometimes called binary weaving) is used to weave
+ existing class files and JAR files. As with compile-time weaving,
+ the aspects used for weaving may be in source or binary form,
+ and may themselves be woven by aspects.</para></listitem>
+ <listitem> <para>Load-time weaving (LTW) is simply binary weaving defered until the point that
+ a class loader loads a class file and defines the class to the JVM. To support this,
+ one or more "weaving class loaders", either provided explicitly by the run-time
+ environment or enabled through a "weaving agent" are required. </para></listitem>
+ </itemizedlist>
+
+ <para> You may also hear the term "run-time weaving". We define this as the weaving of
+ classes that have already been defined to the JVM (without reloading those
+ classes). AspectJ 5 does not provide explicit support for run-time weaving although
+ simple coding patterns can support dynamically enabling and disabling advice in aspects. </para>
+
+ <sect2 id="weaving-class-files-more-than-once" xreflabel="weaving-class-files-more-than-once">
+ <title>Weaving class files more than once</title>
+
+ <para> As of AspectJ 5 aspects (code style or annotation style) and woven classes are
+ reweavable by default. If you are developing AspectJ applications that are to be used
+ in a load-time weaving environment with an older version of the compiler you
+ need to specify the <literal>-Xreweavable</literal> compiler option when building
+ them. This causes AspectJ to save additional state in the class files that is used
+ to support subsequent reweaving. </para>
+ </sect2>
+ </sect1>
+
+ <sect1 id="ltw-rules">
+ <title>Load-time Weaving Requirements</title>
+
+ <para> All load-time weaving is done in the context of a class loader, and hence the set of
+ aspects used for weaving and the types that can be woven are affected by the class
+ loader delegation model. This ensures that LTW complies with the Java 2 security model.
+ The following rules govern the interaction of load-time weaving with class loading: </para>
+
+ <orderedlist>
+ <listitem> <para>All aspects to be used for weaving must be defined to the weaver before any
+ types to be woven are loaded. This avoids types being "missed" by aspects added
+ later, with the result that invariants across types fail.</para></listitem>
+ <listitem> <para>All aspects visible to the weaver are usable.
+ A visible aspect is one defined by the
+ weaving class loader or one of its parent class loaders.
+ All concrete visible aspects are woven and all abstract visible aspects
+ may be extended.
+ </para></listitem>
+ <listitem><para>A class loader may only weave classes that it defines. It may not weave
+ classes loaded by a delegate or parent class loader.</para></listitem>
+ </orderedlist>
+
+ </sect1>
+
+ <sect1 id="ltw-configuration">
+ <title>Configuration</title>
+ <para>New in AspectJ 5 are a number of mechanisms to make load-time weaving
+ easy to use. The load-time weaving mechanism is chosen through JVM startup options.
+ Configuration files determine the set of aspects to be used for weaving and which
+ types will be woven. Additional diagnostic options allow the user to debug the configuration and
+ weaving process. </para>
+
+ <sect2 id="enabling-load-time-weaving" xreflabel="enabling-load-time-weaving">
+ <title>Enabling Load-time Weaving</title>
+ <para> AspectJ 5 supports several ways of enabling load-time weaving for
+ an application: agents, a command-line launch script, and a set of interfaces for
+ integration of AspectJ load-time weaving in custom environments. </para>
+ <variablelist>
+ <varlistentry>
+ <term>Agents</term>
+ <listitem>
+ <para>AspectJ 5 ships with a load-time weaving agent that
+ enables load-time weaving. This agent and its configuration
+ is execution environment dependent. Configuration for the supported environments is discussed
+ later in this chapter.</para>
+ <para>
+ Using Java 5 JVMTI you can specify the <literal>-javaagent:pathto/aspectjweaver.jar</literal> option
+ to the JVM.</para><para>
+ Since AspectJ 1.9.7, the obsolete Oracle/BEA JRockit agent is no longer part of AspectJ.
+ JRockit JDK never supported Java versions higher than 1.6. Several JRockit JVM features are
+ now part of HotSpot and tools like Mission Control available for OpenJDK and Oracle JDK.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>Command-line wrapper scripts <literal>aj</literal></term>
+ <listitem>
+ <para>The <command>aj</command> command runs Java programs in Java 1.4 or
+ later by setting up <literal>WeavingURLClassLoader</literal> as the
+ system class loader.
+ For more information, see <xref linkend="aj"/>.
+ </para>
+ <para>The <command>aj5</command> command runs Java programs in Java 5
+ by using the <literal>-javaagent:pathto/aspectjweaver.jar</literal> option
+ described above.
+ For more information, see <xref linkend="aj"/>.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>Custom class loader</term>
+ <listitem>
+ <para> A public interface is provided to allow a user written class loader
+ to instantiate a weaver and weave classes after loading and before
+ defining them in the JVM. This enables load-time weaving to be supported in
+ environments where no weaving agent is available. It also allows the
+ user to explicitly restrict by class loader which classes can be woven.
+ For more information, see <xref linkend="aj"/> and the
+ API documentation and source for
+ <literal>WeavingURLClassLoader</literal> and
+ <literal>WeavingAdapter</literal>.
+ </para>
+ </listitem>
+ </varlistentry>
+ </variablelist>
+ </sect2>
+
+ <sect2 id="configuring-load-time-weaving-with-aopxml-files" xreflabel="configuring-load-time-weaving-with-aopxml-files">
+ <title>Configuring Load-time Weaving with aop.xml files</title>
+
+ <para>The weaver is configured using one or more <literal>META-INF/aop.xml</literal>
+ files located on the class loader search path. Each file may declare a list of
+ aspects to be used for weaving, type patterns describing which types
+ should woven, and a set of options to be passed to the weaver. In addition AspectJ 5
+ supports the definition of concrete aspects in XML. Aspects defined in this way
+ must extend an abstract aspect visible to the weaver. The abstract aspect
+ may define abstract pointcuts (but not abstract
+ methods). The following example shows a simple aop.xml file: </para>
+ <programlisting><![CDATA[
+<aspectj>
+
+ <aspects>
+ <!-- declare two existing aspects to the weaver -->
+ <aspect name="com.MyAspect"/>
+ <aspect name="com.MyAspect.Inner"/>
+
+ <!-- define a concrete aspect inline -->
+ <concrete-aspect name="com.xyz.tracing.MyTracing"
+ extends="tracing.AbstractTracing"
+ precedence="com.xyz.first, *">
+ <pointcut name="tracingScope" expression="within(org.maw.*)"/>
+ </concrete-aspect>
+
+ <!-- Of the set of aspects declared to the weaver
+ use aspects matching the type pattern "com..*" for weaving. -->
+ <include within="com..*"/>
+
+ <!-- Of the set of aspects declared to the weaver
+ do not use any aspects with the @CoolAspect annotation for weaving -->
+ <exclude within="@CoolAspect *"/>
+
+ </aspects>
+
+ <weaver options="-verbose">
+ <!-- Weave types that are within the javax.* or org.aspectj.*
+ packages. Also weave all types in the foo package that do
+ not have the @NoWeave annotation. -->
+ <include within="javax.*"/>
+ <include within="org.aspectj.*"/>
+ <include within="(!@NoWeave foo.*) AND foo.*"/>
+
+ <!-- Do not weave types within the "bar" pakage -->
+ <exclude within="bar.*"/>
+
+ <!-- Dump all types within the "com.foo.bar" package
+ to the "./_ajdump" folder on disk (for diagnostic purposes) -->
+ <dump within="com.foo.bar.*"/>
+
+ <!-- Dump all types within the "com.foo.bar" package and sub-packages,
+ both before are after they are woven,
+ which can be used for byte-code generated at runtime
+ <dump within="com.foo.bar..*" beforeandafter="true"/>
+ </weaver>
+
+</aspectj>
+]]></programlisting>
+
+ <para>
+ The DTD defining the format of this file is available here:
+ https://www.eclipse.org/aspectj/dtd/aspectj.dtd.
+ </para>
+ <para>
+ An aop.xml file contains two key sections: <literal>aspects</literal> defines one
+ or more aspects to the weaver and controls which aspects are to be
+ used in the weaving process; <literal>weaver</literal> defines weaver options and which
+ types should be woven.
+ </para>
+
+ <para>
+ The simplest way to define an aspect to the weaver is to
+ specify the fully-qualified name of the aspect type in an aspect element.
+ You can also
+ declare (and define to the weaver) aspects inline in the aop.xml file.
+ This is done using the <literal>concrete-aspect</literal> element. A concrete-aspect
+ declaration must provide a pointcut definition for every abstract
+ pointcut in the abstract aspect it extends. This mechanism is a
+ useful way of externalizing configuration for infrastructure and
+ auxiliary aspects where the pointcut definitions themselves can be
+ considered part of the configuration of the service.
+ Refer to the next section for more details.
+ </para>
+
+ <para>
+ The <literal>aspects</literal> element may optionally contain one or more <literal>include</literal> and
+ <literal>exclude</literal> elements (by default, all defined aspects are used for weaving).
+ Specifying include or exclude elements restricts the set of defined
+ aspects to be used for weaving to those that are matched by an include
+ pattern, but not by an exclude pattern. The <literal>within</literal> attribute accepts
+ a type pattern of the same form as a within pcd, except that &amp;&amp;
+ and || are replaced by 'AND' and 'OR'.
+ </para>
+ <para>
+ Note that <literal>include</literal> and <literal>exclude</literal> elements affect all aspects
+ declared to the weaver including those in other aop.xml files. To help avoid unexpected
+ behaviour a lint warning is issued
+ if an aspect is not declared as a result of of applying these filters.
+ Also note <literal>aspect</literal> and <literal>concrete-aspect</literal> elements
+ must be used to declare aspects to the weaver i.e. <literal>include</literal> and <literal>exclude</literal>
+ elements cannot be used find aspects on the class loader search path.
+ </para>
+
+ <para>
+ The <literal>weaver</literal> element is used to pass options to the weaver and to specify
+ the set of types that should be woven. If no include elements are specified
+ then all types visible to the weaver will be woven. In addition the <literal>dump</literal>
+ element can be used capture on disk byte-code of woven classes for diagnostic purposes both before,
+ in the case of those generated at runtime, and after the weaving process.
+ </para>
+
+
+ <para> When several configuration files are visible from a given weaving class loader
+ their contents are conceptually merged.
+ The files are merged in the order they are
+ found on the search path (with a regular <literal>getResourceAsStream</literal> lookup)
+ according to the following rules: </para>
+ <itemizedlist>
+ <!-- FIXME AV - looks like we can refine conf in a child CL - not good -->
+ <listitem> <para>The set of available aspects is the set of all
+ declared and defined aspects (<literal>aspect</literal> and
+ <literal>concrete-aspect</literal> elements of the <literal>aspects</literal>
+ section).</para></listitem>
+ <listitem> <para>The set of aspects used for weaving is the subset of the available
+ aspects that are matched by at least one include statement and are not matched
+ by any exclude statements. If there are no include statements then all non-excluded
+ aspects are included.</para></listitem>
+ <listitem> <para> The set of types to be woven are those types matched by at
+ least one weaver <literal>include</literal> element and not matched by any
+ weaver <literal>exclude</literal> element. If there are no weaver include
+ statements then all non-excluded types are included.</para></listitem>
+ <listitem> <para> The weaver options are derived by taking the union of the
+ options specified in each of the weaver options attribute specifications. Where an
+ option takes a value e.g. <literal>-warn:none</literal> the most recently defined value
+ will be used.</para></listitem>
+ </itemizedlist>
+
+ <para>It is not an error for the same aspect to be defined to the weaver in
+ more than one visible <literal>META-INF/aop.xml</literal> file.
+ However, if the same concrete aspect
+ is defined in more than one aop.xml file then an error will be issued.
+ A concrete aspect
+ defined in this way will be used to weave types loaded by the
+ class loader that loaded the aop.xml file in which it was defined.
+ </para>
+
+ <para> A <literal>META-INF/aop.xml</literal> can be generated by
+ using either the <literal>-outxml</literal> or <literal>-outxmlfile</literal> options of the AspectJ compiler.
+ It will simply contain a (possibly empty) set of aspect elements; one for
+ each abstract or concrete aspect defined.
+ When used in conjuction with the <literal>-outjar</literal> option
+ a JAR is produced that can be used
+ with the <command>aj5</command> command or a load-time weaving environment.</para>
+ </sect2>
+
+ <sect2 id="concrete-aspect" xreflabel="concrete-aspect">
+ <title>Using Concrete Aspects</title>
+ <para>
+ It is possible to make an abstract aspect concrete by means of the <literal>META-INF/aop.xml</literal>
+ file. This is useful way to implement abstract pointcuts at deployment time, and also gives control
+ over precedence through the <literal>precedence</literal> attribute of the
+ <literal>concrete-aspect</literal> XML element.
+ Consider the following:
+ </para>
+ <programlisting><![CDATA[
+package mypack;
+
+@Aspect
+public abstract class AbstractAspect {
+
+ // abstract pointcut: no expression is defined
+ @Pointcut
+ abstract void scope();
+
+ @Before("scope() && execution(* *..doSome(..))")
+ public void before(JoinPoint jp) {
+ ....
+ }
+}
+]]></programlisting>
+ <para>
+ This aspect is equivalent to the following in code style:
+ </para>
+ <programlisting><![CDATA[
+package mypack;
+
+public abstract aspect AbstractAspect {
+
+ // abstract pointcut: no expression is defined
+ abstract pointcut scope();
+
+ before() : scope() && execution(* *..doSome(..)) {
+ ....
+ }
+}
+]]></programlisting>
+ <para>
+ This aspect (in either style) can be made concrete using <literal>META-INF/aop.xml</literal>.
+ It defines the abstract pointcut <literal>scope()</literal>. When using this mechanism the
+ following rules apply:
+ <itemizedlist>
+ <listitem><para>The parent aspect must be abstract. It can be an @AspectJ or a
+ regular code style aspect.</para></listitem>
+ <listitem><para>Only a simple abstract pointcut can be implemented i.e. a pointcut that doesn't expose
+ state (through <literal>args(), this(), target(), if()</literal>). In @AspectJ syntax
+ as illustrated in this sample, this means the method that hosts the pointcut must be abstract,
+ have no arguments, and return void.</para></listitem>
+ <listitem><para>The concrete aspect must implement all inherited abstract pointcuts.</para></listitem>
+ <listitem><para>The concrete aspect may not implement methods so the abstract aspect it
+ extends may not contain any abstract methods.</para></listitem>
+ </itemizedlist>
+ </para>
+
+ <para>
+ <emphasis>A limitation of the implementation of this feature in AspectJ 1.5.0 is that aspects defined using
+ aop.xml are not exposed to the weaver. This means that they are not affected by advice and ITDs defined in
+ other aspects. Support for this capability will be considered in a future release.</emphasis>
+ </para>
+
+ <para>
+ If more complex aspect inheritance is required use regular aspect
+ inheritance instead of XML.
+ The following XML definition shows a valid concrete sub-aspect for the abstract aspects above:
+ </para>
+ <programlisting><![CDATA[
+<aspectj>
+ <aspects>
+ <concrete-aspect name="mypack.__My__AbstractAspect" extends="mypack.AbstractAspect">
+ <pointcut name="scope" expression="within(yourpackage..*)"/>
+ </concrete-aspect>
+ <aspects>
+</aspectj>
+]]></programlisting>
+ <para>
+ It is important to remember that the <literal>name</literal> attribute in the
+ <literal>concrete-aspect</literal> directive defines the fully qualified name that will be given to the
+ concrete aspect. It must a valid class name because the aspect will be generated on the fly by the weaver.
+ You must
+ also ensure that there are no name collisions. Note that the concrete aspect will be
+ defined at the classloader level for which the aop.xml is visible. This implies that if you need
+ to use the <literal>aspectof</literal> methods to access the aspect instance(s) (depending on the perclause
+ of the aspect it extends) you have to use the helper API <literal>org.aspectj.lang.Aspects.aspectOf(..)</literal>
+ as in:
+ </para>
+ <programlisting><![CDATA[
+// exception handling omitted
+Class myConcreteAspectClass = Class.forName("mypack.__My__AbstractAspect");
+
+// here we are using a singleton aspect
+AbstractAspect concreteInstance = Aspects.aspectOf(myConcreteAspectClass);
+]]></programlisting>
+ </sect2>
+
+ <sect2 id="concrete-aspect-precedence" xreflabel="concrete-aspect-precedence">
+ <title>Using Concrete Aspects to define precedence</title>
+ <para>
+ As described in the previous section, the <literal>concrete-aspect</literal> element in
+ <literal>META-INF/aop.xml</literal> gives the option to declare the precedence, just as
+ <literal>@DeclarePrecedence</literal> or <literal>declare precedence</literal> do in
+ aspect source code.
+ </para>
+ <para>
+ Sometimes it is necessary to declare precedence without extending any abstract aspect.
+ It is therefore possible to use the <literal>concrete-aspect</literal>
+ element without the <literal>extends</literal> attribute and without any
+ <literal>pointcut</literal> nested elements, just a <literal>precedence</literal>
+ attribute.
+ Consider the following:
+ </para>
+ <programlisting><![CDATA[
+<aspectj>
+ <aspects>
+ <concrete-aspect name="mypack.__MyDeclarePrecedence"
+ precedence="*..*Security*, Logging+, *"/>
+ </aspects>
+</aspectj>
+]]></programlisting>
+ <para>
+ This deployment time definitions is only declaring a precedence rule. You have to remember
+ that the <literal>name</literal> attribute must be a valid fully qualified class name
+ that will be then reserved for this concrete-aspect and must not conflict with other classes
+ you deploy.
+ </para>
+ </sect2>
+ <!-- TODO someone implement that -->
+ <!--
+ <sect2 id="configuring-load-time-weaving-with-properties-files" xreflabel="configuring-load-time-weaving-with-properties-files">
+ <title>Configuring Load-time Weaving with Properties Files</title>
+ <para> For memory constrained environments or those without support for XML a simple
+ Java Properties file can be used to configure LTW. Just like XML files,
+ <literal>META-INF/aop.properties</literal> files are loaded from the class loader
+ search path. Everything that can be configured through XML can be configured using a
+ Properties file, with the exception of declarative concrete aspects. For example: </para>
+ <programlisting><![CDATA[
+aspects.names=com.MyAspect,com.MyAspect.Inner
+aspects.include=com..*
+aspects.exclude=@CoolAspect
+
+weaver.options=-verbose
+weaver.include=javax.* OR org.aspectj.*
+]]></programlisting>
+ </sect2>
+ -->
+
+ <sect2 id="weaver-options" xreflabel="weaver-options">
+ <title>Weaver Options</title>
+ <para> The table below lists the AspectJ options supported by LTW. All other options
+ will be ignored and a warning issued. </para>
+ <informaltable>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>Option</entry>
+ <entry>Purpose</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry>
+ <literal>-verbose</literal>
+ </entry>
+ <entry>Issue informational messages about the weaving process. Messages issued while the weaver is being
+ bootstrapped are accumulated until all options are parsed. If the messages are required to be output
+ immediately you can use the option <literal>-Daj.weaving.verbose=true</literal> on the JVM startup command line.
+ </entry>
+ </row>
+ <row>
+ <entry>
+ <literal>-debug</literal>
+ </entry>
+ <entry>
+ Issue a messages for each class passed to the weaver
+ indicating whether it was woven, excluded or ignored.
+ Also issue messages for classes
+ defined during the weaving process such as around advice
+ closures and concrete aspects defined in
+ <literal>META-INF/aop.xml</literal>.
+ </entry>
+ </row>
+ <row>
+ <entry>
+ <literal>-showWeaveInfo</literal>
+ </entry>
+ <entry>
+ Issue informational messages whenever the weaver touches a class file.
+ This option may also be enabled using the System property
+ <literal>-Dorg.aspectj.weaver.showWeaveInfo=true</literal>.
+ </entry>
+ </row>
+ <!-- TODO option parsed but not used -->
+ <!--
+ <row>
+ <entry>
+ <literal>-1.5</literal>
+ </entry>
+ <entry>Run the weaver in 1.5 mode (supports autoboxing in
+ join point matching)</entry>
+ </row>
+ -->
+ <row>
+ <entry>
+ <literal>-Xlintfile:pathToAResource</literal>
+ </entry>
+ <entry>Configure lint messages as specified in the given resource (visible from this aop.xml file' classloader)</entry>
+ </row>
+ <row>
+ <entry>
+ <literal>-Xlint:default, -Xlint:ignore, ...</literal>
+ </entry>
+ <entry>Configure lint messages, refer to documentation for meaningfull values</entry>
+ </row>
+ <row>
+ <entry>
+ <literal>-nowarn, -warn:none</literal>
+ </entry>
+ <entry>Suppress warning messages</entry>
+ </row>
+ <!-- TODO option parsed but not used -->
+ <!--
+ <row>
+ <entry>
+ <literal>-proceedOnError</literal>
+ </entry>
+ <entry>Continue weaving even if errors occur (for example,
+ "... already woven" errors)</entry>
+ </row>
+ -->
+ <row>
+ <entry>
+ <literal>-Xreweavable</literal>
+ </entry>
+ <entry>Produce class files that can subsequently be rewoven</entry>
+ </row>
+ <row>
+ <entry>
+ <literal>-XnoInline</literal>
+ </entry>
+ <entry>Don't inline around advice.</entry>
+ </row>
+ <row>
+ <entry>
+ <literal>-XmessageHandlerClass:...</literal>
+ </entry>
+ <entry>Provide alternative output destination to stdout/stderr for all weaver messages.
+ The given value must be the full qualified class name of a class that implements the
+ <literal>org.aspectj.bridge.IMessageHandler</literal> interface
+ and is visible to the classloader with which the weaver being configured is associated.
+ Exercise caution when packaging a custom message handler with an application that is to
+ be woven. The handler (as well as classes on which it depends) cannot itself be woven
+ by the aspects that are declared to the same weaver.
+ </entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </informaltable>
+ </sect2>
+ </sect1>
+
+ <sect1 id="ltw-specialcases">
+ <title>Special cases</title>
+ <para>
+ The following classes are not exposed to the LTW infrastructure regardless of
+ the <literal>aop.xml</literal> file(s) used:
+ <itemizedlist>
+ <listitem> <para>All <literal>org.aspectj.*</literal> classes (and subpackages) - as those are needed by the infrastructure itself</para></listitem>
+ <listitem> <para>All <literal>java.*</literal> and <literal>javax.*</literal> classes (and subpackages)</para></listitem>
+ <listitem> <para>All <literal>sun.reflect.*</literal> classes - as those are JDK specific classes used when reflective calls occurs</para></listitem>
+ </itemizedlist>
+ </para>
+ <para>
+ Despite these restrictions, it is perfectly possible to match call join points for calls to these types providing the calling
+ class is exposed to the weaver. Subtypes of these excluded types that are exposed to the weaver may of course be woven.
+ </para>
+ <para>
+ Note that dynamic proxy representations are exposed to the LTW infrastructure and are not considered
+ a special case.
+ </para>
+
+ <para>
+ Some lint options behave differently when used under load-time weaving. The <literal>adviceDidNotMatch</literal>
+ won't be handled as a warn (as during compile time) but as an info message.
+ </para>
+ </sect1>
+
+ <sect1 id="ltw-packaging">
+ <title>Runtime Requirements for Load-time Weaving</title>
+ <para> To use LTW the <literal>aspectjweaver.jar</literal> library must be added to the
+ classpath. This contains the AspectJ 5 runtime, weaver, weaving class loader and
+ weaving agents. It also contains the DTD for parsing XML weaving configuration files. </para>
+ </sect1>
+
+ <sect1 id="ltw-agents">
+ <title>Supported Agents</title>
+ <sect2 id="jvmti" xreflabel="jvmti">
+ <title>JVMTI</title>
+ <para> When using Java 5 the JVMTI agent can be used by starting the JVM with the
+ following option (adapt according to the path to aspectjweaver.jar): </para>
+ <programlisting><![CDATA[
+-javaagent:pathto/aspectjweaver.jar
+]]></programlisting>
+ </sect2>
+ <sect2 id="jrockit" xreflabel="jrockit">
+ <title>JRockit with Java 1.3/1.4 (use JVMTI on Java 5)</title>
+ <para>
+ Since AspectJ 1.9.7, the obsolete Oracle/BEA JRockit agent is no longer part of AspectJ.
+ JRockit JDK never supported Java versions higher than 1.6. Several JRockit JVM features are
+ now part of HotSpot and tools like Mission Control available for OpenJDK and Oracle JDK.
+ </para>
+ </sect2>
+ </sect1>
+</chapter>
diff --git a/docs/devguide/netbeans-buildOptions.gif b/docs/devguide/netbeans-buildOptions.gif
new file mode 100644
index 000000000..5cd5e75d2
--- /dev/null
+++ b/docs/devguide/netbeans-buildOptions.gif
Binary files differ
diff --git a/docs/devguide/netbeans-building.gif b/docs/devguide/netbeans-building.gif
new file mode 100644
index 000000000..7ef8f4500
--- /dev/null
+++ b/docs/devguide/netbeans-building.gif
Binary files differ
diff --git a/docs/devguide/tools-intro.adoc b/docs/devguide/tools-intro.adoc
new file mode 100644
index 000000000..329378b2a
--- /dev/null
+++ b/docs/devguide/tools-intro.adoc
@@ -0,0 +1,127 @@
+[[tools-intro]]
+== Introduction to the AspectJ tools
+
+[[eclipse-aspectj]]
+=== The Eclipse AspectJ implementation
+
+The xref:../progguide/index.html[AspectJ Programming Guide] describes
+the AspectJ language. This guide describes the AspectJ tools produced by
+the AspectJ team on https://eclipse.org/aspectj. The AspectJ tools
+include - ajc, the compiler/weaver; ajdoc, a documentation tool;
+ajbrowser, a crosscutting code viewer; Ant support for ajc; and
+load-time weaving support. These tools are delivered in the library
+folder of the AspectJ tools installation, mainly in `aspectjtools.jar`
+(tools) and `aspectjrt.jar` (runtime). This guide does not describe the
+Eclipse AspectJ development tools (AJDT). That is produced by another
+team (sharing some members) on
+https://eclipse.org/aspectj[https://eclipse.org/ajdt]. AJDT is delivered
+as an Eclipse plugin, incorporating the classes in the AspectJ tools
+libraries along with the Eclipse plugin interface classes.
+
+Since AspectJ 1.1, the tools have implemented the AspectJ language using
+bytecode weaving, which combines aspects and classes to produce .class
+files that run in a Java VM. There are other ways to implement the
+language (e.g., compiler preprocessor, VM support); the AspectJ team has
+always tried to distinguish the language and the implementation so other
+groups could build alternative implementations of AspectJ. To that end,
+xref:../progguide/implementation.html[The AspectJ Programming Guide,
+Implementation Notes] describes how the Java bytecode form affects
+language semantics. VM- or source-based implementations may be free of
+these limits or impose limits of their own, but most should be fairly
+close to what's possible in Java bytecode.
+
+Please be careful not to confuse any description of weaving or of this
+implementation of the AspectJ language with the AspectJ language
+semantics. If you do, you might find yourself writing code that doesn't
+work as expected when you compile or run it on other systems. More
+importantly, if you think about aspects in terms of weaving or of
+inserting or merging code, then you can lose many of the design benefits
+of thinking about an aspect as a single crosscutting module. When the
+text below introduces an implementation detail, it will warn if users
+make mistakes by applying it in lieu of the language semantics.
+
+[[bytecode-concepts]]
+=== Bytecode weaving, incremental compilation, and memory usage
+
+Bytecode weaving takes classes and aspects in .class form and weaves
+them together to produce binary-compatible .class files that run in any
+Java VM and implement the AspectJ semantics. This process supports not
+only the compiler but also IDE's. The compiler, given an aspect in
+source form, produces a binary aspect and runs the weaver. IDE's can get
+information about crosscutting in the program by subscribing to
+information produced by weaver as a side-effect of weaving.
+
+Incremental compilation involves recompiling only what is necessary to
+bring the binary form of a program up-to-date with the source form in
+the shortest time possible. Incremental weaving supports this by weaving
+on a per-class basis. (Some implementations of AOP (including AspectJ
+1.0) make use of whole-program analysis that can't be done in
+incremental mode.) Weaving per-class means that if the source for a pure
+Java class is updated, only that class needs to be produced. However, if
+some crosscutting specification may have been updated, then all code
+potentially affected by it may need to be woven. The AspectJ tools are
+getting better at minimizing this effect, but it is to some degree
+unavoidable due to the crosscutting semantics.
+
+Memory usage can seem higher with AspectJ tools. Some aspects are
+written to potentially affect many classes, so each class must be
+checked during the process of weaving. Programmers can minimize this by
+writing the crosscutting specifications as narrowly as possible while
+maintaining correctness. (While it may seem like more memory, the proper
+comparison would with with a Java program that had the same
+crosscutting, with changes made to each code segment. That would likely
+require more memory and more time to recompile than the corresponding
+AspectJ program.)
+
+[[classpathInpathAndAspectpath]]
+==== Classpath, inpath, and aspectpath
+
+AspectJ introduces two new paths for the binary input to the weaver
+which you'll find referenced in xref:ajc.adoc[`ajc`, the AspectJ compiler/weaver],
+xref:ajbrowser.adoc#ajbrowser[AspectJ Browser], xref:antsupport.adoc[AspectJ Ant Tasks], and xref:ltw.adoc#ltw[Load-Time Weaving].
+
+As in Java, the `classpath` is where the AspectJ tools resolve types
+specified in the program. When running an AspectJ program, the classpath
+should contain the classes and aspects along with the AspectJ runtime
+library, `aspectjrt.jar`.
+
+In AspectJ tools, the `aspectpath` is where to find binary aspects. Like
+the classpath, it can include archives (.jar and .zip files) and
+directories containing .class files in a package layout (since binary
+aspects are in .class files). These aspects affect other classes in
+exactly the same way as source-level aspects, but are themselves not
+affected. When deploying programs, the original aspects must be included
+on the runtime classpath.
+
+In AspectJ tools, the `inpath` is where to find binary input - aspects
+and classes that weave and may be woven. Like the classpath, it can
+include archives and class directories. Like the aspectpath, it can
+include aspects that affect other classes and aspects. However, unlike
+the aspectpath, an aspect on the inpath may itself be affected by
+aspects, as if the source were all compiled together. When deploying
+aspects that were put on the inpath, only the woven output should be on
+the runtime classpath.
+
+Although types in the inpath and the aspectpath need to be resolved by
+the AspectJ tools, you usually do not need to place them on the
+classpath because this is done automatically by the compiler/weaver. But
+when using the `WeavingURLClassLoader`, your code must explicitly add
+the aspects to the classpath so they can be resolved (as you'll see in
+the sample code and the `aj.bat` script).
+
+The most common mistake is failing to add `aspectjrt.jar` to the
+classpath. Also, when weaving with binary aspects, users forget to
+deploy the aspect itself along with any classes it requires. A more
+subtle mistake is putting a binary aspect (BA) on the inpath instead of
+the aspectpath. In this case the aspect BA might be affected by an
+aspect, even itself; this can cause the program to fail, e.g., when an
+aspect uses exclusion to avoid infinite recursion but fails to exclude
+advice in aspect BA.
+
+The latter is one of many ways that mistakes in the build process can
+affect aspects that are written poorly. Aspects should never rely on the
+boundaries of the build specification to narrow the scope of their
+crosscutting, since the build can be changed without notice to the
+aspect developer. Careful users might even avoid relying on the
+implementation scope, to ensure their AspectJ code will run on other
+implementations.
diff --git a/docs/devguide/tools-intro.xml b/docs/devguide/tools-intro.xml
new file mode 100644
index 000000000..521fac7a1
--- /dev/null
+++ b/docs/devguide/tools-intro.xml
@@ -0,0 +1,156 @@
+<chapter id="tools-intro"
+ xreflabel="Introduction to the AspectJ tools">
+ <title>Introduction to the AspectJ tools</title>
+<sect1
+ id="eclipse-aspectj"
+ xreflabel="The Eclipse AspectJ implementation">
+ <title>The Eclipse AspectJ implementation</title>
+ <para>The <ulink url="../progguide/index.html">AspectJ Programming Guide</ulink>
+ describes the AspectJ language. This guide describes the AspectJ
+ tools produced by the AspectJ
+ team on
+ <ulink url="https://eclipse.org/aspectj">https://eclipse.org/aspectj</ulink>.
+ The AspectJ tools include
+ - ajc, the compiler/weaver;
+ ajdoc, a documentation tool; ajbrowser, a crosscutting code viewer;
+ Ant support for ajc; and load-time weaving support.
+ These tools are delivered in the library folder of the AspectJ tools
+ installation, mainly in <literal>aspectjtools.jar</literal> (tools) and
+ <literal>aspectjrt.jar</literal> (runtime).
+ This guide does not describe the Eclipse AspectJ development tools
+ (AJDT). That is produced by another team (sharing some members) on
+ <ulink url="https://eclipse.org/aspectj">https://eclipse.org/ajdt</ulink>.
+ AJDT is delivered as an Eclipse plugin, incorporating the classes in
+ the AspectJ tools libraries along with the Eclipse plugin interface
+ classes.
+ </para>
+ <para>
+ Since AspectJ 1.1, the tools have implemented the AspectJ language
+ using bytecode weaving, which combines aspects and classes to produce
+ .class files that run in a Java VM. There are other ways to implement the
+ language (e.g., compiler preprocessor, VM support); the AspectJ team
+ has always tried to distinguish the language and the implementation
+ so other groups could build alternative implementations of AspectJ.
+ To that end,
+
+ <ulink url="../progguide/implementation.html">The AspectJ Programming Guide,
+ Implementation Notes</ulink> describes how the Java bytecode form affects
+ language semantics. VM- or source-based implementations may be free
+ of these limits or impose limits of their own, but most should be
+ fairly close to what's possible in Java bytecode.
+ </para>
+ <para>
+ Please be careful not to confuse any description of
+ weaving or of this implementation of the AspectJ language with
+ the AspectJ language semantics.
+ If you do, you might find yourself writing code that doesn't work as
+ expected when you compile or run it on other systems.
+ More importantly, if you
+ think about aspects in terms of weaving or of inserting or merging
+ code, then you can lose many of the design benefits of thinking
+ about an aspect as a single crosscutting module.
+ When the text below introduces an implementation detail, it will warn if
+ users make mistakes by applying it in lieu of the language semantics.
+ </para>
+</sect1>
+ <!-- graphic for bytecode weaving -->
+<sect1
+ id="bytecode-concepts"
+ xreflabel="Bytecode weaving, incremental compilation, and memory usage">
+ <title>Bytecode weaving, incremental compilation, and memory usage</title>
+ <para>Bytecode weaving takes classes and aspects in .class form
+ and weaves them together to produce binary-compatible .class files that
+ run in any Java VM and implement the AspectJ semantics.
+ This process supports not only the compiler but also IDE's.
+ The compiler, given an aspect in source form, produces a binary
+ aspect and runs the weaver. IDE's can get information about
+ crosscutting in the program by subscribing to information
+ produced by weaver as a side-effect of weaving.
+ </para>
+ <para>Incremental compilation involves recompiling only what is necessary
+ to bring the binary form of a program up-to-date with the source form
+ in the shortest time possible.
+ Incremental weaving supports this by weaving on a per-class basis.
+ (Some implementations of AOP (including AspectJ 1.0) make use
+ of whole-program analysis that can't be done in incremental mode.)
+ Weaving per-class means that if the source for a pure Java class
+ is updated, only that class needs to be produced. However, if
+ some crosscutting specification may have been updated, then all
+ code potentially affected by it may need to be woven. The AspectJ
+ tools are getting better at minimizing this effect, but it is to
+ some degree unavoidable due to the crosscutting semantics.
+ </para>
+ <para>
+ Memory usage can seem higher with AspectJ tools.
+ Some aspects are written to potentially affect many classes, so each
+ class must be checked during the process of weaving. Programmers can
+ minimize this by writing the crosscutting specifications as narrowly
+ as possible while maintaining correctness.
+ (While it may seem like more memory, the proper comparison
+ would with with a Java program that had the same crosscutting,
+ with changes made to each code segment. That would likely require
+ more memory and more time to recompile than the corresponding
+ AspectJ program.)
+ </para>
+<sect2
+ id="classpathInpathAndAspectpath"
+ xreflabel="Classpath, inpath, and aspectpath">
+ <title>Classpath, inpath, and aspectpath</title>
+ <para>AspectJ introduces two new paths for the binary input to the
+ weaver which you'll find referenced in <xref linkend="ajc-ref"/>,
+ <xref linkend="antTasks"/>,
+ and <xref linkend="ltw"/>.
+ </para>
+ <para>As in Java, the <literal>classpath</literal> is where the AspectJ
+ tools resolve types specified in the program. When running an AspectJ
+ program, the classpath should contain the classes and aspects along with
+ the AspectJ runtime library, <literal>aspectjrt.jar</literal>.
+ </para>
+ <para>
+ In AspectJ tools, the <literal>aspectpath</literal> is where to find binary
+ aspects. Like the classpath, it can include archives (.jar and .zip files)
+ and directories containing .class files in a package layout (since
+ binary aspects are in .class files). These aspects affect other
+ classes in exactly the same way as source-level aspects, but are themselves
+ not affected. When deploying programs, the original aspects must be included
+ on the runtime classpath.
+ </para>
+ <para>
+ In AspectJ tools, the <literal>inpath</literal> is where to find binary
+ input - aspects and classes that weave and may be woven.
+ Like the classpath, it can include archives and class directories.
+ Like the aspectpath, it can include aspects that affect other classes
+ and aspects.
+ However, unlike the aspectpath, an aspect on the inpath may itself be
+ affected by aspects, as if the source were all compiled together.
+ When deploying aspects that were put on the inpath, only the woven output
+ should be on the runtime classpath.
+ </para>
+ <para>
+ Although types in the inpath and the aspectpath need to be resolved by
+ the AspectJ tools, you usually do not need to place them on the classpath
+ because this is done automatically by the compiler/weaver. But when using
+ the <literal>WeavingURLClassLoader</literal>, your code must explicitly add the aspects
+ to the classpath so they can be resolved (as you'll see in the sample
+ code and the <literal>aj.bat</literal> script).
+ </para>
+ <para>The most common mistake is failing to add
+ <literal>aspectjrt.jar</literal> to the classpath. Also, when
+ weaving with binary aspects, users forget to deploy the aspect itself
+ along with any classes it requires. A more subtle mistake is putting a
+ binary aspect (BA) on the inpath instead of the aspectpath. In this case
+ the aspect BA might be affected by an aspect, even itself; this can
+ cause the program to fail, e.g., when an aspect uses exclusion to
+ avoid infinite recursion but fails to exclude advice in aspect BA.
+ </para>
+ <para>The latter is one of many ways that mistakes in the build process
+ can affect aspects that are written poorly. Aspects should never
+ rely on the boundaries of the build specification to narrow the
+ scope of their crosscutting, since the build can be changed
+ without notice to the aspect developer. Careful users might even
+ avoid relying on the implementation scope, to ensure their
+ AspectJ code will run on other implementations.
+ </para>
+ </sect2>
+ </sect1>
+</chapter>