diff --git a/README.md b/README.md index 4e3f8fc..fd80133 100644 --- a/README.md +++ b/README.md @@ -26,3 +26,14 @@ Before programming C, install `global` and `libclang` in your distro. After doin Finally, `cd` to the root of your project and run `gtags`. You now have functioning irony C completion. Before programming Java, install `eclim`, and `eclipse`. + +## XFCE Themes + +In the root there is a themes folder with a nice theme called `Nord`. Run the provided +`install.sh`. + +## Swapping Caps Lock and Escape in XFCE + +```sh +/usr/bin/setxkbmap -option "caps:swapescape" +``` diff --git a/xfce-themes/nord-xfce-terminal-develop/CHANGELOG.md b/xfce-themes/nord-xfce-terminal-develop/CHANGELOG.md new file mode 100644 index 0000000..9c18815 --- /dev/null +++ b/xfce-themes/nord-xfce-terminal-develop/CHANGELOG.md @@ -0,0 +1,18 @@ +
+ + + +--- + +# 0.1.0 (2016-12-24) +## Features +Implemented the main olor theme file [`nord.theme`](https://github.com/arcticicestudio/nord-xfce-terminal/blob/develop/src/nord.theme). (@arcticicestudio, #1, 5f426da8) + +Implementd a [`install.sh`](https://github.com/arcticicestudio/nord-xfce-terminal/blob/develop/install.sh) shell script for an automated installation . (@arcticicestudio, #2, 8848292e) + +Detailed information about features and install instructions can be found in the [README](https://github.com/arcticicestudio/nord-xfce-terminal/blob/develop/README.md#installation) and in the [project wiki](https://github.com/arcticicestudio/nord-xfce-terminal/wiki). + +
htop
(http://svengreb.de)
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/xfce-themes/nord-xfce-terminal-develop/README.md b/xfce-themes/nord-xfce-terminal-develop/README.md
new file mode 100644
index 0000000..7d5c58b
--- /dev/null
+++ b/xfce-themes/nord-xfce-terminal-develop/README.md
@@ -0,0 +1,57 @@
+
+
+
+
+An arctic, north-bluish clean and elegant XFCE Terminal color theme.
+
+Designed for a fluent and clear workflow.
+Based on the Nord color palette.
+
+---
+
+Font: Source Code Pro 12px.
+
+## Getting started
+### Installation
+#### Manual
+Copy the [`nord.theme`](https://github.com/arcticicestudio/nord-xfce-terminal/blob/develop/src/nord.theme) file to the local configuration directory `~/.local/share/xfce4/terminal/colorschemes`.
+
+#### Install Script
+The included `install.sh` shell script can be used for an automated installation.
+If no option is specified, the default theme file is `src/nord.theme`.
+
+A list of available options can be shown with the `--help` option.
+```shell
+./install.sh --help
+```
+Syntax: `install.sh [OPTIONS]`
+
+| Option | Description |
+| --- | --- |
+| `-h`, `--help` | Shows the help |
+| `-v`, `--verbose` | Verbose output |
+| `-t `, `--themefile ` | Use the specified theme file |
+
+### Activation
+ 1. Open the *Edit* menu and select *Preferences*
+ 2. Switch to the *Colors* tab
+ 3. Select `Nord` from the *Presets* drop-down menu
+
+![][scrot-readme-color-preset]
+
+## Screenshots
+htop
+
+## Development
+[![](https://img.shields.io/badge/Changelog-0.1.0-81A1C1.svg?style=flat-square)](https://github.com/arcticicestudio/nord-xfce-terminal/blob/v0.1.0/CHANGELOG.md) [![](https://img.shields.io/badge/Workflow-gitflow--branching--model-81A1C1.svg?style=flat-square)](http://nvie.com/posts/a-successful-git-branching-model) [![](https://img.shields.io/badge/Versioning-ArcVer_0.8.0-81A1C1.svg?style=flat-square)](https://github.com/arcticicestudio/arcver)
+
+### Contribution
+Please report issues/bugs, feature requests and suggestions for improvements to the [issue tracker](https://github.com/arcticicestudio/nord-xfce-terminal/issues).
+
+
+
+Copyright © 2016-present Arctic Ice Studio
+
+
+
+[scrot-readme-color-preset]: https://raw.githubusercontent.com/arcticicestudio/nord-xfce-terminal/develop/src/assets/scrot-readme-color-preset.png
diff --git a/xfce-themes/nord-xfce-terminal-develop/install.sh b/xfce-themes/nord-xfce-terminal-develop/install.sh
new file mode 100755
index 0000000..225ef66
--- /dev/null
+++ b/xfce-themes/nord-xfce-terminal-develop/install.sh
@@ -0,0 +1,123 @@
+#!/usr/bin/env bash
+# Copyright (c) 2016-present Arctic Ice Studio
+# Copyright (c) 2016-present Sven Greb
+
+# Project: Nord XFCE Terminal
+# Repository: https://github.com/arcticicestudio/nord-xfce-terminal
+# License: MIT
+
+set -e
+
+_ct_error="\e[0;31m"
+_ct_success="\e[0;32m"
+_ct_warning="\e[0;33m"
+_ct_highlight="\e[0;34m"
+_ct_primary="\e[0;36m"
+_ct="\e[0;37m"
+_ctb_subtle="\e[1;30m"
+_ctb_error="\e[1;31m"
+_ctb_success="\e[1;32m"
+_ctb_warning="\e[1;33m"
+_ctb_highlight="\e[1;34m"
+_ctb_primary="\e[1;36m"
+_ctb="\e[1;37m"
+_c_reset="\e[0m"
+
+__help() {
+ printf "${_ctb}Usage: ${_ct_primary}install.sh ${_ctb_subtle}[OPTIONS]\n"
+ printf " ${_ctb_highlight}-h${_ct},${_ctb_highlight} --help ${_ct}Help\n"
+ printf " ${_ctb_highlight}-v${_ct},${_ctb_highlight} --verbose ${_ct}Verbose output\n${_ctb_reset}"
+ printf " ${_ctb_highlight}-t${_ct},${_ctb_highlight} --themefile \
+${_ct}Use the specified color theme file\n${_ctb_reset}"
+}
+
+__cleanup() {
+ trap '' SIGINT SIGTERM
+ unset -v _ct_error _ct_success _ct_warning _ct_highlight _ct_primary _ct
+ unset -v _ctb_error _ctb_success _ctb_warning _ctb_highlight _ctb_primary _ctb _c_reset
+ unset -v NORD_XFCE_TERMINAL_SCRIPT_OPTS THEME_FILE VERBOSE LOCAL_INSTALL NORD_XFCE_TERMINAL_VERSION
+ unset -f __help __cleanup __log_error __log_success __log_warning __log_info
+ unset -f __validate_file __local_install
+}
+
+__log_error() {
+ printf "${_ctb_error}[ERROR] ${_ct}$1${_c_reset}\n"
+}
+
+__log_success() {
+ printf "${_ctb_success}[OK] ${_ct}$1${_c_reset}\n"
+}
+
+__log_warning() {
+ printf "${_ctb_warning}[WARN] ${_ct}$1${_c_reset}\n"
+}
+
+__log_info() {
+ printf "${_ctb}[INFO] ${_ct}$1${_c_reset}\n"
+}
+
+__summary_success() {
+ __log_success "Local installation completed"
+ __cleanup
+ exit 0
+}
+
+__summary_error() {
+ __log_error "An error occurred during the installation!"
+ __log_error "Exit code: $1"
+ __cleanup
+ exit 1
+}
+
+__local_install() {
+ __validate_file
+ if [ ! -d $LOCAL_INSTALL_DIR ]; then
+ mkdir -p $LOCAL_INSTALL_DIR
+ if [ $? -eq 0 ]; then
+ if [ $VERBOSE = true ]; then __log_info "Created local directory $LOCAL_INSTALL_DIR"; fi
+ else
+ __log_error "Could not create local directory $LOCAL_INSTALL_DIR"
+ __summary_error 1
+ fi
+ fi
+ cp -f $THEME_FILE $LOCAL_INSTALL_DIR
+ if [ $? -eq 0 ]; then
+ if [ $VERBOSE = true ]; then __log_success "Copied color theme file to $LOCAL_INSTALL_DIR"; fi
+ __summary_success
+ else
+ __log_error "Could not copy color theme file to $LOCAL_INSTALL_DIR"
+ __summary_error 1
+ fi
+}
+
+__validate_file() {
+ if [ ! -f $THEME_FILE ]; then
+ __log_error "Color theme file not found: $THEME_FILE"
+ __summary_error 1
+ fi
+}
+
+trap "printf '${_ctb_error}User aborted.${_ctb_reset}\n' && exit 1" SIGINT SIGTERM
+
+NORD_XFCE_TERMINAL_SCRIPT_OPTS=`getopt -o vht: --long verbose,help,themefile: -n 'install.sh' -- "$@"`
+THEME_FILE=src/nord.theme
+VERBOSE=false
+LOCAL_INSTALL_DIR=~/.local/share/xfce4/terminal/colorschemes
+NORD_XFCE_TERMINAL_VERSION=0.1.0
+
+eval set -- "$NORD_XFCE_TERMINAL_SCRIPT_OPTS"
+while true; do
+ case "$1" in
+ -v | --verbose ) VERBOSE=true; shift ;;
+ -h | --help ) __help; exit 0; break ;;
+ -t | --themefile )
+ THEME_FILE="$2"; shift 2 ;;
+ -- ) shift; break ;;
+ * ) break ;;
+ esac
+done
+
+__local_install
+
+__cleanup
+exit 0
diff --git a/xfce-themes/nord-xfce-terminal-develop/src/assets/nord-xfce-terminal-banner.ai b/xfce-themes/nord-xfce-terminal-develop/src/assets/nord-xfce-terminal-banner.ai
new file mode 100644
index 0000000..8d3f78c
--- /dev/null
+++ b/xfce-themes/nord-xfce-terminal-develop/src/assets/nord-xfce-terminal-banner.ai
@@ -0,0 +1,21898 @@
+%PDF-1.5
%âãÏÓ
+1 0 obj
<>/OCGs[5 0 R 33 0 R 60 0 R 87 0 R]>>/Pages 3 0 R/Type/Catalog>>
endobj
2 0 obj
<>stream
+
+
+
+
+ application/pdf
+
+
+ Nord Xfce Terminal Banner
+
+
+
+
+ Arctic Ice Studio
+
+
+
+
+ Copyright (C) 2016 Arctic Ice Studio
+
+
+
+
+ 2016-10-02T18:15:03+02:00
+ 2016-10-02T18:15:03+02:00
+ 2016-10-02T18:13:28+02:00
+ Adobe Illustrator CS6 (Windows)
+
+
+
+ 256
+ 120
+ JPEG
+ /9j/4AAQSkZJRgABAgEASABIAAD/7QAsUGhvdG9zaG9wIDMuMAA4QklNA+0AAAAAABAASAAAAAEA
AQBIAAAAAQAB/+4ADkFkb2JlAGTAAAAAAf/bAIQABgQEBAUEBgUFBgkGBQYJCwgGBggLDAoKCwoK
DBAMDAwMDAwQDA4PEA8ODBMTFBQTExwbGxscHx8fHx8fHx8fHwEHBwcNDA0YEBAYGhURFRofHx8f
Hx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8f/8AAEQgAeAEAAwER
AAIRAQMRAf/EAaIAAAAHAQEBAQEAAAAAAAAAAAQFAwIGAQAHCAkKCwEAAgIDAQEBAQEAAAAAAAAA
AQACAwQFBgcICQoLEAACAQMDAgQCBgcDBAIGAnMBAgMRBAAFIRIxQVEGE2EicYEUMpGhBxWxQiPB
UtHhMxZi8CRygvElQzRTkqKyY3PCNUQnk6OzNhdUZHTD0uIIJoMJChgZhJRFRqS0VtNVKBry4/PE
1OT0ZXWFlaW1xdXl9WZ2hpamtsbW5vY3R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo+Ck5SVlpeYmZ
qbnJ2en5KjpKWmp6ipqqusra6voRAAICAQIDBQUEBQYECAMDbQEAAhEDBCESMUEFURNhIgZxgZEy
obHwFMHR4SNCFVJicvEzJDRDghaSUyWiY7LCB3PSNeJEgxdUkwgJChgZJjZFGidkdFU38qOzwygp
0+PzhJSktMTU5PRldYWVpbXF1eX1RlZmdoaWprbG1ub2R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo
+DlJWWl5iZmpucnZ6fkqOkpaanqKmqq6ytrq+v/aAAwDAQACEQMRAD8A9U4q7FXYq7FXYq7FXYq7
FXYq7FXy9/zld/ymWkf9s4f8n5MthyYSeb6P+WnnzWtNh1PStFubuwuOXo3EYBVuDFGpU9mUjJWE
Ujf+VN/mh/1Ll3/wK/1x4gtJZr/kDzn5es0vNa0i4sbV3ESzyr8HMgkLUE7kA4ghafQf/OPX5tnW
7JPKmtzV1izT/cfcOfiuYEH2CT1kjH3rv1BOVziyBe2ZBk+d/wA7PyDmeeTzH5OtDIZmrf6PCNwz
H+9gUdiftIOnUbdLIy72JDyL/lVX5k/9SzqP/SPJ/TJ8QY07/lVX5k/9SzqP/SPJ/THiC07/AJVV
+ZP/AFLOo/8ASPJ/THiC0hdU/L/zvpNhLqGp6He2djDx9W5mhdI15sEWrEUFWYDGwtPTv+cUf+Uy
1f8A7Zx/5Px5GfJMX1DlTN2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2Kvl7/nK7
/lMtI/7Zw/5PyZbDkwk9e/5x9/8AJQ6B/wBHf/UbNkJ82Q5PQ8ilL9f0HTNf0a70fVIRPY3kZjmQ
9fEMp7MpAZT2OIKvi/zr5S8wflz5yFsJnjltnFzpOox/D6kYaqSL4MKUYdj7ZeDYazs+qPyk/Muz
89eXVuG4xaxZ8Y9TtFPRyNpUHXhJQkeBqO2VSFMwWcZFLsVdirsVeef85Bf+Sh1//o0/6jYclDmg
8nkP/OKP/KZav/2zj/yfjyc+TGL6hypm7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXY
q7FXy9/zld/ymWkf9s4f8n5MthyYSevf84+/+Sh0D/o7/wCo2bIT5shyeh5FLsVYf+aX5dWHnny3
Jp8vGLUbflLpl4R/dzU+yxG/B6UcfT1AwxNIIfJflrzB5l/LjzqbgRtBf2EjW+oWMhossdaSRNTY
hqVVvkwy4iww5Ps/yt5m0rzNoVrrWlyepaXS8gDTkjjZo3A6Mp2OUkU2JrgV2KuxV55/zkF/5KHX
/wDo0/6jYclDmg8nkP8Azij/AMplq/8A2zj/AMn48nPkxi+ocqZuxV2KuxV2KuxV2KuxV2KuxV2K
uxV2KuxV2KuxV2KuxV2KuxV8vf8AOV3/ACmWkf8AbOH/ACfky2HJhJ69/wA4+/8AkodA/wCjv/qN
myE+bIcnoeRS7FXkf5c/mz9Z8+eYvJWtTf6RDqt+NFuHP241uZP9GJPdB9j2+HsMmY7WxBQ//OQP
5Tf4j01vMujQ8tdsI/8ASYUHxXNum5AHeSMbr3I23PHGEqUh47+Sn5qTeSdd+rXrs/l3UXVb6Pc+
i/RbhB4jo9Oq+4GTlG0AvsOCeGeGOeB1lhlUPFIhDKysKqykbEEZSzX4q7FXnn/OQX/kodf/AOjT
/qNhyUOaDyeQ/wDOKP8AymWr/wDbOP8Ayfjyc+TGL6hypm7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq
7FXYq7FXYq7FXYq7FXy9/wA5Xf8AKZaR/wBs4f8AJ+TLYcmEnr3/ADj7/wCSh0D/AKO/+o2bIT5s
hyeh5FLsVfF/5xeXNd8r/mTqN5KWi+v3k2qaZeREiqyzGVeLdnjY0Pgd/DLomwwL6M/Jj80oPO+g
endsqeYNPVU1CEUHqDotwgHZ/wBoDo3tTK5RpkC8i/5yH/Kb9DXr+bdFhppN5J/uRgQbW9w5+2AO
kcp+5vmMnCTGQTP/AJxz/NowyReSdbmrDIaaJcufsuT/ALzMT2Y/3fv8PdaCceqYl9HZWydirzz/
AJyC/wDJQ6//ANGn/UbDkoc0Hk8h/wCcUf8AlMtX/wC2cf8Ak/Hk58mMX1DlTN2KuxV2KuxV2Kux
V2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2Kvl7/nK7/lMtI/7Zw/5PyZbDkwk9e/5x9/8AJQ6B/wBH
f/UbNkJ82Q5PQ8il2KsV/Mn8v9M87+W5tKuqRXSVl068p8UM4Gx90bo69x7gEEGkEPkHTdQ80flz
529UKbXVtLlMdzbt9iRP2kb+aOReh+RHbLuYYcn2L5a8weXfP3lBL2FFuNO1GJob2zkoxRiKSwSD
xFfpFCNiMpIpm+bdU/LS88i/nN5Zthyl0e71eyl0u6bqU+tR1jc9OcdaHxFD3pll2GNbvrXKmbsV
eef85Bf+Sh1//o0/6jYclDmg8nkP/OKP/KZav/2zj/yfjyc+TGL6hypm7FXYq7FXYq7FXYq7FXYq
7FXYq7FXYq7FXYq7FXYq7FXYq7FXy9/zld/ymWkf9s4f8n5MthyYSevf84+/+Sh0D/o7/wCo2bIT
5shyeh5FLsVdiryf8+PymXzZpB1rSoh/iLTozxRetzAu5iP+Wu5T7u+04ypBDwj8nvzNuvIvmP8A
0ku2h3rCPU7YVJWhoJlX+ePv4jbwyco2xBfXV/pWheZLLT7iUJd28M9tqenXMZBAkhdZYpI3Fdm6
HxUnKuTNNcCuxV55/wA5Bf8Akodf/wCjT/qNhyUOaDyeQ/8AOKP/ACmWr/8AbOP/ACfjyc+TGL6h
ypm7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXy9/zld/ymWkf9s4f8n5MthyYS
evf84+/+Sh0D/o7/AOo2bIT5shyeh5FLsVdirsVfNv8AzkV+Ugs5pfOmiQ0tZmrrNsg/u5GNPrCg
fsuT8fgd+5pZCXRjIKX/ADjr+bP6PuY/JutzUsbl6aRcOdopXP8AcEn9mRvs+Dbd9mceqIl9L5Wz
dirzz/nIL/yUOv8A/Rp/1Gw5KHNB5PIf+cUf+Uy1f/tnH/k/Hk58mMX1DlTN2KuxV2KuxV2KuxV2
KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2Kvl7/nK7/lMtI/7Zw/5PyZbDkwki/yy/5yC8teUvI+m+X7
3Tr2e5svX9SWH0vTPq3EkwpydTsJAOmCULKQWUf9DXeTf+rRqP3Qf9VMHAV4nf8AQ13k3/q0aj90
H/VTHgK8Tv8Aoa7yb/1aNR+6D/qpjwFeJ6R5C/MLy9530g6hpEjK0TcLqzloJoW7c1BIowFVYGh+
YORIpILIri3gubeW3uI1lt5kaOaJwGV0cUZWB6gg0OBL46/Of8rp/I3mD1rJWbQL9i+nzbkxN1aB
2/mT9k91965dGVsCHpHkD/nJnR7Xy3BZ+bUupdVtf3X1u3RZBNGo+B35OhD9m8evfImCRJkn/Q0H
5bf761H/AJER/wDVXBwFeJif5q/nx5I80+QdU0HTI71b689D0jNEiR/urmOVqsJGP2UPbDGJBUlJ
/wDnFH/lMtX/AO2cf+T8eGfJEX1DlTN2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV
2KvNPzS/JS18/avaalNqz6e1rb/VhGkIlDDmz8ql0/myUZUgi2F/9Claf/1Ms3/SKv8A1VyXiI4X
f9Claf8A9TLN/wBIq/8AVXHxF4Xf9Claf/1Ms3/SKv8A1Vx8ReF3/QpWn/8AUyzf9Iq/9VcfEXhT
zyd/zj3d+Udch1jR/NU0c8fwyxNaqY5oyfijkX1d1P4dRvgM7UB7HkGSUebPKukeadAutE1WPna3
K0DjZ43G6SRnsyncfcdq4QaV4v8A9Claf/1Ms3/SKv8A1VyfiMeF3/QpWn/9TLN/0ir/ANVcfEXh
d/0KVp//AFMs3/SKv/VXHxF4Waflb+Slr5B1e71KHVn1Brq3+rGN4REFHNX5VDv/AC5GUrSBT0vI
pdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsV
dirsVdirsVdirsVdirsVdirsVdiqS28stpc3N07lrSS4aOdSaiMigWQeC9m+g+OWkWAOrjRJiSel
p1lTkoOzZje34JJAkSg8P3S5KXINcPqP46LpdV06J2R7hAy7PQ14n/KI6fTiIFJyxHVECaIxesHX
0qcvUqOPHrWvSmCmVirUmv7NZ1gMymZqUjBqd+lQOlffHhKOMXVrZ9SsIJDHLMqyD7SdSK+IFafT
hESUHJEcysM8c11aPDIJInWQhkNVP2fDGqBRxWRSMyLY8jmu778tfzDH1ueSXyN5qlpHJK7Mthfm
vw1YnjG/6v8AU3nzDHknP5secNTtI7Tyh5aPPzb5iJitqGn1a3NRLcsRutFB4n2J/ZwRCSWN/mVr
Fl5B/LEeVdJ1zh5idYEM8kxF4yzSfvrjqXUNxYVH2R06YRuUHZmv5cWPkvTtIu38t6y2q2YcG8u5
rv60EdEBNXOyfCakZE2kKn/K3fyz+v8A1H/Ell69acvU/dVrT++/uv8AhseErbLVdGQOrBkYclYG
oIO9QcCWJyfm3+Wsd/8AUH8x2QuK8T+8rGD0oZR+7H/BYeEotlcckcsaSxOHjcBkdSCrKRUEEdQc
CUq80eV9P8yaaNOv5LiKASLKGtZWgk5KCAOab0+LphBpXj35rflto/lrQ9OvNLv9TWa51O1s5TJe
zOPSmLc6Anrt1ycTbEhnFv8Akn5StriK4S81UvC6yKGv5itVNRUE7jbI8SaTOT82/wAtY7/6g/mO
yFxXif3lYwelDKP3Y/4LBwlbZFfavpdhpr6neXcUGnIqyPdu4EQRiArc+lDyFMCUHc+b/K1tfWdh
Pqtql9f8Pqdr6qmWT1fsFUB5UbsaUw0toXUPzC8kadp41C81u0itDJJCsnqBuUkRpIiqtWYoeoA2
xootU07z15O1HSJ9Ys9ZtJdNtqfWbn1VVYq9BJy4lCe3LrjRTahoP5keRdfvjYaRrVtd3u/G3Vir
txFTwVwvOg3+GuJBRaGvtNtH/M3TdQbXFhuotOliTy/+1Mhdibj7Y+z0+wenXHoqY3vnnyfYw3c1
3rNpDHYzfVrsvKoMc3++iK157fZ640U2s8uefvJvmWRotD1e3vZkXm0CNxlC1py9Nwr096YkEItG
675l0DQLUXWtahBp8DHijzuE5N4KDux+WICUv8u/mL5I8x3H1bRdZt7y6oWFuGKSkDqRG4ViB3oM
SCEWxrVrq5X8+tDtlmcW76JO7QhjwLCV6MV6Vw9F6s505FdLxHAZGuJQyncEGlQcMujXjHP3tWTt
bTfo+UkgDlaSN1aMdUJ7sn6qe+Mt91gaPCfgh5mlEmopExR5p4Yg46qHRFZh7hSSMkOjA36q7x+h
NIIIYIlhhQJGgoqjoMrJtvjEAUEqvYhbC/hjHGC4tZZgg6LIo4vT/W5qfn88sibr3tExVjoQVdEG
n6KzQDlKkRfkeryla8m+bZH6pMwOCGyLtLWO2gWJN6bu5+0zH7TMe5JyJNs4xoUg2tVi1uGaP4Um
jlMqjoXHGjfMjr8hkr9LWY1MEdUyyDcwz84bjyzD+Xmrf4iX1LKSP04IlIErXJ/uBETX4w4rWmwB
rtXJR5oLzr8gA1r5o1S282JOnniS0tmtHvCCx00RJxSL/KFF5itdvFWyUkBkX/ORGl6Y/kxL57SF
r369ZxfWjGhl9MyH4OdOXHfpXBDmkrPzY0y1e58reQ9Jgj0uw80X7tqn1JEg529mqPKh4BRVg4/4
HGPepZ2/kHyY+iHQzo1oNMKen9XESigpTkGpy5/5deVd65GytPKPzAstS8h/lLp/lO61ppLXUNSW
wk1MRsGg02TlI6lVMjtxC0oo3XYDtkhuUHkmNr+YX/ONttoI0FJrVtM9P03hfT7ti+1ObP6HIv35
1rXfGpLYRn/OPuuWlzpuvaJp129/o2jX5GjXTh1Y2dxV44yHCv8AAVbqO+MwkPWMgl5n+fv/ACi+
jf8AbcsP1vkooKz/AJyF159N8l21iLprKDWr6GwvrxQSY7RgzztRQzH4UoQBuKjGA3UpVa/mF/zj
bbaCNBSa1bTPT9N4X0+7YvtTmz+hyL9+da13w1JFhh9hrlpc/kv5/wBE0+7a/wBF0a5jGjXTh1b6
ncTq8cZEgV/hKnqO/hhrcL0ep/ln+Wnl/S9F07V7+1j1HzLdRRXdzql0qzSpKyBlWFmB9NYweK8K
bDIkpAY1+Q3lPR7iHXdevbdLu+GrXVraNMokEEUbhyIg1eBd5GLEe2GRQFC/8jeXpP8AnIOCy+rI
ul3GlLrF1pqrxtprqKWSCNpIhRG4/b6dfmcb2Wt0x/PvTtM0vRtC1+xtIrfVNO1e0FvcwosbhDyJ
SqjdTwGxxipTDWP/AFoLQf8Ath3H/J18HRPVIvy18n6Nqn5k+etZ1OBLySx1WWGxgmAeKJ5GZpJQ
jVXmQqgHtTCTsgBH/mlo2naT528h+YtNt47TUZtah066lhURmWG6ojB+I+Ki8hv44x5FSifOVr5G
0r8wV81ed9ZtHt4rJYNI0W4jMrRNy5PcCJfULknkAfT/ABAwC62SWHfmZ5v8oardeW9W8r2FwNRs
9XtSdbWzltYfSYkek0siRl+ZAovgD7gyiEEs21j/ANaC0H/th3H/ACdfI9E9XoGmAj63X/lok/hj
Lowx9feqX1p9Zh4q3pzIecEvdHHQ/LsR3GMTSZxseaWW4ubxL9hH6V2k0TBG2HqQohpXurFaV8Dk
zQruaY3K++x9iOXWdO4n1plt5F+3DMQjqfDi3X5jr2yPAW0ZY9TSFuC91b315wZIhbSRWwYEMwIJ
Z+J3AYgUr4e+SGxA82uXqBPkjpbcXOnNbk8fVi4cvAlaV+jIA0bbTG415KMOr2oQLeyJa3KD97FK
wTcdShanJfAjCYHoxGUddipJcSXWrQTIpFokcqxuQRzY8SWFf2RSgPfDVR82IlcweiaEgAkmgG5J
ytveQaTbz/md5/Ou3kTr5K8sSmPR7eUFReXgoTcMp6ouxFf8kfzjJ8gx5p9+bnkrUNVs7XzJ5d/d
ebvLzfWNPkUfFNGu8lu38wYV4g96joxwRKSGK/mJ5ri85fk5Z6rawPFcNqFol5ZlWLwzpJ+8Qila
b1B8CMIFFB5Mp/N/y/rlxBovmfQLc3mseV7v63HZD7U9vIAJ41puWIRdhvStN6YIlJQsn/OQfkD9
G+rA91NrJHBNBFvMLsz9oj8JSte/I/ftjwFbSXVfKP5i6r+V9lqeoO9x500/U08wWlk9KxiNvgtV
8OMfxcevL4cNi0UncX/OQX5fLpvq30txZ6ugCz6G9tMbpZ6f3QHHgd+hLD3pg4Cm07/LO986anpV
3rHmgNbHUblptK0p0RHtbP8A3WjlVVmZu/Pfp06YDShmGBLzX8+YpZPLGjiNGcjW7EkKCTQF99sl
FBR/5xeWdX1ryxb3eiJ6mt6DewarYQjrI9uTWMe/FqjxIAxiVKXw/wDOQX5fLpwkv5bmy1dAFn0R
7aY3SzU/ugOIQmvQlh70x4CtpB5kufPGr/kr5r1XzIjwyak6y6TpBjRZLWz9eP00coquznqee/y6
YRVo6PWvLoI8v6YCKEWkAIP/ABjXIFkwX8hopY/LGsCRGQnW74gMCDQlN98lJAddRS/9DD2kvBvS
HlkrzoeNfrkhpXxx6L1Q/wDzkXFLL5IsViRnYataEhQSaASb7Yw5qURq8Up/P7QpAjGMaJcAvQ8Q
fVfauPRervymilTzP+YJdGUPrblCQQCKHcVxl0UO/OSKWTUPIRRGcJ5msGfiCaAMdzTtjHqpY5Jr
GheTfzl8xap52t2ig1VbVvL+tyQvNDGsUfGSJGUOUatAaD9nsDh5jZHVLvza8+P5u0izn8r6fd6h
5b0S/t77VNWWF0RmjYqkUKyBWenIlzSg+HxwxFKSyn69Hq351+WNWtI5PqV15flljeRGQgPI5UMD
9k0PQ5Honq9VyKXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FVvpRep6vBfVI486DlTrSvhiq7FVpiiMg
lKKZAKB6DkB4VxVdirsVdirsVWmKIyCUopkAoHoOQHhXFV2KuxV2KuxV2KuxV2KuxVbJHHIhSRQ6
HqrAEH6Diq4AAAAUA2AGKuxV/9k=
+
+
+
+
+
+ uuid:22f89834-5847-485c-8b22-903550d5ab1a
+ xmp.did:C3BC849FB888E611B6A48BFF43593540
+ uuid:5D20892493BFDB11914A8590D31508C8
+ proof:pdf
+
+ uuid:8c3548a0-e885-4a62-beb8-86304c32529a
+ xmp.did:C1BC849FB888E611B6A48BFF43593540
+ uuid:5D20892493BFDB11914A8590D31508C8
+ proof:pdf
+
+
+
+
+ saved
+ xmp.iid:A2407A3A5E74E611B3038A8245A8D27E
+ 2016-09-06T20:17:53+02:00
+ Adobe Illustrator CS6 (Windows)
+ /
+
+
+ saved
+ xmp.iid:C3BC849FB888E611B6A48BFF43593540
+ 2016-10-02T18:13:28+02:00
+ Adobe Illustrator CS6 (Windows)
+ /
+
+
+
+
+
+ Document
+ Print
+
+
+ False
+ False
+ 1
+
+ 888.000000
+ 200.000000
+ Pixels
+
+
+
+ Cyan
+ Magenta
+ Yellow
+ Black
+
+
+
+
+
+ Standard-Farbfeldgruppe
+ 0
+
+
+
+ Weiß
+ RGB
+ PROCESS
+ 255
+ 255
+ 255
+
+
+ Schwarz
+ RGB
+ PROCESS
+ 29
+ 29
+ 27
+
+
+ CMYK Rot
+ RGB
+ PROCESS
+ 227
+ 6
+ 19
+
+
+ CMYK Gelb
+ RGB
+ PROCESS
+ 255
+ 237
+ 0
+
+
+ CMYK Grün
+ RGB
+ PROCESS
+ 0
+ 150
+ 64
+
+
+ CMYK Cyan
+ RGB
+ PROCESS
+ 0
+ 159
+ 227
+
+
+ CMYK Blau
+ RGB
+ PROCESS
+ 49
+ 39
+ 131
+
+
+ CMYK Magenta
+ RGB
+ PROCESS
+ 230
+ 0
+ 126
+
+
+ C=15 M=100 Y=90 K=10
+ RGB
+ PROCESS
+ 190
+ 22
+ 34
+
+
+ C=0 M=90 Y=85 K=0
+ RGB
+ PROCESS
+ 230
+ 51
+ 42
+
+
+ C=0 M=80 Y=95 K=0
+ RGB
+ PROCESS
+ 233
+ 78
+ 27
+
+
+ C=0 M=50 Y=100 K=0
+ RGB
+ PROCESS
+ 243
+ 146
+ 0
+
+
+ C=0 M=35 Y=85 K=0
+ RGB
+ PROCESS
+ 249
+ 178
+ 51
+
+
+ C=5 M=0 Y=90 K=0
+ RGB
+ PROCESS
+ 252
+ 234
+ 16
+
+
+ C=20 M=0 Y=100 K=0
+ RGB
+ PROCESS
+ 222
+ 220
+ 0
+
+
+ C=50 M=0 Y=100 K=0
+ RGB
+ PROCESS
+ 149
+ 193
+ 31
+
+
+ C=75 M=0 Y=100 K=0
+ RGB
+ PROCESS
+ 58
+ 170
+ 53
+
+
+ C=85 M=10 Y=100 K=10
+ RGB
+ PROCESS
+ 0
+ 141
+ 54
+
+
+ C=90 M=30 Y=95 K=30
+ RGB
+ PROCESS
+ 0
+ 102
+ 51
+
+
+ C=75 M=0 Y=75 K=0
+ RGB
+ PROCESS
+ 47
+ 172
+ 102
+
+
+ C=80 M=10 Y=45 K=0
+ RGB
+ PROCESS
+ 0
+ 161
+ 154
+
+
+ C=70 M=15 Y=0 K=0
+ RGB
+ PROCESS
+ 54
+ 169
+ 225
+
+
+ C=85 M=50 Y=0 K=0
+ RGB
+ PROCESS
+ 29
+ 113
+ 184
+
+
+ C=100 M=95 Y=5 K=0
+ RGB
+ PROCESS
+ 45
+ 46
+ 131
+
+
+ C=100 M=100 Y=25 K=25
+ RGB
+ PROCESS
+ 41
+ 35
+ 92
+
+
+ C=75 M=100 Y=0 K=0
+ RGB
+ PROCESS
+ 102
+ 36
+ 131
+
+
+ C=50 M=100 Y=0 K=0
+ RGB
+ PROCESS
+ 149
+ 27
+ 129
+
+
+ C=35 M=100 Y=35 K=10
+ RGB
+ PROCESS
+ 163
+ 25
+ 91
+
+
+ C=10 M=100 Y=50 K=0
+ RGB
+ PROCESS
+ 214
+ 11
+ 82
+
+
+ C=0 M=95 Y=20 K=0
+ RGB
+ PROCESS
+ 231
+ 29
+ 115
+
+
+ C=25 M=25 Y=40 K=0
+ RGB
+ PROCESS
+ 203
+ 187
+ 160
+
+
+ C=40 M=45 Y=50 K=5
+ RGB
+ PROCESS
+ 164
+ 138
+ 123
+
+
+ C=50 M=50 Y=60 K=25
+ RGB
+ PROCESS
+ 123
+ 106
+ 88
+
+
+ C=55 M=60 Y=65 K=40
+ RGB
+ PROCESS
+ 99
+ 78
+ 66
+
+
+ C=25 M=40 Y=65 K=0
+ RGB
+ PROCESS
+ 202
+ 158
+ 103
+
+
+ C=30 M=50 Y=75 K=10
+ RGB
+ PROCESS
+ 177
+ 127
+ 74
+
+
+ C=35 M=60 Y=80 K=25
+ RGB
+ PROCESS
+ 147
+ 96
+ 55
+
+
+ C=40 M=65 Y=90 K=35
+ RGB
+ PROCESS
+ 125
+ 78
+ 36
+
+
+ C=40 M=70 Y=100 K=50
+ RGB
+ PROCESS
+ 104
+ 60
+ 17
+
+
+ C=50 M=70 Y=80 K=70
+ RGB
+ PROCESS
+ 67
+ 41
+ 24
+
+
+
+
+
+ Graustufen
+ 1
+
+
+
+ C=0 M=0 Y=0 K=100
+ RGB
+ PROCESS
+ 29
+ 29
+ 27
+
+
+ C=0 M=0 Y=0 K=90
+ RGB
+ PROCESS
+ 60
+ 60
+ 59
+
+
+ C=0 M=0 Y=0 K=80
+ RGB
+ PROCESS
+ 87
+ 87
+ 86
+
+
+ C=0 M=0 Y=0 K=70
+ RGB
+ PROCESS
+ 112
+ 111
+ 111
+
+
+ C=0 M=0 Y=0 K=60
+ RGB
+ PROCESS
+ 135
+ 135
+ 135
+
+
+ C=0 M=0 Y=0 K=50
+ RGB
+ PROCESS
+ 157
+ 157
+ 156
+
+
+ C=0 M=0 Y=0 K=40
+ RGB
+ PROCESS
+ 178
+ 178
+ 178
+
+
+ C=0 M=0 Y=0 K=30
+ RGB
+ PROCESS
+ 198
+ 198
+ 198
+
+
+ C=0 M=0 Y=0 K=20
+ RGB
+ PROCESS
+ 218
+ 218
+ 218
+
+
+ C=0 M=0 Y=0 K=10
+ RGB
+ PROCESS
+ 237
+ 237
+ 237
+
+
+ C=0 M=0 Y=0 K=5
+ RGB
+ PROCESS
+ 246
+ 246
+ 246
+
+
+
+
+
+ Strahlende Farben
+ 1
+
+
+
+ C=0 M=100 Y=100 K=0
+ RGB
+ PROCESS
+ 227
+ 6
+ 19
+
+
+ C=0 M=75 Y=100 K=0
+ RGB
+ PROCESS
+ 234
+ 91
+ 12
+
+
+ C=0 M=10 Y=95 K=0
+ RGB
+ PROCESS
+ 255
+ 222
+ 0
+
+
+ C=85 M=10 Y=100 K=0
+ RGB
+ PROCESS
+ 0
+ 152
+ 58
+
+
+ C=100 M=90 Y=0 K=0
+ RGB
+ PROCESS
+ 39
+ 52
+ 139
+
+
+ C=60 M=90 Y=0 K=0
+ RGB
+ PROCESS
+ 130
+ 54
+ 140
+
+
+
+
+
+
+
+
+ Adobe PDF library 10.01
+
+
+ True
+ http://arcticicestudio.com
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+endstream
endobj
3 0 obj
<>
endobj
7 0 obj
<>/Resources<>/Properties<>>>/Thumb 92 0 R/TrimBox[0.0 0.0 888.0 200.0]/Type/Page>>
endobj
89 0 obj
<>stream
+/OC /MC0 BDC
+0.533 0.753 0.816 rg
+/GS0 gs
+q 1 0 0 1 267.6216 46.0332 cm
+0 0 m
+1.35 0 l
+23.309 -31.004 l
+23.399 -31.004 l
+23.399 0 l
+24.299 0 l
+24.299 -32.129 l
+22.949 -32.129 l
+0.99 -1.125 l
+0.9 -1.125 l
+0.9 -32.129 l
+0 -32.129 l
+h
+f
+Q
+q
+0 200 888 -200 re
+W n
+q 1 0 0 1 306.0513 14.2646 cm
+0 0 m
+6.165 0 9.495 5.354 9.495 11.204 c
+9.495 16.964 6.165 22.409 0 22.409 c
+-6.255 22.409 -9.54 16.964 -9.54 11.204 c
+-9.54 5.354 -6.255 0 0 0 c
+0 23.309 m
+6.75 23.309 10.395 17.504 10.395 11.204 c
+10.395 4.859 6.75 -0.9 -0.045 -0.9 c
+-6.795 -0.9 -10.44 4.859 -10.44 11.204 c
+-10.44 17.504 -6.795 23.309 0 23.309 c
+f
+Q
+q 1 0 0 1 321.0815 13.9043 cm
+0 0 m
+-0.9 0 l
+-0.9 23.129 l
+0 23.129 l
+0 17.414 l
+0.09 17.414 l
+0.945 20.834 3.645 23.849 9.18 23.669 c
+9.18 22.77 l
+2.835 23.084 0 18.134 0 13.095 c
+h
+f
+Q
+q 1 0 0 1 340.4756 36.6738 cm
+0 0 m
+-6.345 0 -8.955 -5.896 -8.955 -11.25 c
+-8.955 -17.189 -5.985 -22.409 0 -22.409 c
+5.939 -22.409 9.359 -17.234 9.359 -11.25 c
+9.359 -4.096 5.625 0 0 0 c
+9.359 9.359 m
+10.259 9.359 l
+10.259 -22.77 l
+9.359 -22.77 l
+9.359 -16.29 l
+9.27 -16.29 l
+8.1 -20.34 4.725 -23.31 0 -23.31 c
+-6.12 -23.31 -9.855 -18.225 -9.855 -11.25 c
+-9.855 -4.771 -6.39 0.899 0 0.899 c
+4.905 0.899 8.189 -1.936 9.27 -6.12 c
+9.359 -6.12 l
+h
+f
+Q
+0.18 0.204 0.251 rg
+q 1 0 0 1 366.1699 46.0332 cm
+0 0 m
+3.6 0 l
+12.69 -13.455 l
+22.094 0 l
+25.514 0 l
+14.535 -15.659 l
+26.144 -32.129 l
+22.454 -32.129 l
+12.69 -17.954 l
+2.79 -32.129 l
+-0.675 -32.129 l
+10.89 -15.569 l
+h
+f
+Q
+q 1 0 0 1 403.5195 34.7383 cm
+0 0 m
+-4.59 0 l
+-4.59 -20.834 l
+-7.425 -20.834 l
+-7.425 0 l
+-11.385 0 l
+-11.385 2.385 l
+-7.425 2.385 l
+-7.425 4.5 l
+-7.47 8.505 -6.345 11.295 -1.8 11.295 c
+-0.99 11.295 -0.315 11.25 0.585 11.114 c
+0.585 8.685 l
+-0.181 8.819 -0.811 8.91 -1.485 8.91 c
+-4.635 8.91 -4.545 6.93 -4.59 4.41 c
+-4.59 2.385 l
+0 2.385 l
+h
+f
+Q
+q 1 0 0 1 422.5986 29.834 cm
+0 0 m
+-0.765 3.465 -2.88 5.579 -6.569 5.579 c
+-12.015 5.579 -14.714 0.63 -14.714 -4.32 c
+-14.714 -9.27 -12.015 -14.22 -6.569 -14.22 c
+-3.06 -14.22 -0.18 -11.475 0.18 -7.605 c
+3.015 -7.605 l
+2.25 -13.185 -1.395 -16.604 -6.569 -16.604 c
+-13.68 -16.604 -17.549 -10.979 -17.549 -4.32 c
+-17.549 2.34 -13.68 7.964 -6.569 7.964 c
+-1.62 7.964 2.205 5.31 2.835 0 c
+h
+f
+Q
+q 1 0 0 1 446.2686 27.1338 cm
+0 0 m
+-0.136 4.274 -2.79 8.279 -7.38 8.279 c
+-12.015 8.279 -14.58 4.229 -15.029 0 c
+h
+-15.029 -2.385 m
+-14.984 -6.524 -12.825 -11.52 -7.38 -11.52 c
+-3.24 -11.52 -0.99 -9.09 -0.09 -5.58 c
+2.744 -5.58 l
+1.529 -10.845 -1.53 -13.904 -7.38 -13.904 c
+-14.76 -13.904 -17.864 -8.234 -17.864 -1.62 c
+-17.864 4.5 -14.76 10.664 -7.38 10.664 c
+0.09 10.664 3.06 4.14 2.835 -2.385 c
+h
+f
+Q
+q 1 0 0 1 462.5137 46.0332 cm
+0 0 m
+25.469 0 l
+25.469 -2.61 l
+14.264 -2.61 l
+14.264 -32.129 l
+11.204 -32.129 l
+11.204 -2.61 l
+0 -2.61 l
+h
+f
+Q
+q 1 0 0 1 502.1572 27.1338 cm
+0 0 m
+-0.136 4.274 -2.79 8.279 -7.38 8.279 c
+-12.015 8.279 -14.58 4.229 -15.029 0 c
+h
+-15.029 -2.385 m
+-14.984 -6.524 -12.825 -11.52 -7.38 -11.52 c
+-3.24 -11.52 -0.99 -9.09 -0.09 -5.58 c
+2.744 -5.58 l
+1.529 -10.845 -1.53 -13.904 -7.38 -13.904 c
+-14.76 -13.904 -17.864 -8.234 -17.864 -1.62 c
+-17.864 4.5 -14.76 10.664 -7.38 10.664 c
+0.09 10.664 3.06 4.14 2.835 -2.385 c
+h
+f
+Q
+q 1 0 0 1 508.8174 37.123 cm
+0 0 m
+2.609 0 l
+2.609 -5.444 l
+2.699 -5.444 l
+4.14 -1.71 7.289 0.495 11.475 0.315 c
+11.475 -2.52 l
+6.345 -2.25 2.835 -6.029 2.835 -10.845 c
+2.835 -23.219 l
+0 -23.219 l
+h
+f
+Q
+q 1 0 0 1 522.9922 37.123 cm
+0 0 m
+2.609 0 l
+2.609 -3.914 l
+2.744 -3.914 l
+4.229 -1.125 6.659 0.675 10.35 0.675 c
+13.409 0.675 16.154 -0.81 17.009 -3.869 c
+18.404 -0.81 21.329 0.675 24.389 0.675 c
+29.474 0.675 32.083 -1.979 32.083 -7.47 c
+32.083 -23.219 l
+29.248 -23.219 l
+29.248 -7.604 l
+29.248 -3.779 27.809 -1.71 23.759 -1.71 c
+18.854 -1.71 17.459 -5.76 17.459 -10.079 c
+17.459 -23.219 l
+14.624 -23.219 l
+14.624 -7.47 l
+14.669 -4.319 13.364 -1.71 9.765 -1.71 c
+4.859 -1.71 2.88 -5.399 2.835 -10.26 c
+2.835 -23.219 l
+0 -23.219 l
+h
+f
+Q
+560.521 37.123 2.835 -23.219 re
+560.521 46.033 2.835 -4.545 re
+f
+q 1 0 0 1 568.7568 37.123 cm
+0 0 m
+2.835 0 l
+2.835 -4.005 l
+2.925 -4.005 l
+3.959 -1.215 7.064 0.675 10.35 0.675 c
+16.874 0.675 18.854 -2.744 18.854 -8.279 c
+18.854 -23.219 l
+16.019 -23.219 l
+16.019 -8.729 l
+16.019 -4.725 14.714 -1.71 10.124 -1.71 c
+5.624 -1.71 2.925 -5.13 2.835 -9.674 c
+2.835 -23.219 l
+0 -23.219 l
+h
+f
+Q
+q 1 0 0 1 607.8145 26.5938 cm
+0 0 m
+-0.09 0 l
+-0.449 -0.675 -1.71 -0.9 -2.475 -1.035 c
+-7.289 -1.89 -13.274 -1.845 -13.274 -6.39 c
+-13.274 -9.225 -10.754 -10.979 -8.1 -10.979 c
+-3.779 -10.979 0.046 -8.234 0 -3.689 c
+h
+-15.119 3.42 m
+-14.849 8.864 -11.024 11.204 -5.714 11.204 c
+-1.619 11.204 2.835 9.944 2.835 3.735 c
+2.835 -8.595 l
+2.835 -9.675 3.375 -10.305 4.5 -10.305 c
+4.815 -10.305 5.175 -10.215 5.4 -10.125 c
+5.4 -12.51 l
+4.771 -12.645 4.32 -12.689 3.556 -12.689 c
+0.676 -12.689 0.226 -11.069 0.226 -8.64 c
+0.136 -8.64 l
+-1.845 -11.654 -3.869 -13.364 -8.324 -13.364 c
+-12.599 -13.364 -16.108 -11.25 -16.108 -6.569 c
+-16.108 -0.045 -9.764 0.18 -3.645 0.9 c
+-1.305 1.17 0 1.485 0 4.05 c
+0 7.875 -2.744 8.819 -6.074 8.819 c
+-9.584 8.819 -12.194 7.2 -12.284 3.42 c
+h
+f
+Q
+616.365 46.033 2.835 -32.129 re
+f
+q 1 0 0 1 466.5596 64.0342 cm
+0 0 m
+-43.391 55.545 l
+-43.391 70.957 l
+4.699 8.785 l
+30.543 8.785 l
+30.543 96.33 l
+-12.922 96.33 l
+-22.317 105.729 l
+39.939 105.729 l
+39.939 0 l
+h
+f
+Q
+q 1 0 0 1 421.4399 169.7627 cm
+0 0 m
+43.393 -55.541 l
+43.393 -70.951 l
+-4.698 -8.783 l
+-30.541 -8.783 l
+-30.541 -96.328 l
+12.922 -96.328 l
+22.321 -105.729 l
+-39.939 -105.729 l
+-39.939 0 l
+h
+f
+Q
+EMC
+Q
+
+endstream
endobj
92 0 obj
<>stream
+8;Z\u9+lk2$q$@AN,keu3/i2N?)Mg]LTk9]@T@crLQ-PR7$.FpU
+$"46EFs8)BQm@!P(+AU:8goOJjT1F($_>Wi!jtF5N9QLo.%$t-Lio!T7#Z17--ETq
+=XGs]:7QID18Dg'4&@Ij4TjrGctbP_R5f5'R!\1^ITabYS^7*)qBKQ8XSk4)lrAlI
+Y4(f.jrTL?^GjI1V4g-4fP.)+!1/*e"9~>
+endstream
endobj
93 0 obj
[/Indexed/DeviceRGB 255 94 0 R]
endobj
94 0 obj
<>stream
+8;X]O>EqN@%''O_@%e@?J;%+8(9e>X=MR6S?i^YgA3=].HDXF.R$lIL@"pJ+EP(%0
+b]6ajmNZn*!='OQZeQ^Y*,=]?C.B+\Ulg9dhD*"iC[;*=3`oP1[!S^)?1)IZ4dup`
+E1r!/,*0[*9.aFIR2&b-C#soRZ7Dl%MLY\.?d>Mn
+6%Q2oYfNRF$$+ON<+]RUJmC0InDZ4OTs0S!saG>GGKUlQ*Q?45:CI&4J'_2j $XKrcYp0n+Xl_nU*O(
+l[$6Nn+Z_Nq0]s7hs]`XX1nZ8&94a\~>
+endstream
endobj
87 0 obj
<>
endobj
95 0 obj
[/View/Design]
endobj
96 0 obj
<>>>
endobj
91 0 obj
<>
endobj
90 0 obj
<>
endobj
97 0 obj
<>
endobj
98 0 obj
<>stream
+%!PS-Adobe-3.0
+%%Creator: Adobe Illustrator(R) 16.0
+%%AI8_CreatorVersion: 16.0.0
+%%For: (sven) ()
+%%Title: (nord-xfce-terminal-banner.ai)
+%%CreationDate: 10/2/2016 6:15 PM
+%%Canvassize: 16383
+%%BoundingBox: 265 -196 623 -30
+%%HiResBoundingBox: 265.1924 -195.7256 622.8076 -30.2373
+%%DocumentProcessColors: Cyan Magenta Yellow Black
+%AI5_FileFormat 12.0
+%AI12_BuildNumber: 682
+%AI3_ColorUsage: Color
+%AI7_ImageSettings: 0
+%%RGBProcessColor: 0 0 0 ([Passermarken])
+%AI3_Cropmarks: 0 -200 888 0
+%AI3_TemplateBox: 444.5 -100.5 444.5 -100.5
+%AI3_TileBox: 48 -406 840 206
+%AI3_DocumentPreview: None
+%AI5_ArtSize: 14400 14400
+%AI5_RulerUnits: 6
+%AI9_ColorModel: 1
+%AI5_ArtFlags: 0 0 0 1 0 0 1 0 0
+%AI5_TargetResolution: 800
+%AI5_NumLayers: 1
+%AI9_OpenToView: 197 51 3 1385 955 2 0 0 144 116 0 0 0 1 1 0 1 1 0 1
+%AI5_OpenViewLayers: 3
+%%PageOrigin:138 -496
+%AI7_GridSettings: 72 8 72 8 1 0 0.8 0.8 0.8 0.9 0.9 0.9
+%AI9_Flatten: 1
+%AI12_CMSettings: 00.MS
+%%EndComments
+
+endstream
endobj
99 0 obj
<>stream
+%%BoundingBox: 265 -196 623 -30
+%%HiResBoundingBox: 265.1924 -195.7256 622.8076 -30.2373
+%AI7_Thumbnail: 128 60 8
+%%BeginData: 6398 Hex Bytes
+%0000330000660000990000CC0033000033330033660033990033CC0033FF
+%0066000066330066660066990066CC0066FF009900009933009966009999
+%0099CC0099FF00CC0000CC3300CC6600CC9900CCCC00CCFF00FF3300FF66
+%00FF9900FFCC3300003300333300663300993300CC3300FF333300333333
+%3333663333993333CC3333FF3366003366333366663366993366CC3366FF
+%3399003399333399663399993399CC3399FF33CC0033CC3333CC6633CC99
+%33CCCC33CCFF33FF0033FF3333FF6633FF9933FFCC33FFFF660000660033
+%6600666600996600CC6600FF6633006633336633666633996633CC6633FF
+%6666006666336666666666996666CC6666FF669900669933669966669999
+%6699CC6699FF66CC0066CC3366CC6666CC9966CCCC66CCFF66FF0066FF33
+%66FF6666FF9966FFCC66FFFF9900009900339900669900999900CC9900FF
+%9933009933339933669933999933CC9933FF996600996633996666996699
+%9966CC9966FF9999009999339999669999999999CC9999FF99CC0099CC33
+%99CC6699CC9999CCCC99CCFF99FF0099FF3399FF6699FF9999FFCC99FFFF
+%CC0000CC0033CC0066CC0099CC00CCCC00FFCC3300CC3333CC3366CC3399
+%CC33CCCC33FFCC6600CC6633CC6666CC6699CC66CCCC66FFCC9900CC9933
+%CC9966CC9999CC99CCCC99FFCCCC00CCCC33CCCC66CCCC99CCCCCCCCCCFF
+%CCFF00CCFF33CCFF66CCFF99CCFFCCCCFFFFFF0033FF0066FF0099FF00CC
+%FF3300FF3333FF3366FF3399FF33CCFF33FFFF6600FF6633FF6666FF6699
+%FF66CCFF66FFFF9900FF9933FF9966FF9999FF99CCFF99FFFFCC00FFCC33
+%FFCC66FFCC99FFCCCCFFCCFFFFFF33FFFF66FFFF99FFFFCC110000001100
+%000011111111220000002200000022222222440000004400000044444444
+%550000005500000055555555770000007700000077777777880000008800
+%000088888888AA000000AA000000AAAAAAAABB000000BB000000BBBBBBBB
+%DD000000DD000000DDDDDDDDEE000000EE000000EEEEEEEE0000000000FF
+%00FF0000FFFFFF0000FF00FFFFFF00FFFFFF
+%524C45FD29FF7D2727282728272827282728272827A8FD07FF7D05282728
+%2728272827282728272827282728272827A8FD52FFA800FD052705272727
+%0527272705A8FD07FF7D0027052727270527272705272727052727270527
+%7DFD52FF7D272728272827272728FD0727FD08FF7D052705272727052727
+%27052727270527272705A8FD52FF7E002727A87EA884A87DA8A8A8522727
+%272EFD08FFA87D7E7DA87D7E7DA87D7E7DA87D847D2805277DFD52FF7D27
+%272EFD0AFF522727277DFD17FF272705A8FD52FF84002727FD0BFF272705
+%277DFD15FFA82805277DFD52FF7D27272EFD0BFFA827270528A8FD15FF27
+%2827A8FD52FFA8002727FD0CFF7D00270052FD14FFA82700277DFD52FF7D
+%272752FD0DFF590028057DFD14FF272827A8FD52FFA8002727FD0EFF2E00
+%27007DFD13FF2800277DFD52FF7D272728FD0EFFA827272827A8FD12FF27
+%2705A8FD52FF7E002727FD0FFF7D27052727FD11FFA82805277DFD52FF7D
+%27272EFD10FF5327272752FD11FF272705A8FD52FF84002727FD0BFF537D
+%FD04FF2827272752FD0FFFA82805277DFD52FF7D27272EFD0BFF7D00A8FD
+%04FFFD04277DFD0FFF272827A8FD52FFA8002727FD0BFF590527FD04FFA8
+%00270527A8FD0DFFA82700277DFD52FF7D272752FD0BFF7E052752FD04FF
+%7D05280552FD0EFF272827A8FD52FFA8002727FD0BFF5927272753FD04FF
+%520027F853FD0DFF2800277DFD52FF7D272728FD0BFFA9FD04277DFFFFFF
+%A8522728007EFD0CFF272705A8FD52FF7E002727FD0CFF8400270527A8FF
+%FFFFA827052700A8FD0AFFA82805277DFD52FF7D27272EFD0DFF7D052805
+%52FD04FF7D2727277DFD0BFF272705A8FD52FF84002727FD0EFF52002700
+%7DFD04FF5227F87DFD0AFFA82805277DFD52FF7D27272EFD0EFFA8522727
+%00A8FD04FF2E057DFD0BFF272827A8FD52FFA8002727FD0FFF7E27052700
+%A8FFFFFFAF007DFD0AFFA82700277DFD52FF7D272752FD10FF7D27272728
+%FD04FF7E7DFD0BFF272827A8FD52FFA8002727FD11FF5227272752FD10FF
+%2800277DFD52FF7D272728FD12FF2E2727277DFD0FFF272705A8FD52FF7E
+%002727FD12FFAF272700277DFD0DFFA82805277DFD52FF7D27272EFD13FF
+%A805282728A8FD0DFF272705A8FD52FF84002727FD14FF7D00270052FD0C
+%FFA82805277DFD52FF7D27272EFD15FF520028057DFD0CFF272827A8FD52
+%FFA8002727FD15FFA8280027007EFD0AFFA82700277DFD52FF7D272752FD
+%16FFA828272727FD0BFF272827A8FD52FFA8002727FD17FF7DFD0427FD0A
+%FF2800277DFD52FF7D272728527D537D527D537D527D537D527D537DFD08
+%FF5227272752A87DA87DA87DA87DA8272705A8FD52FF7E00272727F82700
+%27F8270027F8270027F827F853FD08FFFD04270027002700270027002727
+%277DFD52FF7DFD0427282727272827272728272727282727007DFD08FF27
+%2727282727272827272728272700A8FD52FFA82752285227522852275228
+%522752285227522852277DFD07FFA8275227522852275228522752282E7D
+%FDFCFFFDFCFFFDFCFFFD36FFA8FD07FFA9FD1AFF7D53FD05FFA852A8FF7D
+%527DFD14FFA852535259525352527DFD19FF7E7DFD12FF847DFFA884A8FD
+%05FFAFA9FD14FFA8FD05FFA8277DFD04FF2852FFA8277DA8FD14FFA8A87D
+%A8522E7DA87DA8FD19FF7D28FD12FF7D27FFFFAFAFAFFD05FFA9FD14FFAF
+%FD06FF7D27A8FFFF7D27FFFFA827FD1AFFA852FD31FF7D52FFA8FFFFA9FD
+%04FFA8AFFFFFA8AFA8A9A8FFFFFFA8AF84FFFFAFA8A9A8FFA8FD07FF2E52
+%FFA800A8FFA827272E7EFFFF52522759A8FFFFFF53522853A8FD09FF7D52
+%FD04FF53522853A8FFFF7DA8A828A87DA87D52277EFF7D275253FFFFA87D
+%FF7E7E7E52275284FFFFFF7D5227527DFFFF7D28FFFFAFFFA9AFFD04FFA9
+%FFAFAFFFFFFFAFA9FFA8AFAFFFFFAFAFFFFFFFA8FD09FF277D277EFFFFA8
+%7D277DA8FF2753A8A82852FFFF5252A8AF5252FD09FF8452FFFFFF5252A8
+%AF5252FFFF2852287DA87D277DA8A8275252FFA8287DFF7D52FFA827527D
+%FF5227A8FF7D287DFF7D287DFF7D52FFA8FFFFFF84FFFFFFA9AFFFA9AFFD
+%04FFAFFFAF84FFFFAFA8FD04FFAF84FD08FFA8F853FD04FFA852FFFF5252
+%FD04FF27A8A827A8FFFFFF287DFD08FF7D52FFFF7E27A8FFFFFF287DFF2E
+%27FFFFFF2852FFFFFF5927FFFFFF7D52FF7E2EFF7D27A8FFFFFF277DFF52
+%7DFFFFFF7D52FF7E2EFFFFA8FFFFFF84FFFFFFA8FFA9FD05FFA9FFAFFFFF
+%FFA9FD06FFAFFD08FF7D272EFD04FFA828FFFF52A8FD06FF7D52FFA8FFFF
+%8427FD08FFA852FFFF7D52FFA8FFFF8428FF287EFFFFFF527DFFFFFF537D
+%FFFFFFA828FF7D52FF842EFD04FF537DFFA8FFFFFFA85252FF7D52FFA8AF
+%FD04FF84FFAFAFA8FD07FFA8AFA8FFFFAFAFFD05FFA8FD07FF84277D2E52
+%FFFFFF7D52FFFF27A9FD06FF52272728272E2752A8FD07FF7D52FFFF5227
+%2728272E2752A8527DFFFFFF287DFFFFFF7D52FFFFFF7D2EFF7D28FF7D52
+%FD04FF527DFFA8525228532852FF7D28FFFFA9FD05FFAFFFA8FFAFFD05FF
+%AFFFAFFFFFFFA9FD06FFAFFD07FF2E59FFA827A8FFFFA82EFFFF52A8FD05
+%FFA87D52FD05FFA8FD08FFA852FFFF7D52FD07FF2EA8FFFFFF527DFFFFFF
+%597DFFFFFFA828FF7D53FFA852FD04FF7D7DFF277DA8FFFFA852FF7D53FF
+%A8AFFD05FFAFA8AFAFAFFD05FFAFA8AFA9FFFFAFA8FD04FFAF84FD06FF53
+%27FFFFFF5327A8FF7D52FFFF2E59FD04FF27A87D2EFD04FF7D52FD08FF7D
+%52FFFF7D2EFD04FF7D52FF527DFFFFFF2E7DFFFFFF7D52FFFFFF7D52FF7D
+%28FF7D52FD04FF527DA827FD04FF5252FF7D28FFFFAFFD06FFAFA8FFA8AF
+%FD04FFA8FFA8FD04FFAFFD04FF84AFFD05FFA805A9FD04FF2752FFA827FF
+%FFA8057EFFFF5252FFFF277DFFFF7D277EFD08FF7D28FFFFFF277DFFFF7D
+%27A8FF27A8FFFFFF527DFFFFFF5352FFFFFF7E27FF7D52FF8452FD04FF52
+%53FF277DFFFF7D2727FF7D52FFA8FD07FFA8A9FFFFA8AFA8A984FFFFAFA8
+%FFFFFFA8A9A8AF84FFA8FD05FF277DFD05FFA827A8A852A8FFFFA8275227
+%52A8FFFFA8282E27277DFD09FF7D53FFFFFFA8282E27277DFFFF527EFFFF
+%FF52A8FFFFFF7D52FFFFFF7D52FFA852FF7D59FD04FF527DFFA8272E2753
+%A8527DA852FD36FFA8FD07FFA8FD13FFA8FD25FFA8FDFCFFFD8BFFFF
+%%EndData
+
+endstream
endobj
100 0 obj
<>stream
+ale) /UnicodeString (xmlnode-nodename) ,
+; (scale) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(b2) /UnicodeString (xmlnode-nodevalue) ,
+(in2) /UnicodeString (xmlnode-nodename) ,
+; (in2) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(b3) /UnicodeString (xmlnode-nodevalue) ,
+(result) /UnicodeString (xmlnode-nodename) ,
+; (result) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(b1) /UnicodeString (xmlnode-nodevalue) ,
+(in) /UnicodeString (xmlnode-nodename) ,
+; (in) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(b3) /UnicodeString (xmlnode-nodevalue) ,
+(id) /UnicodeString (xmlnode-nodename) ,
+; (id) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(A) /UnicodeString (xmlnode-nodevalue) ,
+(yChannelSelector) /UnicodeString (xmlnode-nodename) ,
+; (yChannelSelector) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(R) /UnicodeString (xmlnode-nodevalue) ,
+(xChannelSelector) /UnicodeString (xmlnode-nodename) ,
+; (xChannelSelector) ,
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+1 /Int (xmlnode-nodetype) ,
+ /String (xmlnode-nodevalue) ,
+(feDisplacementMap) /UnicodeString (xmlnode-nodename) ,
+; ,
+/XMLNode :
+/Dictionary :
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(matrix) /UnicodeString (xmlnode-nodevalue) ,
+(type) /UnicodeString (xmlnode-nodename) ,
+; (type) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0) /UnicodeString (xmlnode-nodevalue) ,
+(values) /UnicodeString (xmlnode-nodename) ,
+; (values) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(b4) /UnicodeString (xmlnode-nodevalue) ,
+(result) /UnicodeString (xmlnode-nodename) ,
+; (result) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(b3) /UnicodeString (xmlnode-nodevalue) ,
+(in) /UnicodeString (xmlnode-nodename) ,
+; (in) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(b4) /UnicodeString (xmlnode-nodevalue) ,
+(id) /UnicodeString (xmlnode-nodename) ,
+; (id) ,
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+1 /Int (xmlnode-nodetype) ,
+ /String (xmlnode-nodevalue) ,
+(feColorMatrix) /UnicodeString (xmlnode-nodename) ,
+; ,
+/XMLNode :
+/Dictionary :
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(1) /UnicodeString (xmlnode-nodevalue) ,
+(stdDeviation) /UnicodeString (xmlnode-nodename) ,
+; (stdDeviation) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(b5) /UnicodeString (xmlnode-nodevalue) ,
+(result) /UnicodeString (xmlnode-nodename) ,
+; (result) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(b4) /UnicodeString (xmlnode-nodevalue) ,
+(in) /UnicodeString (xmlnode-nodename) ,
+; (in) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(b5) /UnicodeString (xmlnode-nodevalue) ,
+(id) /UnicodeString (xmlnode-nodename) ,
+; (id) ,
+; (xmlnode-attributes) ,
+/Array :
+/XMLNode :
+/Dictionary :
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(freeze) /UnicodeString (xmlnode-nodevalue) ,
+(fill) /UnicodeString (xmlnode-nodename) ,
+; (fill) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(none) /UnicodeString (xmlnode-nodevalue) ,
+(accumulate) /UnicodeString (xmlnode-nodename) ,
+; (accumulate) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(replace) /UnicodeString (xmlnode-nodevalue) ,
+(additive) /UnicodeString (xmlnode-nodename) ,
+; (additive) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(linear) /UnicodeString (xmlnode-nodevalue) ,
+(calcMode) /UnicodeString (xmlnode-nodename) ,
+; (calcMode) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(stdDeviation) /UnicodeString (xmlnode-nodevalue) ,
+(attributeName) /UnicodeString (xmlnode-nodename) ,
+; (attributeName) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(5s) /UnicodeString (xmlnode-nodevalue) ,
+(dur) /UnicodeString (xmlnode-nodename) ,
+; (dur) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(always) /UnicodeString (xmlnode-nodevalue) ,
+(restart) /UnicodeString (xmlnode-nodename) ,
+; (restart) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(0s) /UnicodeString (xmlnode-nodevalue) ,
+(begin) /UnicodeString (xmlnode-nodename) ,
+; (begin) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(5) /UnicodeString (xmlnode-nodevalue) ,
+(to) /UnicodeString (xmlnode-nodename) ,
+; (to) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(1) /UnicodeString (xmlnode-nodevalue) ,
+(from) /UnicodeString (xmlnode-nodename) ,
+; (from) ,
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+1 /Int (xmlnode-nodetype) ,
+ /String (xmlnode-nodevalue) ,
+(animate) /UnicodeString (xmlnode-nodename) ,
+; ,
+; (xmlnode-children) ,
+1 /Int (xmlnode-nodetype) ,
+ /String (xmlnode-nodevalue) ,
+(feGaussianBlur) /UnicodeString (xmlnode-nodename) ,
+; ,
+/XMLNode :
+/Dictionary :
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(-8) /UnicodeString (xmlnode-nodevalue) ,
+(dy) /UnicodeString (xmlnode-nodename) ,
+; (dy) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(c1) /UnicodeString (xmlnode-nodevalue) ,
+(result) /UnicodeString (xmlnode-nodename) ,
+; (result) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(b) /UnicodeString (xmlnode-nodevalue) ,
+(in) /UnicodeString (xmlnode-nodename) ,
+; (in) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(c1) /UnicodeString (xmlnode-nodevalue) ,
+(id) /UnicodeString (xmlnode-nodename) ,
+; (id) ,
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+1 /Int (xmlnode-nodetype) ,
+ /String (xmlnode-nodevalue) ,
+(feOffset) /UnicodeString (xmlnode-nodename) ,
+; ,
+/XMLNode :
+/Dictionary :
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(fractalNoise) /UnicodeString (xmlnode-nodevalue) ,
+(type) /UnicodeString (xmlnode-nodename) ,
+; (type) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(10) /UnicodeString (xmlnode-nodevalue) ,
+(numOctaves) /UnicodeString (xmlnode-nodename) ,
+; (numOctaves) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(0.05) /UnicodeString (xmlnode-nodevalue) ,
+(baseFrequency) /UnicodeString (xmlnode-nodename) ,
+; (baseFrequency) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(noStitch) /UnicodeString (xmlnode-nodevalue) ,
+(stitchTiles) /UnicodeString (xmlnode-nodename) ,
+; (stitchTiles) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(c2) /UnicodeString (xmlnode-nodevalue) ,
+(result) /UnicodeString (xmlnode-nodename) ,
+; (result) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(c1) /UnicodeString (xmlnode-nodevalue) ,
+(in) /UnicodeString (xmlnode-nodename) ,
+; (in) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(c2) /UnicodeString (xmlnode-nodevalue) ,
+(id) /UnicodeString (xmlnode-nodename) ,
+; (id) ,
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+1 /Int (xmlnode-nodetype) ,
+ /String (xmlnode-nodevalue) ,
+(feTurbulence) /UnicodeString (xmlnode-nodename) ,
+; ,
+/XMLNode :
+/Dictionary :
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(8) /UnicodeString (xmlnode-nodevalue) ,
+(scale) /UnicodeString (xmlnode-nodename) ,
+; (scale) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(c2) /UnicodeString (xmlnode-nodevalue) ,
+(in2) /UnicodeString (xmlnode-nodename) ,
+; (in2) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(c3) /UnicodeString (xmlnode-nodevalue) ,
+(result) /UnicodeString (xmlnode-nodename) ,
+; (result) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(c1) /UnicodeString (xmlnode-nodevalue) ,
+(in) /UnicodeString (xmlnode-nodename) ,
+; (in) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(c3) /UnicodeString (xmlnode-nodevalue) ,
+(id) /UnicodeString (xmlnode-nodename) ,
+; (id) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(A) /UnicodeString (xmlnode-nodevalue) ,
+(yChannelSelector) /UnicodeString (xmlnode-nodename) ,
+; (yChannelSelector) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(R) /UnicodeString (xmlnode-nodevalue) ,
+(xChannelSelector) /UnicodeString (xmlnode-nodename) ,
+; (xChannelSelector) ,
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+1 /Int (xmlnode-nodetype) ,
+ /String (xmlnode-nodevalue) ,
+(feDisplacementMap) /UnicodeString (xmlnode-nodename) ,
+; ,
+/XMLNode :
+/Dictionary :
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(matrix) /UnicodeString (xmlnode-nodevalue) ,
+(type) /UnicodeString (xmlnode-nodename) ,
+; (type) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0) /UnicodeString (xmlnode-nodevalue) ,
+(values) /UnicodeString (xmlnode-nodename) ,
+; (values) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(c4) /UnicodeString (xmlnode-nodevalue) ,
+(result) /UnicodeString (xmlnode-nodename) ,
+; (result) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(c3) /UnicodeString (xmlnode-nodevalue) ,
+(in) /UnicodeString (xmlnode-nodename) ,
+; (in) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(c4) /UnicodeString (xmlnode-nodevalue) ,
+(id) /UnicodeString (xmlnode-nodename) ,
+; (id) ,
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+1 /Int (xmlnode-nodetype) ,
+ /String (xmlnode-nodevalue) ,
+(feColorMatrix) /UnicodeString (xmlnode-nodename) ,
+; ,
+/XMLNode :
+/Dictionary :
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(1) /UnicodeString (xmlnode-nodevalue) ,
+(stdDeviation) /UnicodeString (xmlnode-nodename) ,
+; (stdDeviation) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(c5) /UnicodeString (xmlnode-nodevalue) ,
+(result) /UnicodeString (xmlnode-nodename) ,
+; (result) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(c4) /UnicodeString (xmlnode-nodevalue) ,
+(in) /UnicodeString (xmlnode-nodename) ,
+; (in) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(c5) /UnicodeString (xmlnode-nodevalue) ,
+(id) /UnicodeString (xmlnode-nodename) ,
+; (id) ,
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+1 /Int (xmlnode-nodetype) ,
+ /String (xmlnode-nodevalue) ,
+(feGaussianBlur) /UnicodeString (xmlnode-nodename) ,
+; ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+/XMLNode :
+/Dictionary :
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(c5) /UnicodeString (xmlnode-nodevalue) ,
+(in) /UnicodeString (xmlnode-nodename) ,
+; (in) ,
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+1 /Int (xmlnode-nodetype) ,
+ /String (xmlnode-nodevalue) ,
+(feMergeNode) /UnicodeString (xmlnode-nodename) ,
+; ,
+/XMLNode :
+/Dictionary :
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(b5) /UnicodeString (xmlnode-nodevalue) ,
+(in) /UnicodeString (xmlnode-nodename) ,
+; (in) ,
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+1 /Int (xmlnode-nodetype) ,
+ /String (xmlnode-nodevalue) ,
+(feMergeNode) /UnicodeString (xmlnode-nodename) ,
+; ,
+/XMLNode :
+/Dictionary :
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(a) /UnicodeString (xmlnode-nodevalue) ,
+(in) /UnicodeString (xmlnode-nodename) ,
+; (in) ,
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+1 /Int (xmlnode-nodetype) ,
+ /String (xmlnode-nodevalue) ,
+(feMergeNode) /UnicodeString (xmlnode-nodename) ,
+; ,
+; (xmlnode-children) ,
+1 /Int (xmlnode-nodetype) ,
+ /String (xmlnode-nodevalue) ,
+(feMerge) /UnicodeString (xmlnode-nodename) ,
+; ,
+; (xmlnode-children) ,
+1 /Int (xmlnode-nodetype) ,
+ /String (xmlnode-nodevalue) ,
+(filter) /UnicodeString (xmlnode-nodename) ,
+; /Def ;
+/SVGFilter :
+/XMLNode :
+/Dictionary :
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(50 50) /UnicodeString (xmlnode-nodevalue) ,
+(filterRes) /UnicodeString (xmlnode-nodename) ,
+; (filterRes) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) ,
+(filterUnits) /UnicodeString (xmlnode-nodename) ,
+; (filterUnits) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(AI_Pixelspiel_1) /UnicodeString (xmlnode-nodevalue) ,
+(id) /String (xmlnode-nodename) ,
+; (id) ,
+; (xmlnode-attributes) ,
+/Array :
+/XMLNode :
+/Dictionary :
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(remove) /UnicodeString (xmlnode-nodevalue) ,
+(fill) /UnicodeString (xmlnode-nodename) ,
+; (fill) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(indefinite) /UnicodeString (xmlnode-nodevalue) ,
+(repeatDur) /UnicodeString (xmlnode-nodename) ,
+; (repeatDur) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(none) /UnicodeString (xmlnode-nodevalue) ,
+(accumulate) /UnicodeString (xmlnode-nodename) ,
+; (accumulate) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(replace) /UnicodeString (xmlnode-nodevalue) ,
+(additive) /UnicodeString (xmlnode-nodename) ,
+; (additive) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(spline) /UnicodeString (xmlnode-nodevalue) ,
+(calcMode) /UnicodeString (xmlnode-nodename) ,
+; (calcMode) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(filterRes) /UnicodeString (xmlnode-nodevalue) ,
+(attributeName) /UnicodeString (xmlnode-nodename) ,
+; (attributeName) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(10s) /UnicodeString (xmlnode-nodevalue) ,
+(dur) /UnicodeString (xmlnode-nodename) ,
+; (dur) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(always) /UnicodeString (xmlnode-nodevalue) ,
+(restart) /UnicodeString (xmlnode-nodename) ,
+; (restart) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(0s) /UnicodeString (xmlnode-nodevalue) ,
+(begin) /UnicodeString (xmlnode-nodename) ,
+; (begin) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(1 1;20 15;200 200; 15 20;1 1 ) /UnicodeString (xmlnode-nodevalue) ,
+(values) /UnicodeString (xmlnode-nodename) ,
+; (values) ,
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+1 /Int (xmlnode-nodetype) ,
+ /String (xmlnode-nodevalue) ,
+(animate) /UnicodeString (xmlnode-nodename) ,
+; ,
+/XMLNode :
+/Dictionary :
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(7) /UnicodeString (xmlnode-nodevalue) ,
+(stdDeviation) /UnicodeString (xmlnode-nodename) ,
+; (stdDeviation) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(blur) /UnicodeString (xmlnode-nodevalue) ,
+(result) /UnicodeString (xmlnode-nodename) ,
+; (result) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(SourceAlpha) /UnicodeString (xmlnode-nodevalue) ,
+(in) /UnicodeString (xmlnode-nodename) ,
+; (in) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(blur) /UnicodeString (xmlnode-nodevalue) ,
+(id) /UnicodeString (xmlnode-nodename) ,
+; (id) ,
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+1 /Int (xmlnode-nodetype) ,
+ /String (xmlnode-nodevalue) ,
+(feGaussianBlur) /UnicodeString (xmlnode-nodename) ,
+; ,
+/XMLNode :
+/Dictionary :
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(in) /UnicodeString (xmlnode-nodevalue) ,
+(operator) /UnicodeString (xmlnode-nodename) ,
+; (operator) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(SourceGraphic) /UnicodeString (xmlnode-nodevalue) ,
+(in2) /UnicodeString (xmlnode-nodename) ,
+; (in2) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(compositeOut) /UnicodeString (xmlnode-nodevalue) ,
+(result) /UnicodeString (xmlnode-nodename) ,
+; (result) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(blur) /UnicodeString (xmlnode-nodevalue) ,
+(in) /UnicodeString (xmlnode-nodename) ,
+; (in) ,
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+1 /Int (xmlnode-nodetype) ,
+ /String (xmlnode-nodevalue) ,
+(feComposite) /UnicodeString (xmlnode-nodename) ,
+; ,
+/XMLNode :
+/Dictionary :
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(1) /UnicodeString (xmlnode-nodevalue) ,
+(k3) /UnicodeString (xmlnode-nodename) ,
+; (k3) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(0) /UnicodeString (xmlnode-nodevalue) ,
+(k4) /UnicodeString (xmlnode-nodename) ,
+; (k4) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(0) /UnicodeString (xmlnode-nodevalue) ,
+(k1) /UnicodeString (xmlnode-nodename) ,
+; (k1) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(1) /UnicodeString (xmlnode-nodevalue) ,
+(k2) /UnicodeString (xmlnode-nodename) ,
+; (k2) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(arithmetic) /UnicodeString (xmlnode-nodevalue) ,
+(operator) /UnicodeString (xmlnode-nodename) ,
+; (operator) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(SourceAlpha) /UnicodeString (xmlnode-nodevalue) ,
+(in2) /UnicodeString (xmlnode-nodename) ,
+; (in2) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(compositeOut1) /UnicodeString (xmlnode-nodevalue) ,
+(result) /UnicodeString (xmlnode-nodename) ,
+; (result) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(compositeOut) /UnicodeString (xmlnode-nodevalue) ,
+(in) /UnicodeString (xmlnode-nodename) ,
+; (in) ,
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+1 /Int (xmlnode-nodetype) ,
+ /String (xmlnode-nodevalue) ,
+(feComposite) /UnicodeString (xmlnode-nodename) ,
+; ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+/XMLNode :
+/Dictionary :
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(compositeOut1) /UnicodeString (xmlnode-nodevalue) ,
+(in) /UnicodeString (xmlnode-nodename) ,
+; (in) ,
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+1 /Int (xmlnode-nodetype) ,
+ /String (xmlnode-nodevalue) ,
+(feMergeNode) /UnicodeString (xmlnode-nodename) ,
+; ,
+; (xmlnode-children) ,
+1 /Int (xmlnode-nodetype) ,
+ /String (xmlnode-nodevalue) ,
+(feMerge) /UnicodeString (xmlnode-nodename) ,
+; ,
+; (xmlnode-children) ,
+1 /Int (xmlnode-nodetype) ,
+ /String (xmlnode-nodevalue) ,
+(filter) /UnicodeString (xmlnode-nodename) ,
+; /Def ;
+/SVGFilter :
+/XMLNode :
+/Dictionary :
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(50 50) /UnicodeString (xmlnode-nodevalue) ,
+(filterRes) /UnicodeString (xmlnode-nodename) ,
+; (filterRes) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) ,
+(filterUnits) /UnicodeString (xmlnode-nodename) ,
+; (filterUnits) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(AI_Pixelspiel_2) /UnicodeString (xmlnode-nodevalue) ,
+(id) /String (xmlnode-nodename) ,
+; (id) ,
+; (xmlnode-attributes) ,
+/Array :
+/XMLNode :
+/Dictionary :
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(remove) /UnicodeString (xmlnode-nodevalue) ,
+(fill) /UnicodeString (xmlnode-nodename) ,
+; (fill) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(indefinite) /UnicodeString (xmlnode-nodevalue) ,
+(repeatDur) /UnicodeString (xmlnode-nodename) ,
+; (repeatDur) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(none) /UnicodeString (xmlnode-nodevalue) ,
+(accumulate) /UnicodeString (xmlnode-nodename) ,
+; (accumulate) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(replace) /UnicodeString (xmlnode-nodevalue) ,
+(additive) /UnicodeString (xmlnode-nodename) ,
+; (additive) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(linear) /UnicodeString (xmlnode-nodevalue) ,
+(calcMode) /UnicodeString (xmlnode-nodename) ,
+; (calcMode) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(filterRes) /UnicodeString (xmlnode-nodevalue) ,
+(attributeName) /UnicodeString (xmlnode-nodename) ,
+; (attributeName) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(10s) /UnicodeString (xmlnode-nodevalue) ,
+(dur) /UnicodeString (xmlnode-nodename) ,
+; (dur) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(always) /UnicodeString (xmlnode-nodevalue) ,
+(restart) /UnicodeString (xmlnode-nodename) ,
+; (restart) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(0s) /UnicodeString (xmlnode-nodevalue) ,
+(begin) /UnicodeString (xmlnode-nodename) ,
+; (begin) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(50 50;20 20;50 50) /UnicodeString (xmlnode-nodevalue) ,
+(values) /UnicodeString (xmlnode-nodename) ,
+; (values) ,
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+1 /Int (xmlnode-nodetype) ,
+ /String (xmlnode-nodevalue) ,
+(animate) /UnicodeString (xmlnode-nodename) ,
+; ,
+/XMLNode :
+/Dictionary :
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(7) /UnicodeString (xmlnode-nodevalue) ,
+(stdDeviation) /UnicodeString (xmlnode-nodename) ,
+; (stdDeviation) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(blur) /UnicodeString (xmlnode-nodevalue) ,
+(result) /UnicodeString (xmlnode-nodename) ,
+; (result) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(SourceAlpha) /UnicodeString (xmlnode-nodevalue) ,
+(in) /UnicodeString (xmlnode-nodename) ,
+; (in) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(blur) /UnicodeString (xmlnode-nodevalue) ,
+(id) /UnicodeString (xmlnode-nodename) ,
+; (id) ,
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+1 /Int (xmlnode-nodetype) ,
+ /String (xmlnode-nodevalue) ,
+(feGaussianBlur) /UnicodeString (xmlnode-nodename) ,
+; ,
+/XMLNode :
+/Dictionary :
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(yellow) /UnicodeString (xmlnode-nodevalue) ,
+(lighting-color) /UnicodeString (xmlnode-nodename) ,
+; (lighting-color) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(1) /UnicodeString (xmlnode-nodevalue) ,
+(diffuseConstant) /UnicodeString (xmlnode-nodename) ,
+; (diffuseConstant) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(1) /UnicodeString (xmlnode-nodevalue) ,
+(resultScale) /UnicodeString (xmlnode-nodename) ,
+; (resultScale) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(5) /UnicodeString (xmlnode-nodevalue) ,
+(surfaceScale) /UnicodeString (xmlnode-nodename) ,
+; (surfaceScale) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(diffuse) /UnicodeString (xmlnode-nodevalue) ,
+(result) /UnicodeString (xmlnode-nodename) ,
+; (result) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(blur) /UnicodeString (xmlnode-nodevalue) ,
+(in) /UnicodeString (xmlnode-nodename) ,
+; (in) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(diffuse) /UnicodeString (xmlnode-nodevalue) ,
+(id) /UnicodeString (xmlnode-nodename) ,
+; (id) ,
+; (xmlnode-attributes) ,
+/Array :
+/XMLNode :
+/Dictionary :
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(remove) /UnicodeString (xmlnode-nodevalue) ,
+(fill) /UnicodeString (xmlnode-nodename) ,
+; (fill) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(indefinite) /UnicodeString (xmlnode-nodevalue) ,
+(repeatDur) /UnicodeString (xmlnode-nodename) ,
+; (repeatDur) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(none) /UnicodeString (xmlnode-nodevalue) ,
+(accumulate) /UnicodeString (xmlnode-nodename) ,
+; (accumulate) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(replace) /UnicodeString (xmlnode-nodevalue) ,
+(additive) /UnicodeString (xmlnode-nodename) ,
+; (additive) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(linear) /UnicodeString (xmlnode-nodevalue) ,
+(calcMode) /UnicodeString (xmlnode-nodename) ,
+; (calcMode) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(lighting-color) /UnicodeString (xmlnode-nodevalue) ,
+(attributeName) /UnicodeString (xmlnode-nodename) ,
+; (attributeName) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(15s) /UnicodeString (xmlnode-nodevalue) ,
+(dur) /UnicodeString (xmlnode-nodename) ,
+; (dur) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(always) /UnicodeString (xmlnode-nodevalue) ,
+(restart) /UnicodeString (xmlnode-nodename) ,
+; (restart) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(0s) /UnicodeString (xmlnode-nodevalue) ,
+(begin) /UnicodeString (xmlnode-nodename) ,
+; (begin) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(yellow;green;blue;indigo;violet;red;orange) /UnicodeString (xmlnode-nodevalue) ,
+(values) /UnicodeString (xmlnode-nodename) ,
+; (values) ,
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+1 /Int (xmlnode-nodetype) ,
+ /String (xmlnode-nodevalue) ,
+(animate) /UnicodeString (xmlnode-nodename) ,
+; ,
+/XMLNode :
+/Dictionary :
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(60) /UnicodeString (xmlnode-nodevalue) ,
+(elevation) /UnicodeString (xmlnode-nodename) ,
+; (elevation) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(180) /UnicodeString (xmlnode-nodevalue) ,
+(azimuth) /UnicodeString (xmlnode-nodename) ,
+; (azimuth) ,
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+1 /Int (xmlnode-nodetype) ,
+ /String (xmlnode-nodevalue) ,
+(feDistantLight) /UnicodeString (xmlnode-nodename) ,
+; ,
+; (xmlnode-children) ,
+1 /Int (xmlnode-nodetype) ,
+ /String (xmlnode-nodevalue) ,
+(feDiffuseLighting) /UnicodeString (xmlnode-nodename) ,
+; ,
+/XMLNode :
+/Dictionary :
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(10) /UnicodeString (xmlnode-nodevalue) ,
+(specularConstant) /UnicodeString (xmlnode-nodename) ,
+; (specularConstant) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(15) /UnicodeString (xmlnode-nodevalue) ,
+(specularExponent) /UnicodeString (xmlnode-nodename) ,
+; (specularExponent) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(red) /UnicodeString (xmlnode-nodevalue) ,
+(lighting-color) /UnicodeString (xmlnode-nodename) ,
+; (lighting-color) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(15) /UnicodeString (xmlnode-nodevalue) ,
+(surfaceScale) /UnicodeString (xmlnode-nodename) ,
+; (surfaceScale) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(specularOut) /UnicodeString (xmlnode-nodevalue) ,
+(result) /UnicodeString (xmlnode-nodename) ,
+; (result) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(blur) /UnicodeString (xmlnode-nodevalue) ,
+(in) /UnicodeString (xmlnode-nodename) ,
+; (in) ,
+; (xmlnode-attributes) ,
+/Array :
+/XMLNode :
+/Dictionary :
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(remove) /UnicodeString (xmlnode-nodevalue) ,
+(fill) /UnicodeString (xmlnode-nodename) ,
+; (fill) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(indefinite) /UnicodeString (xmlnode-nodevalue) ,
+(repeatDur) /UnicodeString (xmlnode-nodename) ,
+; (repeatDur) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(none) /UnicodeString (xmlnode-nodevalue) ,
+(accumulate) /UnicodeString (xmlnode-nodename) ,
+; (accumulate) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(replace) /UnicodeString (xmlnode-nodevalue) ,
+(additive) /UnicodeString (xmlnode-nodename) ,
+; (additive) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(linear) /UnicodeString (xmlnode-nodevalue) ,
+(calcMode) /UnicodeString (xmlnode-nodename) ,
+; (calcMode) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(lighting-color) /UnicodeString (xmlnode-nodevalue) ,
+(attributeName) /UnicodeString (xmlnode-nodename) ,
+; (attributeName) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(15s) /UnicodeString (xmlnode-nodevalue) ,
+(dur) /UnicodeString (xmlnode-nodename) ,
+; (dur) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(always) /UnicodeString (xmlnode-nodevalue) ,
+(restart) /UnicodeString (xmlnode-nodename) ,
+; (restart) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(0s) /UnicodeString (xmlnode-nodevalue) ,
+(begin) /UnicodeString (xmlnode-nodename) ,
+; (begin) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(indigo;green;yellow;blue;violet;red;orange) /UnicodeString (xmlnode-nodevalue) ,
+(values) /UnicodeString (xmlnode-nodename) ,
+; (values) ,
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+1 /Int (xmlnode-nodetype) ,
+ /String (xmlnode-nodevalue) ,
+(animate) /UnicodeString (xmlnode-nodename) ,
+; ,
+/XMLNode :
+/Dictionary :
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(60) /UnicodeString (xmlnode-nodevalue) ,
+(elevation) /UnicodeString (xmlnode-nodename) ,
+; (elevation) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(180) /UnicodeString (xmlnode-nodevalue) ,
+(azimuth) /UnicodeString (xmlnode-nodename) ,
+; (azimuth) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(light) /UnicodeString (xmlnode-nodevalue) ,
+(id) /UnicodeString (xmlnode-nodename) ,
+; (id) ,
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+1 /Int (xmlnode-nodetype) ,
+ /String (xmlnode-nodevalue) ,
+(feDistantLight) /UnicodeString (xmlnode-nodename) ,
+; ,
+; (xmlnode-children) ,
+1 /Int (xmlnode-nodetype) ,
+ /String (xmlnode-nodevalue) ,
+(feSpecularLighting) /UnicodeString (xmlnode-nodename) ,
+; ,
+/XMLNode :
+/Dictionary :
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(in) /UnicodeString (xmlnode-nodevalue) ,
+(operator) /UnicodeString (xmlnode-nodename) ,
+; (operator) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(SourceAlpha) /UnicodeString (xmlnode-nodevalue) ,
+(in2) /UnicodeString (xmlnode-nodename) ,
+; (in2) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(specularOut) /UnicodeString (xmlnode-nodevalue) ,
+(result) /UnicodeString (xmlnode-nodename) ,
+; (result) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(specularOut) /UnicodeString (xmlnode-nodevalue) ,
+(in) /UnicodeString (xmlnode-nodename) ,
+; (in) ,
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+1 /Int (xmlnode-nodetype) ,
+ /String (xmlnode-nodevalue) ,
+(feComposite) /UnicodeString (xmlnode-nodename) ,
+; ,
+/XMLNode :
+/Dictionary :
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(0) /UnicodeString (xmlnode-nodevalue) ,
+(k3) /UnicodeString (xmlnode-nodename) ,
+; (k3) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(0) /UnicodeString (xmlnode-nodevalue) ,
+(k4) /UnicodeString (xmlnode-nodename) ,
+; (k4) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(1) /UnicodeString (xmlnode-nodevalue) ,
+(k1) /UnicodeString (xmlnode-nodename) ,
+; (k1) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(0) /UnicodeString (xmlnode-nodevalue) ,
+(k2) /UnicodeString (xmlnode-nodename) ,
+; (k2) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(arithmetic) /UnicodeString (xmlnode-nodevalue) ,
+(operator) /UnicodeString (xmlnode-nodename) ,
+; (operator) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(diffuse) /UnicodeString (xmlnode-nodevalue) ,
+(in2) /UnicodeString (xmlnode-nodename) ,
+; (in2) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(litPaint) /UnicodeString (xmlnode-nodevalue) ,
+(result) /UnicodeString (xmlnode-nodename) ,
+; (result) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(SourceGraphic) /UnicodeString (xmlnode-nodevalue) ,
+(in) /UnicodeString (xmlnode-nodename) ,
+; (in) ,
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+1 /Int (xmlnode-nodetype) ,
+ /String (xmlnode-nodevalue) ,
+(feComposite) /UnicodeString (xmlnode-nodename) ,
+; ,
+/XMLNode :
+/Dictionary :
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(1) /UnicodeString (xmlnode-nodevalue) ,
+(k3) /UnicodeString (xmlnode-nodename) ,
+; (k3) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(0) /UnicodeString (xmlnode-nodevalue) ,
+(k4) /UnicodeString (xmlnode-nodename) ,
+; (k4) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(0) /UnicodeString (xmlnode-nodevalue) ,
+(k1) /UnicodeString (xmlnode-nodename) ,
+; (k1) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(1) /UnicodeString (xmlnode-nodevalue) ,
+(k2) /UnicodeString (xmlnode-nodename) ,
+; (k2) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(arithmetic) /UnicodeString (xmlnode-nodevalue) ,
+(operator) /UnicodeString (xmlnode-nodename) ,
+; (operator) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(specularOut) /UnicodeString (xmlnode-nodevalue) ,
+(in2) /UnicodeString (xmlnode-nodename) ,
+; (in2) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(litPaint1) /UnicodeString (xmlnode-nodevalue) ,
+(result) /UnicodeString (xmlnode-nodename) ,
+; (result) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(litPaint) /UnicodeString (xmlnode-nodevalue) ,
+(in) /UnicodeString (xmlnode-nodename) ,
+; (in) ,
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+1 /Int (xmlnode-nodetype) ,
+ /String (xmlnode-nodevalue) ,
+(feComposite) /UnicodeString (xmlnode-nodename) ,
+; ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+/XMLNode :
+/Dictionary :
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(litPaint1) /UnicodeString (xmlnode-nodevalue) ,
+(in) /UnicodeString (xmlnode-nodename) ,
+; (in) ,
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+1 /Int (xmlnode-nodetype) ,
+ /String (xmlnode-nodevalue) ,
+(feMergeNode) /UnicodeString (xmlnode-nodename) ,
+; ,
+; (xmlnode-children) ,
+1 /Int (xmlnode-nodetype) ,
+ /String (xmlnode-nodevalue) ,
+(feMerge) /UnicodeString (xmlnode-nodename) ,
+; ,
+; (xmlnode-children) ,
+1 /Int (xmlnode-nodetype) ,
+ /String (xmlnode-nodevalue) ,
+(filter) /UnicodeString (xmlnode-nodename) ,
+; /Def ;
+/SVGFilter :
+/XMLNode :
+/Dictionary :
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) ,
+(filterUnits) /UnicodeString (xmlnode-nodename) ,
+; (filterUnits) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(AI_Schatten_1) /UnicodeString (xmlnode-nodevalue) ,
+(id) /String (xmlnode-nodename) ,
+; (id) ,
+; (xmlnode-attributes) ,
+/Array :
+/XMLNode :
+/Dictionary :
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(2) /UnicodeString (xmlnode-nodevalue) ,
+(stdDeviation) /UnicodeString (xmlnode-nodename) ,
+; (stdDeviation) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(blur) /UnicodeString (xmlnode-nodevalue) ,
+(result) /UnicodeString (xmlnode-nodename) ,
+; (result) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(SourceAlpha) /UnicodeString (xmlnode-nodevalue) ,
+(in) /UnicodeString (xmlnode-nodename) ,
+; (in) ,
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+1 /Int (xmlnode-nodetype) ,
+ /String (xmlnode-nodevalue) ,
+(feGaussianBlur) /UnicodeString (xmlnode-nodename) ,
+; ,
+/XMLNode :
+/Dictionary :
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(4) /UnicodeString (xmlnode-nodevalue) ,
+(dy) /UnicodeString (xmlnode-nodename) ,
+; (dy) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(4) /UnicodeString (xmlnode-nodevalue) ,
+(dx) /UnicodeString (xmlnode-nodename) ,
+; (dx) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) ,
+(result) /UnicodeString (xmlnode-nodename) ,
+; (result) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(blur) /UnicodeString (xmlnode-nodevalue) ,
+(in) /UnicodeString (xmlnode-nodename) ,
+; (in) ,
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+1 /Int (xmlnode-nodetype) ,
+ /String (xmlnode-nodevalue) ,
+(feOffset) /UnicodeString (xmlnode-nodename) ,
+; ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+/XMLNode :
+/Dictionary :
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) ,
+(in) /UnicodeString (xmlnode-nodename) ,
+; (in) ,
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+1 /Int (xmlnode-nodetype) ,
+ /String (xmlnode-nodevalue) ,
+(feMergeNode) /UnicodeString (xmlnode-nodename) ,
+; ,
+/XMLNode :
+/Dictionary :
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(SourceGraphic) /UnicodeString (xmlnode-nodevalue) ,
+(in) /UnicodeString (xmlnode-nodename) ,
+; (in) ,
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+1 /Int (xmlnode-nodetype) ,
+ /String (xmlnode-nodevalue) ,
+(feMergeNode) /UnicodeString (xmlnode-nodename) ,
+; ,
+; (xmlnode-children) ,
+1 /Int (xmlnode-nodetype) ,
+ /String (xmlnode-nodevalue) ,
+(feMerge) /UnicodeString (xmlnode-nodename) ,
+; ,
+; (xmlnode-children) ,
+1 /Int (xmlnode-nodetype) ,
+ /String (xmlnode-nodevalue) ,
+(filter) /UnicodeString (xmlnode-nodename) ,
+; /Def ;
+/SVGFilter :
+/XMLNode :
+/Dictionary :
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(140%) /UnicodeString (xmlnode-nodevalue) ,
+(width) /UnicodeString (xmlnode-nodename) ,
+; (width) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(130%) /UnicodeString (xmlnode-nodevalue) ,
+(height) /UnicodeString (xmlnode-nodename) ,
+; (height) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) ,
+(filterUnits) /UnicodeString (xmlnode-nodename) ,
+; (filterUnits) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(AI_Schatten_2) /UnicodeString (xmlnode-nodevalue) ,
+(id) /String (xmlnode-nodename) ,
+; (id) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(-15%) /UnicodeString (xmlnode-nodevalue) ,
+(y) /UnicodeString (xmlnode-nodename) ,
+; (y) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(-15%) /UnicodeString (xmlnode-nodevalue) ,
+(x) /UnicodeString (xmlnode-nodename) ,
+; (x) ,
+; (xmlnode-attributes) ,
+/Array :
+/XMLNode :
+/Dictionary :
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(6) /UnicodeString (xmlnode-nodevalue) ,
+(stdDeviation) /UnicodeString (xmlnode-nodename) ,
+; (stdDeviation) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(blur) /UnicodeString (xmlnode-nodevalue) ,
+(result) /UnicodeString (xmlnode-nodename) ,
+; (result) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(SourceAlpha) /UnicodeString (xmlnode-nodevalue) ,
+(in) /UnicodeString (xmlnode-nodename) ,
+; (in) ,
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+1 /Int (xmlnode-nodetype) ,
+ /String (xmlnode-nodevalue) ,
+(feGaussianBlur) /UnicodeString (xmlnode-nodename) ,
+; ,
+/XMLNode :
+/Dictionary :
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(8) /UnicodeString (xmlnode-nodevalue) ,
+(dy) /UnicodeString (xmlnode-nodename) ,
+; (dy) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(8) /UnicodeString (xmlnode-nodevalue) ,
+(dx) /UnicodeString (xmlnode-nodename) ,
+; (dx) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) ,
+(result) /UnicodeString (xmlnode-nodename) ,
+; (result) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(blur) /UnicodeString (xmlnode-nodevalue) ,
+(in) /UnicodeString (xmlnode-nodename) ,
+; (in) ,
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+1 /Int (xmlnode-nodetype) ,
+ /String (xmlnode-nodevalue) ,
+(feOffset) /UnicodeString (xmlnode-nodename) ,
+; ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+/XMLNode :
+/Dictionary :
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) ,
+(in) /UnicodeString (xmlnode-nodename) ,
+; (in) ,
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+1 /Int (xmlnode-nodetype) ,
+ /String (xmlnode-nodevalue) ,
+(feMergeNode) /UnicodeString (xmlnode-nodename) ,
+; ,
+/XMLNode :
+/Dictionary :
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(SourceGraphic) /UnicodeString (xmlnode-nodevalue) ,
+(in) /UnicodeString (xmlnode-nodename) ,
+; (in) ,
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+1 /Int (xmlnode-nodetype) ,
+ /String (xmlnode-nodevalue) ,
+(feMergeNode) /UnicodeString (xmlnode-nodename) ,
+; ,
+; (xmlnode-children) ,
+1 /Int (xmlnode-nodetype) ,
+ /String (xmlnode-nodevalue) ,
+(feMerge) /UnicodeString (xmlnode-nodename) ,
+; ,
+; (xmlnode-children) ,
+1 /Int (xmlnode-nodetype) ,
+ /String (xmlnode-nodevalue) ,
+(filter) /UnicodeString (xmlnode-nodename) ,
+; /Def ;
+/SVGFilter :
+/XMLNode :
+/Dictionary :
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) ,
+(filterUnits) /UnicodeString (xmlnode-nodename) ,
+; (filterUnits) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(AI_Statisch) /UnicodeString (xmlnode-nodevalue) ,
+(id) /String (xmlnode-nodename) ,
+; (id) ,
+; (xmlnode-attributes) ,
+/Array :
+/XMLNode :
+/Dictionary :
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(fractalNoise) /UnicodeString (xmlnode-nodevalue) ,
+(type) /UnicodeString (xmlnode-nodename) ,
+; (type) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(10) /UnicodeString (xmlnode-nodevalue) ,
+(numOctaves) /UnicodeString (xmlnode-nodename) ,
+; (numOctaves) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(0.5) /UnicodeString (xmlnode-nodevalue) ,
+(baseFrequency) /UnicodeString (xmlnode-nodename) ,
+; (baseFrequency) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(noStitch) /UnicodeString (xmlnode-nodevalue) ,
+(stitchTiles) /UnicodeString (xmlnode-nodename) ,
+; (stitchTiles) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(c2) /UnicodeString (xmlnode-nodevalue) ,
+(result) /UnicodeString (xmlnode-nodename) ,
+; (result) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(c1) /UnicodeString (xmlnode-nodevalue) ,
+(in) /UnicodeString (xmlnode-nodename) ,
+; (in) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(c2) /UnicodeString (xmlnode-nodevalue) ,
+(id) /UnicodeString (xmlnode-nodename) ,
+; (id) ,
+; (xmlnode-attributes) ,
+/Array :
+/XMLNode :
+/Dictionary :
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(remove) /UnicodeString (xmlnode-nodevalue) ,
+(fill) /UnicodeString (xmlnode-nodename) ,
+; (fill) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(indefinite) /UnicodeString (xmlnode-nodevalue) ,
+(repeatDur) /UnicodeString (xmlnode-nodename) ,
+; (repeatDur) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(none) /UnicodeString (xmlnode-nodevalue) ,
+(accumulate) /UnicodeString (xmlnode-nodename) ,
+; (accumulate) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(replace) /UnicodeString (xmlnode-nodevalue) ,
+(additive) /UnicodeString (xmlnode-nodename) ,
+; (additive) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(linear) /UnicodeString (xmlnode-nodevalue) ,
+(calcMode) /UnicodeString (xmlnode-nodename) ,
+; (calcMode) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(baseFrequency) /UnicodeString (xmlnode-nodevalue) ,
+(attributeName) /UnicodeString (xmlnode-nodename) ,
+; (attributeName) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(5s) /UnicodeString (xmlnode-nodevalue) ,
+(dur) /UnicodeString (xmlnode-nodename) ,
+; (dur) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(always) /UnicodeString (xmlnode-nodevalue) ,
+(restart) /UnicodeString (xmlnode-nodename) ,
+; (restart) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(0.7) /UnicodeString (xmlnode-nodevalue) ,
+(to) /UnicodeString (xmlnode-nodename) ,
+; (to) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(0.5) /UnicodeString (xmlnode-nodevalue) ,
+(from) /UnicodeString (xmlnode-nodename) ,
+; (from) ,
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+1 /Int (xmlnode-nodetype) ,
+ /String (xmlnode-nodevalue) ,
+(animate) /UnicodeString (xmlnode-nodename) ,
+; ,
+; (xmlnode-children) ,
+1 /Int (xmlnode-nodetype) ,
+ /String (xmlnode-nodevalue) ,
+(feTurbulence) /UnicodeString (xmlnode-nodename) ,
+; ,
+/XMLNode :
+/Dictionary :
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(in) /UnicodeString (xmlnode-nodevalue) ,
+(operator) /UnicodeString (xmlnode-nodename) ,
+; (operator) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(SourceAlpha) /UnicodeString (xmlnode-nodevalue) ,
+(in2) /UnicodeString (xmlnode-nodename) ,
+; (in2) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(c2) /UnicodeString (xmlnode-nodevalue) ,
+(in) /UnicodeString (xmlnode-nodename) ,
+; (in) ,
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+1 /Int (xmlnode-nodetype) ,
+ /String (xmlnode-nodevalue) ,
+(feComposite) /UnicodeString (xmlnode-nodename) ,
+; ,
+; (xmlnode-children) ,
+1 /Int (xmlnode-nodetype) ,
+ /String (xmlnode-nodevalue) ,
+(filter) /UnicodeString (xmlnode-nodename) ,
+; /Def ;
+/SVGFilter :
+/XMLNode :
+/Dictionary :
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(100%) /UnicodeString (xmlnode-nodevalue) ,
+(width) /UnicodeString (xmlnode-nodename) ,
+; (width) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(100%) /UnicodeString (xmlnode-nodevalue) ,
+(height) /UnicodeString (xmlnode-nodename) ,
+; (height) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) ,
+(filterUnits) /UnicodeString (xmlnode-nodename) ,
+; (filterUnits) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(AI_Verwirbelung_3) /UnicodeString (xmlnode-nodevalue) ,
+(id) /String (xmlnode-nodename) ,
+; (id) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(0%) /UnicodeString (xmlnode-nodevalue) ,
+(y) /UnicodeString (xmlnode-nodename) ,
+; (y) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(0%) /UnicodeString (xmlnode-nodevalue) ,
+(x) /UnicodeString (xmlnode-nodename) ,
+; (x) ,
+; (xmlnode-attributes) ,
+/Array :
+/XMLNode :
+/Dictionary :
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(turbulence) /UnicodeString (xmlnode-nodevalue) ,
+(type) /UnicodeString (xmlnode-nodename) ,
+; (type) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(8) /UnicodeString (xmlnode-nodevalue) ,
+(numOctaves) /UnicodeString (xmlnode-nodename) ,
+; (numOctaves) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(0.05) /UnicodeString (xmlnode-nodevalue) ,
+(baseFrequency) /UnicodeString (xmlnode-nodename) ,
+; (baseFrequency) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(noStitch) /UnicodeString (xmlnode-nodevalue) ,
+(stitchTiles) /UnicodeString (xmlnode-nodename) ,
+; (stitchTiles) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(turb) /UnicodeString (xmlnode-nodevalue) ,
+(result) /UnicodeString (xmlnode-nodename) ,
+; (result) ,
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+1 /Int (xmlnode-nodetype) ,
+ /String (xmlnode-nodevalue) ,
+(feTurbulence) /UnicodeString (xmlnode-nodename) ,
+; ,
+/XMLNode :
+/Dictionary :
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(in) /UnicodeString (xmlnode-nodevalue) ,
+(operator) /UnicodeString (xmlnode-nodename) ,
+; (operator) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(SourceAlpha) /UnicodeString (xmlnode-nodevalue) ,
+(in2) /UnicodeString (xmlnode-nodename) ,
+; (in2) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(turb) /UnicodeString (xmlnode-nodevalue) ,
+(in) /UnicodeString (xmlnode-nodename) ,
+; (in) ,
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+1 /Int (xmlnode-nodetype) ,
+ /String (xmlnode-nodevalue) ,
+(feComposite) /UnicodeString (xmlnode-nodename) ,
+; ,
+; (xmlnode-children) ,
+1 /Int (xmlnode-nodetype) ,
+ /String (xmlnode-nodevalue) ,
+(filter) /UnicodeString (xmlnode-nodename) ,
+; /Def ;
+/SVGFilter :
+/XMLNode :
+/Dictionary :
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(100%) /UnicodeString (xmlnode-nodevalue) ,
+(width) /UnicodeString (xmlnode-nodename) ,
+; (width) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(100%) /UnicodeString (xmlnode-nodevalue) ,
+(height) /UnicodeString (xmlnode-nodename) ,
+; (height) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) ,
+(filterUnits) /UnicodeString (xmlnode-nodename) ,
+; (filterUnits) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(AI_Verwirbelung_5) /UnicodeString (xmlnode-nodevalue) ,
+(id) /String (xmlnode-nodename) ,
+; (id) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(0%) /UnicodeString (xmlnode-nodevalue) ,
+(y) /UnicodeString (xmlnode-nodename) ,
+; (y) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(0%) /UnicodeString (xmlnode-nodevalue) ,
+(x) /UnicodeString (xmlnode-nodename) ,
+; (x) ,
+; (xmlnode-attributes) ,
+/Array :
+/XMLNode :
+/Dictionary :
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(fractalNoise) /UnicodeString (xmlnode-nodevalue) ,
+(type) /UnicodeString (xmlnode-nodename) ,
+; (type) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(4) /UnicodeString (xmlnode-nodevalue) ,
+(numOctaves) /UnicodeString (xmlnode-nodename) ,
+; (numOctaves) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(0.4) /UnicodeString (xmlnode-nodevalue) ,
+(baseFrequency) /UnicodeString (xmlnode-nodename) ,
+; (baseFrequency) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(noStitch) /UnicodeString (xmlnode-nodevalue) ,
+(stitchTiles) /UnicodeString (xmlnode-nodename) ,
+; (stitchTiles) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(turb) /UnicodeString (xmlnode-nodevalue) ,
+(result) /UnicodeString (xmlnode-nodename) ,
+; (result) ,
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+1 /Int (xmlnode-nodetype) ,
+ /String (xmlnode-nodevalue) ,
+(feTurbulence) /UnicodeString (xmlnode-nodename) ,
+; ,
+/XMLNode :
+/Dictionary :
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(in) /UnicodeString (xmlnode-nodevalue) ,
+(operator) /UnicodeString (xmlnode-nodename) ,
+; (operator) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(SourceAlpha) /UnicodeString (xmlnode-nodevalue) ,
+(in2) /UnicodeString (xmlnode-nodename) ,
+; (in2) ,
+/XMLNode :
+/Dictionary :
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+2 /Int (xmlnode-nodetype) ,
+(turb) /UnicodeString (xmlnode-nodevalue) ,
+(in) /UnicodeString (xmlnode-nodename) ,
+; (in) ,
+; (xmlnode-attributes) ,
+/Array :
+; (xmlnode-children) ,
+1 /Int (xmlnode-nodetype) ,
+ /String (xmlnode-nodevalue) ,
+(feComposite) /UnicodeString (xmlnode-nodename) ,
+; ,
+; (xmlnode-children) ,
+1 /Int (xmlnode-nodetype) ,
+ /String (xmlnode-nodevalue) ,
+(filter) /UnicodeString (xmlnode-nodename) ,
+; /Def ;
+%AI10_EndSVGFilter
+%AI5_End_NonPrinting--
+%AI5_Begin_NonPrinting
+Np
+%AI14_BeginSymbol
+(Band)
0 A
+0 Xw
+u
+u
+0 R
+0.743221 0.648188 0.629023 0.813504 0.113725 0.113725 0.105882 XA
+0 1 0 0 0 Xy
+0 J 0 j 0.25 w 4 M []0 d
0 XR
+-0.42334 -31.8975 m
+4.87061 -31.9658 5.97314 -18.1826 8.73291 -16.7441 c
+11.8765 -15.1064 24.7114 -21.1904 27.8599 -15.5557 c
+30.6411 -10.5781 18.8638 -3.11133 18.8462 0.030273 c
+18.8286 3.30273 30.4067 11.1465 27.645 15.9443 c
+24.8657 20.7705 12.2778 14.6582 9.19971 16.3799 c
+6.23877 18.0342 5.10596 31.9492 -0.256348 31.8984 c
+-5.50293 31.8496 -6.28662 17.9482 -9.00049 16.4707 c
+-12.0151 14.8291 -24.7808 21.0078 -27.8267 15.5566 c
+-30.7314 10.3574 -18.8931 2.71582 -18.8027 -0.560547 c
+-18.7183 -3.60156 -30.3389 -11.0625 -27.8315 -15.5605 c
+-25.0493 -20.5498 -12.3228 -14.7246 -9.16309 -16.4902 c
+-6.33252 -18.0723 -5.55518 -31.832 -0.42334 -31.8975 c
+s
+%_/ArtDictionary :
+%_(0.509492) /String (BBAccumRotation) ,
+%_(ALL) /String (ShapeBlendMat
+endstream
endobj
101 0 obj
<>stream
+chToBefore) ,
+%_(K) /String (ShapeBlendPathType) ,
+%_(B) /String (ShapeBlendPathID) ,
+%_;
+%_
+1.39502 -31.4248 m
+6.63721 -31.1768 6.93018 -17.5137 9.58252 -15.9063 c
+12.5522 -14.1064 25.5288 -19.4097 28.3091 -13.7988 c
+30.7876 -8.79736 18.7622 -2.06738 18.5825 1.02686 c
+18.3843 4.27148 29.3618 12.6611 26.3013 17.2646 c
+23.2534 21.8779 11.2153 15.1289 8.11475 16.6494 c
+5.14502 18.1104 3.30811 31.7861 -1.95654 31.4463 c
+-7.17627 31.1094 -7.21436 17.3076 -9.83301 15.6592 c
+-12.6782 13.8682 -25.5645 19.291 -28.2793 13.875 c
+-30.8687 8.66504 -18.8301 1.74902 -18.5742 -1.46826 c
+-18.3315 -4.52197 -29.2939 -12.5601 -26.4678 -16.9272 c
+-23.4106 -21.6514 -11.3047 -15.1958 -8.14209 -16.752 c
+-5.26709 -18.1665 -3.69971 -31.6733 1.39502 -31.4248 c
+s
+3.21338 -30.9521 m
+8.40381 -30.3882 7.88721 -16.8481 10.4321 -15.0674 c
+13.228 -13.1113 26.3433 -17.6265 28.7573 -12.0415 c
+30.9312 -7.01367 18.6675 -1.02197 18.3179 2.02344 c
+17.9487 5.24023 28.3062 14.168 24.9585 18.585 c
+21.6304 22.9756 10.1528 15.5996 7.03076 16.9189 c
+4.05225 18.1865 1.51025 31.6201 -3.65771 30.9951 c
+-8.8501 30.3672 -8.14209 16.6709 -10.6646 14.8467 c
+-13.3403 12.9111 -26.3638 17.5811 -28.731 12.1934 c
+-31.021 6.98047 -18.7612 0.781738 -18.3452 -2.37695 c
+-17.9414 -5.44385 -28.2573 -14.0591 -25.1035 -18.2935 c
+-21.7817 -22.7539 -10.2847 -15.6641 -7.12012 -17.0137 c
+-4.19971 -18.2588 -1.84375 -31.5156 3.21338 -30.9521 c
+s
+5.03271 -30.4795 m
+10.1704 -29.5991 8.84619 -16.187 11.2817 -14.2295 c
+13.9048 -12.1211 27.1548 -15.8408 29.2056 -10.2847 c
+31.0718 -5.22754 18.5688 0.023438 18.0542 3.02051 c
+17.5063 6.20996 27.2593 15.6787 23.6147 19.9053 c
+20.0151 24.0791 9.08838 16.0635 5.9458 17.1875 c
+2.95654 18.2568 -0.290039 31.4492 -5.35791 30.543 c
+-10.5259 29.6191 -9.07178 16.04 -11.4976 14.0352 c
+-14.0063 11.9619 -27.1538 15.8662 -29.1841 10.5127 c
+-31.165 5.29004 -18.6895 -0.186523 -18.1167 -3.28418 c
+-17.5469 -6.3667 -27.2295 -15.5605 -23.7397 -19.6602 c
+-20.1641 -23.8608 -9.26221 -16.1313 -6.09912 -17.2754 c
+-3.12939 -18.3496 0.01123 -31.3564 5.03271 -30.4795 c
+s
+6.85107 -30.0073 m
+11.937 -28.8105 9.80615 -15.5293 12.1313 -13.3911 c
+14.5854 -11.1348 27.9644 -14.0532 29.6548 -8.52734 c
+31.2114 -3.44043 18.4683 1.06836 17.7905 4.01758 c
+17.064 7.17871 26.2144 17.1914 22.272 21.2256 c
+18.4028 25.1846 8.02588 16.5322 4.86182 17.4561 c
+1.86279 18.332 -2.08984 31.2734 -7.05908 30.0908 c
+-12.2002 28.8672 -10.0034 15.4131 -12.3296 13.2236 c
+-14.6738 11.0176 -27.9399 14.1484 -29.6362 8.83105 c
+-31.3057 3.59766 -18.6128 -1.1543 -17.8877 -4.19238 c
+-17.1489 -7.28809 -26.2095 -17.0659 -22.3755 -21.0264 c
+-18.5542 -24.9736 -8.23828 -16.5942 -5.07764 -17.5371 c
+-2.05908 -18.4375 1.8667 -31.1982 6.85107 -30.0073 c
+s
+8.66943 -29.5347 m
+13.7036 -28.0215 10.769 -14.875 12.981 -12.5527 c
+15.2681 -10.1519 28.77 -12.2632 30.104 -6.77051 c
+31.3472 -1.65186 18.3657 2.11328 17.5259 5.01465 c
+16.6187 8.14746 25.1704 18.7061 20.9282 22.5459 c
+16.7915 26.29 6.9624 17.0029 3.77686 17.7256 c
+0.770508 18.4072 -3.88867 31.0938 -8.75928 29.6396 c
+-13.875 28.1123 -10.938 14.79 -13.1616 12.4111 c
+-15.3447 10.0762 -28.7241 12.4307 -30.0884 7.14941 c
+-31.4434 1.9043 -18.5332 -2.12158 -17.6597 -5.10059 c
+-16.7476 -8.20996 -25.1978 -18.5791 -21.0122 -22.3931 c
+-16.9517 -26.0933 -7.21289 -17.0547 -4.05615 -17.7988 c
+-0.986816 -18.5225 3.72217 -31.04 8.66943 -29.5347 c
+s
+10.4878 -29.0625 m
+15.4702 -27.2324 11.7349 -14.2236 13.8306 -11.7144 c
+15.9536 -9.17139 29.5708 -10.4731 30.5522 -5.01367 c
+31.479 0.137695 18.2622 3.1582 17.2622 6.01074 c
+16.1733 9.11621 24.1294 20.2217 19.5854 23.8662 c
+15.1812 27.3984 5.90186 17.4746 2.69189 17.9951 c
+-0.322754 18.4844 -5.68555 30.9092 -10.4595 29.1875 c
+-15.5479 27.3516 -11.8779 14.1699 -13.9941 11.5996 c
+-16.021 9.1377 -29.5059 10.7119 -30.541 5.46777 c
+-31.5786 0.210938 -18.4487 -3.08643 -17.4302 -6.0083 c
+-16.3418 -9.12988 -24.1909 -20.0991 -19.6479 -23.7598 c
+-15.355 -27.2188 -6.18701 -17.5117 -3.03467 -18.0605 c
+0.085449 -18.604 5.57861 -30.8813 10.4878 -29.0625 c
+s
+12.3071 -28.5894 m
+17.2368 -26.4429 12.7056 -13.5732 14.6792 -10.876 c
+16.6421 -8.19287 30.3667 -8.68262 31.0005 -3.25732 c
+31.606 1.92676 18.1587 4.20117 16.9985 7.00781 c
+15.7261 10.084 23.0874 21.7393 18.2417 25.1865 c
+13.5737 28.5078 4.83936 17.9521 1.60791 18.2646 c
+-1.41504 18.5664 -7.48047 30.7217 -12.1602 28.7354 c
+-17.2178 26.5879 -12.8223 13.5527 -14.8262 10.7881 c
+-16.7007 8.20215 -30.2842 8.99316 -30.9932 3.78613 c
+-31.7109 -1.48389 -18.3633 -4.05078 -17.2021 -6.9165 c
+-15.9336 -10.0474 -23.1885 -21.6284 -18.2842 -25.1265 c
+-13.7612 -28.3525 -5.16113 -17.9653 -2.01318 -18.3223 c
+1.15967 -18.6821 7.43408 -30.7231 12.3071 -28.5894 c
+s
+14.1255 -28.1172 m
+19.0034 -25.6543 13.6792 -12.9253 15.5288 -10.0376 c
+17.3364 -7.21533 31.1597 -6.89355 31.4497 -1.5 c
+31.73 3.71582 18.0493 5.24219 16.7339 8.00391 c
+15.2729 11.0488 22.0513 23.2666 16.8989 26.5068 c
+11.9692 29.627 3.77686 18.4229 0.522949 18.5332 c
+-2.5083 18.6426 -9.27344 30.5322 -13.8608 28.2842 c
+-18.8862 25.8213 -13.7705 12.9375 -15.6582 9.97559 c
+-17.3838 7.26758 -31.0591 7.27441 -31.4453 2.10547 c
+-31.8398 -3.17725 -18.2739 -5.0127 -16.9731 -7.82471 c
+-15.5215 -10.9634 -22.1895 -23.165 -16.9204 -26.4927 c
+-12.1699 -29.4927 -4.13574 -18.4155 -0.991699 -18.584 c
+2.23096 -18.7568 9.28955 -30.5649 14.1255 -28.1172 c
+s
+-31.8979 0.423828 m
+-31.9663 -4.87012 -18.1831 -5.97266 -16.7446 -8.73242 c
+-15.1069 -11.877 -21.1909 -24.7109 -15.5562 -27.8594 c
+-10.5786 -30.6406 -3.11182 -18.8633 0.029785 -18.8457 c
+3.30225 -18.8281 11.145 -30.4063 15.9438 -27.6445 c
+20.77 -24.8652 14.6577 -12.2773 16.3784 -9.19922 c
+18.0327 -6.23828 31.9487 -5.10547 31.8979 0.256836 c
+31.8491 5.50391 17.9478 6.28711 16.4702 9.00098 c
+14.8286 12.0166 21.0073 24.7813 15.5552 27.8271 c
+10.3569 30.7334 2.71436 18.8936 -0.561523 18.8027 c
+-3.60205 18.7188 -11.0635 30.3398 -15.5615 27.832 c
+-20.5503 25.0498 -14.7251 12.3232 -16.4907 9.16406 c
+-18.0728 6.33301 -31.8325 5.55664 -31.8979 0.423828 c
+s
+%_/ArtDictionary :
+%_(2.080288) /String (BBAccumRotation) ,
+%_(ALL) /String (ShapeBlendMatchToAfter) ,
+%_(K) /String (ShapeBlendPathType) ,
+%_(A) /String (ShapeBlendPathID) ,
+%_;
+%_
+U
+0 1 0 1 0 Xy
+1 w
0 0 Xd
+6 () XW
+U
+%_/ArtDictionary :
+%_;
+%_
+9 () XW
+%AI10_EndSymbol
+%AI14_BeginSymbol
+(Gerbera)
0 A
+0 Xw
+u
+0 1 0 0 0 Xy
+0 J 0 j 1 w 4 M []0 d
0 XR
+-22.9814 23.0918 m
+23.0869 23.0918 L
+23.0869 -23.1484 L
+-22.9814 -23.1484 L
+-22.9814 23.0918 L
+n
+u
+0 O
+0.01529 0.77731 0.613703 0.000793 0.909804 0.337255 0.32549 Xa
+-15.7139 -6.50977 m
+-20.2578 -7.62598 -21.2402 -6.50195 Y
+-20.6367 -5.49707 -19.6787 -4.70801 -18.5508 -4.08789 C
+-16.125 -3.96582 -13.3047 -3.6377 -11.4512 -3.39355 C
+-12.916 -4.33398 -14.4395 -5.4873 -15.7139 -6.50977 C
+f
+23.0869 -1.17676 m
+20.4414 -1.67383 17.75 -1.7959 V
+16.7598 -0.983398 13.0898 -0.301758 10.1641 0.126953 C
+12.6641 0.158203 15.6621 1.24707 17.4707 2.01953 C
+19.6484 1.40039 24.2246 -0.06543 23.0869 -1.17676 C
+f
+0.010529 0.592309 0.518242 0.000092 0.933333 0.517647 0.439216 Xa
+7.04102 0.587891 m
+7.05469 0.69043 7.06641 0.793945 7.07324 0.897461 C
+7.1582 0.959961 L
+7.46484 0.717773 7.80859 0.525391 8.19922 0.397461 C
+7.86621 0.438477 7.56445 0.476563 7.30371 0.505859 C
+7.04102 0.587891 L
+f
+0.01529 0.77731 0.613703 0.000793 0.909804 0.337255 0.32549 Xa
+17.7891 -2.07129 m
+18.9648 -2.31348 21.1777 -2.93848 19.3105 -3.99121 C
+16.6006 -5.44824 14.0205 -5.25293 V
+12.1582 -3.99316 10.4531 -2.97266 10.2578 -2.85449 C
+13.4219 -2.97363 16.9766 -2.25 17.7891 -2.07129 C
+f
+8.00684 -6.40723 m
+7.21973 -5.61133 L
+10.3213 -7.62012 15.0313 -9.30078 17.1914 -10.0146 C
+18.041 -10.9932 19.7852 -13.2559 17.29 -12.7529 C
+15.2676 -12.2578 13.8457 -11.7061 V
+13.5645 -11.3193 13.3691 -11.0625 Y
+8.00684 -6.40723 L
+f
+0.014282 0.702541 0.579614 0.00119 0.917647 0.415686 0.368627 Xa
+-0.451172 -19.1201 m
+0.838867 -15.8408 0.922852 -12.1455 0.746094 -9.50586 C
+0.922852 -10.4248 L
+1.47461 -11.957 1.95703 -13.2256 2.37891 -14.2842 C
+1.8418 -17.6172 -0.050781 -28.1025 -1.44531 -20.3643 C
+-0.87793 -20.085 -0.451172 -19.1201 Y
+f
+0.01529 0.77731 0.613703 0.000793 0.909804 0.337255 0.32549 Xa
+-3.27344 -14.1943 m
+-3.25781 -15.1602 -3.19629 -16.0225 -3.11914 -16.7676 C
+-3.46875 -17.665 -4.04688 -18.4482 -4.99023 -18.4639 C
+-4.70313 -17.8193 -4.42188 -17.0713 -4.16406 -16.3057 C
+-3.27344 -14.1943 L
+f
+0.014282 0.702541 0.579614 0.00119 0.917647 0.415686 0.368627 Xa
+-7.0957 -17.874 m
+-6.66211 -17.5527 -5.06348 -13.4971 -3.77734 -10.0986 C
+-2.69141 -7.91797 L
+-3.09961 -9.87598 -3.25391 -11.7314 -3.27148 -13.3682 C
+-3.51172 -14.2393 -3.82031 -15.2881 -4.16406 -16.3057 c
+-4.42188 -17.0713 -4.70313 -17.8193 -4.99023 -18.4639 c
+-5.86133 -20.417 -6.80273 -21.418 -7.46289 -19.041 C
+-7.5957 -17.7646 L
+-7.50586 -17.585 L
+-7.29395 -17.8193 -7.0957 -17.874 Y
+f
+0.01529 0.77731 0.613703 0.000793 0.909804 0.337255 0.32549 Xa
+-9.00781 -5.44336 m
+-9.72461 -6.16895 -10.3086 -6.91211 -10.8008 -7.64551 C
+-13.8926 -10.6865 -18.5605 -14.9951 -17.3164 -12.0049 C
+-16.9219 -10.7217 -16.1123 -9.56738 V
+-14.21 -8.58105 -11.8115 -7.10742 -9.80664 -5.82715 C
+-9.00781 -5.44336 L
+f
+0.014282 0.702541 0.579614 0.00119 0.917647 0.415686 0.368627 Xa
+-16.8711 -1.46973 m
+-17.7715 -1.83984 -18.3477 -2.10742 Y
+-22.2119 -4.05273 -13.6797 -2.78809 -8.87109 -1.97852 C
+-9.66113 -2.31348 -10.543 -2.81055 -11.4512 -3.39355 C
+-13.3047 -3.6377 -16.125 -3.96582 -18.5508 -4.08789 c
+-22.543 -4.28809 -25.4375 -3.91211 -21.125 -1.6416 C
+-19.9023 -1.68652 -18.2852 -1.58887 -16.8711 -1.46973 C
+f
+0.010529 0.592309 0.518242 0.000092 0.933333 0.517647 0.439216 Xa
+-10.2598 0.666016 m
+-9.97266 0.658203 -9.70117 0.648438 -9.44727 0.644531 C
+-9.81836 0.611328 -10.2051 0.558594 -10.5977 0.490234 C
+-10.2598 0.666016 L
+f
+0.01529 0.77731 0.613703 0.000793 0.909804 0.337255 0.32549 Xa
+-10.2598 0.666016 m
+-10.5977 0.490234 L
+-12.8291 0.09375 -15.3291 -0.836914 -16.8711 -1.46973 C
+-18.2852 -1.58887 -19.9023 -1.68652 -21.125 -1.6416 c
+-23.0957 -1.57129 -24.0293 -1.1377 -21.3535 0.15918 C
+-19.0176 0.761719 -16.4473 1.18945 V
+-14.3574 0.859375 -12.0176 0.72168 -10.2598 0.666016 C
+f
+-11.0742 5.49121 m
+-11.0703 5.45508 -11.0645 5.41895 -11.0645 5.37988 C
+-12.7461 5.75781 -14.6699 5.9873 -16.3691 6.12598 C
+-20.71 7.70996 -25.6426 9.85645 -21.0781 10.0303 C
+-20.8164 9.98535 -20.3867 9.9043 V
+-19.084 9.24316 -17.3867 8.77344 -16.2539 8.50293 C
+-14.6387 7.44336 -12.71 6.3623 -11.0742 5.49121 C
+f
+0.014282 0.702541 0.579614 0.00119 0.917647 0.415686 0.368627 Xa
+-16.2539 8.50293 m
+-17.3867 8.77344 -19.084 9.24316 -20.3867 9.9043 c
+-21.3574 10.3975 -22.1055 10.9912 -22.2285 11.6836 C
+-20.9023 12.0576 -19.6094 11.7773 V
+-19.6309 10.9854 -18.1738 9.76465 -16.2539 8.50293 C
+f
+0.01529 0.77731 0.613703 0.000793 0.909804 0.337255 0.32549 Xa
+-15.1787 14.3545 m
+-18.3906 14.6943 -16.4688 12.6445 -13.4902 10.3525 C
+-13.5352 10.3447 -13.5723 10.3311 -13.6172 10.3232 C
+-22.3291 17.3193 -16.9551 15.7822 V
+-15.7813 15.292 -14.5107 14.5928 V
+-14.0508 14.1357 -13.5645 13.6807 -13.0996 13.2568 C
+-14.3203 13.9346 -15.1787 14.3545 Y
+f
+0.014282 0.702541 0.579614 0.00119 0.917647 0.415686 0.368627 Xa
+-6.62988 8.85645 m
+-8.45313 10.5479 -11.2109 12.21 -13.0996 13.2568 C
+-13.5645 13.6807 -14.0508 14.1357 -14.5107 14.5928 c
+-16.5859 16.6592 -18.0527 18.7119 -13.8496 17.2354 C
+-11.7578 15.6807 -9.82422 13.751 V
+-8.73828 12.0361 -7.56836 10.2822 -6.63867 8.91211 C
+-6.63672 8.89453 -6.62988 8.87402 -6.62988 8.85645 C
+f
+0.01529 0.77731 0.613703 0.000793 0.909804 0.337255 0.32549 Xa
+-0.939453 9.01855 m
+-1.24219 8.9873 -1.53711 8.92871 -1.82422 8.8623 C
+-2.51953 12.1738 -3.60938 14.6729 -4.6543 16.4463 C
+-5.64453 19.8721 -6.08203 22.9033 -4.27539 22.2646 C
+-3.95898 21.5615 -3.51172 20.4736 V
+-3.50781 17.1719 -1.78711 11.5791 -0.9375 9.01855 C
+-0.939453 9.01855 l
+f
+2.5332 8.50195 m
+4.48828 14.5791 4.71094 17.874 4.49219 19.623 C
+5.43164 21.1934 8.29688 25.6357 8.20215 21.3076 C
+7.93359 18.0361 7.16406 15.2324 V
+5.10156 12.6943 3.21289 9.5127 2.61133 8.47266 C
+2.58594 8.48145 2.55859 8.49121 2.5332 8.50195 C
+f
+0.014282 0.702541 0.579614 0.00119 0.917647 0.415686 0.368627 Xa
+9.19336 11.3242 m
+11.5527 14.7021 12.7754 18.0752 Y
+12.7549 18.0996 12.7324 18.1152 12.7129 18.1396 C
+14.5234 19.5459 17.9258 21.7617 15.3027 16.207 C
+13.666 15.1846 11.4648 13.2559 9.48828 11.3857 C
+9.19336 11.3242 L
+f
+0.01529 0.77731 0.613703 0.000793 0.909804 0.337255 0.32549 Xa
+17.9961 13.2959 m
+15.6357 10.5537 13.3594 9.40625 V
+15.2129 11.5254 16.5977 13.7021 17.2754 14.8545 C
+18.3672 15.2686 19.7227 15.5215 17.9961 13.2959 C
+f
+0.010529 0.592309 0.518242 0.000092 0.933333 0.517647 0.439216 Xa
+8.19922 0.397461 m
+7.80859 0.525391 7.46484 0.717773 7.1582 0.959961 c
+7.13184 0.981445 7.10449 0.995117 7.08008 1.0166 C
+7.10742 1.44336 7.10742 1.87598 7.06055 2.31348 c
+7.03711 2.54785 6.99805 2.78125 6.95313 3.00879 C
+16.1221 4.71094 L
+16.75 4.91797 17.3242 5.13574 17.8457 5.3623 C
+18.8652 5.35742 19.9453 5.32227 21.1172 5.22949 C
+22.6172 4.90332 19.0938 2.76172 V
+18.4541 2.43848 17.4707 2.01953 v
+15.6621 1.24707 12.6641 0.158203 10.1641 0.126953 C
+9.44531 0.232422 8.77539 0.322266 8.19922 0.397461 C
+f
+10.2578 -2.85449 m
+10.2441 -2.84766 10.2324 -2.83984 Y
+6.41406 -1.64746 L
+6.72461 -0.96582 6.93652 -0.231445 7.03418 0.539063 C
+7.11914 0.530273 7.20898 0.516602 7.30371 0.505859 c
+7.56445 0.476563 7.86621 0.438477 8.19922 0.397461 c
+8.77539 0.322266 9.44531 0.232422 10.1641 0.126953 c
+13.0898 -0.301758 16.7598 -0.983398 17.75 -1.7959 c
+17.8457 -1.87402 17.9229 -1.95215 17.9648 -2.03613 C
+17.9004 -2.0498 17.7891 -2.07129 v
+16.9766 -2.25 13.4219 -2.97363 10.2578 -2.85449 C
+f
+0.00885 0.504875 0.439429 0.000671 0.945098 0.596078 0.517647 Xa
+6.64648 -5.22266 m
+5.11133 -3.88965 L
+5.06934 -3.84473 5.02734 -3.80078 4.98926 -3.75293 C
+5.57813 -3.14551 6.05859 -2.43066 6.41406 -1.64746 C
+10.2324 -2.83984 L
+10.2441 -2.84766 10.2578 -2.85449 v
+10.4531 -2.97266 12.1582 -3.99316 14.0205 -5.25293 c
+17.0996 -7.33008 20.5918 -10.0508 18.3477 -10.3818 C
+17.9102 -10.2529 17.1914 -10.0146 v
+15.0313 -9.30078 10.3213 -7.62012 7.21973 -5.61133 c
+7.02344 -5.48438 6.83008 -5.35449 6.64648 -5.22266 C
+f
+0.010529 0.592309 0.518242 0.000092 0.933333 0.517647 0.439216 Xa
+4.97168 -3.77051 m
+5.11133 -3.88965 L
+6.64648 -5.22266 L
+8.00684 -6.40723 L
+13.3691 -11.0625 L
+13.5645 -11.3193 13.8457 -11.7061 v
+14.9102 -13.1689 17.2852 -16.6162 15.6914 -16.1445 C
+10.8838 -15.3545 7.77148 -10.5186 V
+4.18164 -4.46582 L
+4.46094 -4.25293 4.72852 -4.02246 4.97168 -3.77051 C
+f
+0.014282 0.702541 0.579614 0.00119 0.917647 0.415686 0.368627 Xa
+2.92188 -5.23926 m
+3.36914 -5.02539 3.79004 -4.76465 4.18164 -4.46582 C
+7.77148 -10.5186 L
+11.9043 -22.0254 8.44531 -18.5127 V
+6.65039 -17.2959 5.87305 -15.5918 V
+6.03711 -14.0361 3.9668 -8.10938 2.92188 -5.23926 C
+f
+0.010529 0.592309 0.518242 0.000092 0.933333 0.517647 0.439216 Xa
+0.746094 -9.50586 m
+0.604492 -7.40332 0.296875 -5.97266 Y
+0.089844 -5.9209 L
+0.263672 -5.91797 0.436523 -5.91406 0.615234 -5.89453 c
+1.32813 -5.82227 2.00586 -5.6377 2.63574 -5.37109 C
+2.74219 -5.75293 2.88281 -6.27441 3.04883 -6.89453 c
+3.75391 -9.9209 4.66602 -13.5625 5.04688 -15.0713 C
+5.47852 -17.1543 5.69922 -18.7441 5.38281 -18.833 C
+5.13477 -21.1543 2.37891 -14.2842 v
+1.95703 -13.2256 1.47461 -11.957 0.922852 -10.4248 C
+0.746094 -9.50586 L
+f
+0.00885 0.504875 0.439429 0.000671 0.945098 0.596078 0.517647 Xa
+-3.27148 -13.3682 m
+-3.25391 -11.7314 -3.09961 -9.87598 -2.69141 -7.91797 c
+-2.53711 -7.16895 -2.34375 -6.41016 -2.10938 -5.6416 C
+-1.4082 -5.84863 -0.669922 -5.94531 0.089844 -5.9209 C
+0.296875 -5.97266 L
+0.604492 -7.40332 0.746094 -9.50586 v
+0.922852 -12.1455 0.838867 -15.8408 -0.451172 -19.1201 C
+-0.87793 -20.085 -1.44531 -20.3643 v
+-1.82617 -20.5527 -2.26758 -20.4385 -2.68945 -19.5127 C
+-2.94531 -18.4668 -3.11914 -16.7676 v
+-3.19629 -16.0225 -3.25781 -15.1602 -3.27344 -14.1943 c
+-3.27734 -13.9277 -3.27344 -13.6475 -3.27148 -13.3682 c
+f
+0.010529 0.592309 0.518242 0.000092 0.933333 0.517647 0.439216 Xa
+-3.51367 -5.0625 m
+-3.07422 -5.30176 -2.60938 -5.49414 -2.125 -5.6377 C
+-2.34766 -6.25 -3.00391 -8.05273 -3.77734 -10.0986 c
+-5.06348 -13.4971 -6.66211 -17.5527 -7.0957 -17.874 C
+-7.29395 -17.8193 -7.50586 -17.585 v
+-8.00195 -17.041 -8.57715 -15.5225 -6.95508 -11.4072 C
+-6.69336 -10.6318 -6.27539 -9.61621 V
+-5.20117 -7.82813 -4.30078 -6.20117 -3.81641 -5.30566 C
+-3.71484 -5.21094 -3.61523 -5.13184 -3.51367 -5.0625 C
+f
+-5.14063 -3.93457 m
+-5.12305 -3.9248 -5.10547 -3.91699 -5.08789 -3.90332 C
+-4.65039 -4.32422 -4.16797 -4.69043 -3.64453 -4.99023 C
+-3.69336 -5.08105 -3.75195 -5.18652 -3.81641 -5.30566 c
+-4.30078 -6.20117 -5.20117 -7.82813 -6.27539 -9.61621 c
+-8.60938 -13.4951 -11.752 -18.0879 -13.1738 -17.377 C
+-14.1445 -15.8682 -11.9453 -13.54 V
+-11.9336 -13.5186 -11.918 -13.4873 V
+-9.70313 -11.5059 -6.16602 -5.66602 -5.14063 -3.93457 C
+f
+0.00885 0.504875 0.439429 0.000671 0.945098 0.596078 0.517647 Xa
+-8.55664 -5.01855 m
+-6.96875 -3.9873 -5.85352 -3.22559 Y
+-5.85156 -3.1582 -5.86035 -3.10254 -5.86035 -3.04004 C
+-5.63086 -3.34082 -5.38184 -3.62402 -5.1123 -3.88477 C
+-5.12109 -3.90332 -5.13086 -3.91797 -5.14063 -3.93457 c
+-6.16602 -5.66602 -9.70313 -11.5059 -11.918 -13.4873 c
+-12.4238 -13.9434 -12.8613 -14.1982 -13.1836 -14.1543 C
+-13.0664 -11.0186 -10.8008 -7.64551 v
+-10.3086 -6.91211 -9.72461 -6.16895 -9.00781 -5.44336 c
+-8.86523 -5.30176 -8.70996 -5.16211 -8.55664 -5.01855 C
+f
+0.010529 0.592309 0.518242 0.000092 0.933333 0.517647 0.439216 Xa
+-8.87109 -1.97852 m
+-7.99805 -1.83301 -7.25 -1.7041 -6.7207 -1.60645 C
+-6.48438 -2.12012 -6.19629 -2.59961 -5.86035 -3.04004 C
+-5.86035 -3.10254 -5.85156 -3.1582 -5.85352 -3.22559 C
+-6.96875 -3.9873 -8.55664 -5.01855 v
+-8.94824 -5.27441 -9.36719 -5.54492 -9.80664 -5.82715 c
+-11.8115 -7.10742 -14.21 -8.58105 -16.1123 -9.56738 c
+-18.7207 -10.9209 -20.3867 -11.3555 -18.7598 -9.08887 C
+-17.4746 -7.9248 -15.7139 -6.50977 v
+-14.4395 -5.4873 -12.916 -4.33398 -11.4512 -3.39355 c
+-10.543 -2.81055 -9.66113 -2.31348 -8.87109 -1.97852 C
+f
+-6.7207 -1.60645 m
+-7.25 -1.7041 -7.99805 -1.83301 -8.87109 -1.97852 c
+-13.6797 -2.78809 -22.2119 -4.05273 -18.3477 -2.10742 C
+-17.7715 -1.83984 -16.8711 -1.46973 v
+-15.3291 -0.836914 -12.8291 0.09375 -10.5977 0.490234 c
+-10.2051 0.558594 -9.81836 0.611328 -9.44727 0.644531 C
+-8.77734 0.628906 -8.24609 0.62793 -7.91992 0.62793 C
+-7.71387 0.600586 -7.52148 0.557617 -7.33984 0.50293 C
+-7.23145 -0.244141 -7.01953 -0.952148 -6.7207 -1.60645 C
+f
+0.014282 0.702541 0.579614 0.00119 0.917647 0.415686 0.368627 Xa
+-7.39941 2.29004 m
+-7.43945 1.80566 -7.43945 1.31055 -7.38672 0.808594 c
+-7.38477 0.795898 -7.38281 0.786133 -7.38184 0.777344 C
+-7.43945 0.726563 -7.48828 0.680664 -7.55859 0.628906 C
+-7.68945 0.62793 -7.91992 0.62793 v
+-8.24609 0.62793 -8.77734 0.628906 -9.44727 0.644531 c
+-9.70117 0.648438 -9.97266 0.658203 -10.2598 0.666016 c
+-12.0176 0.72168 -14.3574 0.859375 -16.4473 1.18945 c
+-18.8242 1.56543 -20.873 2.18945 -21.3477 3.22559 C
+-24.4268 5.11426 -20.5215 4.92188 V
+-17.5635 3.96387 -10.7656 3.00684 -7.99023 2.6416 C
+-7.75977 2.53027 -7.56055 2.41113 -7.39941 2.29004 C
+f
+0.010529 0.592309 0.518242 0.000092 0.933333 0.517647 0.439216 Xa
+-10.7148 5.2998 m
+-8.91016 4.34863 -7.55078 3.69434 Y
+-7.44434 3.72168 -7.35742 3.75098 -7.26367 3.78125 C
+-7.22266 3.74023 -7.18555 3.69824 -7.14844 3.65527 C
+-7.24609 3.2998 -7.31836 2.93262 -7.36426 2.55859 C
+-7.53906 2.58301 -7.74609 2.61035 -7.99023 2.6416 c
+-10.7656 3.00684 -17.5635 3.96387 -20.5215 4.92188 c
+-22.0771 5.4248 -22.5771 5.92871 -20.8574 6.3418 C
+-18.8604 6.32813 -16.3691 6.12598 v
+-14.6699 5.9873 -12.7461 5.75781 -11.0645 5.37988 c
+-10.9453 5.35742 -10.8301 5.32813 -10.7148 5.2998 C
+f
+-6.43066 5.37988 m
+-6.70703 4.89258 -6.93555 4.37598 -7.10156 3.83105 C
+-7.15137 3.81348 -7.20996 3.7959 -7.26367 3.78125 c
+-7.35742 3.75098 -7.44434 3.72168 -7.55078 3.69434 C
+-8.91016 4.34863 -10.7148 5.2998 v
+-10.834 5.3623 -10.9512 5.42578 -11.0742 5.49121 c
+-12.71 6.3623 -14.6387 7.44336 -16.2539 8.50293 c
+-18.1738 9.76465 -19.6309 10.9854 -19.6094 11.7773 c
+-19.5996 12.1357 -19.2949 12.4072 -18.5723 12.5479 C
+-15.6387 11.2861 -12.6299 9.7041 V
+-10.5059 8.1377 -8.08203 6.55469 -6.59961 5.61133 C
+-6.53906 5.5332 -6.47949 5.45508 -6.43066 5.37988 C
+f
+0.00885 0.504875 0.439429 0.000671 0.945098 0.596078 0.517647 Xa
+-15.1787 14.3545 m
+-14.3203 13.9346 -13.0996 13.2568 v
+-11.2109 12.21 -8.45313 10.5479 -6.62988 8.85645 c
+-6.60352 8.83105 -6.57715 8.80957 -6.55078 8.78613 C
+-6.01172 7.99219 -5.56348 7.3418 -5.26953 6.9209 C
+-5.69727 6.4873 -6.06641 5.99902 -6.37793 5.4707 C
+-6.44727 5.51563 -6.52344 5.56152 -6.59961 5.61133 c
+-8.08203 6.55469 -10.5059 8.1377 -12.6299 9.7041 c
+-12.9219 9.9209 -13.2109 10.1377 -13.4902 10.3525 c
+-16.4688 12.6445 -18.3906 14.6943 -15.1787 14.3545 C
+f
+0.010529 0.592309 0.518242 0.000092 0.933333 0.517647 0.439216 Xa
+-4.01367 7.93555 m
+-4.46875 7.64453 -4.89063 7.30469 -5.26953 6.9209 C
+-5.56348 7.3418 -6.01172 7.99219 -6.55078 8.78613 c
+-6.58008 8.82715 -6.60938 8.87109 -6.63867 8.91211 c
+-7.56836 10.2822 -8.73828 12.0361 -9.82422 13.751 c
+-12.5723 18.0918 -14.7461 22.1445 -10.9219 18.8311 C
+-8.57715 16.3887 -6.61719 13.6357 V
+-5.59473 11.3779 -4.52539 9.22559 -4.02344 8.22949 C
+-4.01758 8.12793 -4.01074 8.03027 -4.01367 7.93555 C
+f
+-3.91016 8.00098 m
+-3.94434 8.06543 -3.9834 8.14258 -4.02344 8.22949 c
+-4.52539 9.22559 -5.59473 11.3779 -6.61719 13.6357 c
+-8.61914 18.0449 -10.4375 22.8203 -7.45898 19.999 C
+-6.10938 18.915 -4.6543 16.4463 v
+-3.60938 14.6729 -2.51953 12.1738 -1.82422 8.8623 C
+-2.57715 8.6875 -3.27539 8.39258 -3.91016 8.00098 C
+f
+0.014282 0.702541 0.579614 0.00119 0.917647 0.415686 0.368627 Xa
+0.370117 9.45996 m
+0.328125 9.31348 0.28125 9.17383 0.230469 9.03418 C
+-0.154297 9.05859 -0.542969 9.06055 -0.9375 9.01855 C
+-1.78711 11.5791 -3.50781 17.1719 -3.51172 20.4736 c
+-3.51367 22.1982 -3.04883 23.2959 -1.74609 23.0127 C
+0.099609 18.8721 0.626953 14.585 V
+0.333984 12.5459 0.333984 10.6064 0.370117 9.45996 C
+f
+0.010529 0.592309 0.518242 0.000092 0.933333 0.517647 0.439216 Xa
+2.5332 8.50195 m
+1.85547 8.78613 1.13672 8.96387 0.387695 9.02637 C
+0.382813 9.1543 0.376953 9.2998 0.370117 9.45996 c
+0.333984 10.6064 0.333984 12.5459 0.626953 14.585 c
+1.00586 17.2383 1.87305 20.0537 3.78613 21.4941 C
+4.30273 21.1357 4.49219 19.623 v
+4.71094 17.874 4.48828 14.5791 2.5332 8.50195 C
+f
+0.00885 0.504875 0.439429 0.000671 0.945098 0.596078 0.517647 Xa
+9.19336 11.3242 m
+9.02344 11.082 8.84863 10.8418 8.66992 10.6006 C
+6.94141 8.93164 5.50293 7.44043 4.94531 6.85449 C
+4.27734 7.54004 3.48438 8.09277 2.61133 8.47266 C
+3.21289 9.5127 5.10156 12.6943 7.16406 15.2324 c
+9.21094 17.7559 11.4229 19.6318 12.7129 18.1396 c
+12.7324 18.1152 12.7549 18.0996 12.7754 18.0752 C
+11.5527 14.7021 9.19336 11.3242 v
+f
+0.010529 0.592309 0.518242 0.000092 0.933333 0.517647 0.439216 Xa
+6.4043 4.70996 m
+6.03711 5.5127 5.54492 6.24023 4.94531 6.85449 C
+5.50293 7.44043 6.94141 8.93164 8.66992 10.6006 c
+8.93652 10.8594 9.20898 11.1211 9.48828 11.3857 c
+11.4648 13.2559 13.666 15.1846 15.3027 16.207 c
+16.8984 17.2021 17.9609 17.335 17.7461 15.6895 C
+17.582 15.376 17.2754 14.8545 v
+16.5977 13.7021 15.2129 11.5254 13.3594 9.40625 c
+12.3691 8.27539 11.2539 7.16309 10.0273 6.23828 C
+8.5332 5.62305 7.25 5.06348 6.41992 4.69141 C
+6.4043 4.70996 L
+f
+0.014282 0.702541 0.579614 0.00119 0.917647 0.415686 0.368627 Xa
+6.95313 3.00879 m
+6.83789 3.60059 6.65234 4.16016 6.41406 4.68945 C
+6.41406 4.69043 6.41797 4.69141 6.41992 4.69141 c
+7.25 5.06348 8.5332 5.62305 10.0273 6.23828 c
+15.0898 8.32227 22.5234 10.999 22.541 8.76855 C
+21.4844 6.92871 17.8457 5.3623 v
+17.3242 5.13574 16.75 4.91797 16.1221 4.71094 C
+6.95313 3.00879 L
+f
+0.01529 0.77731 0.613703 0.000793 0.909804 0.337255 0.32549 Xa
+2.69531 -5.34863 m
+2.77148 -5.31543 2.8457 -5.27637 2.92188 -5.23926 C
+3.9668 -8.10938 6.03711 -14.0361 5.87305 -15.5918 c
+5.83008 -15.999 5.63574 -16.1113 5.22852 -15.7842 C
+5.16016 -15.5127 5.04688 -15.0713 v
+4.66602 -13.5625 3.75391 -9.9209 3.04883 -6.89453 c
+2.92285 -6.35449 2.80371 -5.83398 2.69531 -5.34863 C
+f
+*u
+1 D
+0.743221 0.648188 0.629023 0.813504 0.113725 0.113725 0.105882 Xa
+7.04102 0.587891 m
+7.03809 0.571289 7.03711 0.554688 7.03418 0.539063 c
+6.93652 -0.231445 6.72461 -0.96582 6.41406 -1.64746 c
+6.05859 -2.43066 5.57813 -3.14551 4.98926 -3.75293 c
+4.98438 -3.75977 4.97852 -3.76465 4.97168 -3.77051 c
+4.72852 -4.02246 4.46094 -4.25293 4.18164 -4.46582 c
+3.79004 -4.76465 3.36914 -5.02539 2.92188 -5.23926 c
+2.8457 -5.27637 2.77148 -5.31543 2.69531 -5.34863 c
+2.67773 -5.35547 2.65625 -5.3623 2.63574 -5.37109 c
+2.00586 -5.6377 1.32813 -5.82227 0.615234 -5.89453 c
+0.436523 -5.91406 0.263672 -5.91797 0.089844 -5.9209 c
+-0.669922 -5.94531 -1.4082 -5.84863 -2.10938 -5.6416 c
+-2.11328 -5.6416 -2.11914 -5.6377 -2.125 -5.6377 c
+-2.60938 -5.49414 -3.07422 -5.30176 -3.51367 -5.0625 c
+-3.55859 -5.04004 -3.60156 -5.01465 -3.64453 -4.99023 c
+-4.16797 -4.69043 -4.65039 -4.32422 -5.08789 -3.90332 c
+-5.0957 -3.89941 -5.10352 -3.89063 -5.1123 -3.88477 c
+-5.38184 -3.62402 -5.63086 -3.34082 -5.86035 -3.04004 c
+-6.19629 -2.59961 -6.48438 -2.12012 -6.7207 -1.60645 c
+-7.01953 -0.952148 -7.23145 -0.244141 -7.33984 0.50293 c
+-7.35156 0.59375 -7.37109 0.683594 -7.38184 0.777344 c
+-7.38281 0.786133 -7.38477 0.795898 -7.38672 0.808594 c
+-7.43945 1.31055 -7.43945 1.80566 -7.39941 2.29004 c
+-7.39063 2.37988 -7.375 2.46973 -7.36426 2.55859 c
+-7.31836 2.93262 -7.24609 3.2998 -7.14844 3.65527 c
+-7.13379 3.71191 -7.11719 3.77344 -7.10156 3.83105 c
+-6.93555 4.37598 -6.70703 4.89258 -6.43066 5.37988 c
+-6.41406 5.4082 -6.39648 5.44043 -6.37793 5.4707 c
+-6.06641 5.99902 -5.69727 6.4873 -5.26953 6.9209 c
+-4.89063 7.30469 -4.46875 7.64453 -4.01367 7.93555 c
+-3.97949 7.95898 -3.94531 7.98145 -3.91016 8.00098 c
+-3.27539 8.39258 -2.57715 8.6875 -1.82422 8.8623 c
+-1.53711 8.92871 -1.24219 8.9873 -0.939453 9.01855 c
+-0.9375 9.01855 l
+-0.542969 9.06055 -0.154297 9.05859 0.230469 9.03418 c
+0.282227 9.03125 0.333984 9.03125 0.387695 9.02637 c
+1.13672 8.96387 1.85547 8.78613 2.5332 8.50195 c
+2.55859 8.49121 2.58594 8.48145 2.61133 8.47266 c
+3.48438 8.09277 4.27734 7.54004 4.94531 6.85449 c
+5.54492 6.24023 6.03711 5.5127 6.4043 4.70996 c
+6.40527 4.70215 6.41016 4.69824 6.41406 4.68945 c
+6.65234 4.16016 6.83789 3.60059 6.95313 3.00879 c
+6.99805 2.78125 7.03711 2.54785 7.06055 2.31348 c
+7.10742 1.87598 7.10742 1.44336 7.08008 1.0166 c
+7.07813 0.977539 7.07813 0.9375 7.07324 0.897461 c
+7.06641 0.793945 7.05469 0.69043 7.04102 0.587891 c
+f
+*U
+u
+1 Ap
+0 D
+0.191653 0.388464 0.961883 0.078523 0.788235 0.588235 0.101961 Xa
+6.82813 1.34082 m
+5.91602 2.53223 L
+6.3877 3.97656 L
+5.6875 5.0752 L
+4.51953 5.72266 L
+3.50586 6.32031 L
+2.97266 7.81348 L
+1.68262 8.0918 L
+0.611328 7.85254 L
+-0.129883 7.53125 L
+-1.4248 7.91504 L
+-2.49609 7.19336 L
+-4.00977 7.38184 L
+-4.74121 6.23242 L
+-5.58691 5.32617 L
+-6.20117 4.24707 L
+-6.93555 3.16309 L
+-6.81836 2.09863 L
+-6.66895 1.34082 L
+-6.89063 0.008789 L
+-6.30176 -1.15527 L
+-5.60547 -2.17773 L
+-5.17773 -3.4209 L
+-4.06152 -4.04688 L
+-2.8457 -4.33301 L
+-1.80078 -4.89648 L
+-0.852539 -5.06152 L
+-0.129883 -4.84277 L
+1.11621 -4.98535 L
+2.35938 -4.8125 L
+3.74023 -4.68262 L
+4.36914 -3.42871 L
+5.28125 -2.60742 L
+6.30371 -1.73926 L
+6.63477 -0.469727 L
+6.23633 0.621094 L
+6.82813 1.34082 L
+f
+U
+0 0 Xd
+6 () XW
+0 O
+0.148074 0.268009 0.638117 0.028626 0.862745 0.721569 0.427451 Xa
+4.53906 1.3418 m
+4.53906 3.91895 2.44922 6.00977 -0.129883 6.00977 c
+-2.70898 6.00977 -4.79883 3.91895 -4.79883 1.3418 c
+-4.79883 -1.2373 -2.70898 -3.32813 -0.129883 -3.32813 c
+2.44922 -3.32813 4.53906 -1.2373 4.53906 1.3418 c
+f
+0.095918 0.167697 0.394507 0.005707 0.917647 0.827451 0.654902 Xa
+2.97266 1.3418 m
+2.97266 3.05469 1.58398 4.44336 -0.129883 4.44336 c
+-1.84375 4.44336 -3.23242 3.05469 -3.23242 1.3418 c
+-3.23242 -0.37207 -1.84375 -1.76172 -0.129883 -1.76172 c
+1.58398 -1.76172 2.97266 -0.37207 2.97266 1.3418 c
+f
+0 Ap
+0.148074 0.268009 0.638117 0.028626 0.862745 0.721569 0.427451 Xa
+4.91992 -0.042969 m
+4.47656 -0.80957 L
+4.91992 -1.57617 L
+5.80469 -1.57617 L
+6.24609 -0.80957 L
+5.80469 -0.042969 L
+4.91992 -0.042969 L
+f
+3.73242 4.50586 m
+3.29102 3.74023 L
+3.73242 2.97461 L
+4.61719 2.97461 L
+5.06055 3.74023 L
+4.61719 4.50586 L
+3.73242 4.50586 L
+f
+0.171875 4.11035 m
+-0.269531 3.34473 L
+0.171875 2.5791 L
+1.05664 2.5791 L
+1.5 3.34473 L
+1.05664 4.11035 L
+0.171875 4.11035 L
+f
+-0.619141 -0.834961 m
+-1.06152 -1.60254 L
+-0.619141 -2.36816 L
+0.265625 -2.36816 L
+0.707031 -1.60254 L
+0.265625 -0.834961 L
+-0.619141 -0.834961 L
+f
+-2.53906 -3.18359 m
+-2.98242 -3.94824 L
+-2.53906 -4.71582 L
+-1.6543 -4.71582 L
+-1.21289 -3.94824 L
+-1.6543 -3.18359 L
+-2.53906 -3.18359 L
+f
+-5.50684 -1.2041 m
+-5.94922 -1.97168 L
+-5.50684 -2.73828 L
+-4.62207 -2.73828 L
+-4.17969 -1.97168 L
+-4.62207 -1.2041 L
+-5.50684 -1.2041 L
+f
+-5.30859 2.94824 m
+-5.75195 2.18066 L
+-5.30859 1.41504 L
+-4.42383 1.41504 L
+-3.98242 2.18066 L
+-4.42383 2.94824 L
+-5.30859 2.94824 L
+f
+-5.93848 3.36914 m
+-6.38086 2.60254 L
+-5.93848 1.83496 L
+-5.05371 1.83496 L
+-4.61133 2.60254 L
+-5.05371 3.36914 L
+-5.93848 3.36914 L
+f
+-4.48242 5.09961 m
+-4.92383 4.33398 L
+-4.48242 3.56738 L
+-3.59766 3.56738 L
+-3.1543 4.33398 L
+-3.59766 5.09961 L
+-4.48242 5.09961 L
+f
+-1.31641 3.91211 m
+-1.75977 3.14551 L
+-1.31641 2.37988 L
+-0.431641 2.37988 L
+0.009766 3.14551 L
+-0.431641 3.91211 L
+-1.31641 3.91211 L
+f
+0.462891 0.946289 m
+0.021484 0.180664 L
+0.462891 -0.584961 L
+1.34766 -0.584961 L
+1.79102 0.180664 L
+1.34766 0.946289 L
+0.462891 0.946289 L
+f
+2.44141 3.71582 m
+1.99805 2.94922 L
+2.44141 2.18262 L
+3.32617 2.18262 L
+3.76855 2.94922 L
+3.32617 3.71582 L
+2.44141 3.71582 L
+f
+2.24414 -0.637695 m
+1.80078 -1.40332 L
+2.24414 -2.16895 L
+3.12891 -2.16895 L
+3.57031 -1.40332 L
+3.12891 -0.637695 L
+2.24414 -0.637695 L
+f
+U
+9 () XW
+U
+%_/ArtDictionary :
+%_;
+%_
+9 () XW
+%AI10_EndSymbol
+%AI14_BeginSymbol
+(Leuchtendes Orange)
0 A
+0 Xw
+u
+u
+1 Ap
+0 O
+0 1 0 0 0 Xy
+0 J 0 j 1 w 10 M []0 d
0 XR
+12.1064 -0.000977 m
+12.1064 6.68408 6.68555 12.106 0 12.106 c
+-6.68652 12.106 -12.1064 6.68408 -12.1064 -0.000977 c
+-12.1064 -6.68652 -6.68652 -12.1064 0 -12.1064 c
+6.68555 -12.1064 12.1064 -6.68652 12.1064 -0.000977 c
+Bb
+1 (Unnamed gradient 42) 0 0 90 1 1 0 0 1 0 0 1 Bg
+-0.000001 24.2124 28.2128 0.000001 -7761.1064 8078.894 Xm
+-0.000001 27.2124 28.2128 0.000001 -7761.1064 8051.6816 Bc
+-0.000001 14.9627 28.2128 0.000001 -7761.1064 8078.894 Bm
+0 0.272051 28.2128 0.000001 -7761.1064 8093.8569 Bm
+0 8.56957 28.2128 0.000001 -7761.1064 8094.1289 Bm
+-0.000001 27.2124 28.2128 0.000001 -7761.1064 8102.6982 Bc
+f
+0 BB
+12.1064 -0.000977 m
+12.1064 6.68408 6.68555 12.106 0 12.106 c
+-6.68652 12.106 -12.1064 6.68408 -12.1064 -0.000977 c
+-12.1064 -6.68652 -6.68652 -12.1064 0 -12.1064 c
+6.68555 -12.1064 12.1064 -6.68652 12.1064 -0.000977 c
+Bb
+1 (Unnamed gradient 10) 0 0 90 1 1 0 0 1 0 0 1 Bg
+-0.000001 24.2124 28.2128 0.000001 -7761.1064 8078.894 Xm
+-0.000001 27.2124 28.2128 0.000001 -7761.1064 8051.6816 Bc
+-0.000001 14.9627 28.2128 0.000001 -7761.1064 8078.894 Bm
+0 5.07979 28.2128 0.000001 -7761.1064 8093.8569 Bm
+0 3.76183 28.2128 0.000001 -7761.1064 8098.9365 Bm
+-0.000001 27.2124 28.2128 0.000001 -7761.1064 8102.6982 Bc
+f
+0 BB
+2 0.7 0 0 0 Xy
+12.1064 -0.000977 m
+12.1064 6.68408 6.68555 12.106 0 12.106 c
+-6.68652 12.106 -12.1064 6.68408 -12.1064 -0.000977 c
+-12.1064 -6.68652 -6.68652 -12.1064 0 -12.1064 c
+6.68555 -12.1064 12.1064 -6.68652 12.1064 -0.000977 c
+Bb
+1 (Unnamed gradient 8) 0 0 -90 1 1 0 0 1 0 0 1 Bg
+-0.000001 -24.2124 -28.2128 0.000001 -7732.8936 8103.1064 Xm
+-0.000001 -27.2124 -28.2128 0.000001 -7732.8936 8130.3188 Bc
+0 -4.92231 -28.2128 0.000001 -7732.8936 8103.1064 Bm
+0 -3.45891 -28.2128 0.000001 -7732.8936 8098.1841 Bm
+0 -3.99105 -28.2128 0.000001 -7732.8936 8094.7251 Bm
+-0.000001 -11.8401 -28.2128 0.000001 -7732.8936 8090.7339 Bm
+-0.000001 -27.2124 -28.2128 0.000001 -7732.8936 8078.894 Bc
+f
+0 BB
+u
+*u
+0 Ap
+0 0 0 0 1 1 1 Xa
+0 1 0 0 0 Xy
+0 -10.3066 m
+5.68311 -10.3066 10.3066 -5.68359 10.3066 -0.000977 C
+10.3066 5.68213 5.68311 10.3062 0 10.3062 C
+-5.68311 10.3062 -10.3066 5.68213 -10.3066 -0.000977 C
+-10.3066 -5.68359 -5.68311 -10.3066 0 -10.3066 C
+F
+1 D
+0 -12.1064 m
+-6.68652 -12.1064 -12.1064 -6.68652 -12.1064 -0.000977 C
+-12.1064 6.68408 -6.68652 12.106 0 12.106 C
+6.68555 12.106 12.1064 6.68408 12.1064 -0.000977 C
+12.1064 -6.68652 6.68555 -12.1064 0 -12.1064 C
+0 -12.1064 L
+f
+*U
+U
+0 0.6 0 0 0 Xy
+0 0 Xd
+6 () XW
+1 Ap
+0 D
+0 R
+0.0065 0.4589 0.819943 0.000244 0.952941 0.611765 0.231373 XA
+0 1 0 0 0 Xy
+2 w 1 M
12.1064 -0.000977 m
+12.1064 6.68408 6.68555 12.106 0 12.106 c
+-6.68652 12.106 -12.1064 6.68408 -12.1064 -0.000977 c
+-12.1064 -6.68652 -6.68652 -12.1064 0 -12.1064 c
+6.68555 -12.1064 12.1064 -6.68652 12.1064 -0.000977 c
+s
+U
+1 w 10 M
0 0 Xd
+6 () XW
+%_12.1064 -0.000977 m
+%_12.1064 6.68408 6.68555 12.106 0 12.106 c
+%_-6.68652 12.106 -12.1064 6.68408 -12.1064 -0.000977 c
+%_-12.1064 -6.68652 -6.68652 -12.1064 0 -12.1064 c
+%_6.68555 -12.1064 12.1064 -6.68652 12.1064 -0.000977 c
+%_n
+1 (Anon) XW
+U
+%_/ArtDictionary :
+%_0 /Bool (AI13PatternEnableGuides) ,
+%_2 /Int (AI13PatternExportType) ,
+%_;
+%_
+9 () XW
+%AI10_EndSymbol
+%AI14_BeginSymbol
+(Prozessrechteck)
0 A
+0 Xw
+u
+u
+0 Ap
+0 O
+0 1 0 0 0 Xy
+0 J 0 j 1 w 10 M []0 d
0 XR
+-20.7314 10.4146 m
+-20.8004 10.4146 -20.8564 10.3586 -20.8564 10.2896 C
+-20.8564 -10.29 L
+-20.8564 -10.359 -20.8004 -10.415 -20.7314 -10.415 C
+20.7295 -10.415 L
+20.7985 -10.415 20.8545 -10.359 20.8545 -10.29 C
+20.8545 10.2896 L
+20.8545 10.3586 20.7985 10.4146 20.7295 10.4146 C
+-20.7314 10.4146 L
+Bb
+1 (Unnamed gradient 1) 0 0 90 1 1 0 0 1 0 0 1 Bg
+-0.000001 20.8296 45.7109 0.000002 -7769.8564 8080.5854 Xm
+-0.000001 23.8306 45.7109 0.000002 -7769.8564 8056.7549 Bc
+-0.000001 12.8722 45.7109 0.000002 -7769.8564 8080.5854 Bm
+0 0.234042 45.7109 0.000002 -7769.8564 8093.4575 Bm
+0 7.37228 45.7109 0.000002 -7769.8564 8093.6919 Bm
+-0.000001 23.8306 45.7109 0.000002 -7769.8564 8101.064 Bc
+f
+0 BB
+-20.7314 10.4146 m
+-20.8004 10.4146 -20.8564 10.3586 -20.8564 10.2896 C
+-20.8564 -10.29 L
+-20.8564 -10.359 -20.8004 -10.415 -20.7314 -10.415 C
+20.7295 -10.415 L
+20.7985 -10.415 20.8545 -10.359 20.8545 -10.29 C
+20.8545 10.2896 L
+20.8545 10.3586 20.7985 10.4146 20.7295 10.4146 C
+-20.7314 10.4146 L
+Bb
+1 (Unnamed gradient 21) 0 0 90 1 1 0 0 1 0 0 1 Bg
+-0.000001 20.8296 45.7109 0.000002 -7769.8564 8080.5854 Xm
+-0.000001 23.8306 45.7109 0.000002 -7769.8564 8056.7549 Bc
+0 10.4148 45.7109 0.000002 -7769.8564 8080.5854 Bm
+0 10.4148 45.7109 0.000002 -7769.8564 8091 Bm
+-0.000001 23.8306 45.7109 0.000002 -7769.8564 8101.415 Bc
+f
+0 BB
+2 0.51 0 0 0 Xy
+-20.7314 10.4146 m
+-20.8004 10.4146 -20.8564 10.3586 -20.8564 10.2896 C
+-20.8564 -10.29 L
+-20.8564 -10.359 -20.8004 -10.415 -20.7314 -10.415 C
+20.7295 -10.415 L
+20.7985 -10.415 20.8545 -10.359 20.8545 -10.29 C
+20.8545 10.2896 L
+20.8545 10.3586 20.7985 10.4146 20.7295 10.4146 C
+-20.7314 10.4146 L
+Bb
+0 0 0 0 Bh
+1 (Unnamed gradient 19) 0 0 0 1 1 0 0 1 0 0 0.5 Bg
+16.4836 0 0 -8.2418 -7747.001 8091 Bm
+f
+0 BB
+2 0.7 0 0 0 Xy
+-20.7314 10.4146 m
+-20.8004 10.4146 -20.8564 10.3586 -20.8564 10.2896 C
+-20.8564 -10.29 L
+-20.8564 -10.359 -20.8004 -10.415 -20.7314 -10.415 C
+20.7295 -10.415 L
+20.7985 -10.415 20.8545 -10.359 20.8545 -10.29 C
+20.8545 10.2896 L
+20.8545 10.3586 20.7985 10.4146 20.7295 10.4146 C
+-20.7314 10.4146 L
+Bb
+1 (Unnamed gradient 16) 0 0 -90 1 1 0 0 1 0 0 1 Bg
+-0.000001 -20.8296 -45.7109 0.000002 -7724.1455 8101.415 Xm
+-0.000001 -23.8306 -45.7109 0.000002 -7724.1455 8125.2456 Bc
+0 -9.37332 -45.7109 0.000002 -7724.1455 8101.415 Bm
+-0.000001 -11.4563 -45.7109 0.000002 -7724.1455 8092.0415 Bm
+-0.000001 -23.8306 -45.7109 0.000002 -7724.1455 8080.5854 Bc
+f
+0 BB
+u
+*u
+0.749172 0.600427 0 0 0.333333 0.403922 0.682353 Xa
+0 1 0 0 0 Xy
+20.7295 -10.29 m
+20.7295 10.2896 L
+-20.7314 10.2896 L
+-20.7314 -10.29 L
+20.7295 -10.29 L
+F
+1 D
+20.7295 -10.54 m
+-20.7314 -10.54 L
+-20.8696 -10.54 -20.9814 -10.4282 -20.9814 -10.29 C
+-20.9814 10.2896 L
+-20.9814 10.4277 -20.8696 10.5396 -20.7314 10.5396 C
+20.7295 10.5396 L
+20.8677 10.5396 20.9795 10.4277 20.9795 10.2896 C
+20.9795 -10.29 L
+20.9795 -10.4282 20.8677 -10.54 20.7295 -10.54 C
+20.7295 -10.54 L
+f
+*U
+U
+0 1 1 0 0 Xy
+0 0 Xd
+6 () XW
+U
+0 1 0 0 0 Xy
+0 0 Xd
+6 () XW
+%_1 Ap
+%_0 D
+%_20.7295 10.2896 m
+%_-20.7314 10.2896 L
+%_-20.7314 -10.29 L
+%_20.7295 -10.29 L
+%_20.7295 10.2896 L
+%_n
+1 (Anon 195) XW
+U
+%_/ArtDictionary :
+%_0 /Bool (AI13PatternEnableGuides) ,
+%_2 /Int (AI13PatternExportType) ,
+%_;
+%_
+9 () XW
+%AI10_EndSymbol
+%AI14_BeginSymbol
+(Schnittmarken \(9-Slice\))
0 A
+0 Xw
+u
+0 Ap
+0 1 0 0 0 Xy
+0 J 0 j 1 w 10 M []0 d
0 XR
+100 99.9995 m
+-100 99.9995 L
+-100 -100 L
+100 -100 L
+100 99.9995 L
+n
+0 O
+0.912474 0.787625 0.619837 0.97467 0 0 0 ([Passermarken]) 0 1 Xz
+-79 -118 m
+-91 -118 l
+-91 -130 l
+-79 -130 l
+-79 -118 L
+f
+0.764004 0.669215 0.607538 0.832273 0 0 0 ([Passermarken]) 0.1 1 Xz
+-67 -118 m
+-79 -118 l
+-79 -130 l
+-67 -130 l
+-67 -118 L
+f
+0.690608 0.595209 0.559747 0.655817 0 0 0 ([Passermarken]) 0.2 1 Xz
+-55 -118 m
+-67 -118 l
+-67 -130 l
+-55 -130 l
+-55 -118 L
+f
+0.621576 0.524865 0.504448 0.480934 0 0 0 ([Passermarken]) 0.3 1 Xz
+-43 -118 m
+-55 -118 l
+-55 -130 l
+-43 -130 l
+-43 -118 L
+f
+0.559442 0.453803 0.448554 0.326848 0 0 0 ([Passermarken]) 0.4 1 Xz
+-31 -118 m
+-43 -118 l
+-43 -130 l
+-31 -130 l
+-31 -118 L
+f
+0.493935 0.388128 0.386419 0.204318 0 0 0 ([Passermarken]) 0.5 1 Xz
+-19 -118 m
+-31 -118 l
+-31 -130 l
+-19 -130 l
+-19 -118 L
+f
+0.410864 0.319738 0.323857 0.110109 0 0 0 ([Passermarken]) 0.6 1 Xz
+-7 -118 m
+-19 -118 l
+-19 -130 l
+-7 -130 l
+-7 -118 L
+f
+0.327337 0.246494 0.256504 0.044678 0 0 0 ([Passermarken]) 0.7 1 Xz
+5 -118 m
+-7 -118 l
+-7 -130 l
+5 -130 l
+5 -118 L
+f
+0.231479 0.170962 0.180972 0.008301 0 0 0 ([Passermarken]) 0.8 1 Xz
+17 -118 m
+5 -118 l
+5 -130 l
+17 -130 l
+17 -118 L
+f
+0.119753 0.084596 0.094972 0 0 0 0 ([Passermarken]) 0.9 1 Xz
+29 -118 m
+17 -118 l
+17 -130 l
+29 -130 l
+29 -118 L
+f
+0.75079 0.216068 0 0 0 0.623529 0.890196 Xa
+-130 -91 m
+-118 -91 l
+-118 -79 l
+-130 -79 l
+-130 -91 L
+f
+0 R
+0.912474 0.787625 0.619837 0.97467 0 0 0 ([Passermarken]) 0 1 XZ
+0.5 w
-130 -91 m
+-118 -91 l
+-118 -79 l
+-130 -79 l
+-130 -91 L
+s
+*u
+0 O
+0.912474 0.787625 0.619837 0.97467 0 0 0 ([Passermarken]) 0 1 Xz
+1 w
-123.7041 -85.6074 m
+-123.6943 -85.6318 -123.6816 -85.6475 -123.6631 -85.6582 c
+-123.6484 -85.668 -123.624 -85.6719 -123.5928 -85.6719 c
+-123.5586 -85.6719 -123.5342 -85.666 -123.5215 -85.6475 c
+-123.5078 -85.6328 -123.5 -85.5986 -123.5 -85.5488 c
+-123.5 -85.458 -123.499 -85.375 -123.498 -85.2969 c
+-123.4971 -85.2217 -123.4961 -85.1875 -123.4961 -85.1982 c
+-123.4961 -85.1543 -123.5049 -85.127 -123.5186 -85.1094 c
+-123.5322 -85.0947 -123.5576 -85.0898 -123.5977 -85.0898 c
+-123.6572 -85.0898 -123.6953 -85.1309 -123.7148 -85.2148 c
+-123.7197 -85.2432 -123.7266 -85.2607 -123.7285 -85.2773 c
+-123.7451 -85.3428 -123.7881 -85.3994 -123.8516 -85.4434 c
+-123.918 -85.4844 -123.9971 -85.5068 -124.083 -85.5068 c
+-124.2451 -85.5068 -124.375 -85.4482 -124.4717 -85.3301 c
+-124.5713 -85.2119 -124.6191 -85.0557 -124.6191 -84.8564 c
+-124.6191 -84.6582 -124.5703 -84.498 -124.4697 -84.3799 c
+-124.3721 -84.2627 -124.2422 -84.2031 -124.0791 -84.2031 c
+-124.0254 -84.2031 -123.9727 -84.2119 -123.917 -84.2266 c
+-123.8613 -84.2402 -123.8096 -84.2637 -123.7549 -84.2949 c
+-123.7314 -84.3066 -123.6973 -84.3291 -123.6563 -84.3584 c
+-123.6123 -84.3896 -123.5801 -84.4043 -123.5635 -84.4043 c
+-123.5342 -84.4043 -123.5098 -84.3945 -123.4922 -84.377 c
+-123.4717 -84.3574 -123.4619 -84.334 -123.4619 -84.3076 c
+-123.4619 -84.2813 -123.4727 -84.2529 -123.4941 -84.2285 c
+-123.5166 -84.2041 -123.5547 -84.1719 -123.6133 -84.1357 c
+-123.6914 -84.0859 -123.7666 -84.0498 -123.8457 -84.0264 c
+-123.9209 -84.0029 -124.0029 -83.9912 -124.0908 -83.9912 c
+-124.3154 -83.9912 -124.501 -84.0713 -124.6465 -84.2285 c
+-124.7949 -84.3887 -124.8672 -84.5908 -124.8672 -84.8389 c
+-124.8672 -85.084 -124.7939 -85.2891 -124.6445 -85.4492 c
+-124.4951 -85.6123 -124.3076 -85.6934 -124.083 -85.6934 c
+-124.0234 -85.6934 -123.9629 -85.6875 -123.8984 -85.6709 c
+-123.8369 -85.6572 -123.7734 -85.6348 -123.7041 -85.6074 c
+f
+*U
+0.008942 0.971435 0.039033 0 0.901961 0 0.494118 Xa
+-130 -79 m
+-118 -79 l
+-118 -67 l
+-130 -67 l
+-130 -79 L
+f
+0 R
+0.912474 0.787625 0.619837 0.97467 0 0 0 ([Passermarken]) 0 1 XZ
+0.5 w
-130 -79 m
+-118 -79 l
+-118 -67 l
+-130 -67 l
+-130 -79 L
+s
+*u
+0 O
+0.912474 0.787625 0.619837 0.97467 0 0 0 ([Passermarken]) 0 1 Xz
+1 w
-124.1309 -72.7041 m
+-123.8369 -73.5596 l
+-123.8252 -73.5898 -123.8086 -73.6133 -123.7861 -73.6299 c
+-123.7637 -73.6445 -123.7305 -73.6523 -123.6875 -73.6523 c
+-123.4639 -73.6523 l
+-123.4355 -73.6523 -123.4131 -73.6436 -123.3994 -73.6289 c
+-123.3818 -73.6113 -123.377 -73.5879 -123.377 -73.5596 c
+-123.377 -73.5244 -123.3867 -73.501 -123.4033 -73.4883 c
+-123.4229 -73.4727 -123.458 -73.4678 -123.5068 -73.4678 c
+-123.5293 -73.4678 l
+-123.4922 -72.2236 l
+-123.46 -72.2236 l
+-123.4004 -72.2236 -123.3594 -72.2158 -123.3408 -72.2031 c
+-123.3203 -72.1904 -123.3096 -72.166 -123.3096 -72.1299 c
+-123.3096 -72.0967 -123.3184 -72.0723 -123.334 -72.0537 c
+-123.3525 -72.0381 -123.376 -72.0293 -123.4053 -72.0293 c
+-123.79 -72.0293 l
+-123.8438 -72.0293 -123.8799 -72.0381 -123.8975 -72.0518 c
+-123.917 -72.0654 -123.9277 -72.0938 -123.9277 -72.1299 c
+-123.9277 -72.165 -123.916 -72.1895 -123.8926 -72.2021 c
+-123.8701 -72.2158 -123.8252 -72.2236 -123.7627 -72.2236 c
+-123.7041 -72.2236 l
+-123.7314 -73.3984 l
+-124.001 -72.6123 l
+-124.0146 -72.5752 -124.0332 -72.5469 -124.0508 -72.5322 c
+-124.0723 -72.5186 -124.1035 -72.5107 -124.1426 -72.5107 c
+-124.1797 -72.5107 -124.21 -72.5186 -124.2314 -72.5332 c
+-124.249 -72.5469 -124.2676 -72.5762 -124.2803 -72.6123 c
+-124.5537 -73.3984 l
+-124.5781 -72.2236 l
+-124.4883 -72.2236 l
+-124.4336 -72.2236 -124.3965 -72.2148 -124.374 -72.2012 c
+-124.3516 -72.1875 -124.3408 -72.1602 -124.3408 -72.1299 c
+-124.3408 -72.0938 -124.3506 -72.0654 -124.3711 -72.0518 c
+-124.3887 -72.0381 -124.4248 -72.0293 -124.4795 -72.0293 c
+-124.8633 -72.0293 l
+-124.8926 -72.0293 -124.917 -72.0381 -124.9346 -72.0537 c
+-124.9492 -72.0713 -124.958 -72.0957 -124.958 -72.1299 c
+-124.958 -72.166 -124.9482 -72.1904 -124.9268 -72.2031 c
+-124.9063 -72.2158 -124.8672 -72.2236 -124.8086 -72.2236 c
+-124.7773 -72.2236 l
+-124.7383 -73.4678 l
+-124.7607 -73.4678 l
+-124.8105 -73.4678 -124.8447 -73.4727 -124.8652 -73.4883 c
+-124.8828 -73.501 -124.8926 -73.5244 -124.8926 -73.5596 c
+-124.8926 -73.5879 -124.8867 -73.6113 -124.8691 -73.6289 c
+-124.8545 -73.6436 -124.832 -73.6523 -124.8047 -73.6523 c
+-124.5781 -73.6523 l
+-124.5371 -73.6523 -124.5049 -73.6445 -124.4824 -73.6299 c
+-124.459 -73.6133 -124.4434 -73.5898 -124.4316 -73.5596 c
+-124.1309 -72.7041 L
+f
+*U
+0.045655 0 0.888395 0 1 0.929412 0 Xa
+-130 -67 m
+-118 -67 l
+-118 -55 l
+-130 -55 l
+-130 -67 L
+f
+0 R
+0.912474 0.787625 0.619837 0.97467 0 0 0 ([Passermarken]) 0 1 XZ
+0.5 w
-130 -67 m
+-118 -67 l
+-118 -55 l
+-130 -55 l
+-130 -67 L
+s
+*u
+0 O
+0.912474 0.787625 0.619837 0.97467 0 0 0 ([Passermarken]) 0 1 Xz
+1 w
-123.834 -60.2227 m
+-123.7637 -60.2227 -123.7188 -60.2148 -123.6982 -60.2021 c
+-123.6807 -60.1895 -123.6699 -60.165 -123.6699 -60.1289 c
+-123.6699 -60.0889 -123.6807 -60.0635 -123.6982 -60.0498 c
+-123.7188 -60.0361 -123.7568 -60.0283 -123.8164 -60.0283 c
+-124.4668 -60.0283 l
+-124.5264 -60.0283 -124.5645 -60.0361 -124.585 -60.0498 c
+-124.6016 -60.0635 -124.6123 -60.0889 -124.6123 -60.1289 c
+-124.6123 -60.165 -124.6016 -60.1895 -124.582 -60.2021 c
+-124.5605 -60.2148 -124.5156 -60.2227 -124.4473 -60.2227 c
+-124.249 -60.2227 l
+-124.249 -60.6748 l
+-124.7041 -61.4541 l
+-124.7275 -61.4541 l
+-124.7832 -61.4541 -124.8203 -61.46 -124.8408 -61.4766 c
+-124.8594 -61.4902 -124.8691 -61.5156 -124.8691 -61.5518 c
+-124.8691 -61.5859 -124.8633 -61.6104 -124.8447 -61.625 c
+-124.8291 -61.6426 -124.8008 -61.6484 -124.7646 -61.6484 c
+-124.7041 -61.6484 l
+-124.3906 -61.6484 l
+-124.3379 -61.6484 -124.3027 -61.6436 -124.2822 -61.6289 c
+-124.2656 -61.6123 -124.2559 -61.5879 -124.2559 -61.5518 c
+-124.2559 -61.5156 -124.2666 -61.4902 -124.2891 -61.4766 c
+-124.3125 -61.46 -124.3516 -61.4541 -124.4102 -61.4541 c
+-124.4561 -61.4541 l
+-124.126 -60.8594 l
+-123.7803 -61.4541 l
+-123.8369 -61.4541 l
+-123.8857 -61.4541 -123.9209 -61.46 -123.9404 -61.4766 c
+-123.9609 -61.4902 -123.9678 -61.5156 -123.9678 -61.5518 c
+-123.9678 -61.5889 -123.9619 -61.6172 -123.9434 -61.6309 c
+-123.9287 -61.6436 -123.8857 -61.6484 -123.8213 -61.6484 c
+-123.7861 -61.6484 l
+-123.5684 -61.6484 l
+-123.498 -61.6484 -123.4531 -61.6436 -123.4355 -61.6299 c
+-123.415 -61.6133 -123.4053 -61.5879 -123.4053 -61.5518 c
+-123.4053 -61.5156 -123.415 -61.4902 -123.4355 -61.4766 c
+-123.4531 -61.46 -123.4932 -61.4541 -123.5459 -61.4541 c
+-123.5684 -61.4541 l
+-124.0342 -60.6572 l
+-124.0342 -60.2227 l
+-123.834 -60.2227 L
+f
+*U
+0.996765 0.965789 0.0878 0.011505 0.192157 0.152941 0.513726 Xa
+-130 -55 m
+-118 -55 l
+-118 -43 l
+-130 -43 l
+-130 -55 L
+f
+0 R
+0.912474 0.787625 0.619837 0.97467 0 0 0 ([Passermarken]) 0 1 XZ
+0.5 w
-130 -55 m
+-118 -55 l
+-118 -43 l
+-130 -43 l
+-130 -55 L
+s
+*u
+0 O
+0.912474 0.787625 0.619837 0.97467 0 0 0 ([Passermarken]) 0 1 Xz
+1 w
-124.6768 -49.6074 m
+-124.667 -49.6318 -124.6543 -49.6475 -124.6357 -49.6582 c
+-124.6211 -49.668 -124.5967 -49.6719 -124.5654 -49.6719 c
+-124.5313 -49.6719 -124.5068 -49.666 -124.4941 -49.6475 c
+-124.4805 -49.6328 -124.4727 -49.5986 -124.4727 -49.5488 c
+-124.4727 -49.458 -124.4717 -49.375 -124.4707 -49.2969 c
+-124.4697 -49.2217 -124.4688 -49.1875 -124.4688 -49.1982 c
+-124.4688 -49.1543 -124.4775 -49.127 -124.4912 -49.1094 c
+-124.5049 -49.0947 -124.5303 -49.0898 -124.5703 -49.0898 c
+-124.6299 -49.0898 -124.668 -49.1309 -124.6875 -49.2148 c
+-124.6924 -49.2432 -124.6992 -49.2607 -124.7012 -49.2773 c
+-124.7178 -49.3428 -124.7607 -49.3994 -124.8242 -49.4434 c
+-124.8906 -49.4844 -124.9697 -49.5068 -125.0557 -49.5068 c
+-125.2178 -49.5068 -125.3477 -49.4482 -125.4443 -49.3301 c
+-125.5439 -49.2119 -125.5918 -49.0557 -125.5918 -48.8564 c
+-125.5918 -48.6582 -125.543 -48.498 -125.4424 -48.3799 c
+-125.3447 -48.2627 -125.2148 -48.2031 -125.0518 -48.2031 c
+-124.998 -48.2031 -124.9453 -48.2119 -124.8896 -48.2266 c
+-124.834 -48.2402 -124.7822 -48.2637 -124.7275 -48.2949 c
+-124.7041 -48.3066 -124.6699 -48.3291 -124.6289 -48.3584 c
+-124.585 -48.3896 -124.5527 -48.4043 -124.5361 -48.4043 c
+-124.5068 -48.4043 -124.4824 -48.3945 -124.4648 -48.377 c
+-124.4443 -48.3574 -124.4346 -48.334 -124.4346 -48.3076 c
+-124.4346 -48.2813 -124.4453 -48.2529 -124.4668 -48.2285 c
+-124.4893 -48.2041 -124.5273 -48.1719 -124.5859 -48.1357 c
+-124.6641 -48.0859 -124.7393 -48.0498 -124.8184 -48.0264 c
+-124.8936 -48.0029 -124.9756 -47.9912 -125.0635 -47.9912 c
+-125.2881 -47.9912 -125.4736 -48.0713 -125.6191 -48.2285 c
+-125.7676 -48.3887 -125.8398 -48.5908 -125.8398 -48.8389 c
+-125.8398 -49.084 -125.7666 -49.2891 -125.6172 -49.4492 c
+-125.4678 -49.6123 -125.2803 -49.6934 -125.0557 -49.6934 c
+-124.9961 -49.6934 -124.9355 -49.6875 -124.8711 -49.6709 c
+-124.8096 -49.6572 -124.7461 -49.6348 -124.6768 -49.6074 c
+f
+*U
+*u
+-123.4248 -48.7041 m
+-123.1309 -49.5596 l
+-123.1191 -49.5898 -123.0996 -49.6133 -123.0771 -49.6299 c
+-123.0547 -49.6445 -123.0244 -49.6523 -122.9814 -49.6523 c
+-122.7578 -49.6523 l
+-122.7266 -49.6523 -122.707 -49.6436 -122.6904 -49.6289 c
+-122.6758 -49.6113 -122.668 -49.5879 -122.668 -49.5596 c
+-122.668 -49.5244 -122.6777 -49.501 -122.6973 -49.4883 c
+-122.7139 -49.4727 -122.749 -49.4678 -122.8008 -49.4678 c
+-122.8203 -49.4678 l
+-122.7832 -48.2236 l
+-122.7539 -48.2236 l
+-122.6914 -48.2236 -122.6533 -48.2158 -122.6318 -48.2031 c
+-122.6143 -48.1904 -122.6035 -48.166 -122.6035 -48.1299 c
+-122.6035 -48.0967 -122.6094 -48.0723 -122.6279 -48.0537 c
+-122.6436 -48.0381 -122.667 -48.0293 -122.6992 -48.0293 c
+-123.084 -48.0293 l
+-123.1348 -48.0293 -123.1709 -48.0381 -123.1914 -48.0518 c
+-123.2109 -48.0654 -123.2188 -48.0938 -123.2188 -48.1299 c
+-123.2188 -48.165 -123.207 -48.1895 -123.1836 -48.2021 c
+-123.1641 -48.2158 -123.1191 -48.2236 -123.0537 -48.2236 c
+-122.9951 -48.2236 l
+-123.0254 -49.3984 l
+-123.2949 -48.6123 l
+-123.3086 -48.5752 -123.3242 -48.5469 -123.3447 -48.5322 c
+-123.3662 -48.5186 -123.3945 -48.5107 -123.4365 -48.5107 c
+-123.4736 -48.5107 -123.5039 -48.5186 -123.5225 -48.5332 c
+-123.543 -48.5469 -123.5586 -48.5762 -123.5742 -48.6123 c
+-123.8477 -49.3984 l
+-123.8721 -48.2236 l
+-123.7793 -48.2236 l
+-123.7275 -48.2236 -123.6875 -48.2148 -123.668 -48.2012 c
+-123.6455 -48.1875 -123.6348 -48.1602 -123.6348 -48.1299 c
+-123.6348 -48.0938 -123.6445 -48.0654 -123.6621 -48.0518 c
+-123.6826 -48.0381 -123.7188 -48.0293 -123.7734 -48.0293 c
+-124.1543 -48.0293 l
+-124.1865 -48.0293 -124.2109 -48.0381 -124.2256 -48.0537 c
+-124.2432 -48.0713 -124.249 -48.0957 -124.249 -48.1299 c
+-124.249 -48.166 -124.2422 -48.1904 -124.2207 -48.2031 c
+-124.2002 -48.2158 -124.1611 -48.2236 -124.1025 -48.2236 c
+-124.0713 -48.2236 l
+-124.0322 -49.4678 l
+-124.0547 -49.4678 l
+-124.1045 -49.4678 -124.1387 -49.4727 -124.1563 -49.4883 c
+-124.1768 -49.501 -124.1865 -49.5244 -124.1865 -49.5596 c
+-124.1865 -49.5879 -124.1777 -49.6113 -124.1631 -49.6289 c
+-124.1484 -49.6436 -124.126 -49.6523 -124.0957 -49.6523 c
+-123.8721 -49.6523 l
+-123.8281 -49.6523 -123.7988 -49.6445 -123.7764 -49.6299 c
+-123.7529 -49.6133 -123.7344 -49.5898 -123.7227 -49.5596 c
+-123.4248 -48.7041 L
+f
+*U
+0.001648 0.996399 0.976776 0.001984 0.890196 0.023529 0.07451 Xa
+-130 -43 m
+-118 -43 l
+-118 -31 l
+-130 -31 l
+-130 -43 L
+f
+0 R
+0.912474 0.787625 0.619837 0.97467 0 0 0 ([Passermarken]) 0 1 XZ
+0.5 w
-130 -43 m
+-118 -43 l
+-118 -31 l
+-130 -31 l
+-130 -43 L
+s
+*u
+0 O
+0.912474 0.787625 0.619837 0.97467 0 0 0 ([Passermarken]) 0 1 Xz
+1 w
-125.1035 -36.7041 m
+-124.8096 -37.5596 l
+-124.7979 -37.5898 -124.7813 -37.6133 -124.7588 -37.6299 c
+-124.7363 -37.6445 -124.7031 -37.6523 -124.6602 -37.6523 c
+-124.4365 -37.6523 l
+-124.4082 -37.6523 -124.3857 -37.6436 -124.3721 -37.6289 c
+-124.3545 -37.6113 -124.3496 -37.5879 -124.3496 -37.5596 c
+-124.3496 -37.5244 -124.3594 -37.501 -124.376 -37.4883 c
+-124.3955 -37.4727 -124.4307 -37.4678 -124.4795 -37.4678 c
+-124.502 -37.4678 l
+-124.4648 -36.2236 l
+-124.4326 -36.2236 l
+-124.373 -36.2236 -124.332 -36.2158 -124.3135 -36.2031 c
+-124.293 -36.1904 -124.2822 -36.166 -124.2822 -36.1299 c
+-124.2822 -36.0967 -124.291 -36.0723 -124.3066 -36.0537 c
+-124.3252 -36.0381 -124.3486 -36.0293 -124.3779 -36.0293 c
+-124.7627 -36.0293 l
+-124.8164 -36.0293 -124.8525 -36.0381 -124.8701 -36.0518 c
+-124.8896 -36.0654 -124.9004 -36.0938 -124.9004 -36.1299 c
+-124.9004 -36.165 -124.8887 -36.1895 -124.8652 -36.2021 c
+-124.8428 -36.2158 -124.7979 -36.2236 -124.7354 -36.2236 c
+-124.6768 -36.2236 l
+-124.7041 -37.3984 l
+-124.9736 -36.6123 l
+-124.9873 -36.5752 -125.0059 -36.5469 -125.0234 -36.5322 c
+-125.0449 -36.5186 -125.0762 -36.5107 -125.1152 -36.5107 c
+-125.1523 -36.5107 -125.1826 -36.5186 -125.2041 -36.5332 c
+-125.2217 -36.5469 -125.2402 -36.5762 -125.2529 -36.6123 c
+-125.5264 -37.3984 l
+-125.5508 -36.2236 l
+-125.4609 -36.2236 l
+-125.4063 -36.2236 -125.3691 -36.2148 -125.3467 -36.2012 c
+-125.3242 -36.1875 -125.3135 -36.1602 -125.3135 -36.1299 c
+-125.3135 -36.0938 -125.3232 -36.0654 -125.3438 -36.0518 c
+-125.3613 -36.0381 -125.3975 -36.0293 -125.4521 -36.0293 c
+-125.8359 -36.0293 l
+-125.8652 -36.0293 -125.8896 -36.0381 -125.9072 -36.0537 c
+-125.9219 -36.0713 -125.9307 -36.0957 -125.9307 -36.1299 c
+-125.9307 -36.166 -125.9209 -36.1904 -125.8994 -36.2031 c
+-125.8789 -36.2158 -125.8398 -36.2236 -125.7813 -36.2236 c
+-125.75 -36.2236 l
+-125.7109 -37.4678 l
+-125.7334 -37.4678 l
+-125.7832 -37.4678 -125.8174 -37.4727 -125.8379 -37.4883 c
+-125.8555 -37.501 -125.8652 -37.5244 -125.8652 -37.5596 c
+-125.8652 -37.5879 -125.8594 -37.6113 -125.8418 -37.6289 c
+-125.8271 -37.6436 -125.8047 -37.6523 -125.7773 -37.6523 c
+-125.5508 -37.6523 l
+-125.5098 -37.6523 -125.4775 -37.6445 -125.4551 -37.6299 c
+-125.4316 -37.6133 -125.416 -37.5898 -125.4043 -37.5596 c
+-125.1035 -36.7041 L
+f
+*U
+*u
+-123.125 -36.2236 m
+-123.0547 -36.2236 -123.0127 -36.2158 -122.9922 -36.2031 c
+-122.9717 -36.1904 -122.9609 -36.166 -122.9609 -36.1299 c
+-122.9609 -36.0898 -122.9717 -36.0645 -122.9922 -36.0508 c
+-123.0127 -36.0371 -123.0508 -36.0293 -123.1104 -36.0293 c
+-123.7578 -36.0293 l
+-123.8203 -36.0293 -123.8584 -36.0371 -123.8789 -36.0508 c
+-123.8955 -36.0645 -123.9063 -36.0898 -123.9063 -36.1299 c
+-123.9063 -36.166 -123.8955 -36.1904 -123.873 -36.2031 c
+-123.8516 -36.2158 -123.8096 -36.2236 -123.7412 -36.2236 c
+-123.543 -36.2236 l
+-123.543 -36.6758 l
+-123.998 -37.4551 l
+-124.0215 -37.4551 l
+-124.0742 -37.4551 -124.1143 -37.4609 -124.1318 -37.4775 c
+-124.1533 -37.4912 -124.1631 -37.5166 -124.1631 -37.5527 c
+-124.1631 -37.5869 -124.1543 -37.6113 -124.1387 -37.6289 c
+-124.1201 -37.6436 -124.0947 -37.6523 -124.0586 -37.6523 c
+-123.998 -37.6523 l
+-123.6846 -37.6523 l
+-123.6289 -37.6523 -123.5938 -37.6445 -123.5762 -37.6299 c
+-123.5566 -37.6133 -123.5469 -37.5889 -123.5469 -37.5527 c
+-123.5469 -37.5166 -123.5576 -37.4912 -123.5801 -37.4775 c
+-123.6035 -37.4609 -123.6455 -37.4551 -123.7041 -37.4551 c
+-123.75 -37.4551 l
+-123.417 -36.8604 l
+-123.0742 -37.4551 l
+-123.1309 -37.4551 l
+-123.1797 -37.4551 -123.2148 -37.4609 -123.2344 -37.4775 c
+-123.252 -37.4912 -123.2617 -37.5166 -123.2617 -37.5527 c
+-123.2617 -37.5898 -123.2529 -37.6182 -123.2373 -37.6318 c
+-123.2227 -37.6445 -123.1797 -37.6523 -123.1123 -37.6523 c
+-123.0771 -37.6523 l
+-122.8623 -37.6523 l
+-122.792 -37.6523 -122.7471 -37.6445 -122.7266 -37.6309 c
+-122.709 -37.6172 -122.6992 -37.5889 -122.6992 -37.5527 c
+-122.6992 -37.5166 -122.709 -37.4912 -122.7266 -37.4775 c
+-122.7471 -37.4609 -122.7842 -37.4551 -122.8398 -37.4551 c
+-122.8623 -37.4551 l
+-123.3281 -36.6582 l
+-123.3281 -36.2236 l
+-123.125 -36.2236 L
+f
+*U
+0.838651 0.115511 0.962341 0.010986 0 0.588235 0.25098 Xa
+-130 -31 m
+-118 -31 l
+-118 -19 l
+-130 -19 l
+-130 -31 L
+f
+0 R
+0.912474 0.787625 0.619837 0.97467 0 0 0 ([Passermarken]) 0 1 XZ
+0.5 w
-130 -31 m
+-118 -31 l
+-118 -19 l
+-130 -19 l
+-130 -31 L
+s
+*u
+0 O
+0.912474 0.787625 0.619837 0.97467 0 0 0 ([Passermarken]) 0 1 Xz
+1 w
-124.6768 -25.6074 m
+-124.667 -25.6318 -124.6543 -25.6475 -124.6357 -25.6582 c
+-124.6211 -25.668 -124.5967 -25.6719 -124.5654 -25.6719 c
+-124.5313 -25.6719 -124.5068 -25.666 -124.4941 -25.6475 c
+-124.4805 -25.6328 -124.4727 -25.5986 -124.4727 -25.5488 c
+-124.4727 -25.458 -124.4717 -25.375 -124.4707 -25.2998 c
+-124.4697 -25.2217 -124.4688 -25.1875 -124.4688 -25.1982 c
+-124.4688 -25.1543 -124.4775 -25.127 -124.4912 -25.1123 c
+-124.5049 -25.0947 -124.5303 -25.0898 -124.5703 -25.0898 c
+-124.6299 -25.0898 -124.668 -25.1309 -124.6875 -25.2158 c
+-124.6924 -25.2432 -124.6992 -25.2607 -124.7012 -25.2773 c
+-124.7178 -25.3428 -124.7607 -25.3994 -124.8242 -25.4434 c
+-124.8906 -25.4844 -124.9697 -25.5068 -125.0557 -25.5068 c
+-125.2178 -25.5068 -125.3477 -25.4482 -125.4443 -25.3301 c
+-125.5439 -25.2119 -125.5918 -25.0557 -125.5918 -24.8564 c
+-125.5918 -24.6582 -125.543 -24.498 -125.4424 -24.3799 c
+-125.3447 -24.2627 -125.2148 -24.2031 -125.0518 -24.2031 c
+-124.998 -24.2031 -124.9453 -24.2119 -124.8896 -24.2266 c
+-124.834 -24.2402 -124.7822 -24.2637 -124.7275 -24.2949 c
+-124.7041 -24.3066 -124.6699 -24.3291 -124.6289 -24.3584 c
+-124.585 -24.3896 -124.5527 -24.4043 -124.5361 -24.4043 c
+-124.5068 -24.4043 -124.4824 -24.3955 -124.4648 -24.377 c
+-124.4443 -24.3574 -124.4346 -24.334 -124.4346 -24.3076 c
+-124.4346 -24.2813 -124.4453 -24.2529 -124.4668 -24.2285 c
+-124.4893 -24.2041 -124.5273 -24.1748 -124.5859 -24.1357 c
+-124.6641 -24.0859 -124.7393 -24.0498 -124.8184 -24.0264 c
+-124.8936 -24.0029 -124.9756 -23.9912 -125.0635 -23.9912 c
+-125.2881 -23.9912 -125.4736 -24.0713 -125.6191 -24.2285 c
+-125.7676 -24.3887 -125.8398 -24.5908 -125.8398 -24.8389 c
+-125.8398 -25.084 -125.7666 -25.2891 -125.6172 -25.4492 c
+-125.4678 -25.6123 -125.2803 -25.6934 -125.0557 -25.6934 c
+-124.9961 -25.6934 -124.9355 -25.6875 -124.8711 -25.6709 c
+-124.8096 -25.6572 -124.7461 -25.6348 -124.6768 -25.6074 c
+f
+*U
+*u
+-123.125 -24.2236 m
+-123.0547 -24.2236 -123.0127 -24.2158 -122.9922 -24.2031 c
+-122.9717 -24.1904 -122.9609 -24.166 -122.9609 -24.1299 c
+-122.9609 -24.0908 -122.9717 -24.0645 -122.9922 -24.0508 c
+-123.0127 -24.0371 -123.0508 -24.0293 -123.1104 -24.0293 c
+-123.7578 -24.0293 l
+-123.8203 -24.0293 -123.8584 -24.0371 -123.8789 -24.0508 c
+-123.8955 -24.0645 -123.9063 -24.0908 -123.9063 -24.1299 c
+-123.9063 -24.166 -123.8955 -24.1904 -123.873 -24.2031 c
+-123.8516 -24.2158 -123.8096 -24.2236 -123.7412 -24.2236 c
+-123.543 -24.2236 l
+-123.543 -24.6768 l
+-123.998 -25.4551 l
+-124.0215 -25.4551 l
+-124.0742 -25.4551 -124.1143 -25.4609 -124.1318 -25.4775 c
+-124.1533 -25.4912 -124.1631 -25.5166 -124.1631 -25.5527 c
+-124.1631 -25.5869 -124.1543 -25.6113 -124.1387 -25.6289 c
+-124.1201 -25.6436 -124.0947 -25.6523 -124.0586 -25.6523 c
+-123.998 -25.6523 l
+-123.6846 -25.6523 l
+-123.6289 -25.6523 -123.5938 -25.6445 -123.5762 -25.6299 c
+-123.5566 -25.6133 -123.5469 -25.5889 -123.5469 -25.5527 c
+-123.5469 -25.5166 -123.5576 -25.4912 -123.5801 -25.4775 c
+-123.6035 -25.4609 -123.6455 -25.4551 -123.7041 -25.4551 c
+-123.75 -25.4551 l
+-123.417 -24.8604 l
+-123.0742 -25.4551 l
+-123.1309 -25.4551 l
+-123.1797 -25.4551 -123.2148 -25.4609 -123.2344 -25.4775 c
+-123.252 -25.4912 -123.2617 -25.5166 -123.2617 -25.5527 c
+-123.2617 -25.5898 -123.2529 -25.6182 -123.2373 -25.6318 c
+-123.2227 -25.6445 -123.1797 -25.6523 -123.1123 -25.6523 c
+-123.0771 -25.6523 l
+-122.8623 -25.6523 l
+-122.792 -25.6523 -122.7471 -25.6445 -122.7266 -25.6309 c
+-122.709 -25.6172 -122.6992 -25.5889 -122.6992 -25.5527 c
+-122.6992 -25.5166 -122.709 -25.4912 -122.7266 -25.4775 c
+-122.7471 -25.4609 -122.7842 -25.4551 -122.8398 -25.4551 c
+-122.8623 -25.4551 l
+-123.3281 -24.6582 l
+-123.3281 -24.2236 l
+-123.125 -24.2236 L
+f
+*U
+0.682979 0.586877 0.579919 0.66952 0.196078 0.196078 0.188235 Xa
+-130 -19 m
+-118 -19 l
+-118 -7 l
+-130 -7 l
+-130 -19 L
+f
+0 R
+0.912474 0.787625 0.619837 0.97467 0 0 0 ([Passermarken]) 0 1 XZ
+0.5 w
-130 -19 m
+-118 -19 l
+-118 -7 l
+-130 -7 l
+-130 -19 L
+s
+*u
+0 O
+0.912474 0.787625 0.619837 0.97467 0 0 0 ([Passermarken]) 0 1 Xz
+1 w
-125.6494 -13.6074 m
+-125.6396 -13.6318 -125.627 -13.6475 -125.6084 -13.6582 c
+-125.5938 -13.668 -125.5693 -13.6748 -125.5381 -13.6748 c
+-125.5039 -13.6748 -125.4795 -13.666 -125.4668 -13.6475 c
+-125.4531 -13.6328 -125.4453 -13.5986 -125.4453 -13.5488 c
+-125.4453 -13.458 -125.4443 -13.375 -125.4434 -13.2998 c
+-125.4424 -13.2217 -125.4414 -13.1875 -125.4414 -13.1982 c
+-125.4414 -13.1543 -125.4502 -13.127 -125.4639 -13.1123 c
+-125.4775 -13.0947 -125.5029 -13.0898 -125.543 -13.0898 c
+-125.6025 -13.0898 -125.6406 -13.1309 -125.6602 -13.2158 c
+-125.665 -13.2432 -125.6719 -13.2607 -125.6738 -13.2773 c
+-125.6904 -13.3428 -125.7334 -13.3994 -125.7969 -13.4434 c
+-125.8633 -13.4873 -125.9424 -13.5068 -126.0283 -13.5068 c
+-126.1904 -13.5068 -126.3203 -13.4482 -126.417 -13.3301 c
+-126.5166 -13.2119 -126.5645 -13.0557 -126.5645 -12.8564 c
+-126.5645 -12.6582 -126.5156 -12.498 -126.415 -12.3799 c
+-126.3174 -12.2627 -126.1875 -12.2031 -126.0244 -12.2031 c
+-125.9707 -12.2031 -125.918 -12.2119 -125.8623 -12.2266 c
+-125.8066 -12.2402 -125.7549 -12.2637 -125.7002 -12.2949 c
+-125.6768 -12.3066 -125.6426 -12.3291 -125.6016 -12.3584 c
+-125.5576 -12.3896 -125.5254 -12.4043 -125.5088 -12.4043 c
+-125.4795 -12.4043 -125.4551 -12.3955 -125.4375 -12.377 c
+-125.417 -12.3574 -125.4072 -12.334 -125.4072 -12.3076 c
+-125.4072 -12.2813 -125.418 -12.2529 -125.4395 -12.2285 c
+-125.4619 -12.2041 -125.5 -12.1748 -125.5586 -12.1357 c
+-125.6367 -12.0859 -125.7119 -12.0498 -125.791 -12.0264 c
+-125.8662 -12.0029 -125.9482 -11.9912 -126.0361 -11.9912 c
+-126.2607 -11.9912 -126.4463 -12.0713 -126.5918 -12.2285 c
+-126.7402 -12.3887 -126.8125 -12.5908 -126.8125 -12.8389 c
+-126.8125 -13.084 -126.7393 -13.2891 -126.5898 -13.4502 c
+-126.4404 -13.6123 -126.2529 -13.6934 -126.0283 -13.6934 c
+-125.9688 -13.6934 -125.9082 -13.6875 -125.8438 -13.6709 c
+-125.7822 -13.6572 -125.7188 -13.6348 -125.6494 -13.6074 c
+f
+*U
+*u
+-124.3975 -12.7041 m
+-124.1035 -13.5596 l
+-124.0918 -13.5908 -124.0723 -13.6143 -124.0498 -13.6299 c
+-124.0273 -13.6445 -123.9971 -13.6523 -123.9541 -13.6523 c
+-123.7305 -13.6523 l
+-123.6992 -13.6523 -123.6797 -13.6436 -123.6631 -13.6289 c
+-123.6484 -13.6113 -123.6406 -13.5879 -123.6406 -13.5596 c
+-123.6406 -13.5244 -123.6504 -13.501 -123.6699 -13.4883 c
+-123.6865 -13.4736 -123.7217 -13.4678 -123.7734 -13.4678 c
+-123.793 -13.4678 l
+-123.7559 -12.2236 l
+-123.7266 -12.2236 l
+-123.6641 -12.2236 -123.626 -12.2158 -123.6045 -12.2031 c
+-123.5869 -12.1904 -123.5762 -12.166 -123.5762 -12.1299 c
+-123.5762 -12.0967 -123.582 -12.0723 -123.6006 -12.0537 c
+-123.6162 -12.0381 -123.6396 -12.0293 -123.6719 -12.0293 c
+-124.0566 -12.0293 l
+-124.1074 -12.0293 -124.1436 -12.0381 -124.1641 -12.0518 c
+-124.1836 -12.0654 -124.1914 -12.0938 -124.1914 -12.1299 c
+-124.1914 -12.165 -124.1797 -12.1895 -124.1563 -12.2021 c
+-124.1367 -12.2158 -124.0918 -12.2236 -124.0264 -12.2236 c
+-123.9678 -12.2236 l
+-123.998 -13.3984 l
+-124.2676 -12.6123 l
+-124.2813 -12.5752 -124.2969 -12.5498 -124.3174 -12.5322 c
+-124.3389 -12.5186 -124.3672 -12.5107 -124.4092 -12.5107 c
+-124.4463 -12.5107 -124.4766 -12.5186 -124.4951 -12.5332 c
+-124.5156 -12.5498 -124.5313 -12.5762 -124.5469 -12.6123 c
+-124.8203 -13.3984 l
+-124.8447 -12.2236 l
+-124.752 -12.2236 l
+-124.7002 -12.2236 -124.6602 -12.2148 -124.6406 -12.2012 c
+-124.6182 -12.1875 -124.6074 -12.1611 -124.6074 -12.1299 c
+-124.6074 -12.0938 -124.6172 -12.0654 -124.6348 -12.0518 c
+-124.6553 -12.0381 -124.6914 -12.0293 -124.7461 -12.0293 c
+-125.127 -12.0293 l
+-125.1592 -12.0293 -125.1836 -12.0381 -125.1982 -12.0537 c
+-125.2158 -12.0713 -125.2217 -12.0957 -125.2217 -12.1299 c
+-125.2217 -12.166 -125.2148 -12.1904 -125.1934 -12.2031 c
+-125.1729 -12.2158 -125.1338 -12.2236 -125.0752 -12.2236 c
+-125.0439 -12.2236 l
+-125.0049 -13.4678 l
+-125.0273 -13.4678 l
+-125.0771 -13.4678 -125.1113 -13.4736 -125.1289 -13.4883 c
+-125.1494 -13.501 -125.1592 -13.5244 -125.1592 -13.5596 c
+-125.1592 -13.5879 -125.1504 -13.6113 -125.1357 -13.6289 c
+-125.1211 -13.6436 -125.0986 -13.6523 -125.0684 -13.6523 c
+-124.8447 -13.6523 l
+-124.8008 -13.6523 -124.7715 -13.6445 -124.749 -13.6299 c
+-124.7256 -13.6143 -124.707 -13.5908 -124.6953 -13.5596 c
+-124.3975 -12.7041 L
+f
+*U
+*u
+-122.418 -12.2236 m
+-122.3477 -12.2236 -122.3027 -12.2158 -122.2852 -12.2031 c
+-122.2646 -12.1904 -122.2539 -12.166 -122.2539 -12.1299 c
+-122.2539 -12.0908 -122.2646 -12.0645 -122.2852 -12.0508 c
+-122.3027 -12.0371 -122.3438 -12.0293 -122.4033 -12.0293 c
+-123.0508 -12.0293 l
+-123.1104 -12.0293 -123.1484 -12.0371 -123.1689 -12.0508 c
+-123.1885 -12.0645 -123.1992 -12.0908 -123.1992 -12.1299 c
+-123.1992 -12.166 -123.1885 -12.1904 -123.166 -12.2031 c
+-123.1445 -12.2158 -123.0996 -12.2236 -123.0313 -12.2236 c
+-122.8359 -12.2236 l
+-122.8359 -12.6768 l
+-123.2881 -13.4551 l
+-123.3115 -13.4551 l
+-123.3672 -13.4551 -123.4043 -13.4639 -123.4248 -13.4775 c
+-123.4463 -13.4912 -123.4531 -13.5166 -123.4531 -13.5527 c
+-123.4531 -13.5869 -123.4473 -13.6113 -123.4287 -13.6289 c
+-123.4131 -13.6436 -123.3877 -13.6523 -123.3516 -13.6523 c
+-123.2881 -13.6523 l
+-122.9775 -13.6523 l
+-122.9219 -13.6523 -122.8867 -13.6445 -122.8662 -13.6299 c
+-122.8496 -13.6143 -122.8398 -13.5889 -122.8398 -13.5527 c
+-122.8398 -13.5166 -122.8506 -13.4912 -122.873 -13.4775 c
+-122.8965 -13.4639 -122.9355 -13.4551 -122.9941 -13.4551 c
+-123.04 -13.4551 l
+-122.71 -12.8604 l
+-122.3672 -13.4551 l
+-122.4209 -13.4551 l
+-122.4727 -13.4551 -122.5078 -13.4639 -122.5244 -13.4775 c
+-122.5449 -13.4912 -122.5547 -13.5166 -122.5547 -13.5527 c
+-122.5547 -13.5908 -122.5459 -13.6182 -122.5273 -13.6318 c
+-122.5127 -13.6445 -122.4727 -13.6523 -122.4053 -13.6523 c
+-122.3701 -13.6523 l
+-122.1523 -13.6523 l
+-122.082 -13.6523 -122.04 -13.6445 -122.0195 -13.6309 c
+-121.999 -13.6172 -121.9922 -13.5889 -121.9922 -13.5527 c
+-121.9922 -13.5166 -121.999 -13.4912 -122.0195 -13.4775 c
+-122.04 -13.4639 -122.0771 -13.4551 -122.1328 -13.4551 c
+-122.1523 -13.4551 l
+-122.6182 -12.6582 l
+-122.6182 -12.2236 l
+-122.418 -12.2236 L
+f
+*U
+0.743221 0.648188 0.629023 0.813504 0.113725 0.113725 0.105882 Xa
+-130 -7 m
+-118 -7 l
+-118 4.99902 l
+-
+endstream
endobj
102 0 obj
<>stream
+130 4.99902 l
+-130 -7 L
+f
+0 R
+0.912474 0.787625 0.619837 0.97467 0 0 0 ([Passermarken]) 0 1 XZ
+0.5 w
-130 -7 m
+-118 -7 l
+-118 4.99902 l
+-130 4.99902 l
+-130 -7 L
+s
+*u
+0 O
+0.912474 0.787625 0.619837 0.97467 0 0 0 ([Passermarken]) 0 1 Xz
+1 w
-124.4131 -0.223633 m
+-124.3203 -0.223633 l
+-124.2686 -0.223633 -124.2314 -0.214844 -124.209 -0.201172 c
+-124.1865 -0.1875 -124.1758 -0.161133 -124.1758 -0.129883 c
+-124.1758 -0.09375 -124.1855 -0.06543 -124.2031 -0.051758 c
+-124.2236 -0.038086 -124.2598 -0.029297 -124.3145 -0.029297 c
+-124.7822 -0.029297 l
+-124.8115 -0.029297 -124.835 -0.038086 -124.8525 -0.053711 c
+-124.8672 -0.072266 -124.876 -0.09668 -124.876 -0.129883 c
+-124.876 -0.161133 -124.8672 -0.1875 -124.8477 -0.201172 c
+-124.8311 -0.214844 -124.7998 -0.223633 -124.7588 -0.223633 c
+-124.7148 -0.223633 l
+-124.625 -0.223633 l
+-124.625 -1.45508 l
+-124.7148 -1.45508 l
+-124.7842 -1.45508 -124.8291 -1.46387 -124.8457 -1.47656 c
+-124.8662 -1.49023 -124.876 -1.51563 -124.876 -1.55273 c
+-124.876 -1.58496 -124.8672 -1.60938 -124.8525 -1.62793 c
+-124.835 -1.64355 -124.8115 -1.65234 -124.7822 -1.65234 c
+-124.3145 -1.65234 l
+-124.2598 -1.65234 -124.2236 -1.64453 -124.2031 -1.62988 c
+-124.1855 -1.61426 -124.1758 -1.58887 -124.1758 -1.55273 c
+-124.1758 -1.5166 -124.1875 -1.49121 -124.2119 -1.47754 c
+-124.2363 -1.46387 -124.2832 -1.45508 -124.3516 -1.45508 c
+-124.4131 -1.45508 l
+-124.4131 -0.897461 l
+-123.8447 -1.45508 l
+-123.8594 -1.45508 l
+-123.8906 -1.45508 l
+-123.9336 -1.45508 -123.9668 -1.46387 -123.9873 -1.47852 c
+-124.0078 -1.49316 -124.0156 -1.51758 -124.0156 -1.55273 c
+-124.0156 -1.58789 -124.0098 -1.6123 -123.9922 -1.62988 c
+-123.9775 -1.64453 -123.9531 -1.65234 -123.918 -1.65234 c
+-123.5166 -1.65234 l
+-123.4844 -1.65234 -123.4609 -1.64355 -123.4453 -1.62793 c
+-123.4268 -1.60938 -123.418 -1.58496 -123.418 -1.55273 c
+-123.418 -1.5166 -123.4287 -1.49219 -123.4512 -1.47754 c
+-123.4727 -1.46387 -123.5098 -1.45508 -123.5654 -1.45508 c
+-123.5859 -1.45508 l
+-124.1152 -0.942383 l
+-124.0352 -0.927734 -123.957 -0.87793 -123.8838 -0.790039 c
+-123.8105 -0.705078 -123.6953 -0.516602 -123.541 -0.223633 c
+-123.5166 -0.223633 l
+-123.459 -0.223633 -123.4219 -0.21582 -123.4014 -0.202148 c
+-123.3818 -0.189453 -123.3711 -0.165039 -123.3711 -0.129883 c
+-123.3711 -0.09668 -123.3809 -0.072266 -123.3984 -0.053711 c
+-123.4131 -0.038086 -123.4365 -0.029297 -123.4688 -0.029297 c
+-123.5996 -0.029297 l
+-123.627 -0.029297 -123.6484 -0.03418 -123.6621 -0.039063 c
+-123.6748 -0.046875 -123.6875 -0.060547 -123.7041 -0.083984 c
+-123.71 -0.09668 -123.7627 -0.189453 -123.8555 -0.362305 c
+-123.9072 -0.460938 l
+-123.9648 -0.567383 -124.0225 -0.647461 -124.0801 -0.700195 c
+-124.1377 -0.753906 -124.1982 -0.786133 -124.2617 -0.793945 c
+-124.4131 -0.651367 l
+-124.4131 -0.223633 L
+f
+*U
+0 R
+0.912474 0.787625 0.619837 0.97467 0 0 0 ([Passermarken]) 0 1 XZ
+0.3 w 4 M
-100 -154 m
+-100 -118 L
+S
+-154 -100 m
+-118 -100 L
+S
+-154 99.9995 m
+-118 99.9995 L
+S
+-100 153.9995 m
+-100 117.9995 L
+S
+100 -154 m
+100 -118 L
+S
+154 -100 m
+118 -100 L
+S
+154 99.9995 m
+118 99.9995 L
+S
+100 153.9995 m
+100 117.9995 L
+S
+0 0 0 0 0 0 0 ([Passermarken]) 1 1 XZ
+1.25 w 10 M
-121 -127 m
+-121 -123.6855 -123.6855 -121 -127 -121 c
+-130.3145 -121 -133 -123.6855 -133 -127 c
+-133 -130.3145 -130.3145 -133 -127 -133 c
+-123.6855 -133 -121 -130.3145 -121 -127 C
+s
+-136 -127 m
+-118 -127 L
+S
+-127 -136 m
+-127 -118 L
+S
+-124 -127 m
+-124 -125.3428 -125.3428 -124 -127 -124 c
+-128.6572 -124 -130 -125.3428 -130 -127 c
+-130 -128.6572 -128.6572 -130 -127 -130 c
+-125.3428 -130 -124 -128.6572 -124 -127 C
+s
+0.912474 0.787625 0.619837 0.97467 0 0 0 ([Passermarken]) 0 1 XZ
+0.25 w
-121 -127 m
+-121 -123.6855 -123.6855 -121 -127 -121 c
+-130.3145 -121 -133 -123.6855 -133 -127 c
+-133 -130.3145 -130.3145 -133 -127 -133 c
+-123.6855 -133 -121 -130.3145 -121 -127 C
+s
+-136 -127 m
+-118 -127 L
+S
+-127 -136 m
+-127 -118 L
+S
+0 O
+0.912474 0.787625 0.619837 0.97467 0 0 0 ([Passermarken]) 0 1 Xz
+1 w
-124 -127 m
+-124 -125.3428 -125.3428 -124 -127 -124 c
+-128.6572 -124 -130 -125.3428 -130 -127 c
+-130 -128.6572 -128.6572 -130 -127 -130 c
+-125.3428 -130 -124 -128.6572 -124 -127 C
+F
+0 R
+0 0 0 0 0 0 0 ([Passermarken]) 1 1 XZ
+0.25 w
-130 -127 m
+-124 -127 L
+S
+-127 -130 m
+-127 -124 L
+S
+1.25 w
133 -127 m
+133 -123.6855 130.3145 -121 127 -121 c
+123.6855 -121 121 -123.6855 121 -127 c
+121 -130.3145 123.6855 -133 127 -133 c
+130.3145 -133 133 -130.3145 133 -127 C
+s
+118 -127 m
+136 -127 L
+S
+127 -136 m
+127 -118 L
+S
+130 -127 m
+130 -125.3428 128.6572 -124 127 -124 c
+125.3428 -124 124 -125.3428 124 -127 c
+124 -128.6572 125.3428 -130 127 -130 c
+128.6572 -130 130 -128.6572 130 -127 C
+s
+0.912474 0.787625 0.619837 0.97467 0 0 0 ([Passermarken]) 0 1 XZ
+0.25 w
133 -127 m
+133 -123.6855 130.3145 -121 127 -121 c
+123.6855 -121 121 -123.6855 121 -127 c
+121 -130.3145 123.6855 -133 127 -133 c
+130.3145 -133 133 -130.3145 133 -127 C
+s
+118 -127 m
+136 -127 L
+S
+127 -136 m
+127 -118 L
+S
+0 O
+0.912474 0.787625 0.619837 0.97467 0 0 0 ([Passermarken]) 0 1 Xz
+1 w
130 -127 m
+130 -125.3428 128.6572 -124 127 -124 c
+125.3428 -124 124 -125.3428 124 -127 c
+124 -128.6572 125.3428 -130 127 -130 c
+128.6572 -130 130 -128.6572 130 -127 C
+F
+0 R
+0 0 0 0 0 0 0 ([Passermarken]) 1 1 XZ
+0.25 w
124 -127 m
+130 -127 L
+S
+127 -130 m
+127 -124 L
+S
+1.25 w
-121 126.9995 m
+-121 130.314 -123.6855 132.9995 -127 132.9995 c
+-130.3145 132.9995 -133 130.314 -133 126.9995 c
+-133 123.6851 -130.3145 120.9995 -127 120.9995 c
+-123.6855 120.9995 -121 123.6851 -121 126.9995 C
+s
+-136 126.9995 m
+-118 126.9995 L
+S
+-127 117.9995 m
+-127 135.9995 L
+S
+-124 126.9995 m
+-124 128.6577 -125.3428 129.9995 -127 129.9995 c
+-128.6572 129.9995 -130 128.6577 -130 126.9995 c
+-130 125.3433 -128.6572 123.9995 -127 123.9995 c
+-125.3428 123.9995 -124 125.3433 -124 126.9995 C
+s
+0.912474 0.787625 0.619837 0.97467 0 0 0 ([Passermarken]) 0 1 XZ
+0.25 w
-121 126.9995 m
+-121 130.314 -123.6855 132.9995 -127 132.9995 c
+-130.3145 132.9995 -133 130.314 -133 126.9995 c
+-133 123.6851 -130.3145 120.9995 -127 120.9995 c
+-123.6855 120.9995 -121 123.6851 -121 126.9995 C
+s
+-136 126.9995 m
+-118 126.9995 L
+S
+-127 117.9995 m
+-127 135.9995 L
+S
+0 O
+0.912474 0.787625 0.619837 0.97467 0 0 0 ([Passermarken]) 0 1 Xz
+1 w
-124 126.9995 m
+-124 128.6577 -125.3428 129.9995 -127 129.9995 c
+-128.6572 129.9995 -130 128.6577 -130 126.9995 c
+-130 125.3433 -128.6572 123.9995 -127 123.9995 c
+-125.3428 123.9995 -124 125.3433 -124 126.9995 C
+F
+0 R
+0 0 0 0 0 0 0 ([Passermarken]) 1 1 XZ
+0.25 w
-130 126.9995 m
+-124 126.9995 L
+S
+-127 123.9995 m
+-127 129.9995 L
+S
+1.25 w
133 126.9995 m
+133 130.314 130.3145 132.9995 127 132.9995 c
+123.6855 132.9995 121 130.314 121 126.9995 c
+121 123.6851 123.6855 120.9995 127 120.9995 c
+130.3145 120.9995 133 123.6851 133 126.9995 C
+s
+118 126.9995 m
+136 126.9995 L
+S
+127 117.9995 m
+127 135.9995 L
+S
+130 126.9995 m
+130 128.6577 128.6572 129.9995 127 129.9995 c
+125.3428 129.9995 124 128.6577 124 126.9995 c
+124 125.3433 125.3428 123.9995 127 123.9995 c
+128.6572 123.9995 130 125.3433 130 126.9995 C
+s
+0.912474 0.787625 0.619837 0.97467 0 0 0 ([Passermarken]) 0 1 XZ
+0.25 w
133 126.9995 m
+133 130.314 130.3145 132.9995 127 132.9995 c
+123.6855 132.9995 121 130.314 121 126.9995 c
+121 123.6851 123.6855 120.9995 127 120.9995 c
+130.3145 120.9995 133 123.6851 133 126.9995 C
+s
+118 126.9995 m
+136 126.9995 L
+S
+127 117.9995 m
+127 135.9995 L
+S
+0 O
+0.912474 0.787625 0.619837 0.97467 0 0 0 ([Passermarken]) 0 1 Xz
+1 w
130 126.9995 m
+130 128.6577 128.6572 129.9995 127 129.9995 c
+125.3428 129.9995 124 128.6577 124 126.9995 c
+124 125.3433 125.3428 123.9995 127 123.9995 c
+128.6572 123.9995 130 125.3433 130 126.9995 C
+F
+0 R
+0 0 0 0 0 0 0 ([Passermarken]) 1 1 XZ
+0.25 w
124 126.9995 m
+130 126.9995 L
+S
+127 123.9995 m
+127 129.9995 L
+S
+U
+%_/ArtDictionary :
+%_197.8555 231 110.5449 77 0 0 /RealMatrix
+%_ (AI13Pattern9SliceScalingGridKey) ,
+%_5 /Int (AI13PatternRegistrationType) ,
+%_0 /Bool (AI15PixelPerfectSymbolEnablekey) ,
+%_1 /Bool (AI13PatternEnableGuides) ,
+%_1 /Int (AI13PatternExportType) ,
+%_;
+%_
+9 () XW
+%AI10_EndSymbol
+%AI14_BeginSymbol
+(Vektorschmutz)
0 A
+0 Xw
+u
+*u
+0 O
+0 g
+0 1 0 0 0 Xy
+0 J 0 j 1 w 4 M []0 d
1 XR
+-11.3574 -86.7866 m
+-10.793 -89.4727 -15.4346 -89.1089 -13.957 -86.7866 C
+-12.5186 -86.9419 -12.3418 -86.3398 -11.3574 -86.7866 C
+f
+1 D
+-12.6572 -68.2666 m
+-11.2783 -67.8735 -9.88281 -67.8027 -10.707 -65.9917 C
+-9.05078 -66.3726 -7.44141 -65.2837 -6.1582 -64.3677 C
+-3.79492 -64.9385 -2.38281 -64.4775 -0.634766 -63.7188 C
+0.092773 -66.4565 2.7998 -67.2148 4.8877 -68.5928 C
+4.33496 -70.1587 4.71777 -71.4795 6.18848 -71.8408 C
+6.63086 -75.0127 4.25098 -76.2808 5.53906 -79.3145 C
+2.26563 -80.0469 1.27246 -83.0615 -1.28516 -84.5127 C
+-1.54395 -83.7969 -1.93652 -83.2158 -2.90918 -83.2129 C
+-3.79004 -83.4155 -3.71875 -84.5708 -4.85938 -84.5127 C
+-5.29688 -82.9834 -7.01074 -82.5635 -8.75781 -83.2129 C
+-9.75781 -80.9639 -11.4736 -79.4307 -13.6309 -78.3398 C
+-11.9395 -76.8096 -13.7754 -74.4907 -14.6064 -73.4658 C
+-13.9512 -71.3237 -12.3818 -70.8555 -12.6572 -68.2666 C
+f
+42.5791 -77.6885 m
+45.6094 -76.7646 48.2686 -78.8965 48.4277 -81.9136 C
+45.8135 -82.4434 42.8291 -80.8945 42.2539 -78.3398 C
+42.5068 -78.2676 42.6318 -78.0674 42.5791 -77.6885 C
+f
+71.8213 -65.0171 m
+71.8926 -66.2061 72.2686 -66.2642 71.8213 -67.292 C
+70.0195 -67.2939 69.0898 -69.0283 67.2725 -69.5664 c
+65.5225 -70.085 63.2939 -69.27 62.0742 -70.8662 C
+61.4893 -69.6191 60.1084 -69.2959 58.5 -69.8911 C
+58.0635 -67.188 54.7363 -67.373 54.9258 -64.043 C
+54.3604 -64.0674 53.916 -63.9702 53.627 -63.7183 C
+53.3838 -62.7183 54.5176 -63.0933 54.2764 -62.0942 C
+53.9902 -61.188 52.6641 -61.3223 52.6523 -60.144 C
+54.583 -59.4771 54.668 -56.9619 55.251 -54.9463 C
+57.209 -54.1953 57.7441 -52.0244 59.7998 -51.3711 C
+57.1992 -50.397 55.0156 -49.0073 54.9258 -45.522 C
+61.9707 -42.0322 62.3916 -53.894 69.8721 -52.021 C
+71.3594 -55.4282 74.9307 -58.4331 72.7959 -62.7432 C
+73.2021 -63.5293 74.4346 -63.4883 74.4199 -64.6934 C
+73.6445 -64.8901 72.0645 -64.2842 71.8213 -65.0171 C
+f
+-48.7227 -29.6016 m
+-50.5732 -30.0254 -52.0967 -30.7764 -53.9209 -31.2266 C
+-53.8418 -29.2427 -50.0107 -29.2964 -48.7227 -29.6016 C
+f
+76.6953 -2.95801 m
+77.5898 -1.7959 80.2607 -2.29883 80.2695 -3.93311 C
+79.5303 -5.62207 76.6504 -4.80811 76.6953 -2.95801 C
+f
+-34.751 51.9531 m
+-36.1426 51.752 -36.0762 53.0103 -37.3516 52.9272 C
+-38.8779 52.397 -39.0049 50.4663 -39.624 49.0283 C
+-40.9492 48.7871 -40.7441 50.0752 -42.2246 49.6792 C
+-43.1924 49.2373 -43.5732 48.2109 -44.1738 47.4043 C
+-47.1523 47.998 -47.8145 46.2793 -49.373 45.4541 C
+-49.9424 45.9673 -50.0459 46.9463 -50.9971 47.0791 C
+-54.1035 45.7832 -54.4688 49.8662 -57.8203 48.3779 C
+-58.8926 52.085 -61.7568 54.1812 -65.9434 53.9023 C
+-66.0586 55.8594 -63.748 55.3882 -63.3438 56.8271 C
+-62.7783 59.666 -64.377 60.3423 -64.6445 62.3501 C
+-63.5605 64.1689 -62.7607 66.8403 -62.3691 70.1484 C
+-60.6885 70.0923 -60.3916 71.4199 -59.7695 72.4224 C
+-58.0381 72.207 -56.9258 72.6113 -56.5215 73.7222 C
+-56.166 75.4854 -57.1768 75.8823 -57.1709 77.2959 C
+-55.6338 76.5581 -54.4297 75.4873 -52.2959 75.3472 C
+-50.8623 76.4023 -49.9131 77.9463 -46.7734 77.2959 C
+-46.5967 76.2822 -45.999 75.687 -45.1484 75.3472 C
+-44.1582 75.7632 -44.2793 77.293 -42.874 77.2959 C
+-41.7959 76.6504 -43.4063 73.6094 -41.25 73.397 C
+-39.8867 73.335 -40.2451 74.9922 -38.6504 74.6973 C
+-38.2949 73.209 -38.2949 72.6113 -38.6504 71.123 C
+-36.5146 69.8042 -36.041 72.7261 -34.751 72.0981 C
+-34.7578 70.6953 -36.3701 70.9004 -36.376 69.498 C
+-34.8945 67.4961 -36.8584 63.6709 -34.751 62.0254 C
+-33.3076 61.3022 -28.6191 63.0171 -26.6279 61.375 C
+-33.1543 63.166 -38.3291 57.3921 -34.751 51.9531 C
+f
+39.0059 51.3032 m
+40.627 53.6611 43.1963 52.0361 46.8027 52.6021 C
+45.8857 50.502 41.5166 50.8052 39.0059 51.3032 C
+f
+-26.6279 64.2993 m
+-24.3379 64.7163 -21.9385 65.0254 -19.4805 65.2744 C
+-20.459 63.7573 -24.7148 63.8013 -26.6279 64.2993 C
+f
+-75.6914 73.397 m
+-76.9385 70.96 -79.9707 72.8701 -80.2393 74.6968 c
+-80.5762 76.981 -78.0098 77.583 -77.9648 79.5708 C
+-73.6738 80.9727 -74.0176 75.71 -72.1162 73.7217 C
+-72.2852 73.2417 -72.5977 72.9028 -72.7676 72.4219 C
+-74.3037 72.186 -74.9023 72.8857 -75.6914 73.397 C
+f
+36.7305 78.271 m
+36.8066 80.1182 40.0166 80.2891 40.9541 80.2212 C
+40.3887 78.729 38.416 78.6431 36.7305 78.271 C
+f
+25.6836 88.6675 m
+25.0264 85.8594 24.0225 83.3965 22.4346 81.5195 C
+23.0615 84.3584 24.1738 86.7104 25.6836 88.6675 C
+f
+u
+58.1748 -40.6484 m
+58.1748 -41.9492 L
+56.3633 -42.5352 56.6504 -42.3032 54.9258 -41.2993 C
+53.708 -42.2144 52.8369 -41.5161 51.6768 -42.2744 C
+51.1289 -40.8721 50.2041 -39.8481 47.7783 -40.3242 C
+46.6455 -37.6333 43.5371 -35.6572 43.5537 -32.2012 c
+43.5625 -30.3833 45.4561 -28.582 44.2041 -27.0029 C
+38.8252 -32.6563 26.0928 -26.6914 19.5098 -28.627 C
+20.3438 -31.1504 21.5869 -33.2661 22.4336 -35.7754 C
+23.6406 -36.0972 25.0879 -37.5039 24.0586 -39.0244 C
+19.6953 -37.54 19.8066 -31.5791 15.2861 -30.251 C
+13.5273 -32.2202 11.5596 -32.7754 9.43652 -34.8003 C
+9.2002 -39.5703 6.9248 -41.9111 5.21289 -44.873 c
+4.50586 -46.0972 4.77344 -47.8184 2.93945 -47.7974 C
+2.75684 -47.3291 2.43164 -47.0039 1.96484 -46.8232 C
+1.70898 -44.9434 2.86914 -44.478 2.61426 -42.5981 C
+-0.729492 -40.7754 -6.375 -43.0981 -10.0576 -44.873 C
+-10.4521 -42.853 -9.32129 -42.3604 -9.4082 -40.6484 C
+-12.8008 -38.9243 -14.9375 -41.4224 -18.1807 -39.999 C
+-19.9697 -41.1333 -20.6484 -43.3804 -23.0547 -43.8984 C
+-25.2207 -45.7393 -25.5283 -49.438 -28.2529 -50.7212 C
+-28.332 -48.501 -27.25 -48.2539 -26.3027 -46.8232 c
+-25.2246 -45.1924 -24.1855 -42.3682 -23.0547 -40.9731 c
+-21.5771 -39.1543 -19.6816 -38.5391 -19.8047 -36.75 c
+-19.9727 -34.2949 -22.8379 -34.166 -25.0039 -32.8501 C
+-27.0322 -23.853 -37.2998 -26.624 -44.499 -28.9512 C
+-40.2969 -26.7642 -34.8027 -25.8682 -31.1768 -23.103 C
+-33.583 -21.1782 -35.8438 -19.105 -37.3496 -16.2803 C
+-39.2607 -16.4282 -39.7441 -18.0029 -42.2246 -17.5791 C
+-42.5098 -15.7793 -40.4717 -16.3003 -39.9502 -15.3052 C
+-44.9912 -14.144 -47.0557 -18.5449 -52.6211 -17.5791 C
+-52.6992 -18.043 -53.1572 -18.1279 -53.2715 -18.5552 C
+-53.4854 -19.7432 -52.5693 -19.8013 -52.6211 -20.8281 C
+-54.0566 -21.9072 -55.1797 -23.4492 -54.8945 -25.377 C
+-57.1963 -26.4351 -59.1523 -27.8359 -59.4453 -30.9014 C
+-61.0361 -31.1924 -60.3223 -29.1792 -62.0439 -29.6021 C
+-62.9199 -32.3042 -64.5283 -30.4912 -66.918 -31.5522 C
+-67.2988 -31.0654 -67.3223 -30.2222 -67.8916 -29.9263 C
+-71.4014 -30.7261 -71.4199 -28.0391 -73.416 -27.3271 C
+-75.623 -28.1514 -76.6699 -29.9351 -79.2646 -28.9512 C
+-79.1748 -27.2012 -76.2041 -28.3291 -75.6914 -27.0029 C
+-76.8789 -23.9673 -77.7354 -20.5981 -79.2646 -17.9053 C
+-77.918 -17.0522 -77.1309 -15.1401 -77.9648 -13.0313 C
+-75.9502 -11.1763 -73.9092 -9.01416 -73.0908 -6.85742 C
+-71.9033 -6.64307 -71.8447 -7.56104 -70.8174 -7.50732 C
+-69.7979 -6.79199 -68.8008 -6.05713 -68.542 -4.58203 C
+-65.3779 -6.28516 -61.8545 -6.12012 -58.4707 -6.85742 C
+-57.9297 -7.29102 -58.3613 -8.69824 -57.8203 -9.13232 C
+-56.8174 -9.21191 -55.9834 -9.46094 -55.2207 -9.78223 C
+-54.3906 -10.1953 -55.5225 -11.373 -54.8945 -11.4063 C
+-50.4414 -10.8032 -43.4395 -11.4561 -39.9502 -8.48242 C
+-38.9336 -4.98633 -38.1934 -1.521 -39.9502 1.91504 C
+-40.5146 2.31787 -42.1074 1.66699 -43.5244 1.91504 C
+-44.3545 1.66211 -44.0752 0.299805 -45.1484 0.291016 C
+-50.8291 1.32471 -54.7422 4.12793 -56.5215 9.06396 C
+-56.1826 10.7837 -55.8857 12.5459 -55.8701 14.5869 C
+-54.3213 17.8018 -50.8535 19.1006 -48.7227 21.7349 C
+-48.0625 20.4199 -45.6143 20.6299 -44.499 21.4106 C
+-40.8447 19.541 -37.2588 17.603 -36.0508 13.2881 C
+-31.1826 13.293 -31.0244 18.0078 -27.9277 19.7856 C
+-28.8125 24.6406 -30.2988 28.895 -31.502 33.4326 C
+-29.1084 31.5107 -28.2148 27.5337 -27.6035 23.0347 C
+-26.2539 22.6519 -25.3271 21.8447 -24.0293 21.4106 C
+-23.209 22.2148 -21.8311 22.4609 -21.7539 24.0098 c
+-21.7266 25.229 -22.9443 25.2017 -23.0547 26.2837 C
+-19.2773 25.8677 -13.2021 25.5137 -13.6309 31.4829 C
+-11.7676 32.0469 -12.4063 30.1079 -11.0322 30.1826 C
+-7.94727 32.4316 -7.26758 41.6729 -9.08203 44.8037 C
+-11.0283 42.3828 -10.7676 38.5488 -14.6064 38.9561 c
+-18.4111 39.3599 -19.1299 44.8418 -16.5557 48.0527 C
+-13.2314 49.1567 -10.2676 51.2749 -8.43262 47.4038 C
+-4.99609 50.4307 -7.16309 57.7808 -10.3828 59.75 C
+-11.7129 60.0449 -13.0117 60.3711 -13.3057 61.6997 C
+-13.0527 61.772 -12.9287 61.9717 -12.9824 62.3496 C
+-11.8154 63.0249 -9.46777 62.519 -7.78418 62.6748 C
+-6.89746 64.2798 -5.62598 65.5 -5.50879 67.873 C
+-6.41504 68.9229 -9.17188 69.833 -8.43262 71.4468 C
+-7.57813 69.79 -4.04004 69.3086 -2.25977 70.4727 C
+-2.13184 71.645 -1.83887 72.6519 -1.60938 73.7217 C
+0.733398 74.5928 2.58984 76.6929 5.53906 75.9961 C
+6.37891 76.998 5.97852 79.2388 7.16309 79.896 C
+9.04395 80.0439 8.46875 77.7358 10.4121 77.9458 C
+11.1719 78.9199 10.083 81.7417 12.0371 81.52 C
+13.3477 81.0986 12.7578 78.7759 13.6621 77.9458 C
+16.3779 77.231 17.9609 78.0029 20.4844 77.9458 C
+20.8652 78.4316 20.8877 79.2749 21.46 79.5708 C
+21.6533 78.9917 20.5068 78.2217 21.46 77.9458 C
+22.8213 77.9917 22.9092 79.312 24.708 78.9209 C
+24.6787 77.5308 24.0576 76.541 24.708 75.3467 C
+30.9482 74.98 31.5498 68.9736 34.7813 65.5986 C
+38.7578 64.875 41.4102 67.1978 43.8789 66.8999 C
+42.7266 66.21 40.8789 66.2168 40.3047 64.9497 C
+40.9883 64.084 42.6816 63.7266 41.9287 62.3496 C
+39.8594 62.23 39.2168 63.5371 38.0303 64.2988 C
+36.9971 63.6006 34.9238 63.9409 34.457 62.6748 C
+34.084 60.2446 35.5498 59.6528 36.4063 58.4507 C
+36.1523 56.8638 35.0557 56.1187 35.1055 54.228 C
+35.3291 52.9336 37.4805 53.5688 37.3809 51.9526 c
+37.2949 50.6309 35.2578 51.2588 34.457 50.6528 C
+34.0459 48.2759 34.626 48.0308 34.7813 45.7788 C
+32.5859 45.1577 30.6357 44.293 30.8818 41.231 C
+28.3301 40.8589 26.0967 40.168 26.334 37.0068 C
+25.7441 36.188 24.1992 36.3247 23.7344 35.3818 C
+24.1084 35.2769 24.8525 33.9648 24.0586 33.7568 C
+23.334 35.7266 19.5908 34.269 18.5352 33.4326 C
+17.2656 33.6797 17.2715 35.2017 15.6104 35.0566 C
+15.4707 34.439 14.9111 34.2407 14.9609 33.4326 C
+17.2178 31.8979 21.668 32.5576 24.0586 31.1577 C
+24.0361 27.6748 22.3955 24.2329 24.3838 20.7607 C
+24.71 20.7617 24.7695 20.498 25.0332 20.436 C
+25.5586 20.9937 26.3926 21.2427 27.6328 21.0859 C
+30.4756 25.1279 35.4619 25.2188 39.3301 27.9087 C
+37.251 24.1279 28.3848 24.3486 29.583 16.2119 C
+27.458 15.7129 27.9014 19.146 26.334 18.1606 C
+27.0645 15.5337 29.9111 15.0249 31.207 12.9629 C
+39.0576 10.688 44.1572 17.8477 51.6768 15.2368 C
+53.8691 6.26563 37.6543 8.11963 37.0557 1.58984 c
+36.6855 -2.45117 40.3271 -1.20703 42.9043 -2.30811 C
+42.1152 -4.88721 38.2607 -2.88916 37.0557 -4.58203 C
+36.9111 -7.43506 39.6836 -7.37012 41.2793 -8.48242 C
+40.7529 -11.6504 43.29 -11.8813 44.5293 -14.0063 C
+43.7422 -15.71 40.7344 -15.1934 40.3047 -17.2539 C
+42.0732 -19.8262 44.6143 -25.3242 48.7529 -22.4541 C
+50.6123 -23.9512 51.8916 -22.4053 53.3018 -21.1543 C
+54.4609 -22.6011 55.7393 -21.8452 57.5264 -21.479 C
+59.6865 -24.2852 64.9189 -26.4292 63.0488 -31.2261 C
+63.1572 -32.5254 64.3936 -32.6973 64.3486 -34.1514 C
+61.9717 -35.9971 61.6953 -39.9453 58.1748 -40.6484 C
+f
+0 D
+6.83789 33.7568 m
+7.83105 33.4438 9.875 33.646 9.7627 35.3818 C
+8.57422 36.167 7.02637 35.0029 6.83789 33.7568 C
+f
+28.2832 18.1606 m
+29.7998 18.7017 29.7832 20.7769 30.5566 22.0596 C
+28.957 21.6558 26.5938 19.8486 28.2832 18.1606 C
+f
+U
+9 () XW
+1 D
+-14.6064 35.3813 m
+-17.0771 36.9204 -20.4551 39.2783 -21.4297 41.2305 C
+-19.0449 39.3916 -16.2207 37.9912 -14.6064 35.3813 C
+f
+-25.9785 61.7002 m
+-25.3076 61.1143 -21.165 62.3994 -20.4551 60.7251 C
+-22.4258 60.7109 -26.2666 60.5371 -25.9785 61.7002 C
+f
+*U
+%_/ArtDictionary :
+%_0 /Int (AI10 compound shape mode) ,
+%_;
+%_
+U
+%_/ArtDictionary :
+%_40.1348 120.4043 133.0009 44.3336 0 0 /RealMatrix
+%_ (AI13Pattern9SliceScalingGridKey) ,
+%_5 /Int (AI13PatternRegistrationType) ,
+%_0 /Bool (AI15PixelPerfectSymbolEnablekey) ,
+%_0 /Bool (AI13PatternEnableGuides) ,
+%_1 /Int (AI13PatternExportType) ,
+%_;
+%_
+9 () XW
+%AI10_EndSymbol
+%AI5_End_NonPrinting--
+%AI5_Begin_NonPrinting
+Np
+%AI8_BeginPluginObject
+(Adobe Brush Manager Order)
+(Adobe Brush Manager Order)
+( Adobe Calligraphic Brush Tool/ Rund - 5 Pt./ Adobe Calligraph) -
+(ic Brush Tool/ Rund - 15 Pt./ Adobe Calligraphic Brush Tool/ O) -
+(val - 3 Pt./ Adobe Calligraphic Brush Tool/ Oval - 5 Pt./ Adob) -
+(e Calligraphic Brush Tool/ Flach - 5 Pt./ Adobe ArtOnPath Brus) -
+(h Tool/ Kohle - Feder/ Adobe ArtOnPath Brush Tool/ Trennlinie/) -
+( Adobe dBrush Brush Tool/ Verwischt/ Adobe PatternOnPath Brush) -
+( Tool/ Hier schneiden/) .
+%AI8_EndPluginObject
+%AI5_End_NonPrinting--
+%AI5_Begin_NonPrinting
+Np
+%AI8_BeginPluginObject
+(Adobe dBrush Brush Tool)
+(Verwischt)
+(0 4 0.5 0.75 0.33 0.75 1.5 6 AI_BristleBrushLibary_CS5 05_Roun) -
+(d_Fan) .
+%AI8_EndPluginObject
+%AI5_End_NonPrinting--
+%AI5_Begin_NonPrinting
+Np
+%AI8_BeginPluginObject
+(Adobe Calligraphic Brush Tool)
+(Flach - 5 Pt.)
+(1 5 5 0 0 90 90 0 0 0 0) .
+%AI8_EndPluginObject
+%AI8_BeginPluginObject
+(Adobe Calligraphic Brush Tool)
+(Oval - 3 Pt.)
+(1 3 3 26 74 15 15 0 1 0 0) .
+%AI8_EndPluginObject
+%AI8_BeginPluginObject
+(Adobe Calligraphic Brush Tool)
+(Oval - 5 Pt.)
+(1 5 5 10 90 -65 35 0 1 1 0) .
+%AI8_EndPluginObject
+%AI8_BeginPluginObject
+(Adobe Calligraphic Brush Tool)
+(Rund - 15 Pt.)
+(1 15 15 100 100 0 0 1 0 1 0) .
+%AI8_EndPluginObject
+%AI8_BeginPluginObject
+(Adobe Calligraphic Brush Tool)
+(Rund - 5 Pt.)
+(1 5 5 100 100 0 0 0 0 0 0) .
+%AI8_EndPluginObject
+%AI5_End_NonPrinting--
+%AI5_Begin_NonPrinting
+Np
+%AI8_BeginPluginObject
+(Adobe ArtOnPath Brush Tool)
+(Kohle - Feder)
+(2 / Unnamed 6/ / / / / 0 1 / 1 1 1 0 1 0 0 0 1 1 0 0 0 0 1) .
+%AI8_EndPluginObject
+%AI8_BeginPluginObject
+(Adobe ArtOnPath Brush Tool)
+(Trennlinie)
+(2 / Unnamed Brush Pat 1/ / / / / 5 0.85098 0.396078 0.168627 /) -
+( 1 1 1 0 1 0 0 0 1 1 0 1 25 25 1) .
+%AI8_EndPluginObject
+%AI5_End_NonPrinting--
+%AI5_Begin_NonPrinting
+Np
+%AI8_BeginPluginObject
+(Adobe PatternOnPath Brush Tool)
+(Hier schneiden)
+(2 / New Pattern 4/ New Pattern 11/ New Pattern 11/ / / 0 0 / ) -
+(1 1 1 0 1 0 0 0 1 1 0 0 0 0 0) .
+%AI8_EndPluginObject
+%AI5_End_NonPrinting--
+%AI5_Begin_NonPrinting
+Np
+%AI9_BeginArtStyles
+/KnownStyle :
+(Abenddämmerung) /Name ,
+/ActiveStyle :
+/CompoundFilter :
+(Chain Style Filter) 0 0 /Filter ,
+1 /Visible ,
+/CompoundFilter :
+(Stack Style Filter) 0 0 /Filter ,
+1 /Visible ,
+/BasicFilter :
+(Stroke Style Filter) 0 0 /Filter ,
+1 /Visible ,
+2 /FillOrStroke ,
+/Dictionary : /NotRecorded ,
+/StrokeStyle : 0 1 0 0 0 Xy
+0 J 0 j 1 w 10 M []0 d
0 XR
+0 0 Xd
+/Def ;
+ (StrokeStyle) ,
+; /Dict ;
+ /Part ,
+/BasicFilter :
+(Conduit Filter) 0 0 /Filter ,
+1 /Visible ,
+;
+ /Part ,
+/CompoundFilter :
+(Chain Style Filter) 0 0 /Filter ,
+1 /Visible ,
+/BasicFilter :
+(Fill Style Filter) 0 0 /Filter ,
+1 /Visible ,
+/Dictionary : /NotRecorded ,
+0 /Bool (UseEvenOdd) ,
+/FillStyle : 0 O
+0 1 0 0 0 Xy
+0 J 0 j 1 w 10 M []0 d
0 XR
+0 1 Xd
+Bb
+0 0 0 0 Bh
+2 (Unnamed gradient 4) 0.0109 0.2935 0 1.2449 1 0 0 1 0 0 1 Bg
+0 BB
+/Def ;
+ (FillStyle) ,
+; /Dict ;
+ /Part ,
+/BasicFilter :
+(Adobe Transform) 1 0 /Filter ,
+1 /Visible ,
+(Transform Each.aip) /PluginFileName ,
+(Transformieren) /Title ,
+/Dictionary : /NotRecorded ,
+0 /Bool (transformPatterns) ,
+100 /Real (scaleV_Percent) ,
+1 /Real (scaleH_Factor) ,
+0 /Real (moveV_Pts) ,
+0 /Bool (reflectY) ,
+0 /Bool (reflectX) ,
+100 /Real (scaleH_Percent) ,
+0 /Bool (scaleLines) ,
+0 /Real (moveH_Pts) ,
+0 /Real (rotate_Radians) ,
+4 /Int (pinPoint) ,
+1 /Real (scaleV_Factor) ,
+0 /Real (rotate_Degrees) ,
+0 /Bool (randomize) ,
+0 /Int (numCopies) ,
+; /Dict ;
+ /Part ,
+/BasicFilter :
+(Adobe Transform) 1 0 /Filter ,
+1 /Visible ,
+(Transform Each.aip) /PluginFileName ,
+(Transformieren) /Title ,
+/Dictionary : /NotRecorded ,
+0 /Bool (transformPatterns) ,
+100 /Real (scaleV_Percent) ,
+1 /Real (scaleH_Factor) ,
+0 /Real (moveV_Pts) ,
+0 /Bool (reflectY) ,
+0 /Bool (reflectX) ,
+100 /Real (scaleH_Percent) ,
+0 /Bool (scaleLines) ,
+0 /Real (moveH_Pts) ,
+0 /Real (rotate_Radians) ,
+4 /Int (pinPoint) ,
+1 /Real (scaleV_Factor) ,
+0 /Real (rotate_Degrees) ,
+0 /Bool (randomize) ,
+0 /Int (numCopies) ,
+; /Dict ;
+ /Part ,
+/BasicFilter :
+(Adobe Fuzzy Mask) 1 0 /Filter ,
+1 /Visible ,
+(FuzzyEffect.aip) /PluginFileName ,
+(Weiche Kante) /Title ,
+/Dictionary : /NotRecorded ,
+20 /Real (Radius) ,
+; /Dict ;
+ /Part ,
+/BasicFilter :
+(Blend Style Filter) 0 0 /Filter ,
+1 /Visible ,
+/Dictionary : /NotRecorded ,
+/BlendStyle : 0 0.74 0 0 0 Xy
+0 J 0 j 1 w 10 M []0 d
0 XR
+/Def ;
+ (BlendStyle) ,
+; /Dict ;
+ /Part ,
+;
+ /Part ,
+/CompoundFilter :
+(Chain Style Filter) 0 0 /Filter ,
+1 /Visible ,
+/BasicFilter :
+(Fill Style Filter) 0 0 /Filter ,
+1 /Visible ,
+/Dictionary : /NotRecorded ,
+0 /Bool (UseEvenOdd) ,
+/FillStyle : 0 O
+0 1 0 0 0 Xy
+0 J 0 j 1 w 10 M []0 d
0 XR
+0 1 Xd
+Bb
+0 0 0 0 Bh
+2 (Unnamed gradient 41) -0.0109 -0.3587 0 0.695 1 0 0 1 0 0 1 Bg
+0 BB
+/Def ;
+ (FillStyle) ,
+; /Dict ;
+ /Part ,
+/BasicFilter :
+(Adobe Transform) 1 0 /Filter ,
+1 /Visible ,
+(Transform Each.aip) /PluginFileName ,
+(Transformieren) /Title ,
+/Dictionary : /NotRecorded ,
+0 /Bool (transformPatterns) ,
+100 /Real (scaleV_Percent) ,
+1 /Real (scaleH_Factor) ,
+0 /Real (moveV_Pts) ,
+0 /Bool (reflectY) ,
+0 /Bool (reflectX) ,
+100 /Real (scaleH_Percent) ,
+0 /Bool (scaleLines) ,
+0 /Real (moveH_Pts) ,
+0 /Real (rotate_Radians) ,
+4 /Int (pinPoint) ,
+1 /Real (scaleV_Factor) ,
+0 /Real (rotate_Degrees) ,
+0 /Bool (randomize) ,
+0 /Int (numCopies) ,
+; /Dict ;
+ /Part ,
+/BasicFilter :
+(Adobe Transform) 1 0 /Filter ,
+1 /Visible ,
+(Transform Each.aip) /PluginFileName ,
+(Transformieren) /Title ,
+/Dictionary : /NotRecorded ,
+0 /Bool (transformPatterns) ,
+100 /Real (scaleV_Percent) ,
+1 /Real (scaleH_Factor) ,
+0 /Real (moveV_Pts) ,
+0 /Bool (reflectY) ,
+0 /Bool (reflectX) ,
+100 /Real (scaleH_Percent) ,
+0 /Bool (scaleLines) ,
+0 /Real (moveH_Pts) ,
+0 /Real (rotate_Radians) ,
+4 /Int (pinPoint) ,
+1 /Real (scaleV_Factor) ,
+0 /Real (rotate_Degrees) ,
+0 /Bool (randomize) ,
+0 /Int (numCopies) ,
+; /Dict ;
+ /Part ,
+/BasicFilter :
+(Adobe Fuzzy Mask) 1 0 /Filter ,
+1 /Visible ,
+(FuzzyEffect.aip) /PluginFileName ,
+(Weiche Kante) /Title ,
+/Dictionary : /NotRecorded ,
+2 /Real (Radius) ,
+; /Dict ;
+ /Part ,
+/BasicFilter :
+(Blend Style Filter) 0 0 /Filter ,
+1 /Visible ,
+/Dictionary : /NotRecorded ,
+/BlendStyle : 3 1 0 0 0 Xy
+0 J 0 j 1 w 10 M []0 d
0 XR
+/Def ;
+ (BlendStyle) ,
+; /Dict ;
+ /Part ,
+;
+ /Part ,
+/CompoundFilter :
+(Chain Style Filter) 0 0 /Filter ,
+1 /Visible ,
+/BasicFilter :
+(Fill Style Filter) 0 0 /Filter ,
+1 /Visible ,
+/Dictionary : /NotRecorded ,
+0 /Bool (UseEvenOdd) ,
+/FillStyle : 0 O
+0 1 0 0 0 Xy
+0 J 0 j 1 w 10 M []0 d
0 XR
+0 1 Xd
+Bb
+0 0 178.8818 1 Bh
+2 (Unnamed gradient 5) -0.0035 -0.2872 0 1.2987 1 0 0 1 0 0 1 Bg
+0 BB
+/Def ;
+ (FillStyle) ,
+; /Dict ;
+ /Part ,
+/BasicFilter :
+(Adobe Transform) 1 0 /Filter ,
+1 /Visible ,
+(Transform Each.aip) /PluginFileName ,
+(Transformieren) /Title ,
+/Dictionary : /NotRecorded ,
+0 /Bool (transformPatterns) ,
+100 /Real (scaleV_Percent) ,
+1 /Real (scaleH_Factor) ,
+0 /Real (moveV_Pts) ,
+0 /Bool (reflectY) ,
+0 /Bool (reflectX) ,
+100 /Real (scaleH_Percent) ,
+0 /Bool (scaleLines) ,
+0 /Real (moveH_Pts) ,
+0 /Real (rotate_Radians) ,
+4 /Int (pinPoint) ,
+1 /Real (scaleV_Factor) ,
+0 /Real (rotate_Degrees) ,
+0 /Bool (randomize) ,
+0 /Int (numCopies) ,
+; /Dict ;
+ /Part ,
+/BasicFilter :
+(Blend Style Filter) 0 0 /Filter ,
+1 /Visible ,
+/Dictionary : /NotRecorded ,
+/BlendStyle : 1 0.45 0 0 0 Xy
+0 J 0 j 1 w 10 M []0 d
0 XR
+/Def ;
+ (BlendStyle) ,
+; /Dict ;
+ /Part ,
+;
+ /Part ,
+/CompoundFilter :
+(Chain Style Filter) 0 0 /Filter ,
+1 /Visible ,
+/BasicFilter :
+(Fill Style Filter) 0 0 /Filter ,
+1 /Visible ,
+/Dictionary : /NotRecorded ,
+0 /Bool (UseEvenOdd) ,
+/FillStyle : 0 O
+0 1 0 0 0 Xy
+0 J 0 j 1 w 10 M []0 d
0 XR
+0 1 Xd
+Bb
+0 0 0 0 Bh
+2 (Unnamed gradient 18) -0.0177 -0.3511 0 1.1983 1 0 0 1 0 0 1 Bg
+0 BB
+/Def ;
+ (FillStyle) ,
+; /Dict ;
+ /Part ,
+/BasicFilter :
+(Adobe Transform) 1 0 /Filter ,
+1 /Visible ,
+(Transform Each.aip) /PluginFileName ,
+(Transformieren) /Title ,
+/Dictionary : /NotRecorded ,
+0 /Bool (transformPatterns) ,
+100 /Real (scaleV_Percent) ,
+1 /Real (scaleH_Factor) ,
+0 /Real (moveV_Pts) ,
+0 /Bool (reflectY) ,
+0 /Bool (reflectX) ,
+100 /Real (scaleH_Percent) ,
+0 /Bool (scaleLines) ,
+0 /Real (moveH_Pts) ,
+0 /Real (rotate_Radians) ,
+4 /Int (pinPoint) ,
+1 /Real (scaleV_Factor) ,
+0 /Real (rotate_Degrees) ,
+0 /Bool (randomize) ,
+0 /Int (numCopies) ,
+; /Dict ;
+ /Part ,
+/BasicFilter :
+(Blend Style Filter) 0 0 /Filter ,
+1 /Visible ,
+/Dictionary : /NotRecorded ,
+/BlendStyle : 1 0.47 0 0 0 Xy
+0 J 0 j 1 w 10 M []0 d
0 XR
+/Def ;
+ (BlendStyle) ,
+; /Dict ;
+ /Part ,
+;
+ /Part ,
+/CompoundFilter :
+(Chain Style Filter) 0 0 /Filter ,
+1 /Visible ,
+/BasicFilter :
+(Fill Style Filter) 0 0 /Filter ,
+1 /Visible ,
+/Dictionary : /NotRecorded ,
+0 /Bool (UseEvenOdd) ,
+/FillStyle : 0 O
+0 1 0 0 0 Xy
+0 J 0 j 1 w 10 M []0 d
0 XR
+0 1 Xd
+Bb
+0 0 0 0 Bh
+2 (Unnamed gradient 14) -0.0035 -0.3723 0 1.3543 1 0 0 1 0 0 1 Bg
+0 BB
+/Def ;
+ (FillStyle) ,
+; /Dict ;
+ /Part ,
+/BasicFilter :
+(Blend Style Filter) 0 0 /Filter ,
+1 /Visible ,
+/Dictionary : /NotRecorded ,
+/BlendStyle : 0 0.52 0 0 0 Xy
+0 J 0 j 1 w 10 M []0 d
0 XR
+/Def ;
+ (BlendStyle) ,
+; /Dict ;
+ /Part ,
+;
+ /Part ,
+/BasicFilter :
+(Fill Style Filter) 0 0 /Filter ,
+1 /Visible ,
+/Dictionary : /NotRecorded ,
+0 /Bool (UseEvenOdd) ,
+/FillStyle : 0 O
+0 0 0 0 1 1 1 Xa
+0 1 0 0 0 Xy
+0 J 0 j 1 w 10 M []0 d
0 XR
+0 1 Xd
+/Def ;
+ (FillStyle) ,
+; /Dict ;
+ /Part ,
+;
+ /Part ,
+/BasicFilter :
+(Blend Style Filter) 0 0 /Filter ,
+1 /Visible ,
+/Dictionary : /NotRecorded ,
+/BlendStyle : 0 1 0 0 0 Xy
+0 J 0 j 1 w 10 M []0 d
0 XR
+/Def ;
+ (BlendStyle) ,
+; /Dict ;
+ /Part ,
+;
+
+/Execution ;
+ /Def ;
+/KnownStyle :
+(Abgerundete Ecken 2 Pt.) /Name ,
+/ActiveStyle :
+/CompoundFilter :
+(Chain Style Filter) 0 0 /Filter ,
+1 /Visible ,
+/BasicFilter :
+(Adobe Round Corners) 1 0 /Filter ,
+1 /Visible ,
+(Round Corners.aip) /PluginFileName ,
+(Ecken abrunden) /Title ,
+/Dictionary : /NotRecorded ,
+2 /Real (radius) ,
+; /Dict ;
+ /Part ,
+/CompoundFilter :
+(Stack Style Filter) 0 0 /Filter ,
+1 /Visible ,
+/BasicFilter :
+(Stroke Style Filter) 0 0 /Filter ,
+1 /Visible ,
+2 /FillOrStroke ,
+/Dictionary : /NotRecorded ,
+/StrokeStyle : 0 R
+0.743221 0.648188 0.629023 0.813504 0.113725 0.113725 0.105882 XA
+0 1 0 0 0 Xy
+0 J 0 j 1 w 10 M []0 d
0 XR
+1 0 Xd
+/Def ;
+ (StrokeStyle) ,
+; /Dict ;
+ /Part ,
+/BasicFilter :
+(Conduit Filter) 0 0 /Filter ,
+1 /Visible ,
+;
+ /Part ,
+/BasicFilter :
+(Fill Style Filter) 0 0 /Filter ,
+1 /Visible ,
+/Dictionary : /NotRecorded ,
+0 /Bool (UseEvenOdd) ,
+/FillStyle : 0 O
+0 0 0 0 1 1 1 Xa
+0 1 0 0 0 Xy
+0 J 0 j 1 w 10 M []0 d
0 XR
+0 1 Xd
+/Def ;
+ (FillStyle) ,
+; /Dict ;
+ /Part ,
+;
+ /Part ,
+/BasicFilter :
+(Blend Style Filter) 0 0 /Filter ,
+1 /Visible ,
+/Dictionary : /NotRecorded ,
+/BlendStyle : 0 1 0 0 0 Xy
+0 J 0 j 1 w 10 M []0 d
0 XR
+/Def ;
+ (BlendStyle) ,
+; /Dict ;
+ /Part ,
+;
+
+/Execution ;
+ /Def ;
+/KnownStyle :
+(Anon) /Name ,
+/ActiveStyle :
+/CompoundFilter :
+(Chain Style Filter) 0 0 /Filter ,
+1 /Visible ,
+/CompoundFilter :
+(Stack Style Filter) 0 0 /Filter ,
+1 /Visible ,
+/BasicFilter :
+(Conduit Filter) 0 0 /Filter ,
+1 /Visible ,
+;
+ /Part ,
+/BasicFilter :
+(Stroke Style Filter) 0 0 /Filter ,
+1 /Visible ,
+2 /FillOrStroke ,
+/Dictionary : /NotRecorded ,
+/StrokeStyle : 0 R
+0.0065 0.4589 0.819943 0.000244 0.952941 0.611765 0.231373 XA
+0 1 0 0 0 Xy
+0 J 0 j 2 w 1 M []0 d
0 XR
+1 0 Xd
+/Def ;
+ (StrokeStyle) ,
+; /Dict ;
+ /Part ,
+/CompoundFilter :
+(Chain Style Filter) 0 0 /Filter ,
+1 /Visible ,
+/BasicFilter :
+(Adobe Stroke Offset) 1 0 /Filter ,
+1 /Visible ,
+(StrokeOffset.aip) /PluginFileName ,
+(Konturverschiebung: Live-Effekt) /Title ,
+2 /FillOrStroke ,
+/Dictionary : /NotRecorded ,
+(Inside) /String (DisplayString) ,
+/StrokeStyle : 0 R
+0 0 0 0 1 1 1 XA
+0 1 0 0 0 Xy
+0 J 0 j 1.8 w 1 M []0 d
0 XR
+1 0 Xd
+/Def ;
+ (StrokeStyle) ,
+1 /Bool (StrokeOffsetInside) ,
+; /Dict ;
+ /Part ,
+/BasicFilter :
+(Blend Style Filter) 0 0 /Filter ,
+1 /Visible ,
+/Dictionary : /NotRecorded ,
+/BlendStyle : 0 0.6 0 0 0 Xy
+0 J 0 j 1 w 10 M []0 d
0 XR
+/Def ;
+ (BlendStyle) ,
+; /Dict ;
+ /Part ,
+;
+ /Part ,
+/CompoundFilter :
+(Chain Style Filter) 0 0 /Filter ,
+1 /Visible ,
+/BasicFilter :
+(Fill Style Filter) 0 0 /Filter ,
+1 /Visible ,
+/Dictionary : /NotRecorded ,
+0 /Bool (UseEvenOdd) ,
+/FillStyle : 0 O
+0 1 0 0 0 Xy
+0 J 0 j 1 w 10 M []0 d
0 XR
+0 1 Xd
+Bb
+2 (Unnamed gradient 8) 0 0 -90 1 1 0 0 1 0 0 1 Bg
+0 BB
+/Def ;
+ (FillStyle) ,
+; /Dict ;
+ /Part ,
+/BasicFilter :
+(Blend Style Filter) 0 0 /Filter ,
+1 /Visible ,
+/Dictionary : /NotRecorded ,
+/BlendStyle : 2 0.7 0 0 0 Xy
+0 J 0 j 1 w 10 M []0 d
0 XR
+/Def ;
+ (BlendStyle) ,
+; /Dict ;
+ /Part ,
+;
+ /Part ,
+/BasicFilter :
+(Fill Style Filter) 0 0 /Filter ,
+1 /Visible ,
+/Dictionary : /NotRecorded ,
+0 /Bool (UseEvenOdd) ,
+/FillStyle : 0 O
+0 1 0 0 0 Xy
+0 J 0 j 1 w 10 M []0 d
0 XR
+0 1 Xd
+Bb
+2 (Unnamed gradient 10) 0 0 90 1 1 0 0 1 0 0 1 Bg
+0 BB
+/Def ;
+ (FillStyle) ,
+; /Dict ;
+ /Part ,
+/BasicFilter :
+(Fill Style Filter) 0 0 /Filter ,
+1 /Visible ,
+/Dictionary : /NotRecorded ,
+0 /Bool (UseEvenOdd) ,
+/FillStyle : 0 O
+0 1 0 0 0 Xy
+0 J 0 j 1 w 10 M []0 d
0 XR
+0 1 Xd
+Bb
+2 (Unnamed gradient 42) 0 0 90 1 1 0 0 1 0 0 1 Bg
+0 BB
+/Def ;
+ (FillStyle) ,
+; /Dict ;
+ /Part ,
+;
+ /Part ,
+/BasicFilter :
+(Blend Style Filter) 0 0 /Filter ,
+1 /Visible ,
+/Dictionary : /NotRecorded ,
+/BlendStyle : 0 1 0 0 0 Xy
+0 J 0 j 1 w 10 M []0 d
0 XR
+/Def ;
+ (BlendStyle) ,
+; /Dict ;
+ /Part ,
+;
+
+/Execution ;
+ /Def ;
+/KnownStyle :
+(Anon 1510) /Name ,
+/SimpleStyle :
+0 O
+0.505455 0.098695 0.171084 0.001251 0.533333 0.752941 0.815686 Xa
+0 1 0 0 0 Xy
+0 J 0 j 1 w 10 M []0 d
0 XR
+0 1 Xd
+/Paint ;
+ /Def ;
+/KnownStyle :
+(Anon 174) /Name ,
+/SimpleStyle :
+0 O
+0.808438 0.673884 0.495369 0.548699 0.180392 0.203922 0.25098 Xa
+0 1 0 0 0 Xy
+0 J 0 j 1 w 10 M []0 d
0 XR
+0 1 Xd
+/Paint ;
+ /Def ;
+/KnownStyle :
+(Anon 195) /Name ,
+/ActiveStyle :
+/CompoundFilter :
+(Chain Style Filter) 0 0 /Filter ,
+1 /Visible ,
+/CompoundFilter :
+(Stack Style Filter) 0 0 /Filter ,
+1 /Visible ,
+/BasicFilter :
+(Conduit Filter) 0 0 /Filter ,
+1 /Visible ,
+;
+ /Part ,
+/CompoundFilter :
+(Chain Style Filter) 0 0 /Filter ,
+1 /Visible ,
+/BasicFilter :
+(Adobe Stroke Offset) 1 0 /Filter ,
+1 /Visible ,
+(StrokeOffset.aip) /PluginFileName ,
+(Konturverschiebung: Live-Effekt) /Title ,
+2 /FillOrStroke ,
+/Dictionary : /NotRecorded ,
+(Outside) /String (DisplayString) ,
+/StrokeStyle : 0 R
+0.749172 0.600427 0 0 0.333333 0.403922 0.682353 XA
+0 1 0 0 0 Xy
+0 J 1 j 0.25 w 5 M []0 d
0 XR
+1 0 Xd
+/Def ;
+ (StrokeStyle) ,
+0 /Bool (StrokeOffsetInside) ,
+; /Dict ;
+ /Part ,
+/BasicFilter :
+(Blend Style Filter) 0 0 /Filter ,
+1 /Visible ,
+/Dictionary : /NotRecorded ,
+/BlendStyle : 0 1 1 0 0 Xy
+0 J 0 j 1 w 10 M []0 d
0 XR
+/Def ;
+ (BlendStyle) ,
+; /Dict ;
+ /Part ,
+;
+ /Part ,
+/CompoundFilter :
+(Chain Style Filter) 0 0 /Filter ,
+1 /Visible ,
+/BasicFilter :
+(Fill Style Filter) 0 0 /Filter ,
+1 /Visible ,
+/Dictionary : /NotRecorded ,
+0 /Bool (UseEvenOdd) ,
+/FillStyle : 0 O
+0 1 0 0 0 Xy
+0 J 0 j 1 w 10 M []0 d
0 XR
+0 1 Xd
+Bb
+2 (Unnamed gradient 16) 0 0 -90 1 1 0 0 1 0 0 1 Bg
+0 BB
+/Def ;
+ (FillStyle) ,
+; /Dict ;
+ /Part ,
+/BasicFilter :
+(Blend Style Filter) 0 0 /Filter ,
+1 /Visible ,
+/Dictionary : /NotRecorded ,
+/BlendStyle : 2 0.7 0 0 0 Xy
+0 J 0 j 1 w 10 M []0 d
0 XR
+/Def ;
+ (BlendStyle) ,
+; /Dict ;
+ /Part ,
+;
+ /Part ,
+/CompoundFilter :
+(Chain Style Filter) 0 0 /Filter ,
+1 /Visible ,
+/BasicFilter :
+(Fill Style Filter) 0 0 /Filter ,
+1 /Visible ,
+/Dictionary : /NotRecorded ,
+0 /Bool (UseEvenOdd) ,
+/FillStyle : 0 O
+0 1 0 0 0 Xy
+0 J 0 j 1 w 10 M []0 d
0 XR
+0 1 Xd
+Bb
+0 0 0 0 Bh
+2 (Unnamed gradient 19) 0 0 0 1 1 0 0 1 0 0 0.5 Bg
+0 BB
+/Def ;
+ (FillStyle) ,
+; /Dict ;
+ /Part ,
+/BasicFilter :
+(Blend Style Filter) 0 0 /Filter ,
+1 /Visible ,
+/Dictionary : /NotRecorded ,
+/BlendStyle : 2 0.51 0 0 0 Xy
+0 J 0 j 1 w 10 M []0 d
0 XR
+/Def ;
+ (BlendStyle) ,
+; /Dict ;
+ /Part ,
+;
+ /Part ,
+/BasicFilter :
+(Fill Style Filter) 0 0 /Filter ,
+1 /Visible ,
+/Dictionary : /NotRecorded ,
+0 /Bool (UseEvenOdd) ,
+/FillStyle : 0 O
+0 1 0 0 0 Xy
+0 J 0 j 1 w 10 M []0 d
0 XR
+0 1 Xd
+Bb
+2 (Unnamed gradient 21) 0 0 90 1 1 0 0 1 0 0 1 Bg
+0 BB
+/Def ;
+ (FillStyle) ,
+; /Dict ;
+ /Part ,
+/BasicFilter :
+(Fill Style Filter) 0 0 /Filter ,
+1 /Visible ,
+/Dictionary : /NotRecorded ,
+0 /Bool (UseEvenOdd) ,
+/FillStyle : 0 O
+0 1 0 0 0 Xy
+0 J 0 j 1 w 10 M []0 d
0 XR
+0 1 Xd
+Bb
+2 (Unnamed gradient 1) 0 0 90 1 1 0 0 1 0 0 1 Bg
+0 BB
+/Def ;
+ (FillStyle) ,
+; /Dict ;
+ /Part ,
+;
+ /Part ,
+/BasicFilter :
+(Blend Style Filter) 0 0 /Filter ,
+1 /Visible ,
+/Dictionary : /NotRecorded ,
+/BlendStyle : 0 1 0 0 0 Xy
+0 J 0 j 1 w 10 M []0 d
0 XR
+/Def ;
+ (BlendStyle) ,
+; /Dict ;
+ /Part ,
+;
+
+/Execution ;
+ /Def ;
+/KnownStyle :
+(Interaktiv X spiegeln) /Name ,
+/ActiveStyle :
+/CompoundFilter :
+(Chain Style Filter) 0 0 /Filter ,
+1 /Visible ,
+/CompoundFilter :
+(Stack Style Filter) 0 0 /Filter ,
+1 /Visible ,
+/BasicFilter :
+(Stroke Style Filter) 0 0 /Filter ,
+1 /Visible ,
+2 /FillOrStroke ,
+/Dictionary : /NotRecorded ,
+/StrokeStyle : 0 1 0 0 0 Xy
+0 J 0 j 1 w 10 M []0 d
0 XR
+0 0 Xd
+/Def ;
+ (StrokeStyle) ,
+; /Dict ;
+ /Part ,
+/BasicFilter :
+(Conduit Filter) 0 0 /Filter ,
+1 /Visible ,
+;
+ /Part ,
+/BasicFilter :
+(Fill Style Filter) 0 0 /Filter ,
+1 /Visible ,
+/Dictionary : /NotRecorded ,
+0 /Bool (UseEvenOdd) ,
+/FillStyle : 0 1 0 0 0 Xy
+0 J 0 j 1 w 10 M []0 d
0 XR
+0 0 Xd
+/Def ;
+ (FillStyle) ,
+; /Dict ;
+ /Part ,
+;
+ /Part ,
+/BasicFilter :
+(Adobe Transform) 1 0 /Filter ,
+1 /Visible ,
+(Transform Each.aip) /PluginFileName ,
+(Transformieren) /Title ,
+/Dictionary : /NotRecorded ,
+0 /Bool (transformPatterns) ,
+100 /Real (scaleV_Percent) ,
+1 /Real (scaleH_Factor) ,
+0 /Real (moveV_Pts) ,
+0 /Bool (reflectY) ,
+1 /Bool (reflectX) ,
+100 /Real (scaleH_Percent) ,
+0 /Bool (scaleLines) ,
+0 /Real (moveH_Pts) ,
+0 /Real (rotate_Radians) ,
+3 /Int (pinPoint) ,
+1 /Real (scaleV_Factor) ,
+0 /Real (rotate_Degrees) ,
+0 /Bool (randomize) ,
+1 /Int (numCopies) ,
+; /Dict ;
+ /Part ,
+/BasicFilter :
+(Blend Style Filter) 0 0 /Filter ,
+1 /Visible ,
+/Dictionary : /NotRecorded ,
+/BlendStyle : 0 1 0 0 0 Xy
+0 J 0 j 1 w 10 M []0 d
0 XR
+/Def ;
+ (BlendStyle) ,
+; /Dict ;
+ /Part ,
+;
+
+/Execution ;
+ /Def ;
+/KnownStyle :
+(Laub_GS) /Name ,
+/ActiveStyle :
+/CompoundFilter :
+(Chain Style Filter) 0 0 /Filter ,
+1 /Visible ,
+/CompoundFilter :
+(Stack Style Filter) 0 0 /Filter ,
+1 /Visible ,
+/BasicFilter :
+(Stroke Style Filter) 0 0 /Filter ,
+1 /Visible ,
+2 /FillOrStroke ,
+/Dictionary : /NotRecorded ,
+/StrokeStyle : 0 1 0 0 0 Xy
+0 J 0 j 1 w 10 M []0 d
0 XR
+0 0 Xd
+/Def ;
+ (StrokeStyle) ,
+; /Dict ;
+ /Part ,
+/BasicFilter :
+(Conduit Filter) 0 0 /Filter ,
+1 /Visible ,
+;
+ /Part ,
+/BasicFilter :
+(Fill Style Filter) 0 0 /Filter ,
+1 /Visible ,
+/Dictionary : /NotRecorded ,
+0 /Bool (UseEvenOdd) ,
+/FillStyle : 0 O
+(Laub) 0 0 1 1 0 0 0 0 0 [0 0.7 -0.7 0 -2200.8872 13353.1689] p
+0 1 0 0 0 Xy
+0 J 0 j 1 w 10 M []0 d
0 XR
+0 1 Xd
+/Def ;
+ (FillStyle) ,
+; /Dict ;
+ /Part ,
+/BasicFilter :
+(Fill Style Filter) 0 0 /Filter ,
+1 /Visible ,
+/Dictionary : /NotRecorded ,
+0 /Bool (UseEvenOdd) ,
+/FillStyle : 0 O
+0.021942 0.098024 0.918059 0 1 0.866667 0 Xa
+0 1 0 0 0 Xy
+0 J 0 j 1 w 10 M []0 d
0 XR
+0 1 Xd
+/Def ;
+ (FillStyle) ,
+; /Dict ;
+ /Part ,
+;
+ /Part ,
+/BasicFilter :
+(Blend Style Filter) 0 0 /Filter ,
+1 /Visible ,
+/Dictionary : /NotRecorded ,
+/BlendStyle : 0 1 0 0 0 Xy
+0 J 0 j 1 w 10 M []0 d
0 XR
+/Def ;
+ (BlendStyle) ,
+; /Dict ;
+ /Part ,
+;
+
+/Execution ;
+ /Def ;
+/KnownStyle :
+(Pompadour_GS) /Name ,
+/ActiveStyle :
+/CompoundFilter :
+(Chain Style Filter) 0 0 /Filter ,
+1 /Visible ,
+/CompoundFilter :
+(Stack Style Filter) 0 0 /Filter ,
+1 /Visible ,
+/BasicFilter :
+(Stroke Style Filter) 0 0 /Filter ,
+1 /Visible ,
+2 /FillOrStroke ,
+/Dictionary : /NotRecorded ,
+/StrokeStyle : 0 1 0 0 0 Xy
+0 J 0 j 1 w 10 M []0 d
0 XR
+0 0 Xd
+/Def ;
+ (StrokeStyle) ,
+; /Dict ;
+ /Part ,
+/BasicFilter :
+(Conduit Filter) 0 0 /Filter ,
+1 /Visible ,
+;
+ /Part ,
+/CompoundFilter :
+(Chain Style Filter) 0 0 /Filter ,
+1 /Visible ,
+/BasicFilter :
+(Fill Style Filter) 0 0 /Filter ,
+1 /Visible ,
+/Dictionary : /NotRecorded ,
+1 /Bool (UseEvenOdd) ,
+/FillStyle : 0 O
+(Pompadour) 0 0 1 1 0 0 0 0 0 [1 0 0 1 0 0] p
+0 1 0 0 0 Xy
+0 J 0 j 1 w 10 M []0 d
0 XR
+0 1 Xd
+/Def ;
+ (FillStyle) ,
+; /Dict ;
+ /Part ,
+/BasicFilter :
+(Blend Style Filter) 0 0 /Filter ,
+1 /Visible ,
+/Dictionary : /NotRecorded ,
+/BlendStyle : 1 1 0 0 0 Xy
+0 J 0 j 1 w 10 M []0 d
0 XR
+/Def ;
+ (BlendStyle) ,
+; /Dict ;
+ /Part ,
+;
+ /Part ,
+/BasicFilter :
+(Fill Style Filter) 0 0 /Filter ,
+1 /Visible ,
+/Dictionary : /NotRecorded ,
+1 /Bool (UseEvenOdd) ,
+/FillStyle : 0 O
+0.651484 0.148959 0.001282 0 0.317647 0.682353 0.886275 Xa
+0 1 0 0 0 Xy
+0 J 0 j 1 w 10 M []0 d
0 XR
+0 1 Xd
+/Def ;
+ (FillStyle) ,
+; /Dict ;
+ /Part ,
+;
+ /Part ,
+/BasicFilter :
+(Blend Style Filter) 0 0 /Filter ,
+1 /Visible ,
+/Dictionary : /NotRecorded ,
+/BlendStyle : 0 1 0 0 0 Xy
+0 J 0 j 1 w 10 M []0 d
0 XR
+/Def ;
+ (BlendStyle) ,
+; /Dict ;
+ /Part ,
+;
+
+/Execution ;
+ /Def ;
+/KnownStyle :
+(Schlagschatten) /Name ,
+/ActiveStyle :
+/CompoundFilter :
+(Chain Style Filter) 0 0 /Filter ,
+1 /Visible ,
+/CompoundFilter :
+(Stack Style Filter) 0 0 /Filter ,
+1 /Visible ,
+/BasicFilter :
+(Stroke Style Filter) 0 0 /Filter ,
+1 /Visible ,
+2 /FillOrStroke ,
+/Dictionary : /NotRecorded ,
+/StrokeStyle : 0 1 0 0 0 Xy
+0 J 0 j 1 w 10 M []0 d
0 XR
+0 0 Xd
+/Def ;
+ (StrokeStyle) ,
+; /Dict ;
+ /Part ,
+/BasicFilter :
+(Conduit Filter) 0 0 /Filter ,
+1 /Visible ,
+;
+ /Part ,
+/BasicFilter :
+(Fill Style Filter) 0 0 /Filter ,
+1 /Visible ,
+/Dictionary : /NotRecorded ,
+0 /Bool (UseEvenOdd) ,
+/FillStyle : 0 1 0 0 0 Xy
+0 J 0 j 1 w 10 M []0 d
0 XR
+0 0 Xd
+/Def ;
+ (FillStyle) ,
+; /Dict ;
+ /Part ,
+;
+ /Part ,
+/BasicFilter :
+(Adobe Drop Shadow) 1 0 /Filter ,
+1 /Visible ,
+(Drop Shadow.aip) /PluginFileName ,
+(Schlagschatten) /Title ,
+/Dictionary : /NotRecorded ,
+1 /Bool (pair) ,
+2 /Real (vert) ,
+50 /Real (dark) ,
+2 /Real (horz) ,
+1 /Int (csrc) ,
+1 /Bool (usePSLBlur) ,
+/FillStyle : 0 O
+0.743221 0.648188 0.629023 0.813504 0.113725 0.113725 0.105882 Xa
+0 1 0 0 0 Xy
+0 J 0 j 1 w 10 M []0 d
0 XR
+0 1 Xd
+/Def ;
+ (sclr) ,
+0.75 /Real (opac) ,
+3 /Real (blur) ,
+1 /Int (blnd) ,
+16 /Int (Adobe Effect Expand Before Version) ,
+; /Dict ;
+ /Part ,
+/BasicFilter :
+(Blend Style Filter) 0 0 /Filter ,
+1 /Visible ,
+/Dictionary : /NotRecorded ,
+/BlendStyle : 0 1 0 0 0 Xy
+0 J 0 j 1 w 10 M []0 d
0 XR
+/Def ;
+ (BlendStyle) ,
+; /Dict ;
+ /Part ,
+;
+
+/Execution ;
+ /Def ;
+/KnownStyle :
+(Weich abgeflachte Kante) /Name ,
+/ActiveStyle :
+/CompoundFilter :
+(Chain Style Filter) 0 0 /Filter ,
+1 /Visible ,
+/CompoundFilter :
+(Stack Style Filter) 0 0 /Filter ,
+1 /Visible ,
+/BasicFilter :
+(Stroke Style Filter) 0 0 /Filter ,
+1 /Visible ,
+2 /FillOrStroke ,
+/Dictionary : /NotRecorded ,
+/StrokeStyle : 0 1 0 0 0 Xy
+0 J 0 j 1 w 10 M []0 d
0 XR
+0 0 Xd
+/Def ;
+ (StrokeStyle) ,
+; /Dict ;
+ /Part ,
+/BasicFilter :
+(Conduit Filter) 0 0 /Filter ,
+1 /Visible ,
+/Dictionary : /NotRecorded ,
+; /Dict ;
+ /Part ,
+/CompoundFilter :
+(Chain Style Filter) 0 0 /Filter ,
+1 /Visible ,
+/BasicFilter :
+(Fill Style Filter) 0 0 /Filter ,
+1 /Visible ,
+/Dictionary : /NotRecorded ,
+0 /Bool (UseEvenOdd) ,
+/FillStyle : 0 O
+0 1 0 0 0 Xy
+0 J 0 j 1 w 10 M []0 d
0 XR
+0 1 Xd
+Bb
+2 (Unnamed gradient 51) 0.0226 0 135.0003 1.2757 1 0 0 1 0 0 1 Bg
+0 BB
+/Def ;
+ (FillStyle) ,
+; /Dict ;
+ /Part ,
+/BasicFilter :
+(Adobe Fuzzy Mask) 1 0 /Filter ,
+1 /Visible ,
+(FuzzyEffect.aip) /PluginFileName ,
+(Weiche Kante) /Title ,
+/Dictionary : /NotRecorded ,
+10 /Real (Radius) ,
+; /Dict ;
+ /Part ,
+;
+ /Part ,
+/CompoundFilter :
+(Chain Style Filter) 0 0 /Filter ,
+1 /Visible ,
+/BasicFilter :
+(Adobe Offset Path) 1 0 /Filter ,
+1 /Visible ,
+(Offset Path.aip) /PluginFileName ,
+(Pfad verschieben) /Title ,
+/Dictionary : /NotRecorded ,
+7 /Real (ofst) ,
+4 /Real (mlim) ,
+2 /Int (jntp) ,
+; /Dict ;
+ /Part ,
+/BasicFilter :
+(Fill Style Filter) 0 0 /Filter ,
+1 /Visible ,
+/Dictionary : /NotRecorded ,
+0 /Bool (UseEvenOdd) ,
+/FillStyle : 0 O
+0 1 0 0 0 Xy
+0 J 0 j 1 w 10 M []0 d
0 XR
+0 1 Xd
+Bb
+2 (Unnamed gradient 54) 0 0 -45.0002 1 1 0 0 1 0 0 1 Bg
+0 BB
+/Def ;
+ (FillStyle) ,
+; /Dict ;
+ /Part ,
+;
+ /Part ,
+;
+ /Part ,
+/BasicFilter :
+(Blend Style Filter) 0 0 /Filter ,
+1 /Visible ,
+/Dictionary : /NotRecorded ,
+/BlendStyle : 0 1 0 0 0 Xy
+0 J 0 j 1 w 10 M []0 d
0 XR
+/Def ;
+ (BlendStyle) ,
+; /Dict ;
+ /Part ,
+;
+
+/Execution ;
+ /Def ;
+/KnownStyle :
+([Standard]) /Name ,
+/SimpleStyle :
+0 O
+0 0 0 0 1 1 1 Xa
+0 R
+0.743221 0.648188 0.629023 0.813504 0.113725 0.113725 0.105882 XA
+0 1 0 0 0 Xy
+0 J 0 j 1 w 10 M []0 d
0 XR
+1 1 Xd
+/Paint ;
+ /Def ;
+%AI9_EndArtStyles
+%AI5_End_NonPrinting--
+%AI5_BeginPalette
+0 0 Pb
+0.912474 0.787625 0.619837 0.97467 0 0 0 ([Passermarken]) 0 1 Xz
+([Passermarken])
+Pc
+0 0 0 0 1 1 1 Xa
+(Weiß)
+Pc
+0.743221 0.648188 0.629023 0.813504 0.113725 0.113725 0.105882 Xa
+(Schwarz)
+Pc
+0.001648 0.996399 0.976776 0.001984 0.890196 0.023529 0.07451 Xa
+(CMYK Rot)
+Pc
+0.045655 0 0.888395 0 1 0.929412 0 Xa
+(CMYK Gelb)
+Pc
+0.838651 0.115511 0.962341 0.010986 0 0.588235 0.25098 Xa
+(CMYK Grün)
+Pc
+0.75079 0.216068 0 0 0 0.623529 0.890196 Xa
+(CMYK Cyan)
+Pc
+0.996765 0.965789 0.0878 0.011505 0.192157 0.152941 0.513726 Xa
+(CMYK Blau)
+Pc
+0.008942 0.971435 0.039033 0 0.901961 0 0.494118 Xa
+(CMYK Magenta)
+Pc
+0.17554 1 0.904204 0.07599 0.745098 0.086275 0.133333 Xa
+(C=15 M=100 Y=90 K=10)
+Pc
+0.003632 0.899077 0.849912 0 0.901961 0.2 0.164706 Xa
+(C=0 M=90 Y=85 K=0)
+Pc
+0 0.797818 0.941039 0.001312 0.913725 0.305882 0.105882 Xa
+(C=0 M=80 Y=95 K=0)
+Pc
+0.001892 0.501549 0.97351 0.000214 0.952941 0.572549 0 Xa
+(C=0 M=50 Y=100 K=0)
+Pc
+0 0.348089 0.850645 0 0.976471 0.698039 0.2 Xa
+(C=0 M=35 Y=85 K=0)
+Pc
+0.054566 0 0.886961 0 0.988235 0.917647 0.062745 Xa
+(C=5 M=0 Y=90 K=0)
+Pc
+0.198093 0.004028 0.946899 0 0.870588 0.862745 0 Xa
+(C=20 M=0 Y=100 K=0)
+Pc
+0.49955 0 0.994995 0 0.584314 0.756863 0.121569 Xa
+(C=50 M=0 Y=100 K=0)
+Pc
+0.746487 0 0.995239 0 0.227451 0.666667 0.207843 Xa
+(C=75 M=0 Y=100 K=0)
+Pc
+0.852354 0.169528 1 0.034516 0 0.552941 0.211765 Xa
+(C=85 M=10 Y=100 K=10)
+Pc
+0.902007 0.328862 0.959106 0.261204 0 0.4 0.2 Xa
+(C=90 M=30 Y=95 K=30)
+Pc
+0.748501 0 0.747158 0 0.184314 0.67451 0.4 Xa
+(C=75 M=0 Y=75 K=0)
+Pc
+0.783505 0.110475 0.44947 0.004547 0 0.631373 0.603922 Xa
+(C=80 M=10 Y=45 K=0)
+Pc
+0.698512 0.160403 0 0 0.211765 0.662745 0.882353 Xa
+(C=70 M=15 Y=0 K=0)
+Pc
+0.84799 0.496101 0.001801 0 0.113725 0.443137 0.721569 Xa
+(C=85 M=50 Y=0 K=0)
+Pc
+1 0.932494 0.097414 0.010742 0.176471 0.180392 0.513726 Xa
+(C=100 M=95 Y=5 K=0)
+Pc
+1 0.984619 0.300084 0.228214 0.160784 0.137255 0.360784 Xa
+(C=100 M=100 Y=25 K=25)
+Pc
+0.754849 0.993286 0.022736 0.003998 0.4 0.141176 0.513726 Xa
+(C=75 M=100 Y=0 K=0)
+Pc
+0.504448 0.995972 0.008453 0.00296 0.584314 0.105882 0.505882 Xa
+(C=50 M=100 Y=0 K=0)
+Pc
+0.277195 0.983795 0.289403 0.177462 0.639216 0.098039 0.356863 Xa
+(C=35 M=100 Y=35 K=10)
+Pc
+0.087526 0.996979 0.47953 0.017273 0.839216 0.043137 0.321569 Xa
+(C=10 M=100 Y=50 K=0)
+Pc
+0 0.945342 0.193301 0.00058 0.905882 0.113725 0.45098 Xa
+(C=0 M=95 Y=20 K=0)
+Pc
+0.216587 0.233188 0.379309 0.044099 0.796078 0.733333 0.627451 Xa
+(C=25 M=25 Y=40 K=0)
+Pc
+0.312474 0.397589 0.43888 0.187289 0.643137 0.541176 0.482353 Xa
+(C=40 M=45 Y=50 K=5)
+Pc
+0.424475 0.449012 0.55465 0.344823 0.482353 0.415686 0.345098 Xa
+(C=50 M=50 Y=60 K=25)
+Pc
+0.444495 0.53402 0.578546 0.504479 0.388235 0.305882 0.258824 Xa
+(C=55 M=60 Y=65 K=40)
+Pc
+0.193301 0.373053 0.629145 0.074159 0.792157 0.619608 0.403922 Xa
+(C=25 M=40 Y=65 K=0)
+Pc
+0.24979 0.475837 0.732998 0.162539 0.694118 0.498039 0.290196 Xa
+(C=30 M=50 Y=75 K=10)
+Pc
+0.306889 0.577478 0.779446 0.294591 0.576471 0.376471 0.215686 Xa
+(C=35 M=60 Y=80 K=25)
+Pc
+0.340551 0.624384 0.865385 0.409461 0.490196 0.305882 0.141176 Xa
+(C=40 M=65 Y=90 K=35)
+Pc
+0.375372 0.678492 0.965057 0.525902 0.407843 0.235294 0.066667 Xa
+(C=40 M=70 Y=100 K=50)
+Pc
+0.468452 0.683467 0.780606 0.716243 0.262745 0.160784 0.094118 Xa
+(C=50 M=70 Y=80 K=70)
+Pc
+Bb
+2 (Weiß, Schwarz) 0 0 0 1 1 0 0 1 0 0 1 Bg
+0 BB
+(Weiß, Schwarz)
+Pc
+Bb
+2 (Orange, Gelb) 0 0 0 1 1 0 0 1 0 0 1 Bg
+0 BB
+(Orange, Gelb)
+Pc
+Bb
+2 (Verblassender Himmel) 0 0 0 1 1 0 0 1 0 0 1 Bg
+0 BB
+(Verblassender Himmel)
+Pc
+Bb
+0 0 0 0 Bh
+2 (Sehr weiche schwarze Vignette) 0 0 0 1 1 0 0 1 0 0 1 Bg
+0 BB
+(Sehr weiche schwarze Vignette)
+Pc
+(Laub) 0 0 1 1 0 0 0 0 0 [1 0 0 1 0 0] p
+(Laub)
+Pc
+(Pompadour) 0 0 1 1 0 0 0 0 0 [1 0 0 1 0 0] p
+(Pompadour)
+Pc
+1 (Graustufen) 1 Pg
+0.743221 0.648188 0.629023 0.813504 0.113725 0.113725 0.105882 Xa
+(C=0 M=0 Y=0 K=100)
+Pc
+0.66363 0.566125 0.55111 0.600732 0.235294 0.235294 0.231373 Xa
+(C=0 M=0 Y=0 K=90)
+Pc
+0.593744 0.492622 0.488838 0.418311 0.341176 0.341176 0.337255 Xa
+(C=0 M=0 Y=0 K=80)
+Pc
+0.531518 0.433936 0.42591 0.279881 0.439216 0.435294 0.435294 Xa
+(C=0 M=0 Y=0 K=70)
+Pc
+0.47129 0.36878 0.36878 0.174716 0.529412 0.529412 0.529412 Xa
+(C=0 M=0 Y=0 K=60)
+Pc
+0.397436 0.307927 0.320073 0.100069 0.615686 0.615686 0.611765 Xa
+(C=0 M=0 Y=0 K=50)
+Pc
+0.328893 0.24802 0.257694 0.045808 0.698039 0.698039 0.698039 Xa
+(C=0 M=0 Y=0 K=40)
+Pc
+0.2551 0.187503 0.19794 0.016297 0.776471 0.776471 0.776471 Xa
+(C=0 M=0 Y=0 K=30)
+Pc
+0.171847 0.120424 0.133059 0.001312 0.854902 0.854902 0.854902 Xa
+(C=0 M=0 Y=0 K=20)
+Pc
+0.083955 0.058015 0.068391 0 0.929412 0.929412 0.929412 Xa
+(C=0 M=0 Y=0 K=10)
+Pc
+0.041901 0.031647 0.036683 0 0.964706 0.964706 0.964706 Xa
+(C=0 M=0 Y=0 K=5)
+Pc
+1 (Strahlende Farben) 1 Pg
+0.001648 0.996399 0.976776 0.001984 0.890196 0.023529 0.07451 Xa
+(C=0 M=100 Y=100 K=0)
+Pc
+0.008301 0.746029 1 0 0.917647 0.356863 0.047059 Xa
+(C=0 M=75 Y=100 K=0)
+Pc
+0.022705 0.091249 0.917052 0 1 0.870588 0 Xa
+(C=0 M=10 Y=95 K=0)
+Pc
+0.834714 0.101381 1 0.007813 0 0.596078 0.227451 Xa
+(C=85 M=10 Y=100 K=0)
+Pc
+1 0.87863 0.075715 0.005524 0.152941 0.203922 0.545098 Xa
+(C=100 M=90 Y=0 K=0)
+Pc
+0.602258 0.894011 0 0.000824 0.509804 0.211765 0.54902 Xa
+(C=60 M=90 Y=0 K=0)
+Pc
+PB
+%AI5_EndPalette
+%AI5_Begin_NonPrinting
+Np
+%AI9_BeginArtStyleList
+([Standard])
+(Schlagschatten)
+(Abgerundete Ecken 2 Pt.)
+(Interaktiv X spiegeln)
+(Weich abgeflachte Kante)
+(Abenddämmerung)
+(Laub_GS)
+(Pompadour_GS)
+%AI9_EndArtStyleList
+%AI5_End_NonPrinting--
+%AI5_Begin_NonPrinting
+Np
+%AI10_BeginSymbolList
+(Prozessrechteck)
+(Vektorschmutz)
+(Leuchtendes Orange)
+(Schnittmarken \(9-Slice\))
+(Band)
+(Gerbera)
+%AI10_EndSymbolList
+%AI5_End_NonPrinting--
+%AI9_BeginDocumentData
+%_/Document :
+%_/Dictionary :
+%_/XMLNode :
+%_/Dictionary :
+%_; (xmlnode-attributes) ,
+%_/Array :
+%_/XMLNode :
+%_/Dictionary :
+%_; (xmlnode-attributes) ,
+%_/Array :
+%_/XMLNode :
+%_/Dictionary :
+%_/XMLNode :
+%_/Dictionary :
+%_; (xmlnode-attributes) ,
+%_/Array :
+%_; (xmlnode-children) ,
+%_2 /Int (xmlnode-nodetype) ,
+%_(&ns_vars;) /String (xmlnode-nodevalue) ,
+%_(xmlns) /String (xmlnode-nodename) ,
+%_; (xmlns) ,
+%_; (xmlnode-attributes) ,
+%_/Array :
+%_/XMLNode :
+%_/Dictionary :
+%_/XMLNode :
+%_/Dictionary :
+%_; (xmlnode-attributes) ,
+%_/Array :
+%_; (xmlnode-children) ,
+%_2 /Int (xmlnode-nodetype) ,
+%_(binding1) /String (xmlnode-nodevalue) ,
+%_(varSetName) /String (xmlnode-nodename) ,
+%_; (varSetName) ,
+%_/XMLNode :
+%_/Dictionary :
+%_; (xmlnode-attributes) ,
+%_/Array :
+%_; (xmlnode-children) ,
+%_2 /Int (xmlnode-nodetype) ,
+%_(none) /String (xmlnode-nodevalue) ,
+%_(locked) /String (xmlnode-nodename) ,
+%_; (locked) ,
+%_; (xmlnode-attributes) ,
+%_/Array :
+%_/XMLNode :
+%_/Dictionary :
+%_; (xmlnode-attributes) ,
+%_/Array :
+%_; (xmlnode-children) ,
+%_1 /Int (xmlnode-nodetype) ,
+%_ /String (xmlnode-nodevalue) ,
+%_(variables) /String (xmlnode-nodename) ,
+%_; ,
+%_/XMLNode :
+%_/Dictionary :
+%_/XMLNode :
+%_/Dictionary :
+%_; (xmlnode-attributes) ,
+%_/Array :
+%_; (xmlnode-children) ,
+%_2 /Int (xmlnode-nodetype) ,
+%_(&ns_vars;) /String (xmlnode-nodevalue) ,
+%_(xmlns:v) /String (xmlnode-nodename) ,
+%_; (xmlns:v) ,
+%_/XMLNode :
+%_/Dictionary :
+%_; (xmlnode-attributes) ,
+%_/Array :
+%_; (xmlnode-children) ,
+%_2 /Int (xmlnode-nodetype) ,
+%_(&ns_custom;) /String (xmlnode-nodevalue) ,
+%_(xmlns) /String (xmlnode-nodename) ,
+%_; (xmlns) ,
+%_; (xmlnode-attributes) ,
+%_/Array :
+%_; (xmlnode-children) ,
+%_1 /Int (xmlnode-nodetype) ,
+%_ /String (xmlnode-nodevalue) ,
+%_(v:sampleDataSets) /String (xmlnode-nodename) ,
+%_; ,
+%_; (xmlnode-children) ,
+%_1 /Int (xmlnode-nodetype) ,
+%_ /String (xmlnode-nodevalue) ,
+%_(variableSet) /String (xmlnode-nodename) ,
+%_; ,
+%_; (xmlnode-children) ,
+%_1 /Int (xmlnode-nodetype) ,
+%_ /String (xmlnode-nodevalue) ,
+%_(variableSets) /String (xmlnode-nodename) ,
+%_; ,
+%_/XMLNode :
+%_/Dictionary :
+%_/XMLNode :
+%_/Dictionary :
+%_; (xmlnode-attributes) ,
+%_/Array :
+%_; (xmlnode-children) ,
+%_2 /Int (xmlnode-nodetype) ,
+%_(&ns_sfw;) /String (xmlnode-nodevalue) ,
+%_(xmlns) /String (xmlnode-nodename) ,
+%_; (xmlns) ,
+%_; (xmlnode-attributes) ,
+%_/Array :
+%_/XMLNode :
+%_/Dictionary :
+%_; (xmlnode-attributes) ,
+%_/Array :
+%_; (xmlnode-children) ,
+%_1 /Int (xmlnode-nodetype) ,
+%_ /String (xmlnode-nodevalue) ,
+%_(slices) /String (xmlnode-nodename) ,
+%_; ,
+%_/XMLNode :
+%_/Dictionary :
+%_/XMLNode :
+%_/Dictionary :
+%_; (xmlnode-attributes) ,
+%_/Array :
+%_; (xmlnode-children) ,
+%_2 /Int (xmlnode-nodetype) ,
+%_357.6152 /Real (xmlnode-nodevalue) ,
+%_(width) /String (xmlnode-nodename) ,
+%_; (width) ,
+%_/XMLNode :
+%_/Dictionary :
+%_; (xmlnode-attributes) ,
+%_/Array :
+%_; (xmlnode-children) ,
+%_2 /Int (xmlnode-nodetype) ,
+%_165.4883 /Real (xmlnode-nodevalue) ,
+%_(height) /String (xmlnode-nodename) ,
+%_; (height) ,
+%_/XMLNode :
+%_/Dictionary :
+%_; (xmlnode-attributes) ,
+%_/Array :
+%_; (xmlnode-children) ,
+%_2 /Int (xmlnode-nodetype) ,
+%_-195.7256 /Real (xmlnode-nodevalue) ,
+%_(y) /String (xmlnode-nodename) ,
+%_; (y) ,
+%_/XMLNode :
+%_/Dictionary :
+%_; (xmlnode-attributes) ,
+%_/Array :
+%_; (xmlnode-children) ,
+%_2 /Int (xmlnode-nodetype) ,
+%_265.1924 /Real (xmlnode-nodevalue) ,
+%_(x) /String (xmlnode-nodename) ,
+%_; (x) ,
+%_/XMLNode :
+%_/Dictionary :
+%_; (xmlnode-attributes) ,
+%_/Array :
+%_; (xmlnode-children) ,
+%_2 /Int (xmlnode-nodetype) ,
+%_1 /Bool (xmlnode-nodevalue) ,
+%_(bottomLeftOrigin) /String (xmlnode-nodename) ,
+%_; (bottomLeftOrigin) ,
+%_; (xmlnode-attributes) ,
+%_/Array :
+%_; (xmlnode-children) ,
+%_1 /Int (xmlnode-nodetype) ,
+%_ /String (xmlnode-nodevalue) ,
+%_(sliceSourceBounds) /String (xmlnode-nodename) ,
+%_; ,
+%_; (xmlnode-children) ,
+%_1 /Int (xmlnode-nodetype) ,
+%_ /String (xmlnode-nodevalue) ,
+%_(sfw) /String (xmlnode-nodename) ,
+%_; ,
+%_; (xmlnode-children) ,
+%_1 /Int (xmlnode-nodetype) ,
+%_ /String (xmlnode-nodevalue) ,
+%_(metadata) /String (xmlnode-nodename) ,
+%_; ,
+%_; (xmlnode-children) ,
+%_9 /Int (xmlnode-nodetype) ,
+%_ /String (xmlnode-nodevalue) ,
+%_(#document) /String (xmlnode-nodename) ,
+%_; (#document) ,
+%_0 /Real (BleedLeftValue) ,
+%_0 /Int (CropAreaActive) ,
+%_/Array :
+%_/Dictionary :
+%_7747 8091 /RealPoint
+%_ (RulerOrigin) ,
+%_0 /Int (DisplayMark) ,
+%_(Zeichenfläche 1) /UnicodeString (Name) ,
+%_1 /Real (PAR) ,
+%_888 -200 /RealPointRelToROrigin
+%_ (PositionPoint2) ,
+%_0 0 /RealPointRelToROrigin
+%_ (PositionPoint1) ,
+%_1 /Bool (IsArtboardDefaultName) ,
+%_; ,
+%_; (ArtboardArray) ,
+%_/Dictionary :
+%_36 /Real (padd) ,
+%_0 /Bool (mask) ,
+%_1 /Bool (spot) ,
+%_0 /Bool (alis) ,
+%_72 /Int (dpi.) ,
+%_4 /Int (colr) ,
+%_; (AI Auto Rasterize) ,
+%_0 /Bool (AI11 document knockout group) ,
+%_0 /Bool (AI11 document isolate blending) ,
+%_0 /Bool (AI9 paper simulation) ,
+%_1 /Int (AI9 artboard color) ,
+%_2 /Int (AI9 transparency grid size) ,
+%_52428 /Int (AI9 artboard color 2 blue) ,
+%_52428 /Int (AI9 artboard color 2 green) ,
+%_52428 /Int (AI9 artboard color 2 red) ,
+%_65535 /Int (AI9 artboard color 1 blue) ,
+%_65535 /Int (AI9 artboard color 1 green) ,
+%_65535 /Int (AI9 artboard color 1 red) ,
+%_16383 /Int (AIDocumentCanvasSize) ,
+%_1 /Bool (AI11 Preserve Text Editability) ,
+%_42 /Int (AI11 Document Setup Language Popup) ,
+%_([Mittlere Auflösung]) /UnicodeString (AI11 Document Setup Flattener Preset Name) ,
+%_150 /Real (AI9 Mesh Rasterization Resolution) ,
+%_300 /Real (AI9 Output Rasterization Resolution) ,
+%_5 /Real (GlobalRepulsion) ,
+%_0 /Real (BleedRightValue) ,
+%_0 /Real (BleedTopValue) ,
+%_6553 /Int (PerspectiveGrid_LeftRed) ,
+%_1 /Bool (AI10 flattener clip complex regions) ,
+%_75 /Int (AI10 flattener raster-vector balance) ,
+%_8431 8316 /RealPoint
+%_ (PerspectiveGrid_RightPlaneCellExtent) ,
+%_1 /Bool (AI10 flattener preserve overprints) ,
+%_100 /Real (kAIParametersSubsetFontsRatioKey) ,
+%_8191 7941 /RealPoint
+%_ (PerspectiveGrid_LeftPlaneTopPoint) ,
+%_7711 8191 /RealPoint
+%_ (PerspectiveGrid_LeftVanishingPoint) ,
+%_8191 7941 /RealPoint
+%_ (PerspectiveGrid_RightPlaneTopPoint) ,
+%_0 /Int (PerspectiveGrid_RulerOriginIndexSecond) ,
+%_8191 8441 /RealPoint
+%_ (PerspectiveGrid_LeftPlaneBottomPoint) ,
+%_7951 8316 /RealPoint
+%_ (PerspectiveGrid_LeftPlaneCellExtent) ,
+%_8191 8441 /RealPoint
+%_ (PerspectiveGrid_RightPlaneBottomPoint) ,
+%_0 /Int (PerspectiveGrid_RulerOriginIndexFirst) ,
+%_8671 8191 /RealPoint
+%_ (PerspectiveGrid_RightVanishingPoint) ,
+%_0 /Int (PerspectiveGrid_RightPlaneVisibilityState) ,
+%_0 -500 /RealPoint
+%_ (PerspectiveGrid_RelativeFloorVanishingPoint) ,
+%_0 /Int (PerspectiveGrid_FloorPlaneVisibilityState) ,
+%_0 /Int (PerspectiveGrid_LeftPlaneVisibilityState) ,
+%_0 /Int (PerspectiveGrid_Unit) ,
+%_0 /Real (BleedBottomValue) ,
+%_1 1 /RealPoint
+%_ (PerspectiveGrid_Scale) ,
+%_2 /Int (PerspectiveGrid_Type) ,
+%_1 /Int (AI12_SpotColorMode) ,
+%_/Dictionary :
+%_/Array :
+%_; (SelHatDocInterIDsArray) ,
+%_/Array :
+%_; (SelHatDocLocalNamesArray) ,
+%_; (SelHatDocTableDict) ,
+%_0 /Real (PerspectiveGrid_FloorOffset) ,
+%_45874 /Int (PerspectiveGrid_FloorGreen) ,
+%_45 /Real (PerspectiveGrid_LeftFaceAngle) ,
+%_26214 /Int (PerspectiveGrid_LeftGreen) ,
+%_8191 8441 /RealPoint
+%_ (PerspectiveGrid_StationPoint) ,
+%_480 /Real (PerspectiveGrid_ViewingDistance) ,
+%_580 /Real (PerspectiveGrid_RightExtent) ,
+%_65535 /Int (PerspectiveGrid_RightRed) ,
+%_0 /Int (PerspectiveGrid_RightBlue) ,
+%_580 /Real (PerspectiveGrid_LeftExtent) ,
+%_1 /Int (kAIParametersWhichProfileKey) ,
+%_32767 /Int (PerspectiveGrid_FloorBlue) ,
+%_0 /Bool (kAIParametersCompression) ,
+%_50 /Real (PerspectiveGrid_RightOpacity) ,
+%_0 /Int (kAIParametersEmbedProfileKey) ,
+%_32767 /Int (PerspectiveGrid_RightGreen) ,
+%_1 /Bool (kAIParametersPDFCompatibility) ,
+%_45 /Real (PerspectiveGrid_RightFaceAngle) ,
+%_50 /Real (PerspectiveGrid_LeftOpacity) ,
+%_0 /Bool (AI10 flattener outline text) ,
+%_30 /Real (PerspectiveGrid_CellSize) ,
+%_0 /Bool (AI16 flattener anti alias) ,
+%_(14.0.0) /String (kAIFullDocumentVersionStr) ,
+%_1 /Bool (AI10 flattener outline strokes) ,
+%_4 /Int (AI9 Flattening Quality Level) ,
+%_50 /Real (PerspectiveGrid_FloorOpacity) ,
+%_15 /Real (PerspectiveGrid_CellCount) ,
+%_250 /Real (PerspectiveGrid_HorizonHeight) ,
+%_32767 /Int (PerspectiveGrid_FloorRed) ,
+%_58981 /Int (PerspectiveGrid_LeftBlue) ,
+%_; /Recorded ,
+%_/Dictionary : /NotRecorded ,
+%_1 /Int (LastArtboardID) ,
+%_([Medium Resolution]) /String (AI12 AI Flattener Preset Name) ,
+%_0 /Bool (AI16 AI Anti Aliasing) ,
+%_1 /Bool (AI12 AI Clip Complex Regions) ,
+%_1 /Bool (AI12 AI Outline Strokes) ,
+%_0 /Bool (AI12 AI Outline Text) ,
+%_75 /Int (AI12 AI Raster/Vector Balance) ,
+%_1 /Int (AI12 AI Overprints) ,
+%_([Medium Resolution]) /String (AI11 EPS Flattener Preset Name) ,
+%_0 /Bool (AI16 EPS Anti Aliasing) ,
+%_1 /Bool (AI11 EPS Clip Complex Regions) ,
+%_1 /Bool (AI11 EPS Outline Strokes) ,
+%_0 /Bool (AI11 EPS Outline Text) ,
+%_75 /Int (AI11 EPS Raster/Vector Balance) ,
+%_1 /Int (AI11 EPS Overprints) ,
+%_1 /Bool (AI9 no overprint in composite) ,
+%_/Dictionary : /NotRecorded ,
+%_ /String (/attributes/job.pagerange) ,
+%_1 /Int (/attributes/job.printall) ,
+%_1 /Int (/attributes/job.skipblank) ,
+%_0 /Int (/attributes/job.reverseorder) ,
+%_0 /Int (/attributes/job.collate) ,
+%_() /UnicodeString (/attributes/job.artboardrange) ,
+%_1 /Int (/attributes/job.printallartboards) ,
+%_; (AI11 Print JobInfo Dict) ,
+%_/Dictionary : /NotRecorded ,
+%_([Standard]) /UnicodeString (/attributes/collectionName) ,
+%_1 /Int (/attributes/stl.defaultprinter) ,
+%_() /UnicodeString (/attributes/stl.printername) ,
+%_() /UnicodeString (/attributes/stl.ppdmodelname) ,
+%_1 /Int (/attributes/stl.defaultppd) ,
+%_() /UnicodeString (/attributes/stl.customppd) ,
+%_0 /Int (/attributes/ppr.custom) ,
+%_1 /Int (/attributes/ppr.default) ,
+%_612 /Real (/attributes/ppr.width) ,
+%_792 /Real (/attributes/ppr.height) ,
+%_0 /Real (/attributes/ppr.image.left) ,
+%_0 /Real (/attributes/ppr.image.top) ,
+%_612 /Real (/attributes/ppr.image.right) ,
+%_792 /Real (/attributes/ppr.image.bottom) ,
+%_(Durch Treiber definiert) /UnicodeString (/attributes/ppr.name) ,
+%_0 /Real (/attributes/cppr.width) ,
+%_0 /Real (/attributes/cppr.height) ,
+%_0 /Real (/attributes/cppr.woffset) ,
+%_0 /Real (/attributes/cppr.hoffset) ,
+%_0 /Int (/attributes/cppr.trans) ,
+%_0 /Int (/attributes/job.designation) ,
+%_2 /Int (/attributes/job.printbounds) ,
+%_1 /Int (/attributes/job.printofile) ,
+%_0 /Int (/attributes/job.printasbitmap) ,
+%_() /UnicodeString (/attributes/job.name) ,
+%_0 /Int (/attributes/clr.mode) ,
+%_0 /Int (/attributes/clr.convertspots) ,
+%_0 /Int (/attributes/clr.overprintblack) ,
+%_720 /Int (/attributes/crd.orientation) ,
+%_0 /Int (/attributes/crd.fliphorz) ,
+%_5 /Int (/attributes/crd.position) ,
+%_0 /Real (/attributes/crd.org.h) ,
+%_0 /Real (/attributes/crd.org.v) ,
+%_100 /Real (/attributes/crd.scale.h) ,
+%_100 /Real (/attributes/crd.scale.v) ,
+%_0 /Int (/attributes/crd.scplcy) ,
+%_1 /Int (/attributes/crd.sccnst) ,
+%_0 /Int (/attributes/crd.tiling) ,
+%_0 /Real (/attributes/crd.overlap.h) ,
+%_0 /Real (/attributes/crd.overlap.v) ,
+%_0 /Int (/attributes/pgmk.enabled) ,
+%_0 /Int (/attributes/pgmk.style) ,
+%_() /UnicodeString (/attributes/pgmk.customfile) ,
+%_() /UnicodeString (/attributes/pgmk.jobtitle) ,
+%_0.25 /Real (/attributes/pgmk.deflinewidth) ,
+%_0 /Int (/attributes/pgmk.bleed) ,
+%_0 /Int (/attributes/pgmk.crop) ,
+%_0 /Int (/attributes/pgmk.pageinfo) ,
+%_0 /Int (/attributes/pgmk.registration) ,
+%_0 /Int (/attributes/pgmk.colorbars) ,
+%_0 /Real (/attributes/pgmk.bleedoff.left) ,
+%_0 /Real (/attributes/pgmk.bleedoff.top) ,
+%_0 /Real (/attributes/pgmk.bleedoff.right) ,
+%_6 /Real (/attributes/pgmk.marksoff.left) ,
+%_6 /Real (/attributes/pgmk.marksoff.top) ,
+%_6 /Real (/attributes/pgmk.marksoff.right) ,
+%_1 /Int (/attributes/fnt.dlmode) ,
+%_0 /Int (/attributes/fnt.dlprfonts) ,
+%_0 /Int (/attributes/fnt.subst) ,
+%_3 /Int (/attributes/ps.level) ,
+%_0 /Int (/attributes/ps.binary) ,
+%_0 /Int (/attributes/ps.negative) ,
+%_0 /Int (/attributes/ps.compression) ,
+%_0 /Int (/attributes/ps.contone) ,
+%_0 /Int (/attributes/ps.l1compat) ,
+%_300 /Real (/attributes/ps.shaderes) ,
+%_0 /Int (/attributes/ps.setflatness) ,
+%_1 /Real (/attributes/ps.flatness) ,
+%_75 /Int (/attributes/xp.balance) ,
+%_300 /Int (/attributes/xp.rresolution) ,
+%_150 /Int (/attributes/xp.gresolution) ,
+%_0 /Int (/attributes/xp.converttext) ,
+%_1 /Int (/attributes/xp.convertstroke) ,
+%_1 /Int (/attributes/xp.clip) ,
+%_0 /Int (/attributes/xp.antialiasing) ,
+%_0 /Int (/attributes/xp.opco) ,
+%_0 /Int (/attributes/xp.opse) ,
+%_0 /Int (/attributes/xp.opdu) ,
+%_([Mittlere Auflösung]) /UnicodeString (/attributes/xp.name) ,
+%_0 /Int (/attributes/rdrs.enabled) ,
+%_0 /Int (/attributes/rdrs.func) ,
+%_1 /Real (/attributes/rdrs.flatteness) ,
+%_() /UnicodeString (/attributes/rdrs.annot) ,
+%_ /String (/attributes/rdrs.custom) ,
+%_1 /Int (/attributes/cm.mode) ,
+%_(Coated FOGRA39 \(ISO 12647-2:2004\)) /UnicodeString (/attributes/cm.profile) ,
+%_2 /Int (/attributes/cm.inteint) ,
+%_1 /Int (/attributes/cm.preservecmyk) ,
+%_0 /Int (/attributes/cm.preserveother) ,
+%_0 /Real (/attributes/pgmk.bleedoff.bottom) ,
+%_6 /Real (/attributes/pgmk.marksof
+endstream
endobj
103 0 obj
<>stream
+f.bottom) ,
+%_1 /Int (/attributes/pgmk.bleedoff.useDocBleeds) ,
+%_0 /Int (/attributes/job.bitmapresolution) ,
+%_; (AI11 Print Attribute Dict) ,
+%_0 /Bool (AI15 Document PixelPerfect) ,
+%_42 /Int (AI11 Document Setup Language Popup) ,
+%_150 /Real (AI12 AI Gradient and Mesh Resolution) ,
+%_300 /Real (AI12 AI Line Art and Text Resolution) ,
+%_150 /Real (AI11 EPS Gradient and Mesh Resolution) ,
+%_300 /Real (AI11 EPS Line Art and Text Resolution) ,
+%_0 /Bool (AISaveMultipleArtboards) ,
+%_/Dictionary : /NotRecorded ,
+%_0 /Int (/attributes/inklst.count) ,
+%_; (AI11 Ink List Dict) ,
+%_(Adobe PDF-Vorgabe.joboptions) /String (AI12 Job Options Name) ,
+%_7842 /Int (AI12 Job Options Size) ,
+%_1 /Bool (PerspectiveGrid_Snap) ,
+%_/Binary : /ASCII85Decode ,
+%4?O&[+M4?:L\'M@ruc7FE2M8%144#00sDjDg,0$@;^.*@<,ps@sK2/
+%@;L!r%144#00sJtBgHQL@<4eSCi=>cD..'gF!,('Cia.s$6UHE6#LdY6#:7DF%:7ZGtDj]B4Z-,AmoLsAISth+>6#uFD4$WBjl'W
+%Df0JbD..'gF!,('Cia.s$6UHE6$79f7VQ[\ATC.VCi=>cD..'gF!,('Cia.s$6UHE6$79f7VQ[\ATC:]@6#sC^g^o+>6&qDIdI!B-8j$AS-#n$6UHE6Xadu
+%9j(+cEc5Q(Ch4_;VJ#h;ccak>VJ#i+EfLh%144#010/a7ri$`:i^JdBl%?'-r+\uALS&q+7Co^+n%,`+>6*#Ci=>[6W6Qn@:s.>Bk)6-4?O&[+F<4+>E,2D?g=%144#+7Co^+OB5+6>`77Rdo+6*#Ci=>cD..'g
+%6tp.Q+?Vaq$6UH6+>68a@;Tt"ATJtu%144#+F<4+6S]@:OCt
+%EZd%g2`OB5+n%,`+?hsu$6UHE
+%6Z6dZE_1+VB4XJLGA_J1D/a<&<+p;`F(fK.A06*#Ci=>cD..'g6uR9eF(&p)Ch6RkE+L.F:2b#]%144#010Yo
+%DfSEd@:s.@Bl%m&EZd#)CghEs7;cURA7Z2W+6*#Ci=>cD..'g9keKC
+%ATMd+F`_>9DBLYk0F\@3+>6*#Ci=>cD..'g9keKCATMd+F`_>9DGY7fBk)E202G4M$6UHE6Z6dZE_1+VB4XtPF)Pl;FD5Z2+>G`-
+%%144#010YoDfScfFED57B6-OVCh4_;.1HV,+>6*#D/`p*BjtdmBlnVoAThX$+>GK+%144#010YpE,oN2F&-7[ARfh'+>6N&Ado(i
+%+>6*#D/aN,F)t/dB4Z-,FE2M8%144#010YqG%G]98SqmKATLgh8T&'MG\(D.FE2M8%144#010bk@'Q6q0X[Ch4`$@;L!r%144#
+%010bk@'QDdl[[@r#Xt+D,%uF(Gdf+2FT;R2Dd*A2DHm>2_m'@2Dd*A2Dm0B2E2Dm0B2E2`*3B2F]AS2_m'@1.3fM1c-m?2DHm>2`*3B
+%2Dm0B2E2FB/P2`!-A1,(C92)$^<1c-m?1c@$A1.3fM1c-m?2F]AS2F9)O2`39C2FK5Q2Dm0B2FT;R2`*3B1.2`*3B2Dm0B2E75Q\P2`*3B2Dm0B
+%2_m'@1,(C92E2`*3B2F]AS2_m'@1,(C92F]AS2Dd*A2Dm0B
+%2_m'@1,(C92E2`WQG2F]AS2`39C2`*3B2_Zp>2_m'@2F]AS
+%2E*2FK5Q2FK5Q1,(C92`EEE2E2_m'@2DQs?2Dm0B2E2`*3B2Dm0B2E2FT;R2FT;R2`*3B
+%1,(C92E6,oFCes(6>U4NA9/l8Eckq&$6UHE6tLIO@rt(\Ecu#8+>>E&0JG17%144#019_X
+%BQ\0$DII6qF!,RFF_)!h+6-$GA_J1D/a<&9lFof8SqmKATJu+@;L!r%144#01B_eARn)CCdr>\FE8RHEckq&$6UHE7;ZLFA4gcL:N1DiDf0V=AmoLsAISth
+%+>60#@V'(GE+NodH#R=;AmoLsAISth+>60#BllaA6W[]:DJ=!$F!,('Cia.s$6UHE7;cURA7\,HCi=>cD..'gF!,RFF_)!h+66*@OB5+n%,`+6bo@;Tt"ATJtu%144#+F<4+66*
+%@66*@Bk)6-4?O&[+F<4+>E,2D?g=%144#
+%+7Co^+OB5+66*@6M`%144#01U%kGtDj]B4XtPF)Pl;FD5Z2+>G`-%144#01g"hB4XeKD/XH?+>GQ,
+%3&NWQ%144#01o&07kubP0LKbpDfS-2;b:h7B4XJF@rrhU4:MW?+6].Ch6[^A9;K-1,Us!$6UHT4q.iA+>6>`77T*e0JGk4Ci=>cD..'g6tp.Q+?Vaq$6UH6+>6T7@;KY"Gp"h!%144#+6T7@;KY"
+%Gp"h!%144#+6GtGZ/`oF(KGi@rrhJ0JEqC+f@%144#5!BD_+6H-DJr*`@:s.@Bl%m&EZd#)CghEs7;cURA7Z2W+9DBL_h0F\@3+>6H-
+%DJr*`@:s.GBl6g[F)Pl;FD5Z2:iC/a@sK1M:J2-(+n%,`+>6Me9cu/"$6UHE:N1DiD/"<-+D,%uF(Gdf+6<(@r-9uAOglWA7]gPEbT'*+D,%uF(Gdf+6JuD.Rd-@:Njk>7Co^+6E"B45:q%144#+69(DJsP^@<6![;G83TEckq&$6UH6+67Co^+=63+pDF`_;8EZcbZ%144#+5>7Co^+6H-
+%@VKXi6Z6g\@3mCh4_C%144#+qmATMg!@q?ce%144#+&S=r<,Y<,9h\#pDKJfkH=\42@;L!r%144#+\ASuTuFD5Z2+>6Q0
+%Ecc>1Bljdk+6Z,EbTE,6Z6jaASuT4FE2M8%144#+6`9AOUHFARo=_A5I;bAnc'mF!,('Cia.s$6UH6+6#kA5H]IAP$cOD]iY#Cia.s$6UH6+6&tAS#CJAnH*qF=63+6-$GA_J1D/a<&0fD@4F@g=XB4Z-,FE2M8%144#+6Q3ATMF);e9cV@ruX0+>6H#A8-1';IsofCisi6Df-!k+6<(@r-9uAOq)cATDU$DJO;9AmoLsAISth+6<(@r-9uAP$c]ATD3hFD5o0+D,%uF(Gdf+6<(@r-9uAPdDcAnc'mF!,('Cia.s$6UH6+6GtEbf_tASGdjF0F\@3+6H3CijB.ARoL`87?CHCh[d"+>6`9APZcMARfg\ATW$.DJ+#"$6UH6+n%,`+6PZ7T`H/FDuAE8T&W]
+%DKJ]qDe<^"AQ*/VARfh#EZd#15n+/D+6Q"B4XeGEbf_cBl%?'02c_*@;\JEAmoguF:AR"+6Q3ATMF'G%F*QBln',
+%B-;;:F_)!h+6`9AOLHHF_t]-F@'eTARlp*Eckq&$6UH6+?hsu$6UHs%144#02P&+=@-h8ARn,GGZ8T\EbTAW
+%Dg5&iAohO*+Bo9^+=63+6PZ7T`H/FDuAE6Z6jQBln'-DFnAMDKKT)
+%Bk;<--n,T4+6PZ7T`Q"B5)F/Ed:DgD.Oh<.1HV,+>6PZ7T`T#F@'eTARn,G
+%GZ8TUARoL`6>q)kFE2M8%144#02P&+=B'62mCia.s$6UHE:ddcT<,u\i6>q*JDbXeRBjj>HGY_p`F(KG9>7Co^+=63+6Q3ATMF'G%FHmATDa1Bl8#kATW$.DJ+#5FE2M8%144#02lt$Ecb,dB4W2?%144#02m"&F(KG_Df0Z<+EVXHAISth
+%+>6]7@;^-uATC7_DI[d&Df/-aAoAeF:i^,gATDs*%144#03(A;@;]UB7nIT1D]g]2ASl@/AISth+>6`9APdDcCi
+%_; (AI12 Job Options Data) ,
+%_/Dictionary : /NotRecorded ,
+%_([Illustrator-Standard]) /UnicodeString (/attributes/collectionName) ,
+%_1 /Int (/attributes/AI11PDF_PreserveIllustratorEditingCapabilities) ,
+%_300 /Int (/attributes/AI11PDF_MonochromeDownsampleResolution) ,
+%_1 /Int (/attributes/AI12PDF_OutputIntentProfileNamePolicy) ,
+%_75 /Int (/attributes/AI10 flattener raster-vector balance) ,
+%_0 /Real (/attributes/AI11PDF_BleedLeft) ,
+%_1 /Int (/attributes/AI12PDF_Standard) ,
+%_0 /Int (/attributes/AI11PDF_TrimMarks) ,
+%_0 /Int (/attributes/AI11PDF_PageInfo) ,
+%_0 /Real (/attributes/AI11PDF_BleedTop) ,
+%_0 /Real (/attributes/AI11PDF_BleedBottom) ,
+%_0 /Int (/attributes/AI11PDF_RegMarks) ,
+%_1 /Int (/attributes/AI11PDF_CompressArt) ,
+%_0 /Real (/attributes/AI11PDF_BleedRight) ,
+%_(Dies sind die Standardeinstellungen beim Speichern einer Illustrator-Datei als PDF-Dokument. Verwenden Sie diese Einstellungen, wenn Sie die Datei später in Illustrator oder in einem Layoutprogramm wie z. B. InDesign bearbeiten möchten oder der endgültige Verwendungszweck der Datei unbekannt ist.) /UnicodeString (/attributes/AI12PDF_Description) ,
+%_0 /Int (/attributes/AI11PDF_FastWebView) ,
+%_1 /Int (/attributes/AI11PDF_BleedLink) ,
+%_1 /Int (/attributes/AI11PDF_Overprint) ,
+%_0 /Int (/attributes/AI11PDF_ColorBars) ,
+%_0 /Int (/attributes/AI12PDF_Trapped) ,
+%_1 /Int (/attributes/AI14PDF_DocBleed) ,
+%_1 /Int (/attributes/AI11PDF_ColorDownsampleKind) ,
+%_0.25 /Real (/attributes/AI11PDF_TrimMarkWeight) ,
+%_() /UnicodeString (/attributes/AI12PDF_OutputCondition) ,
+%_1 /Int (/attributes/AI12PDF_DestinationPolicy) ,
+%_() /UnicodeString (/attributes/AI12PDF_DestinationName) ,
+%_() /UnicodeString (/attributes/AI12PDF_RegistryName) ,
+%_0 /Int (/attributes/AI11PDF_PrinterMarkType) ,
+%_0 /Int (/attributes/AI16 flattener anti alias) ,
+%_6 /Int (/attributes/AI11PDF_GrayCompressionKind) ,
+%_1 /Int (/attributes/AI11PDF_GenerateThumbnails) ,
+%_0 /Int (/attributes/AI11PDF_FlattenTransparency) ,
+%_0 /Int (/attributes/AI12PDF_UsePrintTiling) ,
+%_256 /Int (/attributes/AI11PDF_GrayTileSize) ,
+%_100 /Int (/attributes/AI11PDF_SubsetFontRatio) ,
+%_1 /Int (/attributes/AI11PDF_GrayDownsampleKind) ,
+%_3 /Int (/attributes/AI11PDF_Compatibility) ,
+%_0 /Int (/attributes/AI10 flattener outline text) ,
+%_256 /Int (/attributes/AI11PDF_ColorTileSize) ,
+%_() /UnicodeString (/attributes/AI12PDF_OutputIntentProfileName) ,
+%_225 /Int (/attributes/AI11PDF_ColorDownsampleImageAbove) ,
+%_6 /Real (/attributes/AI11PDF_OffsetFromArtworkTop) ,
+%_1 /Int (/attributes/AI11PDF_PreserveAcrobatLayers) ,
+%_4 /Int (/attributes/AI11PDF_MonochromeCompressionKind) ,
+%_225 /Int (/attributes/AI11PDF_GrayDownsampleImageAbove) ,
+%_1 /Int (/attributes/AI11PDF_ColorCompressionQuality) ,
+%_6 /Real (/attributes/AI11PDF_OffsetFromArtworkRight) ,
+%_() /UnicodeString (/attributes/AI12PDF_OutputConditionIdentifier) ,
+%_1 /Int (/attributes/AI10 flattener clip complex regions) ,
+%_150 /Int (/attributes/AI11PDF_GrayDownsampleResolution) ,
+%_6 /Int (/attributes/AI11PDF_ColorCompressionKind) ,
+%_([Mittlere Auflösung]) /UnicodeString (/attributes/AI11PDF_FlatteningPresetName) ,
+%_150 /Real (/attributes/AI9 Mesh Rasterization Resolution) ,
+%_450 /Int (/attributes/AI11PDF_MonoDownsampleImageAbove) ,
+%_6 /Real (/attributes/AI11PDF_OffsetFromArtworkLeft) ,
+%_1 /Int (/attributes/AI12PDF_ColorConversionPolicy) ,
+%_1 /Int (/attributes/AI11PDF_MonochromeDownsampleKind) ,
+%_150 /Int (/attributes/AI11PDF_ColorDownsampleResolution) ,
+%_300 /Real (/attributes/AI9 Output Rasterization Resolution) ,
+%_1 /Int (/attributes/AI11PDF_GrayCompressionQuality) ,
+%_6 /Real (/attributes/AI11PDF_OffsetFromArtworkBottom) ,
+%_1 /Int (/attributes/AI10 flattener outline strokes) ,
+%_1 /Int (/attributes/AI12PDF_ProfileInclusionPolicy) ,
+%_; (PDFPresetCollection) ,
+%_0 /Bool (PerspectiveGrid_ShowHide) ,
+%_1 /Int (AI9 Document Setup panel) ,
+%_0 /Int (PerspectiveGrid_ActivePlane) ,
+%_; /NotRecorded ,
+%_;
+%AI9_EndDocumentData
+%AI11_BeginTextDocument
+/AI11TextDocument : /ASCII85Decode ,
+%+>5`7+?Vb/0/+M-+?ht30/+M240/+M24k&!+c.Q!+c.(!)rqs!-A3O!%e1N!,MXW!)*B7.3L9!+>=p%4s3$Q+?ht34?O`>0H`J?+>5`8+>6*#DerBuE+MLW
+%DKI!S0H`J?+>5Dk./s5H8-!3$C]JVYAH6fPB`MWC@/s%&AH6iQAH5C(;ufhsF9#hO/HAHEF=A=c1*A7n5!C)Q4s3$Q+?Vb/0/+M2
+%40/+M24k&!+c.Q!+c.(!)rqs!-A3O!%e1K!,hjS!+>kF
+%.3L9!+>=p%4s3$Q+?ht34?O`>0H`J?+>5`8+>6*#DerBuE+MLWDKI!S0H`J?+>5Dk./s5H9`TG=EWBeR@/sg<:]PM9DZD?h;?18.
+%B)m&SC]IlDE[`+a1*A7n5!C)Q4s3$Q+?Vb/0/+M240/+M24=p%4s3$Q+?ht3>p)5Jm4?O`>0HaRB4?O`>0H`J?+>5Dk./s5q+>5Sp4?O`>0HaRB4?O`>0H_eC
+%s8FnT2(9Y$0d&1n5!C)O4G!&4s2sM+>5Dk./s8G3W;#f+>5Gl0d&YD+?Vb/0/+Lsrr;sZr];PO0/4S(
+%+?ht34?O`>0H_eCs8G1\4XhL,0d&1n5!C)O4G!&4s2sM+>5Dk./s8G62j/!+>5Gl0d&YD+?Vb/0/+Ls
+%rr;sbr^/+W0/4S(+?ht34?O`>0H_eCs8NB)#UplL0d&1n5!C)O4G!&4s2sM+>5Dk./s8H>Q7nV+>5Gl
+%0d&YD+?Vb/0/+Lsrr4)X+;cOM0/4S(+?ht34?O`>0H_eCru`:(*%G!&4s2sM+>5Dk
+%./s6#$8;f9+>5Gl0d&YD+?Vb/0/+Lsrr4Y\0FTBQ0/4S(+?ht34?O`>0H_eCs"Fp:%OiMR0d&1n5!C)O4G!&4s2sM+>5Dk./s6#'JL4M+>5Gl0d&YD+?Vb/0/+Lsrr;sUr\c2J0/4S)+?ht34?O`>0H_eCs8G"W3%5t'0d&4o5!C)O4.3L8u+>P''4s2sM+>5Dk./s8G4T7Gl+>5Gl1*AbE+?Vb/0/+Lsrr;s]r]VbR0/4S)+?ht34?O`>0H_eCs8G:_5Udg/
+%0d&4o5!C)O4P''4s2sM+>5Dk./s8G7/fS'+>5Gl1*AbE+?Vb/0/+Lsrr
+%0H_eCs8P7^4XhL,0d&4o5!C)O4Y1.3L8u+>P''4s2sM+>5Dk./s5h)'BeG+>5Gl1*AbE+?Vb/0/+Lsrr4)]+<;mR
+%0/4S)+?ht34?O`>0H_eCs"Fa5#q6uM0d&4o5!C)O4P''4s2sM+>5Dk./s6#%585?+>5Gl1*AbE+?Vb/
+%0/+Lsrr4Y_0FoTT0/4S)+?ht34?O`>0H_eCs"G$=&LehU0d&4o5!C)O4P''4s2sM+>5Dk./s8H&-!.h
+%+>5Gl1E\kF+?Vb/0/+Lsrr<")s'@,s0/4S*+?ht34?O`>0H_eCs"H_m5q*p00d&7p5!C)O4Y-(4s2sM
+%+>5Dk./s6#75..Z+>5Gl1E\kF+?Vb/0/+Lsrr4ZB0LmQ70/4S*+?ht34?O`>0H_eCs"I"u8LYc80d&7p5!C)O4Y-(4s2sM+>5Dk./s6#K.qp,+>5Gl1E\kF+?Vb/0/+Lsrr4[+0SLqu0/4S*+?ht34?O`>0H_eCs"K3^LFF?!0d&7p5!C)O
+%4Y-(4s2sM+>5Dk./s6#SM6T`+>5Gl1E\kF+?Vb/0/+Lsrr4[D0V0^90/4S*+?ht34?O`>0H_eCs"L-#
+%Td_*;0d&7p5!C)O4Y-(4s2sM+>5Dk./s6#V(e_p+>5Gl1E\kF+?Vb/0/+Lsrr4[M0W-?B0/4S*+?ht3
+%4?O`>0H_eCs"LE+W@8rC0d&7p5!C)O4Y-(4s2sM+>5Dk./s6#j"TLB+>5Gl1E\kF+?Vb/0/+Lsrr4\6
+%0]a`+0/4S*+?ht34?O`>0H_eCs"NUik:%N,0d&7p5!C)O4Y-(4s2sM+>5Dk./s6#oe?(g+>5Gl1E\kF
+%+?Vb/0/+Lsrr4\M0`ELD0/4S*+?ht34?O`>0H_eCs"FU1"XtQI0d&7p5!C)O4b3)4s2sM+>5Dk./s8H
+%+9*E3+>5Gl1a"tG+?Vb/0/+Lsrr0H_eCs"O=(q^EX@0d&=r5!C)O4k9*
+%4s2sM+>5Dk./s8H%f["f+>5Gl2BY1I+?Vb/0/+Lsrr4YR0EN[G0/4S-+?ht34?O`>0H_eCs8NN-$n3;P0d&Ct5!C)O45Dk./s5h'd+5?+>5Gl3$:CK+?Vb/0/+Lsrr4)e+=8N[0/4S/+?ht34?O`>0H_eCs8N6%"=YHH0d&J!
+%5!C)O45Dk./s8Hjo=Ek+>5Gl3?ULL+?Vb/0/+Lsrr>5e0/4S(0H`PC+?Vb/0/+Lsrr4)r+>bMi
+%0/4S(0H`PC+?Vb/0/+Lsrr4YP0E(H+?Vb/0/+Lsrr2sA!.H@>0/4S(2BY1I+?Vb/0/+Lsrr2tl!<4Jj
+%0/4S(2BY1I+C-*R4s3$Q+?ht3>p(dT+BosN4=p%4s4,R5!C)B1E\eB+>5Dk>9H$j+>5Dk4?O`>0H_eCrr?1%@/t'CFT?7Y
+%DZFYTDZE<.@/t0FCB.cCCB/K++>5Sp4?O`>0H`%l0/4S34#3'+>5Jm./s8H#Upl[4s2sM+>5Dk/M8n'0/=Xu
+%rr0H_r"2'=P-+=R6h+;cOM5!C)O4#3'+>5Jm./s5h*%5Dk/M8n'0/=Xurr4YX.3Lf<+?Vb/0/+M#/i=b)1*A"Es"Fd/+?ht34?O`>0H_r"2'=P-+=R6h0FTBQ5!C)O4#3'+>5Jm
+%./s6#%OiMa4s2sM+>5Dk/M8n'0/=Xurr4Y`.3Lf<+?Vb/0/+M#/i=b)1*A"Es"G-9+?ht34?O`>0d&'=P-+=R6hrs:+s5!C)O
+%4#3'+>5Jm./s8H4XhL;4s2sM+>5Gl/M8n'0/=Xurr<"(.3Lf<+?Vb/0/4S$/i=b)1*A"Eru`1.+?ht34?O`>0d&'=P-
+%+=R6h+<;mR5!C)O4#3'+>5Jm./s6##q6u\4s2sM+>5Gl/M8n'0/=Xurr4Y[.3Lf<+?Vb/0/4S$/i=b)1*A"Es"Fm2+?ht3
+%4?O`>0d&'=P-+=R6h0FoTT5!C)O4#3'+>5Jm./s6#&Lehd4s2sM+>5Gl/M8n'0/=Xurr4Ye.3Lf<+?Vb/0/4S$/i=b)
+%1*A"Es8NQX+?ht34?O`>0d&'=P-+=R6h0EN[G5!C)O4#3'+>5Jm./s8H$n3;_4s2sM+>5Gl/M8n'0/=Xurr4YQ.3Lf<
+%+?Vb/0/+M#/i#:,0/4S$/i#:,0/=XurrFul
+%0d'[C4?O`>0HaRB0d&=r>p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)p+?ht34?O`>0H`+n0/4SR
+%+?Vb/0/+MQ+>P&o+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1E\kF+?ht35!C)O4P'F+>5Gl4?O`>
+%0H`J?+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S*+?ht35!C)Q4s2sM+>5Dk>9G[D1E]sG0/4S34>E%+>>E%+>,Mo
+%>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*ACr>p(dT+?Vb/0/+M245Dk
+%>9G[D2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>P&u+C-*C0d&S@+>5Dk4?O`>
+%0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB1*AP!>p(dT+?Vb/0/+M245Gl
+%1E\kF+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*C0d&7p5!C)Q4s3$Q+?Vb/0/+MQ+>P&o
+%0HaXD0/4S34>E%+>>E%+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*A;++C-*C0d&S@+>5Dk4?O`>0HaRB
+%0J5%%0J5%%0J5%%>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*A;,+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1E\kF
+%+?ht35!C)O4GYp>p(dT+?Vb/0/+M245Dk>9G[D0f1"Y
+%+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*C0d&7p5!C)Q4s3$Q+?Vb/0/+MQ+>P&o2'?0I0/4S34>E%
+%+>>E%+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*A;0+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1E\kF+?ht3
+%5!C)p+?ht34?O`>0H`.o0/4SR+?Vb/0/+MQ+>Y,p+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1E\kF+?ht35!C)O
+%4Y-G+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>Y,t+C-*C0d&S@+>5Gl4?O`>
+%0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB1E\V!>p(dT+?Vb/0/4S345Gl
+%1*AbE+?ht35!C)O45Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>Y-#+C-*C
+%0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)GPm>p(dT+?Vb/0/4S345Dk>9G^E0eskW+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>Y,p
+%1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB1E\D/+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%
+%0J5%%0eP.&>p)G_r>p(dT+?Vb/0/4S345Gl1a"tG+?ht35!C)O
+%4Gbs>p(dT+?Vb/0/4S345Gl1a"tG+?ht35!C)p+?ht34?O`>0H`1p0/4SR+?Vb/
+%0/+MQ+>b2q+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1E\kF+?ht35!C)O4k9I+>5Gl4?O`>0d&S@
+%+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GaF2]uBK0/4S34>E%+>>E%+>>E%+C-*C
+%0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+>b2q2'?0I0/4S34,B(2'=M,2'=M,2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk
+%>9GaF0fC.[+>5Gl4?O`>0d&S@+>5Dk>9GOQ1,U1,1,U1,1,U1[+>5Gl1a"tG+?ht35!C)p+?ht34?O`>0H`4q0/4SR+?Vb/0/+MQ
+%+>k8r+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2'=Xs>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O4Y-G+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(
+%+?ht35!C)Q4s2sM+>5Dk>9GdG1a$'H0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k9!
+%+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG2BZ9J0/4S34,E,
+%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k9#+C-*C0d&S@+>5Dk4?O`>0HaRB/i#:,/i#:,/i#:,>p(dT+>G!&4s3$Q
+%+?ht34?O`>0HaRB2'=k$>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O45Gl
+%4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG0ea_U+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'
+%2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG0ejeV+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q
+%4s2sM+>5Dk>9GdG0eskW+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG0f'qX+>5Gl
+%4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG0f1"Y+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'
+%2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG0f:(Z+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q
+%4s2sM+>5Dk>9GdG0fC.[+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s4,R5!C)O4t>q0d'[C
+%4?O`>0HaRB2BX^s>p(dT+?Vb/0/+M245Dk>9GgH1E]sG0/4S34>E%+>>E%+>,Mo>p)b3H+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*R4s3$Q
+%+?ht34?O`>0HaRB2BXk">p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O45Gl
+%4?O`>0H`J?+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GgH3$;KL0/4S34>E%+>>E%
+%+>,Mo>p)5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*R4s3$Q+?ht34?O`>0HaRB2BX_.
+%+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%/i=bW+?ht35!C)Q4s2sM+>5Dk>9GgH0ejeV+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%
+%0H_u*+C-*R4s3$Q+?ht34?O`>0HaRB2BX_0+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%/i=bW+?ht35!C)Q4s2sM+>5Dk>9GgH
+%0f'qX+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*R4s3$Q+?ht34?O`>0HaRB2BX_2+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%
+%0J5%%/i=bW+?ht35!C)Q4s2sM+>5Dk>9GgH0f:(Z+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+?Vb/
+%0/+MQ+>t>s2BZ9J0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)5Gl>9H$j+>5Dk
+%>9GjI0d'aE0/4S34>E%+>>E%+>,Mo>p(dT+>P''4s3$Q+?ht34?O`>0HaRB2]sn!>p(dT+?Vb/0/+M245Dk>9GjI1a$'H0/4S34>E%+>>E%+>,Mo>p(dT+>P''
+%4s3$Q+?ht34?O`>0HaRB2]st#>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GjI3$;KL0/4S34>E%
+%+>>E%+>,Mo>p(dT+>P''4s3$Q+?ht34?O`>0HaRB2]t+'>p(dT+?Vb/0/+M245Dk>9GjI0ea_U+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+?(Dt1*BjF0/4S3
+%4>E%+>>E%+>,Mo>p(dT+>P''4s3$Q+?ht34?O`>0HaRB2]sh2+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%
+%/i=bW+>5Gl1*AbE+?ht35!C)O4G\q>p(dT+?Vb/0/+M245Dk>9GjI0f:(Z+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+?(Dt2BZ9J0/4S34>E%+>>E%+>,Mo>p(dT+>P''4s3$Q+?ht3>p)5Gl>9H$j+>5Dk>9GmJ0d'aE0/4S34>E%+>>E%+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB3$:"">p(dT+?Vb/0/4S345Dk>9GmJ2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+?1K&+C-*C
+%0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB3$:1'>p(dT+?Vb/0/4S345Dk>9GmJ3?VTM0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB
+%3$9q0+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)GVo>p(dT+?Vb/0/4S345Dk>9GmJ0f'qX+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/
+%0/+MQ+?1Ju1a$'H0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3$9q5+C-*C0d&S@+>5Gl4?O`>
+%0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)O4Gbs>p(dT+?Vb/0/4S340HaRB3?U%!>p(dT+?Vb/0/4S345Dk>9GpK1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3?U1%>p(dT+?Vb/
+%0/4S345Gl0d&YD+?ht35!C)O45Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&%
+%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GpK3$;KL0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB
+%3?U=)>p(dT+?Vb/0/4S345Dk>9GpK0ea_U+>5Gl4?O`>0d&S@+>5Dk>9GUP
+%0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?:Q!1*BjF0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>
+%0HaRB3?U%4+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)G\q>p(dT+?Vb/0/4S345Dk>9GpK0f:(Z+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q
+%4s3$Q+?Vb/0/+MQ+?:Q!2BZ9J0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)p(dT+?Vb/0/4S345Dk>9GXS+>Y-G+>5Gl
+%4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GPm2'?0I0/4S34>E%+>,E,+>,E,
+%+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>GPm2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/
+%0/+MQ+>GPm3$;KL0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0ea_1+C-*C0d&S@+>5Gl4?O`>
+%0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)
5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)
5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)
5Gl4?O`>0HaRB0J5%%0J5%%0eP.&
+%>p)
5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)O45Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)p+?ht34?O`>0H`))+>5Gl>9H$j+>5Dk>9GXT
+%+>k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GXT+?(EK+>5Gl4?O`>0d&S@+>5Dk
+%>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GXT+>G_r>p(dT+?Vb/0/4S345Gl
+%1a"tG+?ht35!C)O45Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>b3)4s3$Q+?ht3>p)p(dT+?Vb/0/4S345Dk>9GXU
+%+>Y-G+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GVo2'?0I0/4S34>E%
+%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>GVo2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q
+%4s3$Q+?Vb/0/+MQ+>GVo3$;KL0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0esk3+C-*C0d&S@
+%+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&
+%>p)
5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)
5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)
5Gl4?O`>0HaRB0J5%%
+%0J5%%0eP.&>p)
5Dk4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht3
+%4?O`>0HaRB0esk+2BZ9J0/4S34,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk0f'q*0d'[C
+%4?O`>0HaRB0f'q,+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1E\kF+?ht35!C)O4p(dT+?Vb/
+%0/4S345Dk>9GXV+>k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I
+%0/4S(+?ht35!C)Q4s2sM+>5Dk>9GXV+?(EK+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk
+%>9GXV+?1KL+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GYp3?VTM0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f'q,0HaXD0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht3
+%4?O`>0HaRB0f'q,1*BjF0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f'q,1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f'q,1a$'H0/4S34>E%+>>E%+>GK&+C-*R
+%4s3$Q+?ht34?O`>0HaRB0f'q,2'?0I0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0f'q,
+%2BZ9J0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)p(dT+?Vb/0/4S345Dk>9GXW+>Y-G+>5Gl4?O`>0d&S@+>5Dk>9GUP
+%0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>G\q2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q
+%+?Vb/0/+MQ+>G\q2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+>G\q3$;KL0/4S3
+%4>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f1"5+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&
+%>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)
5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)
5Gl4?O`>0HaRB0J5%%
+%0J5%%0eP.&>p)
5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)
5Dk4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0f1"-2BZ9J0/4S34,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk0f:(,0d'[C4?O`>0HaRB0f:(.+C-*C0d&S@+>5Gl
+%4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1E\kF+?ht35!C)O4p(dT+?Vb/0/4S34p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0f:(1+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+=+>,E,+>,E,+C-*C0d&:q5!C)Q4s3$Q+?Vb/
+%0/+MQ+>G_r2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>G_r2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+>G_r3$;KL0/4S34>E%+>>E%+>,Mo
+%>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0f:(6+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)O45Gl4?O`>0HaRB0J5%%0J5%%/i=bW+?ht35!C)Q4s2sM+>5Dk>9GXX+>GVo>p(dT+?Vb/0/4S345Gl1a"tG+?ht35!C)O45Gl4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT
+%+>b3)4s3$Q+?ht3>p)p(dT+?Vb/0/4S345Dk>9GXY+>Y-G+>5Gl4?O`>0d&S@+>5Dk>9GOQ1,U1,1,U1,1,U1[+>5Gl1a"tG+?ht35!C)O4p(dT+?Vb/0/4S34p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0fC.3+C-*C0d&S@+>5Gl4?O`>
+%0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB0fC.5+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT
+%+>P''4s3$Q+?ht34?O`>0HaRB0fC.6+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXY+>GPm>p(dT+?Vb/0/4S34Gbs0eskW+>5Gl4?O`>0d&S@+>5Dk>9GOQ1,U1,1,U1,2'?0I0/4S++?ht3
+%5!C)Q4s2sM+>5Dk>9GXY+>G\q>p(dT+?Vb/0/4S345Gl1a"tG+?ht35!C)p+?ht3>p)5Dk4?O`>0H_eCrr>OhGlVa_D#duEF9$@^FT>PE@/t'CFT?7YDZFYTDZE<.@/t0FCB.cCCB/K++>5Sp
+%4?O`>0H`%l0/4S34#3'+>5Jm./s8H#Upl[4s2sM+>5Dk/M8n'0/=Xurr0H_r"2'=P-+=R6h+;cOM5!C)O4